-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabi.js
42 lines (42 loc) · 999 Bytes
/
abi.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// store the abi in here for easy access and keep code clean
// module.exports = {
// abi: [
// {
// inputs: [],
// payable: false,
// stateMutability: 'nonpayable',
// type: 'constructor',
// constant: undefined
// },
// {
// constant: true,
// inputs: [],
// name: 'assetCount',
// outputs: [Array],
// payable: false,
// stateMutability: 'view',
// type: 'function',
// signature: '0xeafe7a74'
// },
// {
// constant: true,
// inputs: [Array],
// name: 'assets',
// outputs: [Array],
// payable: false,
// stateMutability: 'view',
// type: 'function',
// signature: '0xcf35bdd0'
// },
// {
// constant: false,
// inputs: [Array],
// name: 'createAsset',
// outputs: [],
// payable: false,
// stateMutability: 'nonpayable',
// type: 'function',
// signature: '0xdb9cc410'
// }
// ]
// }