Forked from spalladino/AdminUpgradeabilityProxy.abi.json
Last active
March 24, 2020 15:11
-
-
Save Tomasvrba/58a3cb1b492b2b0b8e39dc0db4f9ce90 to your computer and use it in GitHub Desktop.
ABI for ZeppelinOS AdminUpgradeabilityProxy as of [email protected]: https://github.com/OpenZeppelin/openzeppelin-sdk/releases/tag/v2.7.1; If ABI is out of date, recompile contracts from here: https://github.com/OpenZeppelin/openzeppelin-sdk/tree/master/packages/lib/contracts/upgradeability andget ABI with `solc AdminUpgradeabilityProxy.sol --abi`
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "newImplementation", | |
"type": "address" | |
} | |
], | |
"name": "upgradeTo", | |
"outputs": [], | |
"payable": false, | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "newImplementation", | |
"type": "address" | |
}, | |
{ | |
"name": "data", | |
"type": "bytes" | |
} | |
], | |
"name": "upgradeToAndCall", | |
"outputs": [], | |
"payable": true, | |
"stateMutability": "payable", | |
"type": "function" | |
}, | |
{ | |
"constant": false, | |
"inputs": [], | |
"name": "implementation", | |
"outputs": [ | |
{ | |
"name": "", | |
"type": "address" | |
} | |
], | |
"payable": false, | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"constant": false, | |
"inputs": [ | |
{ | |
"name": "newAdmin", | |
"type": "address" | |
} | |
], | |
"name": "changeAdmin", | |
"outputs": [], | |
"payable": false, | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"constant": false, | |
"inputs": [], | |
"name": "admin", | |
"outputs": [ | |
{ | |
"name": "", | |
"type": "address" | |
} | |
], | |
"payable": false, | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"name": "_logic", | |
"type": "address" | |
}, | |
{ | |
"name": "_admin", | |
"type": "address" | |
}, | |
{ | |
"name": "_data", | |
"type": "bytes" | |
} | |
], | |
"payable": true, | |
"stateMutability": "payable", | |
"type": "constructor" | |
}, | |
{ | |
"payable": true, | |
"stateMutability": "payable", | |
"type": "fallback" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": false, | |
"name": "previousAdmin", | |
"type": "address" | |
}, | |
{ | |
"indexed": false, | |
"name": "newAdmin", | |
"type": "address" | |
} | |
], | |
"name": "AdminChanged", | |
"type": "event" | |
}, | |
{ | |
"anonymous": false, | |
"inputs": [ | |
{ | |
"indexed": true, | |
"name": "implementation", | |
"type": "address" | |
} | |
], | |
"name": "Upgraded", | |
"type": "event" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment