cosmic-interchain-utils
Version:
Cosmic Interchain Utils
17 lines • 622 B
JavaScript
export var ProtocolType;
(function (ProtocolType) {
ProtocolType["Ethereum"] = "ethereum";
ProtocolType["Sealevel"] = "sealevel";
ProtocolType["Cosmos"] = "cosmos";
})(ProtocolType || (ProtocolType = {}));
export const ProtocolSmallestUnit = {
[ProtocolType.Ethereum]: 'wei',
[ProtocolType.Sealevel]: 'lamports',
[ProtocolType.Cosmos]: 'uATOM',
};
export var MessageStatus;
(function (MessageStatus) {
MessageStatus[MessageStatus["NONE"] = 0] = "NONE";
MessageStatus[MessageStatus["PROCESSED"] = 1] = "PROCESSED";
})(MessageStatus || (MessageStatus = {}));
//# sourceMappingURL=types.js.map