-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update: sync system contract abis * update: update test chain address * update: prevent address to generate account (#56)
- Loading branch information
Showing
19 changed files
with
7,681 additions
and
1,563 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,13 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = [ | ||
{ | ||
constant: false, | ||
inputs: [{ name: '', type: 'bytes' }], | ||
name: 'multiTxs', | ||
outputs: [], | ||
payable: false, | ||
stateMutability: 'nonpayable', | ||
type: 'function' | ||
} | ||
]; | ||
exports.default = [{ "constant": false, "inputs": [{ "name": "", "type": "bytes" }], "name": "multiTxs", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }]; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,22 +1,3 @@ | ||
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.default = [ | ||
{ | ||
constant: true, | ||
inputs: [], | ||
name: 'state', | ||
outputs: [{ name: '', type: 'bool' }], | ||
payable: false, | ||
stateMutability: 'view', | ||
type: 'function' | ||
}, | ||
{ | ||
constant: false, | ||
inputs: [{ name: '_state', type: 'bool' }], | ||
name: 'setState', | ||
outputs: [], | ||
payable: false, | ||
stateMutability: 'nonpayable', | ||
type: 'function' | ||
} | ||
]; | ||
exports.default = [{ "constant": true, "inputs": [], "name": "state", "outputs": [{ "name": "", "type": "bool" }], "payable": false, "stateMutability": "view", "type": "function" }, { "constant": false, "inputs": [{ "name": "_state", "type": "bool" }], "name": "setState", "outputs": [], "payable": false, "stateMutability": "nonpayable", "type": "function" }]; |
Oops, something went wrong.