TokenState
Type Alias: TokenState
Properties overview
- adminAddress: string; ↗
- adminContractAddress: string; ↗
- adminTokenBalance: number; ↗
- adminTokenSymbol: string; ↗
- adminUri: string; ↗
- adminVerificationKeyHash: string; ↗
- adminVersion: number; ↗
- decimals: number; ↗
- isPaused: boolean; ↗
- tokenAddress: string; ↗
- tokenId: string; ↗
- tokenSymbol: string; ↗
- totalSupply: number; ↗
- uri: string; ↗
- verificationKeyHash: string; ↗
- version: number; ↗
type TokenState = {
adminAddress: string;
adminContractAddress: string;
adminTokenBalance: number;
adminTokenSymbol: string;
adminUri: string;
adminVerificationKeyHash: string;
adminVersion: number;
decimals: number;
isPaused: boolean;
tokenAddress: string;
tokenId: string;
tokenSymbol: string;
totalSupply: number;
uri: string;
verificationKeyHash: string;
version: number;
};
Defined in: packages/api/src/client/types.gen.ts:531
Type declaration
adminAddress
adminAddress: string;
The address of the administrator.
adminContractAddress
adminContractAddress: string;
The address of the admin contract.
adminTokenBalance
adminTokenBalance: number;
The token balance of the administrator.
adminTokenSymbol
adminTokenSymbol: string;
The symbol of the admin token.
adminUri
adminUri: string;
The URI of the admin token metadata.
adminVerificationKeyHash
adminVerificationKeyHash: string;
The verification key hash of the admin contract.
adminVersion
adminVersion: number;
decimals
decimals: number;
The number of decimal places the token uses.
isPaused
isPaused: boolean;
Indicates if the token contract is paused.
tokenAddress
tokenAddress: string;
The address of the token contract.
tokenId
tokenId: string;
The unique identifier of the token.
tokenSymbol
tokenSymbol: string;
The symbol of the token.
totalSupply
totalSupply: number;
The total supply of the token.
uri
uri: string;
The URI of the token metadata.
verificationKeyHash
verificationKeyHash: string;
The verification key hash of the token contract.
version
version: number;
The version number of the token contract.
Updated 10 days ago