@test-org122/hypernet-core
Version:
Hypernet Core. Represents the SDK for running the Hypernet Protocol.
15 lines • 437 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Token = void 0;
class Token {
constructor(id, tokenAddress, capacity, symbol, decimals, name) {
this.id = id;
this.tokenAddress = tokenAddress;
this.capacity = capacity;
this.symbol = symbol;
this.decimals = decimals;
this.name = name;
}
}
exports.Token = Token;
//# sourceMappingURL=Token.js.map