Skip to content

Commit

Permalink
chore: add arb
Browse files Browse the repository at this point in the history
  • Loading branch information
gamalielhere committed Apr 4, 2023
1 parent 6948d35 commit 3c36bf0
Show file tree
Hide file tree
Showing 6 changed files with 486 additions and 0 deletions.
215 changes: 215 additions & 0 deletions dist/contracts/arb/contract-abi-arb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
[
{
"name": "TEST",
"address": "0x0000000000000000000000000000000000000000",
"comment": "",
"abi": [
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "sale",
"outputs": [
{ "name": "", "type": "uint256" },
{ "name": "", "type": "uint256" },
{ "name": "", "type": "uint256" },
{ "name": "", "type": "address" },
{ "name": "", "type": "uint256" },
{ "name": "", "type": "uint256" }
],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "invalidate",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "cancel",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [],
"name": "registrar",
"outputs": [{ "name": "", "type": "address" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "auctionStarted",
"outputs": [{ "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "finish",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [],
"name": "withdraw",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "minimumBid",
"outputs": [{ "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "name": "_name", "type": "string" },
{ "name": "bidReferrer", "type": "address" }
],
"name": "bid",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "auctionEnds",
"outputs": [{ "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "isBuyable",
"outputs": [{ "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "isAuction",
"outputs": [{ "name": "", "type": "bool" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "name": "_name", "type": "string" },
{ "name": "_price", "type": "uint256" },
{ "name": "reserve", "type": "uint256" },
{ "name": "referrer", "type": "address" }
],
"name": "offer",
"outputs": [],
"payable": false,
"stateMutability": "nonpayable",
"type": "function"
},
{
"constant": false,
"inputs": [
{ "name": "_name", "type": "string" },
{ "name": "bidReferrer", "type": "address" }
],
"name": "buy",
"outputs": [],
"payable": true,
"stateMutability": "payable",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "addr", "type": "address" }],
"name": "balance",
"outputs": [{ "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"constant": true,
"inputs": [{ "name": "_name", "type": "string" }],
"name": "price",
"outputs": [{ "name": "", "type": "uint256" }],
"payable": false,
"stateMutability": "view",
"type": "function"
},
{
"inputs": [{ "name": "_registry", "type": "address" }],
"payable": false,
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "name": "seller", "type": "address" },
{ "indexed": false, "name": "name", "type": "string" },
{ "indexed": false, "name": "price", "type": "uint256" },
{ "indexed": false, "name": "reserve", "type": "uint256" }
],
"name": "Offer",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "name": "bidder", "type": "address" },
{ "indexed": false, "name": "name", "type": "string" },
{ "indexed": false, "name": "bid", "type": "uint256" }
],
"name": "Bid",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{ "indexed": true, "name": "seller", "type": "address" },
{ "indexed": true, "name": "buyer", "type": "address" },
{ "indexed": false, "name": "name", "type": "string" },
{ "indexed": false, "name": "value", "type": "uint256" }
],
"name": "Transfer",
"type": "event"
},
{
"anonymous": false,
"inputs": [{ "indexed": false, "name": "name", "type": "string" }],
"name": "Cancel",
"type": "event"
}
]
}
]
1 change: 1 addition & 0 deletions dist/contracts/arb/contract-abi-arb.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}]
29 changes: 29 additions & 0 deletions dist/tokens/arb/tokens-arb.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[
{
"symbol": "BURNER",
"name": "BURNER",
"type": "ERC20",
"address": "0x0000000000000000000000000000000000000000",
"ens_address": "",
"decimals": 0,
"website": "",
"logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" },
"support": { "email": "", "url": "" },
"social": {
"blog": "",
"chat": "",
"discord": "",
"facebook": "",
"forum": "",
"github": "",
"gitter": "",
"instagram": "",
"linkedin": "",
"reddit": "",
"slack": "",
"telegram": "",
"twitter": "",
"youtube": ""
}
}
]
1 change: 1 addition & 0 deletions dist/tokens/arb/tokens-arb.min.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[{"symbol":"BURNER","name":"BURNER","type":"ERC20","address":"0x0000000000000000000000000000000000000000","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","discord":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}}]
Loading

0 comments on commit 3c36bf0

Please sign in to comment.