-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Load core ABIs when service starts (#47)
* Add AbisService and load abis on service startup * Add tests to abi service
- Loading branch information
1 parent
e17659c
commit 7c68c8c
Showing
25 changed files
with
6,320 additions
and
24 deletions.
There are no files selected for viewing
File renamed without changes.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,110 @@ | ||
initializable_admin_upgradeability_proxy_abi = [ | ||
{ | ||
"anonymous": False, | ||
"inputs": [ | ||
{ | ||
"indexed": False, | ||
"internalType": "address", | ||
"name": "previousAdmin", | ||
"type": "address", | ||
}, | ||
{ | ||
"indexed": False, | ||
"internalType": "address", | ||
"name": "newAdmin", | ||
"type": "address", | ||
}, | ||
], | ||
"name": "AdminChanged", | ||
"type": "event", | ||
}, | ||
{ | ||
"anonymous": False, | ||
"inputs": [ | ||
{ | ||
"indexed": True, | ||
"internalType": "address", | ||
"name": "implementation", | ||
"type": "address", | ||
} | ||
], | ||
"name": "Upgraded", | ||
"type": "event", | ||
}, | ||
{"payable": True, "stateMutability": "payable", "type": "fallback"}, | ||
{ | ||
"constant": False, | ||
"inputs": [], | ||
"name": "admin", | ||
"outputs": [{"internalType": "address", "name": "", "type": "address"}], | ||
"payable": False, | ||
"stateMutability": "nonpayable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [{"internalType": "address", "name": "newAdmin", "type": "address"}], | ||
"name": "changeAdmin", | ||
"outputs": [], | ||
"payable": False, | ||
"stateMutability": "nonpayable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [], | ||
"name": "implementation", | ||
"outputs": [{"internalType": "address", "name": "", "type": "address"}], | ||
"payable": False, | ||
"stateMutability": "nonpayable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [ | ||
{"internalType": "address", "name": "_logic", "type": "address"}, | ||
{"internalType": "address", "name": "_admin", "type": "address"}, | ||
{"internalType": "bytes", "name": "_data", "type": "bytes"}, | ||
], | ||
"name": "initialize", | ||
"outputs": [], | ||
"payable": True, | ||
"stateMutability": "payable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [ | ||
{"internalType": "address", "name": "_logic", "type": "address"}, | ||
{"internalType": "bytes", "name": "_data", "type": "bytes"}, | ||
], | ||
"name": "initialize", | ||
"outputs": [], | ||
"payable": True, | ||
"stateMutability": "payable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [ | ||
{"internalType": "address", "name": "newImplementation", "type": "address"} | ||
], | ||
"name": "upgradeTo", | ||
"outputs": [], | ||
"payable": False, | ||
"stateMutability": "nonpayable", | ||
"type": "function", | ||
}, | ||
{ | ||
"constant": False, | ||
"inputs": [ | ||
{"internalType": "address", "name": "newImplementation", "type": "address"}, | ||
{"internalType": "bytes", "name": "data", "type": "bytes"}, | ||
], | ||
"name": "upgradeToAndCall", | ||
"outputs": [], | ||
"payable": True, | ||
"stateMutability": "payable", | ||
"type": "function", | ||
}, | ||
] |
Oops, something went wrong.