@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
9 lines • 340 B
TypeScript
import { EthereumContractAddress } from "./EthereumContractAddress";
export declare class AssetInfo {
assetId: EthereumContractAddress;
name: string;
symbol: string;
decimals: number;
constructor(assetId: EthereumContractAddress, name: string, symbol: string, decimals: number);
}
//# sourceMappingURL=AssetInfo.d.ts.map