Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Disable Gemini token list generation #145

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading