Skip to content

Commit

Permalink
fix: Update uniswap token list URL (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
chrstph-dvx authored Mar 12, 2024
1 parent ad4f423 commit b4e2a11
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/generate-token-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
- ArbTokenLists/arbed_uniswap_labs.json
- ArbTokenLists/arbed_uniswap_labs_default.json
version: true
command: yarn arbify --l2NetworkID 42161 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/arbed_uniswap_labs.json --tokenList https://gateway.ipfs.io/ipns/tokens.uniswap.org --newArbifiedList ./src/ArbTokenLists/arbed_uniswap_labs.json && cp ./src/ArbTokenLists/arbed_uniswap_labs.json ./src/ArbTokenLists/arbed_uniswap_labs_default.json
command: yarn arbify --l2NetworkID 42161 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/arbed_uniswap_labs.json --tokenList https://tokens.uniswap.org --newArbifiedList ./src/ArbTokenLists/arbed_uniswap_labs.json && cp ./src/ArbTokenLists/arbed_uniswap_labs.json ./src/ArbTokenLists/arbed_uniswap_labs_default.json

- name: Arb1 Arbify Gemini
paths:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
- ArbTokenLists/42170_arbed_uniswap_labs.json
- ArbTokenLists/42170_arbed_uniswap_labs_default.json
version: true
command: yarn arbify --l2NetworkID 42170 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_uniswap_labs_default.json --newArbifiedList ./src/ArbTokenLists/42170_arbed_uniswap_labs.json --tokenList https://gateway.ipfs.io/ipns/tokens.uniswap.org && cp ./src/ArbTokenLists/42170_arbed_uniswap_labs.json ./src/ArbTokenLists/42170_arbed_uniswap_labs_default.json
command: yarn arbify --l2NetworkID 42170 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_uniswap_labs_default.json --newArbifiedList ./src/ArbTokenLists/42170_arbed_uniswap_labs.json --tokenList https://tokens.uniswap.org && cp ./src/ArbTokenLists/42170_arbed_uniswap_labs.json ./src/ArbTokenLists/42170_arbed_uniswap_labs_default.json

- name: ArbNova Arbify Gemini
paths:
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
paths:
- ArbTokenLists/421614_arbed_uniswap_labs.json
version: true
command: yarn arbify --l2NetworkID 421614 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/421614_arbed_uniswap_labs.json --tokenList https://gateway.ipfs.io/ipns/tokens.uniswap.org --newArbifiedList ./src/ArbTokenLists/421614_arbed_uniswap_labs.json
command: yarn arbify --l2NetworkID 421614 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/421614_arbed_uniswap_labs.json --tokenList https://tokens.uniswap.org --newArbifiedList ./src/ArbTokenLists/421614_arbed_uniswap_labs.json

- name: ArbSepolia Arbify CoinGecko
paths:
Expand Down
6 changes: 3 additions & 3 deletions __test__/integration/validateLists.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ describe('Token Lists', () => {
const [localList, onlineList] = await Promise.all([
runCommand(Action.Arbify, [
'--l2NetworkID=42161',
'--tokenList=https://gateway.ipfs.io/ipns/tokens.uniswap.org',
'--tokenList=https://tokens.uniswap.org',
'--prevArbifiedList=https://tokenlist.arbitrum.io/ArbTokenLists/arbed_uniswap_labs.json',
'--newArbifiedList=./src/ArbTokenLists/arbed_uniswap_labs.json',
]),
Expand Down Expand Up @@ -144,7 +144,7 @@ describe('Token Lists', () => {
const [localList, onlineList] = await Promise.all([
runCommand(Action.Arbify, [
'--l2NetworkID=42170',
'--tokenList=https://gateway.ipfs.io/ipns/tokens.uniswap.org',
'--tokenList=https://tokens.uniswap.org',
'--prevArbifiedList=https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_uniswap_labs.json',
'--newArbifiedList=./src/ArbTokenLists/42170_arbed_uniswap_labs.json',
]),
Expand Down Expand Up @@ -256,7 +256,7 @@ describe('Token Lists', () => {
const [localList, onlineList] = await Promise.all([
runCommand(Action.Arbify, [
'--l2NetworkID=421614',
'--tokenList=https://gateway.ipfs.io/ipns/tokens.uniswap.org',
'--tokenList=https://tokens.uniswap.org',
'--prevArbifiedList=https://tokenlist.arbitrum.io/ArbTokenLists/421614_arbed_uniswap_labs.json',
'--newArbifiedList=./src/ArbTokenLists/421614_arbed_uniswap_labs.json',
]),
Expand Down

0 comments on commit b4e2a11

Please sign in to comment.