@venusprotocol/chains 0.24.2 → 0.26.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/build/index.mjs +14 -0
- package/package.json +6 -4
package/build/index.mjs
CHANGED
|
@@ -5836,6 +5836,20 @@ const bscTestnet$1 = [
|
|
|
5836
5836
|
decimals: 18,
|
|
5837
5837
|
symbol: "XAUm",
|
|
5838
5838
|
iconSrc: iconSrcs.xaum
|
|
5839
|
+
},
|
|
5840
|
+
{
|
|
5841
|
+
chainId: ChainId.BSC_TESTNET,
|
|
5842
|
+
address: "0x312e39c7641cE64BEccDe53613f07952258fa810",
|
|
5843
|
+
decimals: 6,
|
|
5844
|
+
symbol: "MOCK_USDC",
|
|
5845
|
+
iconSrc: iconSrcs.usdc
|
|
5846
|
+
},
|
|
5847
|
+
{
|
|
5848
|
+
chainId: ChainId.BSC_TESTNET,
|
|
5849
|
+
address: "0xCC3933141a64E26C9317b19CE4BbB4ec2c333bc6",
|
|
5850
|
+
decimals: 8,
|
|
5851
|
+
symbol: "MOCK_WBTC",
|
|
5852
|
+
iconSrc: iconSrcs.wbtc
|
|
5839
5853
|
}
|
|
5840
5854
|
];
|
|
5841
5855
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@venusprotocol/chains",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public",
|
|
@@ -38,24 +38,26 @@
|
|
|
38
38
|
"generate": "genversion --es6 --semi src/constants/version.ts && yarn run generate-manifests && yarn run generate-v-tokens && yarn run build"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
+
"@biomejs/biome": "1.6.4",
|
|
41
42
|
"@rollup/plugin-url": "^8.0.2",
|
|
42
43
|
"@types/semver": "^7.5.8",
|
|
43
44
|
"@venusprotocol/isolated-pools": "^4.3.0",
|
|
44
45
|
"@venusprotocol/typescript-config": "*",
|
|
45
|
-
"@venusprotocol/venus-protocol": "10.2.0-dev.2",
|
|
46
|
+
"@venusprotocol/venus-protocol": "10.2.0-slim-dev.2",
|
|
46
47
|
"@vercel/blob": "^2.0.0",
|
|
47
48
|
"commander": "^14.0.1",
|
|
48
49
|
"genversion": "^3.2.0",
|
|
49
50
|
"npm-run-all": "^4.1.5",
|
|
50
51
|
"react": "^19.2.0",
|
|
51
52
|
"rimraf": "^6.0.1",
|
|
53
|
+
"semver": "^7.7.1",
|
|
52
54
|
"tsdown": "^0.19.0",
|
|
53
55
|
"tsx": "^4.20.5",
|
|
56
|
+
"typescript": "^5.1.6",
|
|
54
57
|
"viem": "^2.23.1",
|
|
55
|
-
"semver": "^7.7.1",
|
|
56
58
|
"vitest": "^3.2.4"
|
|
57
59
|
},
|
|
58
60
|
"dependencies": {
|
|
59
61
|
"@dotenvx/dotenvx": "^1.51.0"
|
|
60
62
|
}
|
|
61
|
-
}
|
|
63
|
+
}
|