@fintech-solutions/core
Advanced tools
Comparing version 1.2.37 to 1.2.38
@@ -1,11 +0,5 @@ | ||
export declare enum PolygonAssetMainnetShortcode { | ||
export declare enum PolygonAssetShortcode { | ||
USDTPolygonToken = "USDT_POLYGON_ERC20", | ||
USDCPolygonToken = "USDC_POLYGON_ERC20" | ||
} | ||
export declare enum PolygonAssetTestnetShortcode { | ||
USDTPolygonTokenTest = "USDT_POLYGON_ERC20_TEST", | ||
USDCPolygonTokenTest = "USDC_POLYGON_ERC20_TEST" | ||
} | ||
export declare const PolygonAssetShortcode: typeof PolygonAssetMainnetShortcode & typeof PolygonAssetTestnetShortcode; | ||
export type PolygonAssetShortcode = PolygonAssetMainnetShortcode | PolygonAssetTestnetShortcode; | ||
export declare const POLYGON_TOKENS: Set<PolygonAssetMainnetShortcode | PolygonAssetTestnetShortcode>; | ||
export declare const POLYGON_TOKENS: Set<PolygonAssetShortcode>; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.POLYGON_TOKENS = exports.PolygonAssetShortcode = exports.PolygonAssetTestnetShortcode = exports.PolygonAssetMainnetShortcode = void 0; | ||
var PolygonAssetMainnetShortcode; | ||
(function (PolygonAssetMainnetShortcode) { | ||
PolygonAssetMainnetShortcode["USDTPolygonToken"] = "USDT_POLYGON_ERC20"; | ||
PolygonAssetMainnetShortcode["USDCPolygonToken"] = "USDC_POLYGON_ERC20"; | ||
})(PolygonAssetMainnetShortcode = exports.PolygonAssetMainnetShortcode || (exports.PolygonAssetMainnetShortcode = {})); | ||
var PolygonAssetTestnetShortcode; | ||
(function (PolygonAssetTestnetShortcode) { | ||
PolygonAssetTestnetShortcode["USDTPolygonTokenTest"] = "USDT_POLYGON_ERC20_TEST"; | ||
PolygonAssetTestnetShortcode["USDCPolygonTokenTest"] = "USDC_POLYGON_ERC20_TEST"; | ||
})(PolygonAssetTestnetShortcode = exports.PolygonAssetTestnetShortcode || (exports.PolygonAssetTestnetShortcode = {})); | ||
exports.PolygonAssetShortcode = Object.assign({}, PolygonAssetMainnetShortcode, PolygonAssetTestnetShortcode); | ||
exports.POLYGON_TOKENS = new Set(Object.values(exports.PolygonAssetShortcode)); | ||
exports.POLYGON_TOKENS = exports.PolygonAssetShortcode = void 0; | ||
var PolygonAssetShortcode; | ||
(function (PolygonAssetShortcode) { | ||
PolygonAssetShortcode["USDTPolygonToken"] = "USDT_POLYGON_ERC20"; | ||
PolygonAssetShortcode["USDCPolygonToken"] = "USDC_POLYGON_ERC20"; | ||
})(PolygonAssetShortcode = exports.PolygonAssetShortcode || (exports.PolygonAssetShortcode = {})); | ||
exports.POLYGON_TOKENS = new Set(Object.values(PolygonAssetShortcode)); | ||
//# sourceMappingURL=polygon-asset-shortcode.enum.js.map |
{ | ||
"name": "@fintech-solutions/core", | ||
"private": false, | ||
"version": "1.2.37", | ||
"version": "1.2.38", | ||
"description": "", | ||
@@ -17,3 +17,3 @@ "main": "dist/index.js", | ||
"license": "ISC", | ||
"gitHead": "f50bfaf9b3721d9fa0ba6daa03003a0a27ed5f60" | ||
"gitHead": "2b2979e8d4c7268878a0362cd0c79e15db926832" | ||
} |
@@ -1,2 +0,2 @@ | ||
export enum PolygonAssetMainnetShortcode { | ||
export enum PolygonAssetShortcode { | ||
USDTPolygonToken = 'USDT_POLYGON_ERC20', | ||
@@ -6,11 +6,2 @@ USDCPolygonToken = 'USDC_POLYGON_ERC20', | ||
export enum PolygonAssetTestnetShortcode { | ||
USDTPolygonTokenTest = 'USDT_POLYGON_ERC20_TEST', | ||
USDCPolygonTokenTest = 'USDC_POLYGON_ERC20_TEST', | ||
} | ||
export const PolygonAssetShortcode = Object.assign({}, PolygonAssetMainnetShortcode, PolygonAssetTestnetShortcode); | ||
export type PolygonAssetShortcode = PolygonAssetMainnetShortcode | PolygonAssetTestnetShortcode; | ||
export const POLYGON_TOKENS = new Set(Object.values(PolygonAssetShortcode)); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
98756
1195