IERC20
name
function name() external view returns (string)
Queries the Party ERC-20 token name
Return Values
Name | Type | Description |
---|---|---|
[0] | string | Token name metadata |
symbol
function symbol() external view returns (string)
Queries the Party ERC-20 token symbol
Return Values
Name | Type | Description |
---|---|---|
[0] | string | Token symbol metadata |
decimals
function decimals() external pure returns (uint8)
Queries the Party ERC-20 token decimals
Return Values
Name | Type | Description |
---|---|---|
[0] | uint8 | Token decimals metadata |
totalSupply
function totalSupply() external view returns (uint256)
Queries the Party ERC-20 total minted supply
Return Values
Name | Type | Description |
---|---|---|
[0] | uint256 | Token total supply |
balanceOf
function balanceOf(address account) external view returns (uint256)
Queries the Party ERC-20 balance of a given account
Parameters
Name | Type | Description |
---|---|---|
account | address | Address |
Return Values
Name | Type | Description |
---|---|---|
[0] | uint256 | Token balance of a given ccount |