@hypernetlabs/objects
Version:
Objects and types shared by the Hypernet Protocol
19 lines • 671 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.RouterSupportedToken = exports.RouterDetails = void 0;
class RouterDetails {
constructor(publicIdentifier, supportedTokens, allowedGateways) {
this.publicIdentifier = publicIdentifier;
this.supportedTokens = supportedTokens;
this.allowedGateways = allowedGateways;
}
}
exports.RouterDetails = RouterDetails;
class RouterSupportedToken {
constructor(chainId, tokenAddress) {
this.chainId = chainId;
this.tokenAddress = tokenAddress;
}
}
exports.RouterSupportedToken = RouterSupportedToken;
//# sourceMappingURL=RouterDetails.js.map