Skip to content

Commit

Permalink
Merge pull request #303 from ApeSwapFinance/test/inEVM-testnet
Browse files Browse the repository at this point in the history
Test/in evm testnet
  • Loading branch information
n0mbr3al3at0r10 authored Mar 6, 2024
2 parents aa31fb8 + 17d5d0d commit ce328a4
Show file tree
Hide file tree
Showing 5 changed files with 61 additions and 6 deletions.
26 changes: 26 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,32 @@
},
"active": true
},
"mockUSDT": {
"symbol": "mockUSDT",
"address": {
"2525": "0xA4259F9A8EB2E88ccc9C78bE1BeB27faF54bcc7D"
},
"decimals": {
"2525": 18
},
"liquidityDex": {
"2525": "External"
},
"active": true
},
"mockINJ": {
"symbol": "mockINJ",
"address": {
"2525": "0x4569348D39cc38F4d6a1180573Df73B7b03251d9"
},
"decimals": {
"2525": 18
},
"liquidityDex": {
"2525": "External"
},
"active": true
},
"MockERC20": {
"symbol": "MockERC20",
"address": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ape.swap/apeswap-lists",
"version": "1.8.66",
"version": "1.8.66-test.0",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down Expand Up @@ -28,7 +28,7 @@
"legacy-build": "rimraf ./config && mkdir config && run-func dist/apeswap-lists.cjs.development.js buildLegacyConfig && yarn run format:write"
},
"dependencies": {
"@ape.swap/sdk": "4.4.0",
"@ape.swap/sdk": "4.4.4",
"bignumber.js": "^9.0.2",
"ethers": "^5.6.9",
"path": "^0.12.7"
Expand Down
26 changes: 26 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,32 @@ const tokens: Record<string, Token> = {
},
active: true,
},
mockUSDT: {
symbol: 'mockUSDT',
address: {
[ChainId.INEVM]: '0xA4259F9A8EB2E88ccc9C78bE1BeB27faF54bcc7D',
},
decimals: {
[ChainId.INEVM]: 18,
},
liquidityDex: {
[ChainId.INEVM]: LiquidityDex.External,
},
active: true,
},
mockINJ: {
symbol: 'mockINJ',
address: {
[ChainId.INEVM]: '0x4569348D39cc38F4d6a1180573Df73B7b03251d9',
},
decimals: {
[ChainId.INEVM]: 18,
},
liquidityDex: {
[ChainId.INEVM]: LiquidityDex.External,
},
active: true,
},
MockERC20: {
symbol: 'MockERC20',
address: {
Expand Down
3 changes: 3 additions & 0 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ export enum BillVersion {
V1 = 'V1',
V2 = 'V2',
FixedPrice = 'FixedPrice',
V3 = 'V3',
}

/**
Expand All @@ -100,6 +101,8 @@ export enum BillArtCollection {
ApeBond_Collection1 = 'ApeBond_Collection1',
CexFundBond_Collection1 = 'CexFundBond_Collection1',
PlanetIX_Collection1 = 'PlanetIX_Collection1',
ETH_Collection1 = 'ETH_Collection1',
inEVM_Collection1 = 'inEVM_Collection1',
}

export const defaultBillArtCollection = BillArtCollection.ApeSwap_Collection1
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
"@jridgewell/gen-mapping" "^0.1.0"
"@jridgewell/trace-mapping" "^0.3.9"

"@ape.swap/[email protected].0":
version "4.4.0"
resolved "https://registry.yarnpkg.com/@ape.swap/sdk/-/sdk-4.4.0.tgz#9e4270eb3e6e3702e35114d35708ee0a8eb80447"
integrity sha512-rjr3ZXUbRDPkfn4WIsI/gvCfEJy48R4Lb+vznf/W5eFlpmilVZZusswc/E05Y/Sa3TlCsKhDnyrJb9mziAeMjw==
"@ape.swap/[email protected].4":
version "4.4.4"
resolved "https://registry.yarnpkg.com/@ape.swap/sdk/-/sdk-4.4.4.tgz#27bc1563520975b9894cb99b162166b921419623"
integrity sha512-/nkkAS6QhN0Uf7F38PSjLuMZiW/ZvLlbwB+0tFYL2hNKsWRpW9pgeSrZHWfQGweMxBvqdVTy19ENtQasrN9dhg==
dependencies:
"@uniswap/v2-core" "^1.0.0"
big.js "^5.2.2"
Expand Down

0 comments on commit ce328a4

Please sign in to comment.