@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
14 lines • 553 B
TypeScript
import { ChainId } from "./ChainId";
import { EthereumContractAddress } from "./EthereumContractAddress";
export declare class TokenInformation {
name: string;
symbol: string;
chainId: ChainId;
address: EthereumContractAddress;
nativeToken: boolean;
erc20: boolean;
decimals: number;
logoUrl: string;
constructor(name: string, symbol: string, chainId: ChainId, address: EthereumContractAddress, nativeToken: boolean, erc20: boolean, decimals: number, logoUrl: string);
}
//# sourceMappingURL=TokenInformation.d.ts.map