-
Notifications
You must be signed in to change notification settings - Fork 0
/
token.json
23 lines (23 loc) · 1.14 KB
/
token.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"network": "localhost",
"contract": {
"address": "0x5FbDB2315678afecb367f032d93F642f64180aa3",
"signerAddress": "0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266",
"abi": [
"constructor(uint256 initialSupply)",
"event Approval(address indexed owner, address indexed spender, uint256 value)",
"event Transfer(address indexed from, address indexed to, uint256 value)",
"function allowance(address owner, address spender) view returns (uint256)",
"function approve(address spender, uint256 amount) returns (bool)",
"function balanceOf(address account) view returns (uint256)",
"function decimals() view returns (uint8)",
"function decreaseAllowance(address spender, uint256 subtractedValue) returns (bool)",
"function increaseAllowance(address spender, uint256 addedValue) returns (bool)",
"function name() view returns (string)",
"function symbol() view returns (string)",
"function totalSupply() view returns (uint256)",
"function transfer(address to, uint256 amount) returns (bool)",
"function transferFrom(address from, address to, uint256 amount) returns (bool)"
]
}
}