-
Notifications
You must be signed in to change notification settings - Fork 1
/
abi.json
49 lines (49 loc) · 923 Bytes
/
abi.json
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
43
44
45
46
47
48
49
[
{
"name": "name",
"type": "function",
"stateMutability": "pure",
"inputs": [],
"outputs": [
{ "name": "name", "type": "string" }
]
},
{
"name": "symbol",
"type": "function",
"stateMutability": "pure",
"inputs": [],
"outputs": [
{ "name": "symbol", "type": "string" }
]
},
{
"name": "decimals",
"type": "function",
"stateMutability": "pure",
"inputs": [],
"outputs": [
{ "name": "decimals", "type": "uint8" }
]
},
{
"name": "totalSupply",
"type": "function",
"stateMutability": "view",
"inputs": [],
"outputs": [
{ "name": "supply", "type": "uint256" }
]
},
{
"name": "balanceOf",
"type": "function",
"stateMutability": "view",
"inputs": [
{ "name": "owner", "type": "address" }
],
"outputs": [
{ "name": "balance", "type": "uint256" }
]
}
]