diff options
author | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-17 18:46:35 +0800 |
---|---|---|
committer | Wei-Ning Huang <aitjcize@gmail.com> | 2018-11-17 18:46:35 +0800 |
commit | f7571b8412bf9d2ebe5b48f6415924b89dff67ae (patch) | |
tree | 1e0c4631eda4f45541d9686e9944baab43861a68 | |
parent | 250501f865a859f69aec26673ffd9feafedab732 (diff) | |
download | dexon-wiki-f7571b8412bf9d2ebe5b48f6415924b89dff67ae.tar.gz dexon-wiki-f7571b8412bf9d2ebe5b48f6415924b89dff67ae.tar.zst dexon-wiki-f7571b8412bf9d2ebe5b48f6415924b89dff67ae.zip |
Updated Governance Contract Interface (markdown)
-rw-r--r-- | Governance-Contract-Interface.md | 72 |
1 files changed, 70 insertions, 2 deletions
diff --git a/Governance-Contract-Interface.md b/Governance-Contract-Interface.md index 0e78419..ed98c47 100644 --- a/Governance-Contract-Interface.md +++ b/Governance-Contract-Interface.md @@ -395,12 +395,12 @@ The equivalent solidity interface can be found in the [dexon-foundation/governan "inputs": [ { "indexed": true, - "name": "round", + "name": "Round", "type": "uint256" }, { "indexed": false, - "name": "crs", + "name": "CRS", "type": "bytes32" } ], @@ -408,6 +408,74 @@ The equivalent solidity interface can be found in the [dexon-foundation/governan "type": "event" }, { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "NodeAddress", + "type": "address" + }, + { + "indexed": false, + "name": "Amount", + "type": "uint256" + } + ], + "name": "Staked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "NodeAddress", + "type": "address" + } + ], + "name": "Unstaked", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "NodeAddress", + "type": "address" + }, + { + "indexed": true, + "name": "DelegatorAddress", + "type": "address" + }, + { + "indexed": false, + "name": "Amount", + "type": "uint256" + } + ], + "name": "Delegated", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { + "indexed": true, + "name": "NodeAddress", + "type": "address" + }, + { + "indexed": true, + "name": "DelegatorAddress", + "type": "address" + } + ], + "name": "Undelegated", + "type": "event" + }, + { "constant": false, "inputs": [ { |