You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
804 B
12 lines
804 B
2 years ago
|
methods {
|
||
|
name() returns (string) envfree => DISPATCHER(true)
|
||
|
symbol() returns (string) envfree => DISPATCHER(true)
|
||
|
decimals() returns (uint8) envfree => DISPATCHER(true)
|
||
|
totalSupply() returns (uint256) envfree => DISPATCHER(true)
|
||
|
balanceOf(address) returns (uint256) envfree => DISPATCHER(true)
|
||
|
allowance(address,address) returns (uint256) envfree => DISPATCHER(true)
|
||
|
approve(address,uint256) returns (bool) => DISPATCHER(true)
|
||
|
transfer(address,uint256) returns (bool) => DISPATCHER(true)
|
||
|
transferFrom(address,address,uint256) returns (bool) => DISPATCHER(true)
|
||
|
}
|