Skip to content

Commit

Permalink
fix: use the updated url for treasury token list (#4736)
Browse files Browse the repository at this point in the history
  • Loading branch information
wa0x6e authored May 26, 2024
1 parent ac0d5a3 commit 0bc4eba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/composables/useTreasury.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import snapshot from '@snapshot-labs/snapshot.js';
import { getTokenBalances, ETHER_CONTRACT } from '@/helpers/covalent';
import { TreasuryAsset } from '@/helpers/interfaces';

const TOKEN_LIST_URL = 'https://gateway.ipfs.io/ipns/tokens.uniswap.org';
const TOKEN_LIST_URL = 'https://ipfs.io/ipns/tokens.uniswap.org';

const tokenListContractAddresses = ref<null | string[]>(null);
const treasuryAssets = ref<{ [key: string]: TreasuryAsset[] }>({});
Expand Down

0 comments on commit 0bc4eba

Please sign in to comment.