@pioneer-platform/tokens 0.1.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +2 -0
- package/CHANGELOG.md +22 -0
- package/build.sh +22 -0
- package/lib/index.d.ts +14 -0
- package/lib/index.js +31 -0
- package/lib/index.js.map +23 -0
- package/lib/tokenLists/1inch.d.ts +207 -0
- package/lib/tokenLists/1inch.js +246 -0
- package/lib/tokenLists/Coingecko.d.ts +22899 -0
- package/lib/tokenLists/Coingecko.js +27482 -0
- package/lib/tokenLists/Maya.d.ts +57 -0
- package/lib/tokenLists/Maya.js +36 -0
- package/lib/tokenLists/Native.d.ts +73 -0
- package/lib/tokenLists/Native.js +28 -0
- package/lib/tokenLists/Pancakeswap.d.ts +1793 -0
- package/lib/tokenLists/Pancakeswap.js +2149 -0
- package/lib/tokenLists/Pancakeswapeth.d.ts +253 -0
- package/lib/tokenLists/Pancakeswapeth.js +301 -0
- package/lib/tokenLists/Pangolin.d.ts +848 -0
- package/lib/tokenLists/Pangolin.js +1015 -0
- package/lib/tokenLists/Pioneer.d.ts +30 -0
- package/lib/tokenLists/Pioneer.js +22 -0
- package/lib/tokenLists/Stargatearb.d.ts +27 -0
- package/lib/tokenLists/Stargatearb.js +35 -0
- package/lib/tokenLists/Sushiswap.d.ts +2455 -0
- package/lib/tokenLists/Sushiswap.js +2949 -0
- package/lib/tokenLists/Thorchain.d.ts +143 -0
- package/lib/tokenLists/Thorchain.js +131 -0
- package/lib/tokenLists/Traderjoe.d.ts +558 -0
- package/lib/tokenLists/Traderjoe.js +667 -0
- package/lib/tokenLists/Uniswap.d.ts +1247 -0
- package/lib/tokenLists/Uniswap.js +1494 -0
- package/lib/tokenLists/Woofi.d.ts +43 -0
- package/lib/tokenLists/Woofi.js +49 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @pioneer-platform/tokens
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Automated minor version bump for all packages
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @pioneer-platform/loggerdog@8.6.0
|
|
13
|
+
|
|
14
|
+
## 0.2.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- Automated minor version bump for all packages
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @pioneer-platform/loggerdog@8.5.0
|
|
24
|
+
|
|
3
25
|
## 0.1.1
|
|
4
26
|
|
|
5
27
|
### Patch Changes
|
package/build.sh
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
# Fast Bun build (replaces slow tsc)
|
|
3
|
+
|
|
4
|
+
OUTDIR="${1:-lib}"
|
|
5
|
+
ENTRY="${2:-src/index.ts}"
|
|
6
|
+
|
|
7
|
+
# Clean output
|
|
8
|
+
rm -rf "$OUTDIR"
|
|
9
|
+
mkdir -p "$OUTDIR"
|
|
10
|
+
|
|
11
|
+
# Build with Bun (10x faster than tsc)
|
|
12
|
+
bun build "$ENTRY" \
|
|
13
|
+
--outdir "$OUTDIR" \
|
|
14
|
+
--target node \
|
|
15
|
+
--format cjs \
|
|
16
|
+
--sourcemap \
|
|
17
|
+
--minify
|
|
18
|
+
|
|
19
|
+
# Generate TypeScript declarations
|
|
20
|
+
bunx tsc --emitDeclarationOnly --outDir "$OUTDIR" --project .
|
|
21
|
+
|
|
22
|
+
echo "✅ Built $OUTDIR"
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { list as OneInchList } from './tokenLists/1inch';
|
|
2
|
+
export { list as CoinGeckoList } from './tokenLists/Coingecko';
|
|
3
|
+
export { list as MayaList } from './tokenLists/Maya';
|
|
4
|
+
export { list as NativeList } from './tokenLists/Native';
|
|
5
|
+
export { list as PancakeswapList } from './tokenLists/Pancakeswap';
|
|
6
|
+
export { list as PancakeswapETHList } from './tokenLists/Pancakeswapeth';
|
|
7
|
+
export { list as PangolinList } from './tokenLists/Pangolin';
|
|
8
|
+
export { list as PioneerList } from './tokenLists/Pioneer';
|
|
9
|
+
export { list as StargateARBList } from './tokenLists/Stargatearb';
|
|
10
|
+
export { list as SushiswapList } from './tokenLists/Sushiswap';
|
|
11
|
+
export { list as ThorchainList } from './tokenLists/Thorchain';
|
|
12
|
+
export { list as TraderjoeList } from './tokenLists/Traderjoe';
|
|
13
|
+
export { list as UniswapList } from './tokenLists/Uniswap';
|
|
14
|
+
export { list as WoofiList } from './tokenLists/Woofi';
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WoofiList = exports.UniswapList = exports.TraderjoeList = exports.ThorchainList = exports.SushiswapList = exports.StargateARBList = exports.PioneerList = exports.PangolinList = exports.PancakeswapETHList = exports.PancakeswapList = exports.NativeList = exports.MayaList = exports.CoinGeckoList = exports.OneInchList = void 0;
|
|
4
|
+
var _1inch_1 = require("./tokenLists/1inch");
|
|
5
|
+
Object.defineProperty(exports, "OneInchList", { enumerable: true, get: function () { return _1inch_1.list; } });
|
|
6
|
+
var Coingecko_1 = require("./tokenLists/Coingecko");
|
|
7
|
+
Object.defineProperty(exports, "CoinGeckoList", { enumerable: true, get: function () { return Coingecko_1.list; } });
|
|
8
|
+
var Maya_1 = require("./tokenLists/Maya");
|
|
9
|
+
Object.defineProperty(exports, "MayaList", { enumerable: true, get: function () { return Maya_1.list; } });
|
|
10
|
+
var Native_1 = require("./tokenLists/Native");
|
|
11
|
+
Object.defineProperty(exports, "NativeList", { enumerable: true, get: function () { return Native_1.list; } });
|
|
12
|
+
var Pancakeswap_1 = require("./tokenLists/Pancakeswap");
|
|
13
|
+
Object.defineProperty(exports, "PancakeswapList", { enumerable: true, get: function () { return Pancakeswap_1.list; } });
|
|
14
|
+
var Pancakeswapeth_1 = require("./tokenLists/Pancakeswapeth");
|
|
15
|
+
Object.defineProperty(exports, "PancakeswapETHList", { enumerable: true, get: function () { return Pancakeswapeth_1.list; } });
|
|
16
|
+
var Pangolin_1 = require("./tokenLists/Pangolin");
|
|
17
|
+
Object.defineProperty(exports, "PangolinList", { enumerable: true, get: function () { return Pangolin_1.list; } });
|
|
18
|
+
var Pioneer_1 = require("./tokenLists/Pioneer");
|
|
19
|
+
Object.defineProperty(exports, "PioneerList", { enumerable: true, get: function () { return Pioneer_1.list; } });
|
|
20
|
+
var Stargatearb_1 = require("./tokenLists/Stargatearb");
|
|
21
|
+
Object.defineProperty(exports, "StargateARBList", { enumerable: true, get: function () { return Stargatearb_1.list; } });
|
|
22
|
+
var Sushiswap_1 = require("./tokenLists/Sushiswap");
|
|
23
|
+
Object.defineProperty(exports, "SushiswapList", { enumerable: true, get: function () { return Sushiswap_1.list; } });
|
|
24
|
+
var Thorchain_1 = require("./tokenLists/Thorchain");
|
|
25
|
+
Object.defineProperty(exports, "ThorchainList", { enumerable: true, get: function () { return Thorchain_1.list; } });
|
|
26
|
+
var Traderjoe_1 = require("./tokenLists/Traderjoe");
|
|
27
|
+
Object.defineProperty(exports, "TraderjoeList", { enumerable: true, get: function () { return Traderjoe_1.list; } });
|
|
28
|
+
var Uniswap_1 = require("./tokenLists/Uniswap");
|
|
29
|
+
Object.defineProperty(exports, "UniswapList", { enumerable: true, get: function () { return Uniswap_1.list; } });
|
|
30
|
+
var Woofi_1 = require("./tokenLists/Woofi");
|
|
31
|
+
Object.defineProperty(exports, "WoofiList", { enumerable: true, get: function () { return Woofi_1.list; } });
|