├── .github └── workflows │ └── validate.yml ├── .gitignore ├── .husky └── pre-commit ├── LICENSE ├── README.md ├── index ├── _external │ ├── 1-uniswap.json │ ├── 2-sushiswap.json │ ├── 3-pancakeswap-default.json │ ├── 4-pancakeswap-extended.json │ └── 5-katana.json ├── amoy │ ├── erc20.json │ └── erc721.json ├── apechain │ └── erc20.json ├── arbitrum-nova │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── arbitrum-sepolia │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── arbitrum │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── arc-testnet │ └── erc20.json ├── astar-zkevm │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── astar-zkyoto │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── avalanche-testnet │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── avalanche │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── base-goerli │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── base-sepolia │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── base │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── bnb-testnet │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── bnb │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── deprecated.json ├── etherlink-testnet │ └── erc20.json ├── etherlink │ └── erc20.json ├── external.json ├── gnosis │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── homeverse-testnet │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── homeverse │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── index.json ├── katana │ └── erc20.json ├── mainnet │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── monad │ └── erc20.json ├── mumbai │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── optimism-sepolia │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── optimism │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── polygon-zkevm │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── polygon │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── rinkeby │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── sandbox-testnet │ └── erc20.json ├── sepolia │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── skale-nebula-gaming-hub-testnet │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json └── skale-nebula-gaming-hub │ ├── erc1155.json │ ├── erc20.json │ ├── erc721.json │ └── misc.json ├── package.json ├── pnpm-lock.yaml └── tools ├── reindex.ts ├── scripts └── jsonlint.sh ├── sync-aave-tokens.ts └── sync-external.ts /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/README.md -------------------------------------------------------------------------------- /index/_external/1-uniswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/_external/1-uniswap.json -------------------------------------------------------------------------------- /index/_external/2-sushiswap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/_external/2-sushiswap.json -------------------------------------------------------------------------------- /index/_external/3-pancakeswap-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/_external/3-pancakeswap-default.json -------------------------------------------------------------------------------- /index/_external/4-pancakeswap-extended.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/_external/4-pancakeswap-extended.json -------------------------------------------------------------------------------- /index/_external/5-katana.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/_external/5-katana.json -------------------------------------------------------------------------------- /index/amoy/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/amoy/erc20.json -------------------------------------------------------------------------------- /index/amoy/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/amoy/erc721.json -------------------------------------------------------------------------------- /index/apechain/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/apechain/erc20.json -------------------------------------------------------------------------------- /index/arbitrum-nova/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-nova/erc1155.json -------------------------------------------------------------------------------- /index/arbitrum-nova/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-nova/erc20.json -------------------------------------------------------------------------------- /index/arbitrum-nova/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-nova/erc721.json -------------------------------------------------------------------------------- /index/arbitrum-nova/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-nova/misc.json -------------------------------------------------------------------------------- /index/arbitrum-sepolia/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-sepolia/erc1155.json -------------------------------------------------------------------------------- /index/arbitrum-sepolia/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-sepolia/erc20.json -------------------------------------------------------------------------------- /index/arbitrum-sepolia/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-sepolia/erc721.json -------------------------------------------------------------------------------- /index/arbitrum-sepolia/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum-sepolia/misc.json -------------------------------------------------------------------------------- /index/arbitrum/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum/erc1155.json -------------------------------------------------------------------------------- /index/arbitrum/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum/erc20.json -------------------------------------------------------------------------------- /index/arbitrum/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum/erc721.json -------------------------------------------------------------------------------- /index/arbitrum/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arbitrum/misc.json -------------------------------------------------------------------------------- /index/arc-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/arc-testnet/erc20.json -------------------------------------------------------------------------------- /index/astar-zkevm/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkevm/erc1155.json -------------------------------------------------------------------------------- /index/astar-zkevm/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkevm/erc20.json -------------------------------------------------------------------------------- /index/astar-zkevm/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkevm/erc721.json -------------------------------------------------------------------------------- /index/astar-zkevm/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkevm/misc.json -------------------------------------------------------------------------------- /index/astar-zkyoto/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkyoto/erc1155.json -------------------------------------------------------------------------------- /index/astar-zkyoto/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkyoto/erc20.json -------------------------------------------------------------------------------- /index/astar-zkyoto/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkyoto/erc721.json -------------------------------------------------------------------------------- /index/astar-zkyoto/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/astar-zkyoto/misc.json -------------------------------------------------------------------------------- /index/avalanche-testnet/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche-testnet/erc1155.json -------------------------------------------------------------------------------- /index/avalanche-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche-testnet/erc20.json -------------------------------------------------------------------------------- /index/avalanche-testnet/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche-testnet/erc721.json -------------------------------------------------------------------------------- /index/avalanche-testnet/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche-testnet/misc.json -------------------------------------------------------------------------------- /index/avalanche/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche/erc1155.json -------------------------------------------------------------------------------- /index/avalanche/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche/erc20.json -------------------------------------------------------------------------------- /index/avalanche/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche/erc721.json -------------------------------------------------------------------------------- /index/avalanche/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/avalanche/misc.json -------------------------------------------------------------------------------- /index/base-goerli/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-goerli/erc1155.json -------------------------------------------------------------------------------- /index/base-goerli/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-goerli/erc20.json -------------------------------------------------------------------------------- /index/base-goerli/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-goerli/erc721.json -------------------------------------------------------------------------------- /index/base-goerli/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-goerli/misc.json -------------------------------------------------------------------------------- /index/base-sepolia/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-sepolia/erc1155.json -------------------------------------------------------------------------------- /index/base-sepolia/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-sepolia/erc20.json -------------------------------------------------------------------------------- /index/base-sepolia/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-sepolia/erc721.json -------------------------------------------------------------------------------- /index/base-sepolia/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base-sepolia/misc.json -------------------------------------------------------------------------------- /index/base/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base/erc1155.json -------------------------------------------------------------------------------- /index/base/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base/erc20.json -------------------------------------------------------------------------------- /index/base/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base/erc721.json -------------------------------------------------------------------------------- /index/base/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/base/misc.json -------------------------------------------------------------------------------- /index/bnb-testnet/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb-testnet/erc1155.json -------------------------------------------------------------------------------- /index/bnb-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb-testnet/erc20.json -------------------------------------------------------------------------------- /index/bnb-testnet/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb-testnet/erc721.json -------------------------------------------------------------------------------- /index/bnb-testnet/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb-testnet/misc.json -------------------------------------------------------------------------------- /index/bnb/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb/erc1155.json -------------------------------------------------------------------------------- /index/bnb/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb/erc20.json -------------------------------------------------------------------------------- /index/bnb/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb/erc721.json -------------------------------------------------------------------------------- /index/bnb/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/bnb/misc.json -------------------------------------------------------------------------------- /index/deprecated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/deprecated.json -------------------------------------------------------------------------------- /index/etherlink-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/etherlink-testnet/erc20.json -------------------------------------------------------------------------------- /index/etherlink/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/etherlink/erc20.json -------------------------------------------------------------------------------- /index/external.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/external.json -------------------------------------------------------------------------------- /index/gnosis/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/gnosis/erc1155.json -------------------------------------------------------------------------------- /index/gnosis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/gnosis/erc20.json -------------------------------------------------------------------------------- /index/gnosis/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/gnosis/erc721.json -------------------------------------------------------------------------------- /index/gnosis/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/gnosis/misc.json -------------------------------------------------------------------------------- /index/homeverse-testnet/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse-testnet/erc1155.json -------------------------------------------------------------------------------- /index/homeverse-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse-testnet/erc20.json -------------------------------------------------------------------------------- /index/homeverse-testnet/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse-testnet/erc721.json -------------------------------------------------------------------------------- /index/homeverse-testnet/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse-testnet/misc.json -------------------------------------------------------------------------------- /index/homeverse/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse/erc1155.json -------------------------------------------------------------------------------- /index/homeverse/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse/erc20.json -------------------------------------------------------------------------------- /index/homeverse/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse/erc721.json -------------------------------------------------------------------------------- /index/homeverse/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/homeverse/misc.json -------------------------------------------------------------------------------- /index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/index.json -------------------------------------------------------------------------------- /index/katana/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/katana/erc20.json -------------------------------------------------------------------------------- /index/mainnet/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mainnet/erc1155.json -------------------------------------------------------------------------------- /index/mainnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mainnet/erc20.json -------------------------------------------------------------------------------- /index/mainnet/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mainnet/erc721.json -------------------------------------------------------------------------------- /index/mainnet/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mainnet/misc.json -------------------------------------------------------------------------------- /index/monad/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/monad/erc20.json -------------------------------------------------------------------------------- /index/mumbai/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mumbai/erc1155.json -------------------------------------------------------------------------------- /index/mumbai/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mumbai/erc20.json -------------------------------------------------------------------------------- /index/mumbai/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mumbai/erc721.json -------------------------------------------------------------------------------- /index/mumbai/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/mumbai/misc.json -------------------------------------------------------------------------------- /index/optimism-sepolia/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism-sepolia/erc1155.json -------------------------------------------------------------------------------- /index/optimism-sepolia/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism-sepolia/erc20.json -------------------------------------------------------------------------------- /index/optimism-sepolia/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism-sepolia/erc721.json -------------------------------------------------------------------------------- /index/optimism-sepolia/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism-sepolia/misc.json -------------------------------------------------------------------------------- /index/optimism/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism/erc1155.json -------------------------------------------------------------------------------- /index/optimism/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism/erc20.json -------------------------------------------------------------------------------- /index/optimism/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism/erc721.json -------------------------------------------------------------------------------- /index/optimism/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/optimism/misc.json -------------------------------------------------------------------------------- /index/polygon-zkevm/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon-zkevm/erc1155.json -------------------------------------------------------------------------------- /index/polygon-zkevm/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon-zkevm/erc20.json -------------------------------------------------------------------------------- /index/polygon-zkevm/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon-zkevm/erc721.json -------------------------------------------------------------------------------- /index/polygon-zkevm/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon-zkevm/misc.json -------------------------------------------------------------------------------- /index/polygon/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon/erc1155.json -------------------------------------------------------------------------------- /index/polygon/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon/erc20.json -------------------------------------------------------------------------------- /index/polygon/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon/erc721.json -------------------------------------------------------------------------------- /index/polygon/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/polygon/misc.json -------------------------------------------------------------------------------- /index/rinkeby/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/rinkeby/erc1155.json -------------------------------------------------------------------------------- /index/rinkeby/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/rinkeby/erc20.json -------------------------------------------------------------------------------- /index/rinkeby/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/rinkeby/erc721.json -------------------------------------------------------------------------------- /index/rinkeby/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/rinkeby/misc.json -------------------------------------------------------------------------------- /index/sandbox-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/sandbox-testnet/erc20.json -------------------------------------------------------------------------------- /index/sepolia/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/sepolia/erc1155.json -------------------------------------------------------------------------------- /index/sepolia/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/sepolia/erc20.json -------------------------------------------------------------------------------- /index/sepolia/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/sepolia/erc721.json -------------------------------------------------------------------------------- /index/sepolia/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/sepolia/misc.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub-testnet/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub-testnet/erc1155.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub-testnet/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub-testnet/erc20.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub-testnet/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub-testnet/erc721.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub-testnet/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub-testnet/misc.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub/erc1155.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub/erc1155.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub/erc20.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub/erc721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub/erc721.json -------------------------------------------------------------------------------- /index/skale-nebula-gaming-hub/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/index/skale-nebula-gaming-hub/misc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tools/reindex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/tools/reindex.ts -------------------------------------------------------------------------------- /tools/scripts/jsonlint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/tools/scripts/jsonlint.sh -------------------------------------------------------------------------------- /tools/sync-aave-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/tools/sync-aave-tokens.ts -------------------------------------------------------------------------------- /tools/sync-external.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xsequence/token-directory/HEAD/tools/sync-external.ts --------------------------------------------------------------------------------