From 42ac3e72bf1e4bba29a7f71fcc4b650d1c74f9cd Mon Sep 17 00:00:00 2001 From: Christophe Date: Fri, 24 May 2024 09:23:03 +0000 Subject: [PATCH 1/2] fix: Disable Gemini token list generation --- .github/workflows/generate-token-lists.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/generate-token-lists.yml b/.github/workflows/generate-token-lists.yml index 3524692d..f85c771d 100644 --- a/.github/workflows/generate-token-lists.yml +++ b/.github/workflows/generate-token-lists.yml @@ -69,11 +69,11 @@ jobs: version: true 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: - - ArbTokenLists/arbed_gemini_token_list.json - version: true - command: yarn arbify --l2NetworkID 42161 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/arbed_gemini_token_list.json --tokenList https://www.gemini.com/uniswap/manifest.json --newArbifiedList ./src/ArbTokenLists/arbed_gemini_token_list.json + # - name: Arb1 Arbify Gemini + # paths: + # - ArbTokenLists/arbed_gemini_token_list.json + # version: true + # command: yarn arbify --l2NetworkID 42161 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/arbed_gemini_token_list.json --tokenList https://www.gemini.com/uniswap/manifest.json --newArbifiedList ./src/ArbTokenLists/arbed_gemini_token_list.json - name: Arb1 Arbify CMC paths: @@ -101,11 +101,11 @@ jobs: 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://tokens.uniswap.org && cp ./src/ArbTokenLists/42170_arbed_uniswap_labs.json ./src/ArbTokenLists/42170_arbed_uniswap_labs_default.json - - name: ArbNova Arbify Gemini - paths: - - ArbTokenLists/42170_arbed_gemini_token_list.json - version: true - command: yarn arbify --l2NetworkID 42170 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_gemini_token_list.json --tokenList https://www.gemini.com/uniswap/manifest.json --newArbifiedList ./src/ArbTokenLists/42170_arbed_gemini_token_list.json + # - name: ArbNova Arbify Gemini + # paths: + # - ArbTokenLists/42170_arbed_gemini_token_list.json + # version: true + # command: yarn arbify --l2NetworkID 42170 --prevArbifiedList https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_gemini_token_list.json --tokenList https://www.gemini.com/uniswap/manifest.json --newArbifiedList ./src/ArbTokenLists/42170_arbed_gemini_token_list.json - name: ArbNova Arbify CMC paths: From 1e4e11520a5ca6e29b107af5c0f2a1929d4c1ea3 Mon Sep 17 00:00:00 2001 From: Christophe Date: Fri, 24 May 2024 09:38:11 +0000 Subject: [PATCH 2/2] Disable test --- __test__/integration/validateLists.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/__test__/integration/validateLists.test.ts b/__test__/integration/validateLists.test.ts index 88abf635..45478b13 100644 --- a/__test__/integration/validateLists.test.ts +++ b/__test__/integration/validateLists.test.ts @@ -83,7 +83,7 @@ describe('Token Lists', () => { compareLists(localList, onlineList); }); - it('Gemini', async () => { + it.skip('Gemini', async () => { expect.assertions(2); const [localList, onlineList] = await Promise.all([ runCommand(Action.Arbify, [ @@ -157,7 +157,7 @@ describe('Token Lists', () => { compareLists(localList, onlineList); }); - it('Gemini', async () => { + it.skip('Gemini', async () => { expect.assertions(2); const [localList, onlineList] = await Promise.all([ runCommand(Action.Arbify, [ @@ -295,14 +295,14 @@ describe('Token Lists', () => { describe('External lists tests', () => { it.skip('External lists: check no duplicates', async () => { const lists = [ - 'https://tokenlist.arbitrum.io/ArbTokenLists/arbed_gemini_token_list.json', + // 'https://tokenlist.arbitrum.io/ArbTokenLists/arbed_gemini_token_list.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/arbed_coinmarketcap.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_uniswap_labs_default.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/arbed_uniswap_labs_list.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/arbed_arb_whitelist_era.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/421613_arbed_coinmarketcap.json', 'https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_coinmarketcap.json', - 'https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_gemini_token_list.json', + // 'https://tokenlist.arbitrum.io/ArbTokenLists/42170_arbed_gemini_token_list.json', ]; expect.assertions(lists.length);