Skip to content

Commit

Permalink
Update 421614-main (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
synthetixio-team authored May 8, 2024
1 parent 8c16a5c commit b635e9d
Show file tree
Hide file tree
Showing 37 changed files with 36,631 additions and 0 deletions.
332 changes: 332 additions & 0 deletions 421614-main/ARBToken.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,332 @@
[
{
"type": "constructor",
"stateMutability": "payable",
"payable": true,
"inputs": [
{
"type": "string",
"name": "name"
},
{
"type": "string",
"name": "symbol"
},
{
"type": "uint256",
"name": "initialSupply"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Approval",
"inputs": [
{
"type": "address",
"name": "owner",
"indexed": true
},
{
"type": "address",
"name": "spender",
"indexed": true
},
{
"type": "uint256",
"name": "value"
}
]
},
{
"type": "event",
"anonymous": false,
"name": "OwnershipTransferred",
"inputs": [
{
"type": "address",
"name": "previousOwner",
"indexed": true
},
{
"type": "address",
"name": "newOwner",
"indexed": true
}
]
},
{
"type": "event",
"anonymous": false,
"name": "Transfer",
"inputs": [
{
"type": "address",
"name": "from",
"indexed": true
},
{
"type": "address",
"name": "to",
"indexed": true
},
{
"type": "uint256",
"name": "value"
}
]
},
{
"type": "function",
"name": "allowance",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [
{
"type": "address",
"name": "owner"
},
{
"type": "address",
"name": "spender"
}
],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "approve",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "balanceOf",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [
{
"type": "address",
"name": "account"
}
],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "decimals",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "uint8"
}
]
},
{
"type": "function",
"name": "decreaseAllowance",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "subtractedValue"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "increaseAllowance",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "spender"
},
{
"type": "uint256",
"name": "addedValue"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "mint",
"constant": false,
"payable": false,
"inputs": [
{
"type": "uint256",
"name": "amount"
},
{
"type": "address",
"name": "to"
}
],
"outputs": []
},
{
"type": "function",
"name": "name",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "string"
}
]
},
{
"type": "function",
"name": "owner",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "address"
}
]
},
{
"type": "function",
"name": "renounceOwnership",
"constant": false,
"payable": false,
"inputs": [],
"outputs": []
},
{
"type": "function",
"name": "symbol",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "string"
}
]
},
{
"type": "function",
"name": "totalSupply",
"constant": true,
"stateMutability": "view",
"payable": false,
"inputs": [],
"outputs": [
{
"type": "uint256"
}
]
},
{
"type": "function",
"name": "transfer",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "to"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "transferFrom",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "from"
},
{
"type": "address",
"name": "to"
},
{
"type": "uint256",
"name": "amount"
}
],
"outputs": [
{
"type": "bool"
}
]
},
{
"type": "function",
"name": "transferOwnership",
"constant": false,
"payable": false,
"inputs": [
{
"type": "address",
"name": "newOwner"
}
],
"outputs": []
}
]
21 changes: 21 additions & 0 deletions 421614-main/ARBToken.readable.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[
"constructor(string name, string symbol, uint256 initialSupply) payable",
"event Approval(address indexed owner, address indexed spender, uint256 value)",
"event OwnershipTransferred(address indexed previousOwner, address indexed newOwner)",
"event Transfer(address indexed from, address indexed to, uint256 value)",
"function allowance(address owner, address spender) view returns (uint256)",
"function approve(address spender, uint256 amount) returns (bool)",
"function balanceOf(address account) view returns (uint256)",
"function decimals() view returns (uint8)",
"function decreaseAllowance(address spender, uint256 subtractedValue) returns (bool)",
"function increaseAllowance(address spender, uint256 addedValue) returns (bool)",
"function mint(uint256 amount, address to)",
"function name() view returns (string)",
"function owner() view returns (address)",
"function renounceOwnership()",
"function symbol() view returns (string)",
"function totalSupply() view returns (uint256)",
"function transfer(address to, uint256 amount) returns (bool)",
"function transferFrom(address from, address to, uint256 amount) returns (bool)",
"function transferOwnership(address newOwner)"
]
Loading

0 comments on commit b635e9d

Please sign in to comment.