From 806ad32e9b27552f7f5118330cf5818ab1f0fa8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20-=20=E3=82=A2=E3=83=AC=E3=83=83=E3=82=AF=E3=82=B9?= Date: Fri, 17 May 2024 10:09:58 +0200 Subject: [PATCH] Add astar to default sources (#18) --- default_sources.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/default_sources.go b/default_sources.go index d677c84..1b9f7cd 100644 --- a/default_sources.go +++ b/default_sources.go @@ -156,4 +156,18 @@ var defaultSources = map[uint64]map[string]string{ ERC1155: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/optimism-sepolia/erc1155.json", Misc: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/optimism-sepolia/misc.json", }, + // astar-zkevm + 3776: { + ERC20: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkevm/erc20.json", + ERC721: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkevm/erc721.json", + ERC1155: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkevm/erc1155.json", + Misc: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkevm/misc.json", + }, + // astar-zkyoto + 6038361: { + ERC20: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkyoto/erc20.json", + ERC721: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkyoto/erc721.json", + ERC1155: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkyoto/erc1155.json", + Misc: "https://raw.githubusercontent.com/0xsequence/token-directory/master/index/astar-zkyoto/misc.json", + }, }