Skip to content

Commit

Permalink
fix: disable Gemini token list generation (#145)
Browse files Browse the repository at this point in the history
* fix: Disable Gemini token list generation

* Disable test
  • Loading branch information
chrstph-dvx authored May 24, 2024
1 parent a38c5cd commit a38c0ed
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/generate-token-lists.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
8 changes: 4 additions & 4 deletions __test__/integration/validateLists.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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, [
Expand Down Expand Up @@ -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, [
Expand Down Expand Up @@ -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);

Expand Down

0 comments on commit a38c0ed

Please sign in to comment.