@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
17 lines • 577 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TokenInformation = void 0;
class TokenInformation {
constructor(name, symbol, chainId, address, nativeToken, erc20, decimals, logoUrl) {
this.name = name;
this.symbol = symbol;
this.chainId = chainId;
this.address = address;
this.nativeToken = nativeToken;
this.erc20 = erc20;
this.decimals = decimals;
this.logoUrl = logoUrl;
}
}
exports.TokenInformation = TokenInformation;
//# sourceMappingURL=TokenInformation.js.map