diff --git a/.eslintrc.js b/.eslintrc.js index ee56fa38..a2be5abd 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -4,12 +4,20 @@ module.exports = { 'plugin:@typescript-eslint/recommended', 'plugin:security/recommended-legacy', 'standard-with-typescript', - 'next/core-web-vitals' + 'next/core-web-vitals', + 'plugin:prettier/recommended' ], + plugins: ['prettier'], parserOptions: { project: './tsconfig.json' }, - ignorePatterns: ['.eslintrc.js', 'next.config.js', 'next-env.d.ts', 'out', '**/examples/**'], + ignorePatterns: [ + '.eslintrc.js', + 'next.config.js', + 'next-env.d.ts', + 'out', + '**/examples/**' + ], rules: { '@typescript-eslint/key-spacing': 0, 'multiline-ternary': 0, diff --git a/.github/scripts/generateApiReference.js b/.github/scripts/generateApiReference.ts similarity index 87% rename from .github/scripts/generateApiReference.js rename to .github/scripts/generateApiReference.ts index fc57459b..6538af3c 100644 --- a/.github/scripts/generateApiReference.js +++ b/.github/scripts/generateApiReference.ts @@ -3,10 +3,11 @@ const { capitalize } = require('lodash') const jsonFile = require('../../components/ApiReference/mainnet-swagger.json') const pathsMetadata = require('../../components/ApiReference/paths-metadata.json') +const txServiceNetworks = require('../../components/ApiReference/tx-service-networks.json') const baseUrl = 'https://safe-transaction-sepolia.safe.global' -const curlify = req => +const curlify = (req: any) => `curl -X ${req.method} https://safe-transaction-sepolia.safe.global/api${ req.url } \\ @@ -62,7 +63,7 @@ const validAfter = '2024-02-23T04:40:36.000Z' const validUntil = '2024-07-11T02:00:36.000Z' const moduleAddress = '0xa581c4A4DB7175302464fF3C06380BC3270b4037' -const getSampleValue = param => { +const getSampleValue = (param: string) => { switch (param) { case 'nonce': return 10 @@ -142,14 +143,14 @@ const getSampleValue = param => { } const generateSampleApiResponse = async ( - path, - pathWithParams, - method, - requestBody + path: string, + pathWithParams: string, + method: string, + requestBody: string ) => { const fetch = await import('node-fetch') - let response + let response: any const url = baseUrl + pathWithParams if (method === 'get') { response = await fetch.default(url).then(async res => { @@ -197,13 +198,13 @@ const generateSampleApiResponse = async ( } } -const slugify = text => text?.replace?.(/ /g, '-').replace(/\//g, '-') -const resolveRef = ref => { +const slugify = (text: string) => text?.replace?.(/ /g, '-').replace(/\//g, '-') +const resolveRef = (ref: string) => { const refName = ref.split('/').pop() - return { refName, ...jsonFile.definitions[refName] } + return { refName, ...jsonFile.definitions[refName as string] } } -const resolveRefs = obj => { +const resolveRefs = (obj: any) => { if (typeof obj === 'object') { for (const key in obj) { if (key === '$ref') { @@ -218,11 +219,11 @@ const resolveRefs = obj => { const mainnetApiJson = resolveRefs(jsonFile) -const addMethodContext = json => ({ +const addMethodContext = (json: any) => ({ ...json, paths: Object.entries(json.paths).reduce((acc, [path, methods]) => { - const newMethods = Object.entries(methods).reduce( - (acc, [method, data]) => ({ + const newMethods = Object.entries(methods as any).reduce( + (acc, [method, data]: [any, any]) => ({ ...acc, [method]: { ...data, @@ -241,7 +242,7 @@ const addMethodContext = json => ({ }, {}) }) -const getApiJson = async url => { +const getApiJson = async (url: string) => { const response = await fetch(url + '/?format=openapi') const json = await response.json() const withContext = addMethodContext(json) @@ -252,10 +253,10 @@ const getApiJson = async url => { return withContext } -const generateMethodContent = (path, method) => { +const generateMethodContent = (path: string, method: string) => { const _method = mainnetApiJson.paths[path][method] const responses = Object.entries(_method.responses).map( - ([code, { schema, ...data }]) => ({ + ([code, { schema, ...data }]: [any, any]) => ({ code, schema: schema?.['$ref'] !== undefined @@ -274,7 +275,7 @@ const generateMethodContent = (path, method) => { const pathWithParams = pathParams?.reduce( (acc, param) => - acc.replace(param, getSampleValue(param.replace(/{|}/g, ''))), + acc.replace(param, getSampleValue(param.replace(/{|}/g, '')) as string), path ) ?? path @@ -297,20 +298,20 @@ const generateMethodContent = (path, method) => { method === 'get' ? undefined : _method.parameters - .filter(p => p.in === 'body') - .map(p => p.schema?.properties) - .reduce((acc, obj) => { + .filter((p: any) => p.in === 'body') + .map((p: any) => p.schema?.properties) + .reduce((acc: any, obj: any) => { for (const key in obj) { acc[key] = getSampleValue(key) } return acc }, {}) - const query = - '?limit=2' + - (_method.parameters.map(p => p.name).includes('safe') - ? `&safe=${sampleSafe}` - : '') + // const query = + // '?limit=2' + + // (_method.parameters.map(p => p.name).includes('safe') + // ? `&safe=${sampleSafe}` + // : '') // This is commented out, as we omit response generation for now. // It is planned to move this into a separate script. @@ -389,13 +390,16 @@ ${sampleResponse} ` } -const generatePathContent = path => +const generatePathContent = (path: string) => `${Object.keys(mainnetApiJson.paths[path]) .filter(method => method !== 'parameters') .map(method => generateMethodContent(path, method)) .join('\n')}` -const generateCategoryContent = category => ` +const generateCategoryContent = (category: { + title: string + paths: string[] +}) => ` ## ${capitalize(category.title)} @@ -404,23 +408,26 @@ const generateCategoryContent = category => ` ${category.paths.map(path => generatePathContent(path)).join('\n')}` const getCategories = () => { - const allMethods = Object.entries(mainnetApiJson.paths) - .map(([k, v]) => Object.values(v)) + const allMethods: any = Object.entries(mainnetApiJson.paths) + .map(([k, v]: [any, any]) => Object.values(v)) .flat() const allCategories = Array.from( new Set( allMethods - .map(method => method.tags) + .map((method: { tags: string[] }) => method.tags) .flat() .filter(Boolean) ) - ) - return allCategories.map(title => ({ + ) as string[] + return allCategories.map((title: string) => ({ title, paths: allMethods - .filter(method => method.tags?.includes(title) && !method.deprecated) - .map(m => m.path) - .filter((path, i, arr) => arr.indexOf(path) === i) + .filter( + (method: { tags: string[]; deprecated: boolean }) => + method.tags?.includes(title) && !method.deprecated + ) + .map((m: { path: string }) => m.path) + .filter((path: string, i: number, arr: any[]) => arr.indexOf(path) === i) })) } @@ -455,6 +462,36 @@ ${categories.map(category => generateCategoryContent(category)).join('\n')} const main = async () => { await getApiJson('https://safe-transaction-mainnet.safe.global') + txServiceNetworks.forEach( + async (network: { chainId: string; txServiceUrl: string }) => { + const networkName = network.txServiceUrl.split('-')[2].split('.')[0] + fs.writeFileSync( + `./pages/core-api/transaction-service-reference/${networkName}.mdx`, + ` +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} +` + ) + } + ) const mdxContent = generateMainContent() fs.writeFileSync( `./components/ApiReference/generated-reference.mdx`, diff --git a/.github/scripts/generateSupportedNetworks.js b/.github/scripts/generateSupportedNetworks.js deleted file mode 100644 index 74eabd82..00000000 --- a/.github/scripts/generateSupportedNetworks.js +++ /dev/null @@ -1,173 +0,0 @@ -// This script generates the supported networks page from the safe-deployments repo. -// It clones the repo, reads the JSON files, and generates the markdown files as well as a _meta.json file for nextra. - -const shell = require('shelljs') -const fs = require('fs') -const path = require('path') - -// Explore a given directory recursively and return all the file paths -const walkPath = dir => { - let results = [] - const list = fs.readdirSync(dir) - list.forEach(function (file) { - const filePath = path.join(dir, file) - const stat = fs.statSync(filePath) - if (stat?.isDirectory()) { - results = results.concat(walkPath(filePath)) - } else { - results.push(filePath) - } - }) - - return results -} - -// Reduce function to deduplicate an array -const deduplicate = (acc, curr) => { - if (acc.includes(curr)) { - return acc - } - - return [...acc, curr] -} - -const supportedNetworksPath = - './pages/advanced/smart-account-supported-networks' - -const generateSupportedNetworks = async () => { - const deploymentRepoUrl = 'https://github.com/safe-global/safe-deployments/' - shell.exec(`git clone ${deploymentRepoUrl} ./deployments`) - shell.rm('-rf', supportedNetworksPath) - - const fetch = await import('node-fetch') - const paths = walkPath('deployments/src/assets').map(p => - p.replace('deployments/src/assets/', '') - ) - - const allNetworks = await fetch - .default('https://chainid.network/chains.json') - .then(res => res.json()) - - const contracts = paths.map(p => { - const file = fs.readFileSync(`deployments/src/assets/${p}`, 'utf8') - const json = JSON.parse(file) - - return Object.entries(json.networkAddresses).map( - ([chainId, addressName]) => { - const blockExplorerUrl = allNetworks.find( - n => n.chainId === parseInt(chainId) - )?.explorers?.[0]?.url - return { - name: p.split('/')[1].split('.')[0], - version: p.split('/')[0], - address: - typeof addressName === 'string' - ? curatedBlockExplorers.includes(blockExplorerUrl) - ? `[${json.deployments[addressName]?.address}](${blockExplorerUrl}/address/${json.deployments[addressName]?.address})` - : json.deployments[addressName]?.address - : '\n - ' + - addressName - .map(a => - curatedBlockExplorers.includes(blockExplorerUrl) - ? addressNameLabels[a] + - ': ' + - `[${json.deployments[a]?.address}](${blockExplorerUrl}/address/${json.deployments[a]?.address})` - : addressNameLabels[a] + - ': ' + - json.deployments[a]?.address - ) - .join('\n - ') + - '\n', - chainId, - chainName: allNetworks.find(n => n.chainId === parseInt(chainId)) - ?.name, - blockExplorerUrl - } - } - ) - }) - - const versions = contracts - .flat() - .map(c => c.version) - .reduce(deduplicate, []) - .reverse() - - shell.mkdir(supportedNetworksPath) - - versions.forEach(version => { - const _contracts = contracts.flat().filter(c => c.version === version) - - const networks = Object.entries( - _contracts.reduce((acc, curr) => { - const { chainId, chainName } = curr - if (acc[chainId]) { - return acc - } - - return { - ...acc, - [chainId]: chainName - } - }, {}) - ) - - const content = `# ${version} - -This page lists the addresses of all the Safe contracts \`${version}\` grouped by chain. - -## Networks -${networks - .map(([chainId, network]) => { - return ` -### ${network} - -This network's chain ID is ${chainId}. - -${_contracts - .filter(c => c.chainId === chainId) - .map(c => `- \`${c.name}.sol\`: ${c.address}`) - .join('\n')} -` - }) - .join('\n')} - - ` - fs.writeFileSync(`${supportedNetworksPath}/${version}.md`, content) - }) - - // Generate _meta.json file to order versions in descending order - fs.writeFileSync( - `${supportedNetworksPath}/_meta.json`, - JSON.stringify( - versions.reduce((acc, curr) => ({ ...acc, [curr]: curr }), {}), - null, - 2 - ) - ) - - shell.rm('-rf', './deployments') -} - -generateSupportedNetworks() - -const addressNameLabels = { - canonical: 'Canonical contracts', - eip155: 'EIP-155 contracts', - zkSync: 'zkSync contracts' -} - -const curatedBlockExplorers = [ - 'https://etherscan.io', - 'https://goerli.etherscan.io/', - 'https://optimistic.etherscan.io/', - 'https://bscscan.com', - 'https://testnet.bscscan.com', - 'https://gnosisscan.io', - 'https://polygonscan.com', - 'https://mumbai.polygonscan.com/', - 'https://zkevm.polygonscan.com/', - 'https://explorer.zksync.io/', - 'https://basescan.org/', - 'https://sepolia.basescan.org/' -] diff --git a/.github/scripts/generateSupportedNetworks.ts b/.github/scripts/generateSupportedNetworks.ts new file mode 100644 index 00000000..7c7704d4 --- /dev/null +++ b/.github/scripts/generateSupportedNetworks.ts @@ -0,0 +1,208 @@ +// This script generates the supported networks page from the safe-deployments repo. +// It clones the repo, reads the JSON files, and generates the markdown files as well as a _meta.json file for nextra. + +const shell = require('shelljs') +const fs = require('fs') +const path = require('path') + +interface Network { + name: string + chainId: number + addressName: string | Array + shortName: string + icon?: string + explorers: Array<{ url: string }> +} + +// Explore a given directory recursively and return all the file paths +const walkPath = (dir: string) => { + let results: string[] = [] + const list = fs.readdirSync(dir) + list.forEach(function (file: string) { + const filePath: string = path.join(dir, file) + const stat = fs.statSync(filePath) + if (stat?.isDirectory()) { + results = results.concat(walkPath(filePath)) + } else { + results.push(filePath) + } + }) + + return results +} + +// Reduce function to deduplicate an array +const deduplicate = (acc: any, curr: any) => { + if (acc.includes(curr)) { + return acc + } + + return [...acc, curr] +} + +const shortNameToIconName = (shortName: string): string | null => { + switch (shortName) { + case 'eth': + return 'ethereum' + case 'oeth': + return 'optimism-ethereum' + case 'kal': + return 'meta' + case 'bsc': + case 'bnbt': + return 'binance-smart-chain' + case 'gno': + return 'gnosis-gno' + case 'zks': + return 'zk-sync' + case 'pol': + return 'polygon' + case 'flr': + return 'flare' + case 'cflr': + case 'sgb': + return 'songbird' + case 'cro': + return 'cronos' + case 'rsk': + case 'trsk': + return 'rsk-smart-bitcoin' + case 'TST': + return 'thundercore' + case 'TelosEVM': + case 'TelosEVMTestnet': + return 'telos' + case 'Bobabeam': + case 'Boba': + case 'BobaBnbTestnet': + case 'BobaBnb': + case 'bobaavax': + return 'boba-network' + case 'darwinia': + return 'darwinia-network' + default: + return shortName + } +} + +const targetFilePath = './components/SupportedNetworks/networks.json' + +const addressNameLabels = { + canonical: 'Canonical contracts', + eip155: 'EIP-155 contracts', + zkSync: 'zkSync contracts' +} + +const getDeployedContractsFromGithubRepo = async ( + allNetworks: Network[], + module: boolean | undefined = false +) => { + const deploymentRepoUrl = `https://github.com/safe-global/safe-${ + module ? 'modules-' : '' + }deployments/` + const repoDestination = module ? 'modules' : 'deployments' + + shell.exec(`git clone ${deploymentRepoUrl} ${repoDestination}`) + + let paths = walkPath(repoDestination + '/src/assets').map(p => + p.replace(repoDestination + '/src/assets/', '') + ) + + const contracts = paths + .map(p => { + const file = fs.readFileSync(repoDestination + `/src/assets/${p}`, 'utf8') + const json = JSON.parse(file) + + return Object.entries(json.networkAddresses).map( + ([chainId, addressName]) => { + const blockExplorerUrl = + allNetworks.find(n => n.chainId === parseInt(chainId)) + ?.explorers?.[0]?.url ?? '' + return { + name: p.split('/')[module ? 2 : 1].split('.')[0], + version: p.split('/')[module ? 1 : 0], + address: + typeof addressName === 'string' + ? (json.deployments?.[addressName]?.address ?? + json.networkAddresses[chainId]) + : undefined, + addresses: + typeof addressName === 'string' + ? undefined + : (addressName as Array).map(a => [ + addressNameLabels[a as 'canonical'], + json.deployments[a]?.address + ]), + chainId, + chainName: allNetworks.find(n => n.chainId === parseInt(chainId)) + ?.name, + blockExplorerUrl, + ...(module ? { moduleName: p.split('/')[0] } : {}) + } + } + ) + }) + .flat() + + shell.rm('-rf', repoDestination) + return contracts +} + +const generateSupportedNetworks = async () => { + shell.rm('-rf', targetFilePath) + + const fetch = await import('node-fetch') + + const allNetworks = await fetch + .default('https://chainid.network/chains.json') + .then(res => res.json() as Promise) + + const smartAccounts = await getDeployedContractsFromGithubRepo(allNetworks) + const modules = await getDeployedContractsFromGithubRepo(allNetworks, true) + + const networks = await Promise.all( + allNetworks + .filter(n => + smartAccounts.map(c => c.chainId).includes(n.chainId.toString()) + ) + .map(async n => { + // Test if the icon exists in the llamao icons, if not, use the cryptocurrency-icons repo + const llamaoIcon = `https://icons.llamao.fi/icons/chains/rsz_${n.icon}.png` + const shortNameIcon = `https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/${shortNameToIconName( + n.shortName + )}.png` + + const getRawGithubContent = async () => + await fetch + .default(shortNameIcon) + .then(res => { + if (res.ok) return shortNameIcon + else throw new Error() + }) + .catch(() => '/unknown-logo.png') + + const iconUrl = + n.icon == null + ? ((await getRawGithubContent()) as string) + : ((await fetch + .default(llamaoIcon) + .then(async res => { + if (res.ok) return llamaoIcon + else throw new Error() + }) + .catch(async () => await getRawGithubContent())) as string) + return { + ...n, + smartAccounts: smartAccounts.filter( + c => c.chainId === n.chainId.toString() + ), + modules: modules.filter(c => c.chainId === n.chainId.toString()), + iconUrl + } + }) + ) + + fs.writeFileSync(targetFilePath, JSON.stringify(networks, null, 2)) +} + +generateSupportedNetworks() diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 00000000..f1283b1a --- /dev/null +++ b/.prettierrc @@ -0,0 +1,7 @@ +{ + "semi": false, + "singleQuote": true, + "trailingComma": "none", + "jsxSingleQuote": true, + "arrowParens": "avoid" +} diff --git a/.vscode/extensions.json b/.vscode/extensions.json index db692225..8c8afd44 100644 --- a/.vscode/extensions.json +++ b/.vscode/extensions.json @@ -1,6 +1,6 @@ { "recommendations": [ - "numso.prettier-standard-vscode", + "esbenp.prettier-vscode", "chrischinchilla.vale-vscode", "unifiedjs.vscode-mdx", "znck.grammarly" diff --git a/components/ApiReference/ApiReference.tsx b/components/ApiReference/ApiReference.tsx index ac38b0f5..041d1dc9 100644 --- a/components/ApiReference/ApiReference.tsx +++ b/components/ApiReference/ApiReference.tsx @@ -20,7 +20,7 @@ import css from './styles.module.css' const renderedMdx = -const ApiReference: React.FC = () => { +const ApiReference: React.FC<{ networkName: string }> = ({ networkName }) => { const { headings } = useData() const [isFilterDrawerOpen, setIsFilterDrawerOpen] = useState(false) const currentIndex = useCurrentTocIndex(headings as Heading[], 100) @@ -44,7 +44,7 @@ const ApiReference: React.FC = () => { pr={1} maxWidth={['100%', 'calc(100% - 200px - 16px)']} > - + + + + + ) +} + +export default NetworkCard diff --git a/components/SupportedNetworks/NetworkModal.tsx b/components/SupportedNetworks/NetworkModal.tsx new file mode 100644 index 00000000..3fb5deaa --- /dev/null +++ b/components/SupportedNetworks/NetworkModal.tsx @@ -0,0 +1,346 @@ +import React, { useCallback, useEffect } from 'react' +import Img from 'next/image' +import { + Typography, + Chip, + Button, + Grid, + Card, + Accordion, + AccordionSummary, + AccordionDetails +} from '@mui/material' +import { capitalize } from 'lodash' +import Modal from '@mui/material/Modal' +import ClearIcon from '@mui/icons-material/Clear' +import OpenInNewIcon from '@mui/icons-material/OpenInNew' + +import css from './styles.module.css' +import { type Contract, networks, type Network } from './Networks' + +import ChevronDownIcon from '../../assets/svg/chevron-down.svg' +import { Link } from 'nextra-theme-docs' +import { apiServices, curatedBlockExplorers } from './utils' +import txServiceNetworks from '../ApiReference/tx-service-networks.json' +import { useRouter } from 'next/router' +import { CopyToClipboard } from 'nextra/components' + +const NetworkModal: React.FC<{ + versions: string[] +}> = ({ versions }) => { + const { query, push } = useRouter() + const { expand, ...rest } = query + + const network = networks.find( + network => network?.chainId === parseInt(query.expand as string) + ) + + const moduleTypes = network?.modules + .map(m => m.moduleName?.split('-').map(capitalize).join(' ')) + .filter((v, i, a) => a.indexOf(v) === i) + + const handleClose = useCallback((): void => { + void push({ + query: { + ...rest + } + }) + }, [push, rest]) + + useEffect(() => { + const handleClickAway: (event: MouseEvent) => void = event => { + const target = event.target as HTMLElement + if (target?.id === 'backdrop') { + handleClose() + } + } + if (typeof window !== 'undefined') { + window.addEventListener('click', handleClickAway) + } + return () => { + if (typeof window !== 'undefined') { + window.removeEventListener('click', handleClickAway) + } + } + }, [handleClose]) + + return ( + + <> + + + + + network-logo + + + {network?.name} + + + Chain ID: {network?.chainId} + + {txServiceNetworks + .map(n => n.chainId) + .includes(network?.chainId ?? 0) && ( + <> + {/* + {'Testnet'} + */} + + Services + + {apiServices(network?.chainId.toString() ?? '0').map(s => ( + + + {s.name} + + + } + /> + + ))} + + )} + + Smart Account + + {versions + .filter(v => + network?.smartAccounts.map(c => c.version).includes(v) + ) + .map((version, idx) => ( + + }> + {version} + + + + {network?.smartAccounts + .filter(c => c.version === version) + .map((contract, idx) => ( + + ))} + + + ))} + {moduleTypes?.length != null && moduleTypes.length > 0 && ( + + Modules + + )} + {moduleTypes?.map((type, idx) => { + const versions = network?.modules + .filter( + m => + m.moduleName?.split('-').map(capitalize).join(' ') === type + ) + .map(m => m.version) + .filter((v, i, a) => a.indexOf(v) === i) + return ( + + }> + {type} + + + + {versions?.reverse().map(version => ( +
+ + {version} + + {network?.modules + .filter( + m => + m.moduleName + ?.split('-') + .map(capitalize) + .join(' ') === type && m.version === version + ) + .map(contract => { + const hasBlockExplorer = + curatedBlockExplorers.includes( + network?.explorers?.[0].url + ) + return ( + + ) + })} +
+ ))} +
+
+ ) + })} +
+
+ +
+ ) +} + +function splitAddress(address: string, charDisplayed: number = 8): string { + const firstPart = address.slice(0, charDisplayed) + const lastPart = address.slice(address.length - charDisplayed) + + return `${firstPart}...${lastPart}` +} + +export const SplitAddress: React.FC<{ address: string }> = ({ address }) => { + return ( + <> + {splitAddress(address)} + address} style={{ marginLeft: '8px' }} /> + + ) +} + +const ContractAddress: React.FC<{ + contract: Contract + hasBlockExplorer: boolean + network: Network +}> = ({ contract, network, hasBlockExplorer }) => { + return ( +
  • + {contract.name}.sol:{' '} + + {(contract.address?.length ?? 0) > 0 ? ( + hasBlockExplorer ? ( + <> + + {splitAddress(contract.address ?? '')} + + contract.address ?? ''} /> + + ) : ( + + ) + ) : ( + contract.addresses?.map((a: [string, string]) => + hasBlockExplorer ? ( +
  • + {a[0].slice(0, -1)}:{' '} + + {a[1]} + + a[1]} /> +
  • + ) : ( +
  • + {a[0].slice(0, -1)}: {} +
  • + ) + ) + )} + + + ) +} + +export default NetworkModal diff --git a/components/SupportedNetworks/Networks.tsx b/components/SupportedNetworks/Networks.tsx new file mode 100644 index 00000000..d4f49ab2 --- /dev/null +++ b/components/SupportedNetworks/Networks.tsx @@ -0,0 +1,562 @@ +import { + Divider, + Grid, + Typography, + Chip, + TextField, + InputAdornment, + Button, + Dialog, + AppBar, + Toolbar, + IconButton, + Box, + Link, + Container, + useMediaQuery +} from '@mui/material' +import type { GridProps } from '@mui/material' +import React, { useEffect, useMemo, useState } from 'react' +import { useRouter } from 'next/router' +import NextLink from 'next/link' +import type { NextRouter } from 'next/router' +import { capitalize } from 'lodash' +import { sendGAEvent } from '@next/third-parties/google' +import AddIcon from '@mui/icons-material/Add' + +import NetworkCard from './Card' +import NetworkModal from './NetworkModal' +import { theme } from '../../styles/theme' +import { useNetworksSearch } from './useNetworksSearch' +import { SidebarAccordion } from './SidebarAccordion' +import { apiServices, deprecatedNetworks } from './utils' +import { palette } from '../../styles/palette' +import deployments from './networks.json' +import txServiceNetworks from '../ApiReference/tx-service-networks.json' +import css from './styles.module.css' +import SearchIcon from '../../assets/svg/search.svg' +import CrossIcon from '../../assets/svg/cross.svg' +import CloseIcon from '../../assets/svg/close.svg' +import FilterIcon from '../../assets/svg/filter.svg' +import ArrowBackIcon from '../../assets/svg/arrow-back.svg' + +export const networks = deployments.filter( + network => !deprecatedNetworks.includes(network.chainId) +) as Network[] + +const modules = deployments + .map(network => + network.modules.map(m => m.moduleName?.split('-').map(capitalize).join(' ')) + ) + .flat(2) + .filter((v, i, a) => a.indexOf(v) === i) + +const versions = networks + .map(network => network.smartAccounts.map(c => c.version)) + .flat(2) + .filter((v, i, a) => a.indexOf(v) === i) + .reverse() + +export interface Contract { + name: string + version: string + address?: string + addresses?: Array<[string, string]> + chainId: string + chainName: string + blockExplorerUrl: string + moduleName?: string +} + +export interface Network { + name: string + chainId: number + shortName: string + iconUrl: string + icon?: string + smartAccounts: Contract[] + modules: Contract[] + explorers: Array<{ url: string }> +} + +const isMatch = ( + all: string[], + selected: string[], + strict?: boolean +): boolean => { + // No selection means no filter applied + if (selected.length === 0) { + return true + } + + return selected[strict === true ? 'every' : 'some'](item => { + return all.includes(item) + }) +} + +export const _getFilteredNetworks = ({ + networks, + selectedVersions, + selectedServices, + selectedModules +}: { + networks: Network[] + selectedVersions: string[] + selectedServices: string[] + selectedModules: string[] +}): Network[] => + networks.filter( + network => + isMatch( + network.smartAccounts.map(c => c.version).flat(), + selectedVersions, + true + ) && + isMatch( + txServiceNetworks.map(n => n.chainId).includes(network.chainId) + ? apiServices(network.chainId.toString()).map(s => s.name) + : [], + selectedServices, + true + ) && + isMatch( + network.modules + .map(m => m.moduleName?.split('-').map(capitalize).join(' ')) + .filter((v, i, a) => a.indexOf(v) === i) as string[], + selectedModules, + true + ) + ) + +const GRID_SPACING: GridProps['spacing'] = { + xs: 2, + md: '30px' +} + +const PAGE_LENGTH = 12 + +const getPage = (query: NextRouter['query']): number => { + const page = Array.isArray(query.page) ? query.page[0] : query.page + + return parseInt(page ?? '1') +} + +export const getFilters = ( + query: NextRouter['query'], + filter: string +): string[] => { + const filters = Array.isArray(query[filter]) + ? query[filter] + : ([query[filter] ?? ''] as string[]) + + return ( + filters?.map(f => decodeURIComponent(f)).filter(f => f.length !== 0) ?? [] + ) +} + +const getSearchQuery = (query: NextRouter['query']): string => { + const searchQuery = Array.isArray(query.search) + ? query.search[0] + : query.search + return decodeURIComponent(searchQuery ?? '') +} + +const SupportedNetworks: React.FC = () => { + const { query, push } = useRouter() + const [isFilterDrawerOpen, setIsFilterDrawerOpen] = useState(false) + const [scrollPosition, setScrollPosition] = useState(0) + const isSmOrHigher = useMediaQuery(theme.breakpoints.up('sm')) + + const searchQuery = getSearchQuery(query) + const selectedVersions = getFilters(query, 'version') + const selectedServices = getFilters(query, 'service') + const selectedModules = getFilters(query, 'module') + + const setSelectedFilter = (filters: string[], filterName: string): void => { + void push( + { + query: { + ...query, + [filterName]: filters + } + }, + undefined, + { shallow: true } + ) + } + + const page = getPage(query) + + const onResetSearch = (): void => { + void push( + { + query: { + ...Object.fromEntries( + Object.entries(query).filter(([key]) => key !== 'search') + ) + } + }, + undefined, + { shallow: true } + ) + } + + const onResetFilters = (): void => { + void push( + { + query: { + ...Object.fromEntries( + Object.entries(query).filter( + ([key]) => + key !== 'version' && key !== 'service' && key !== 'module' + ) + ) + } + }, + undefined, + { shallow: true } + ) + } + + const onSelect = (prev: string[], filterName: string) => { + return (property: string, checked: boolean) => { + if (checked) { + setSelectedFilter(prev.concat(property), filterName) + sendGAEvent('event', 'supported_networks_filter', { + event_label: property, + filter_name: filterName + }) + } else { + setSelectedFilter( + prev.filter(item => item !== property), + filterName + ) + } + } + } + + const onSelectVersion = onSelect(selectedVersions, 'version') + const onSelectService = onSelect(selectedServices, 'service') + const onSelectModule = onSelect(selectedModules, 'module') + + const noFilters = useMemo( + () => + selectedServices.length === 0 && + selectedVersions.length === 0 && + selectedModules.length === 0, + + [selectedServices, selectedVersions, selectedModules] + ) + + // Type filtered results + const filteredResources = useMemo(() => { + if (noFilters) { + return networks + } + + return _getFilteredNetworks({ + networks, + selectedVersions, + selectedServices, + selectedModules + }) + }, [noFilters, selectedServices, selectedVersions, selectedModules]) + + // Search results + const searchResults = useNetworksSearch(filteredResources, searchQuery) + + // Paginated filtered/search-based results + const visibleResults = searchResults.slice(0, PAGE_LENGTH * page) + + const sidebar = ( + <> + + + + + s.name)} + selectedItems={selectedServices} + onChange={onSelectService} + /> + + + ) + + const handleScroll = (): void => { + const position = window.scrollY + setScrollPosition(position) + } + + useEffect(() => { + window.addEventListener('scroll', handleScroll, { passive: true }) + + return () => { + window.removeEventListener('scroll', handleScroll) + } + }, []) + + useEffect(() => { + if ( + scrollPosition > page * (isSmOrHigher ? 1800 : 3000) && + visibleResults.length < searchResults.length + ) { + void push({ query: { ...query, page: page + 1 } }, undefined, { + scroll: false + }) + } + }, [ + scrollPosition, + push, + visibleResults.length, + searchResults.length, + query, + page, + isSmOrHigher + ]) + + return ( + <> + + + ← Go to Advanced + + + + + Supported Networks + + + + + ), + endAdornment: + searchQuery.length !== 0 ? ( + + + + + + ) : undefined + }} + value={searchQuery} + sx={{ border: 'none', width: '80%', mt: [2, 0] }} + onChange={e => { + if (e.target.value.length === 0) onResetSearch() + else setSelectedFilter([e.target.value], 'search') + }} + fullWidth + /> + + + + + + + {searchResults.length}{' '} + + result{searchResults.length === 1 ? '' : 's'} + + + {!noFilters && ( + + Reset all + + )} + + + + + {selectedVersions.map(version => ( + { + onSelectVersion(version, false) + }} + deleteIcon={} + sx={{ + borderRadius: '4px', + height: '23px', + fontSize: '14px', + cursor: 'pointer' + }} + /> + ))} + {selectedServices.map(service => ( + { + onSelectService(service, false) + }} + deleteIcon={} + sx={{ + borderRadius: '4px', + height: '23px', + fontSize: '14px', + cursor: 'pointer' + }} + /> + ))} + + + + {sidebar} + + + + {visibleResults.length > 0 ? ( + + {visibleResults.map((network, idx) => ( + + + + ))} + + ) : ( + + + + No results found for{' '} + {searchQuery.length !== 0 + ? `"${searchQuery}"` + : 'selected filters'} + + + Try searching something else + + + )} + + + + + + + { + setIsFilterDrawerOpen(false) + }} + className={css.backButton} + disableRipple + > + + + + Filter + + + +
    + {sidebar} + + + + +
    +
    +
    + + + ) +} + +export default SupportedNetworks diff --git a/components/SupportedNetworks/SidebarAccordion.tsx b/components/SupportedNetworks/SidebarAccordion.tsx new file mode 100644 index 00000000..7946aa57 --- /dev/null +++ b/components/SupportedNetworks/SidebarAccordion.tsx @@ -0,0 +1,62 @@ +import { + Typography, + Accordion, + AccordionSummary, + AccordionDetails, + Checkbox, + List, + ListItem, + FormControlLabel +} from '@mui/material' + +import ChevronDownIcon from '../../assets/svg/chevron-down.svg' + +import css from './styles.module.css' +import React from 'react' + +export const SidebarAccordion: React.FC<{ + title: string + items: string[] + selectedItems: string[] + onChange: (item: string, checked: boolean) => void +}> = ({ title, items, selectedItems, onChange }) => { + return ( + + }> + + {title} + + + + + + {items.map(item => ( + + { + onChange(item, checked) + }} + checked={selectedItems.includes(item)} + edge='end' + /> + } + componentsProps={{ typography: { variant: 'body2' } }} + className={css.label} + /> + + ))} + + + + ) +} diff --git a/components/SupportedNetworks/index.tsx b/components/SupportedNetworks/index.tsx new file mode 100644 index 00000000..f50eee9d --- /dev/null +++ b/components/SupportedNetworks/index.tsx @@ -0,0 +1,5 @@ +import dynamic from 'next/dynamic' + +const SupportedNetworksPage = dynamic(async () => await import('./Networks')) + +export default SupportedNetworksPage diff --git a/components/SupportedNetworks/networks.json b/components/SupportedNetworks/networks.json new file mode 100644 index 00000000..38b72858 --- /dev/null +++ b/components/SupportedNetworks/networks.json @@ -0,0 +1,48475 @@ +[ + { + "name": "Ethereum Mainnet", + "chain": "ETH", + "icon": "ethereum", + "rpc": [ + "https://mainnet.infura.io/v3/${INFURA_API_KEY}", + "wss://mainnet.infura.io/ws/v3/${INFURA_API_KEY}", + "https://api.mycryptoapi.com/eth", + "https://cloudflare-eth.com", + "https://ethereum-rpc.publicnode.com", + "wss://ethereum-rpc.publicnode.com", + "https://mainnet.gateway.tenderly.co", + "wss://mainnet.gateway.tenderly.co", + "https://rpc.blocknative.com/boost", + "https://rpc.flashbots.net", + "https://rpc.flashbots.net/fast", + "https://rpc.mevblocker.io", + "https://rpc.mevblocker.io/fast", + "https://rpc.mevblocker.io/noreverts", + "https://rpc.mevblocker.io/fullprivacy", + "https://eth.drpc.org", + "wss://eth.drpc.org" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ethereum.org", + "shortName": "eth", + "chainId": 1, + "networkId": 1, + "slip44": 60, + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "explorers": [ + { + "name": "etherscan", + "url": "https://etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://eth.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://ethereum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "gnosis_safe", + "version": "v1.0.0", + "address": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.0.0", + "address": "0x12302fE9c02ff50939BaAaaf415fc226C078613C", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "1", + "chainName": "Ethereum Mainnet", + "blockExplorerUrl": "https://etherscan.io", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/ethereum.png" + }, + { + "name": "Ropsten", + "title": "Ethereum Testnet Ropsten", + "chain": "ETH", + "rpc": [ + "https://ropsten.infura.io/v3/${INFURA_API_KEY}", + "wss://ropsten.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=3&address=${ADDRESS}", + "https://faucet.ropsten.be?${ADDRESS}" + ], + "nativeCurrency": { + "name": "Ropsten Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://github.com/ethereum/ropsten", + "shortName": "rop", + "chainId": 3, + "networkId": 3, + "slip44": 1, + "ens": { + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" + }, + "explorers": [ + { + "name": "etherscan", + "url": "https://ropsten.etherscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "3", + "chainName": "Ropsten", + "blockExplorerUrl": "https://ropsten.etherscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Rinkeby", + "title": "Ethereum Testnet Rinkeby", + "chain": "ETH", + "rpc": [ + "https://rinkeby.infura.io/v3/${INFURA_API_KEY}", + "wss://rinkeby.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=4&address=${ADDRESS}", + "https://faucet.rinkeby.io" + ], + "nativeCurrency": { + "name": "Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.rinkeby.io", + "shortName": "rin", + "chainId": 4, + "networkId": 4, + "slip44": 1, + "ens": { + "registry": "0xe7410170f87102df0055eb195163a03b7f2bff4a" + }, + "explorers": [ + { + "name": "etherscan-rinkeby", + "url": "https://rinkeby.etherscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "gnosis_safe", + "version": "v1.0.0", + "address": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.0.0", + "address": "0x12302fE9c02ff50939BaAaaf415fc226C078613C", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "4", + "chainName": "Rinkeby", + "blockExplorerUrl": "https://rinkeby.etherscan.io", + "moduleName": "allowance-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Goerli", + "title": "Ethereum Testnet Goerli", + "chain": "ETH", + "rpc": [ + "https://goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://goerli.infura.io/v3/${INFURA_API_KEY}", + "https://rpc.goerli.mudit.blog/", + "https://ethereum-goerli-rpc.publicnode.com", + "wss://ethereum-goerli-rpc.publicnode.com", + "https://goerli.gateway.tenderly.co", + "wss://goerli.gateway.tenderly.co" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=5&address=${ADDRESS}", + "https://goerli-faucet.slock.it?address=${ADDRESS}", + "https://faucet.goerli.mudit.blog" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://goerli.net/#about", + "shortName": "gor", + "chainId": 5, + "networkId": 5, + "slip44": 1, + "ens": { + "registry": "0x112234455c3a32fd11230c42e7bccd4a84e02010" + }, + "explorers": [ + { + "name": "etherscan-goerli", + "url": "https://goerli.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout-goerli", + "url": "https://eth-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "gnosis_safe", + "version": "v1.0.0", + "address": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.0.0", + "address": "0x12302fE9c02ff50939BaAaaf415fc226C078613C", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "5", + "chainName": "Goerli", + "blockExplorerUrl": "https://goerli.etherscan.io", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "OP Mainnet", + "chain": "ETH", + "rpc": [ + "https://mainnet.optimism.io", + "https://optimism-rpc.publicnode.com", + "wss://optimism-rpc.publicnode.com", + "https://optimism.gateway.tenderly.co", + "wss://optimism.gateway.tenderly.co", + "https://optimism.drpc.org", + "wss://optimism.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://optimism.io", + "shortName": "oeth", + "chainId": 10, + "networkId": 10, + "explorers": [ + { + "name": "etherscan", + "url": "https://optimistic.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://optimism.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://optimism.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io" + } + ], + "modules": [ + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "social-recovery-module", + "version": "v0.1.0", + "address": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897", + "chainId": "10", + "chainName": "OP Mainnet", + "blockExplorerUrl": "https://optimistic.etherscan.io", + "moduleName": "safe-recovery-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/optimism-ethereum.png" + }, + { + "name": "Metadium Mainnet", + "chain": "META", + "rpc": [ + "https://api.metadium.com/prod" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metadium Mainnet Ether", + "symbol": "META", + "decimals": 18 + }, + "infoURL": "https://metadium.com", + "shortName": "meta", + "chainId": 11, + "networkId": 11, + "slip44": 916, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11", + "chainName": "Metadium Mainnet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/meta.png" + }, + { + "name": "Metadium Testnet", + "chain": "META", + "rpc": [ + "https://api.metadium.com/dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metadium Testnet Ether", + "symbol": "KAL", + "decimals": 18 + }, + "infoURL": "https://metadium.com", + "shortName": "kal", + "chainId": 12, + "networkId": 12, + "slip44": 1, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "12", + "chainName": "Metadium Testnet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/meta.png" + }, + { + "name": "Flare Mainnet", + "chain": "FLR", + "icon": "flare", + "rpc": [ + "https://flare-api.flare.network/ext/C/rpc", + "https://flare.rpc.thirdweb.com", + "https://flare-bundler.etherspot.io", + "https://rpc.ankr.com/flare", + "https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc", + "https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc", + "https://rpc.ftso.au/flare", + "https://flare.enosys.global/ext/C/rpc", + "https://flare.solidifi.app/ext/C/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Flare", + "symbol": "FLR", + "decimals": 18 + }, + "infoURL": "https://flare.network", + "shortName": "flr", + "chainId": 14, + "networkId": 14, + "explorers": [ + { + "name": "blockscout", + "url": "https://flare-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://mainnet.flarescan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "14", + "chainName": "Flare Mainnet", + "blockExplorerUrl": "https://flare-explorer.flare.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/flare.png" + }, + { + "name": "Songbird Testnet Coston", + "chain": "SGB", + "icon": "coston", + "rpc": [ + "https://coston-api.flare.network/ext/C/rpc", + "https://songbird-testnet-coston.rpc.thirdweb.com", + "https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston.enosys.global/ext/C/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.flare.network" + ], + "nativeCurrency": { + "name": "Coston Flare", + "symbol": "CFLR", + "decimals": 18 + }, + "infoURL": "https://flare.network", + "shortName": "cflr", + "chainId": 16, + "networkId": 16, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://coston-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston.testnet.flarescan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "16", + "chainName": "Songbird Testnet Coston", + "blockExplorerUrl": "https://coston-explorer.flare.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/songbird.png" + }, + { + "name": "ThunderCore Testnet", + "chain": "TST", + "rpc": [ + "https://testnet-rpc.thundercore.com", + "https://thundercore-testnet.drpc.org", + "wss://thundercore-testnet.drpc.org" + ], + "faucets": [ + "https://faucet-testnet.thundercore.com" + ], + "nativeCurrency": { + "name": "ThunderCore Testnet Token", + "symbol": "TST", + "decimals": 18 + }, + "infoURL": "https://thundercore.com", + "shortName": "TST", + "chainId": 18, + "networkId": 18, + "slip44": 1, + "explorers": [ + { + "name": "thundercore-blockscout-testnet", + "url": "https://explorer-testnet.thundercore.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "18", + "chainName": "ThunderCore Testnet", + "blockExplorerUrl": "https://explorer-testnet.thundercore.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/thundercore.png" + }, + { + "name": "Songbird Canary-Network", + "chain": "SGB", + "icon": "songbird", + "rpc": [ + "https://songbird-api.flare.network/ext/C/rpc", + "https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc", + "https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc", + "https://rpc.ftso.au/songbird", + "https://songbird.enosys.global/ext/C/rpc", + "https://songbird.solidifi.app/ext/C/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Songbird", + "symbol": "SGB", + "decimals": 18 + }, + "infoURL": "https://flare.network", + "shortName": "sgb", + "chainId": 19, + "networkId": 19, + "explorers": [ + { + "name": "blockscout", + "url": "https://songbird-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://songbird.flarescan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "19", + "chainName": "Songbird Canary-Network", + "blockExplorerUrl": "https://songbird-explorer.flare.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/songbird.png" + }, + { + "name": "Cronos Mainnet", + "chain": "CRO", + "rpc": [ + "https://evm.cronos.org", + "https://cronos-evm-rpc.publicnode.com", + "wss://cronos-evm-rpc.publicnode.com", + "https://cronos.drpc.org", + "wss://cronos.drpc.org" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Cronos", + "symbol": "CRO", + "decimals": 18 + }, + "infoURL": "https://cronos.org/", + "shortName": "cro", + "chainId": 25, + "networkId": 25, + "explorers": [ + { + "name": "Cronos Explorer", + "url": "https://explorer.cronos.org", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "25", + "chainName": "Cronos Mainnet", + "blockExplorerUrl": "https://explorer.cronos.org" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/cronos.png" + }, + { + "name": "Boba Network Rinkeby Testnet", + "chain": "ETH", + "status": "deprecated", + "rpc": [ + "https://rinkeby.boba.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaRinkeby", + "chainId": 28, + "networkId": 28, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://blockexplorer.rinkeby.boba.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://gateway.rinkeby.boba.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "28", + "chainName": "Boba Network Rinkeby Testnet", + "blockExplorerUrl": "https://blockexplorer.rinkeby.boba.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Rootstock Mainnet", + "chain": "Rootstock", + "rpc": [ + "https://public-node.rsk.co", + "https://mycrypto.rsk.co" + ], + "faucets": [], + "icon": "rootstock", + "nativeCurrency": { + "name": "Smart Bitcoin", + "symbol": "RBTC", + "decimals": 18 + }, + "infoURL": "https://rootstock.io", + "shortName": "rsk", + "chainId": 30, + "networkId": 30, + "slip44": 137, + "explorers": [ + { + "name": "Rootstock Explorer", + "url": "https://explorer.rsk.co", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://rootstock.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "30", + "chainName": "Rootstock Mainnet", + "blockExplorerUrl": "https://explorer.rsk.co" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/rsk-smart-bitcoin.png" + }, + { + "name": "Rootstock Testnet", + "chain": "Rootstock", + "rpc": [ + "https://public-node.testnet.rsk.co", + "https://mycrypto.testnet.rsk.co" + ], + "faucets": [ + "https://faucet.rsk.co/" + ], + "icon": "rootstock", + "nativeCurrency": { + "name": "Testnet Smart Bitcoin", + "symbol": "tRBTC", + "decimals": 18 + }, + "infoURL": "https://rootstock.io", + "shortName": "trsk", + "chainId": 31, + "networkId": 31, + "slip44": 1, + "explorers": [ + { + "name": "RSK Testnet Explorer", + "url": "https://explorer.testnet.rsk.co", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "31", + "chainName": "Rootstock Testnet", + "blockExplorerUrl": "https://explorer.testnet.rsk.co" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/rsk-smart-bitcoin.png" + }, + { + "name": "U2U Solaris Mainnet", + "chain": "u2u", + "rpc": [ + "https://rpc-mainnet.uniultra.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Unicorn Ultra", + "symbol": "U2U", + "decimals": 18 + }, + "infoURL": "https://uniultra.xyz", + "shortName": "u2u", + "chainId": 39, + "networkId": 39, + "icon": "u2u", + "explorers": [ + { + "icon": "u2u", + "name": "U2U Explorer", + "url": "https://u2uscan.xyz", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "39", + "chainName": "U2U Solaris Mainnet", + "blockExplorerUrl": "https://u2uscan.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Telos EVM Mainnet", + "chain": "TLOS", + "rpc": [ + "https://mainnet.telos.net/evm", + "https://telos.drpc.org", + "wss://telos.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "infoURL": "https://telos.net", + "shortName": "TelosEVM", + "chainId": 40, + "networkId": 40, + "explorers": [ + { + "name": "teloscan", + "url": "https://teloscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "40", + "chainName": "Telos EVM Mainnet", + "blockExplorerUrl": "https://teloscan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/telos.png" + }, + { + "name": "Telos EVM Testnet", + "chain": "TLOS", + "rpc": [ + "https://testnet.telos.net/evm", + "https://telos-testnet.drpc.org", + "wss://telos-testnet.drpc.org" + ], + "faucets": [ + "https://app.telos.net/testnet/developers" + ], + "nativeCurrency": { + "name": "Telos", + "symbol": "TLOS", + "decimals": 18 + }, + "infoURL": "https://telos.net", + "shortName": "TelosEVMTestnet", + "chainId": 41, + "networkId": 41, + "slip44": 1, + "explorers": [ + { + "name": "teloscan", + "url": "https://testnet.teloscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "41", + "chainName": "Telos EVM Testnet", + "blockExplorerUrl": "https://testnet.teloscan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/telos.png" + }, + { + "name": "LUKSO Mainnet", + "chain": "LUKSO", + "icon": "lukso", + "rpc": [ + "https://rpc.mainnet.lukso.network", + "wss://ws-rpc.mainnet.lukso.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "LUKSO", + "symbol": "LYX", + "decimals": 18 + }, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.execution.mainnet.lukso.network", + "standard": "EIP3091" + } + ], + "infoURL": "https://lukso.network", + "shortName": "lukso", + "chainId": 42, + "networkId": 42, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "redFlags": [ + "reusedChainId" + ], + "smartAccounts": [ + { + "name": "gnosis_safe", + "version": "v1.0.0", + "address": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "proxy_factory", + "version": "v1.0.0", + "address": "0x12302fE9c02ff50939BaAaaf415fc226C078613C", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "42", + "chainName": "LUKSO Mainnet", + "blockExplorerUrl": "https://explorer.execution.mainnet.lukso.network", + "moduleName": "allowance-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/lukso.png" + }, + { + "name": "Darwinia Pangolin Testnet", + "chain": "pangolin", + "rpc": [ + "https://pangolin-rpc.darwinia.network" + ], + "faucets": [ + "https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a" + ], + "nativeCurrency": { + "name": "Pangolin Network Native Token", + "symbol": "PRING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network/", + "shortName": "pangolin", + "chainId": 43, + "networkId": 43, + "slip44": 1, + "explorers": [ + { + "name": "subscan", + "url": "https://pangolin.subscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "43", + "chainName": "Darwinia Pangolin Testnet", + "blockExplorerUrl": "https://pangolin.subscan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/pangolin.png" + }, + { + "name": "Crab Network", + "chain": "crab", + "rpc": [ + "https://crab-rpc.darwinia.network", + "https://crab-rpc.dcdao.box" + ], + "faucets": [], + "nativeCurrency": { + "name": "Crab Network Native Token", + "symbol": "CRAB", + "decimals": 18 + }, + "infoURL": "https://crab.network/", + "shortName": "crab", + "chainId": 44, + "networkId": 44, + "explorers": [ + { + "name": "blockscout", + "url": "https://crab-scan.darwinia.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "44", + "chainName": "Crab Network", + "blockExplorerUrl": "https://crab-scan.darwinia.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Darwinia Network", + "chain": "darwinia", + "rpc": [ + "https://rpc.darwinia.network", + "https://darwinia-rpc.dcdao.box", + "https://darwinia-rpc.dwellir.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Darwinia Network Native Token", + "symbol": "RING", + "decimals": 18 + }, + "infoURL": "https://darwinia.network", + "shortName": "darwinia", + "chainId": 46, + "networkId": 46, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.darwinia.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "46", + "chainName": "Darwinia Network", + "blockExplorerUrl": "https://explorer.darwinia.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/darwinia-network.png" + }, + { + "name": "XDC Network", + "chain": "XDC", + "rpc": [ + "https://erpc.xinfin.network", + "https://rpc.xinfin.network", + "https://rpc1.xinfin.network", + "https://rpc-xdc.icecreamswap.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "XinFin", + "symbol": "XDC", + "decimals": 18 + }, + "infoURL": "https://xinfin.org", + "shortName": "xdc", + "chainId": 50, + "networkId": 50, + "icon": "xdc", + "explorers": [ + { + "name": "xdcscan", + "url": "https://xdcscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://xdc.blocksscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "50", + "chainName": "XDC Network", + "blockExplorerUrl": "https://xdcscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "XDC Apothem Network", + "chain": "XDC", + "rpc": [ + "https://rpc.apothem.network", + "https://erpc.apothem.network" + ], + "faucets": [ + "https://faucet.apothem.network" + ], + "nativeCurrency": { + "name": "XinFin", + "symbol": "TXDC", + "decimals": 18 + }, + "infoURL": "https://xinfin.org", + "shortName": "txdc", + "chainId": 51, + "networkId": 51, + "icon": "xdc", + "explorers": [ + { + "name": "xdcscan", + "url": "https://apothem.xinfinscan.com", + "icon": "blocksscan", + "standard": "EIP3091" + }, + { + "name": "blocksscan", + "url": "https://apothem.blocksscan.io", + "icon": "blocksscan", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "51", + "chainName": "XDC Apothem Network", + "blockExplorerUrl": "https://apothem.xinfinscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BNB Smart Chain Mainnet", + "chain": "BSC", + "rpc": [ + "https://bsc-dataseed1.bnbchain.org", + "https://bsc-dataseed2.bnbchain.org", + "https://bsc-dataseed3.bnbchain.org", + "https://bsc-dataseed4.bnbchain.org", + "https://bsc-dataseed1.defibit.io", + "https://bsc-dataseed2.defibit.io", + "https://bsc-dataseed3.defibit.io", + "https://bsc-dataseed4.defibit.io", + "https://bsc-dataseed1.ninicoin.io", + "https://bsc-dataseed2.ninicoin.io", + "https://bsc-dataseed3.ninicoin.io", + "https://bsc-dataseed4.ninicoin.io", + "https://bsc-rpc.publicnode.com", + "wss://bsc-rpc.publicnode.com", + "wss://bsc-ws-node.nariox.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://www.bnbchain.org/en", + "shortName": "bnb", + "chainId": 56, + "networkId": 56, + "slip44": 714, + "explorers": [ + { + "name": "bscscan", + "url": "https://bscscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://bnb.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "56", + "chainName": "BNB Smart Chain Mainnet", + "blockExplorerUrl": "https://bscscan.com", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/bnb.png" + }, + { + "name": "Syscoin Mainnet", + "chain": "SYS", + "rpc": [ + "https://rpc.syscoin.org", + "https://rpc.ankr.com/syscoin/${ANKR_API_KEY}", + "https://syscoin.public-rpc.com", + "wss://rpc.syscoin.org/wss", + "https://syscoin-evm.publicnode.com", + "wss://syscoin-evm.publicnode.com" + ], + "faucets": [ + "https://faucet.syscoin.org" + ], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://www.syscoin.org", + "shortName": "sys", + "chainId": 57, + "networkId": 57, + "explorers": [ + { + "name": "Syscoin Block Explorer", + "url": "https://explorer.syscoin.org", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "57", + "chainName": "Syscoin Mainnet", + "blockExplorerUrl": "https://explorer.syscoin.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Ethereum Classic", + "title": "Ethereum Classic Mainnet", + "status": "active", + "chain": "ETC", + "icon": "ethereumclassic", + "rpc": [ + "https://etc.rivet.link", + "https://besu-at.etc-network.info", + "https://geth-at.etc-network.info", + "https://etc.etcdesktop.com", + "https://etc.mytokenpocket.vip" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETC", + "decimals": 18 + }, + "infoURL": "https://ethereumclassic.org", + "shortName": "etc", + "chainId": 61, + "networkId": 1, + "slip44": 61, + "explorers": [ + { + "name": "blockscout-ethereum-classic", + "url": "https://etc.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-blockscout-ethereum-classic", + "url": "https://explorer-blockscout.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-alethio-ethereum-classic", + "url": "https://explorer-alethio.etc-network.info", + "standard": "none" + }, + { + "name": "etcnetworkinfo-expedition-ethereum-classic", + "url": "https://explorer-expedition.etc-network.info", + "standard": "none" + }, + { + "name": "hebeblock-ethereum-classic", + "url": "https://etcerscan.com", + "standard": "EIP3091" + }, + { + "name": "oklink-ethereum-classic", + "url": "https://www.oklink.com/etc", + "standard": "EIP3091" + }, + { + "name": "tokenview-ethereum-classic", + "url": "https://etc.tokenview.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "61", + "chainName": "Ethereum Classic", + "blockExplorerUrl": "https://etc.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mordor Testnet", + "title": "Ethereum Classic Mordor Testnet", + "status": "active", + "chain": "ETC", + "icon": "ethereumclassictestnet", + "rpc": [ + "https://rpc.mordor.etccooperative.org", + "https://geth-mordor.etc-network.info" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [ + "https://easy.hebeswap.com/#/faucet", + "https://faucet.mordortest.net" + ], + "nativeCurrency": { + "name": "Mordor Ether", + "symbol": "METC", + "decimals": 18 + }, + "infoURL": "https://ethereumclassic.org/development/testnets", + "shortName": "metc", + "chainId": 63, + "networkId": 7, + "slip44": 1, + "explorers": [ + { + "name": "blockscout-mordor", + "url": "https://etc-mordor.blockscout.com", + "standard": "EIP3091" + }, + { + "name": "etcnetworkinfo-expedition-mordor", + "url": "https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "63", + "chainName": "Mordor Testnet", + "blockExplorerUrl": "https://etc-mordor.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Optimism Kovan", + "title": "Optimism Testnet Kovan", + "chain": "ETH", + "rpc": [ + "https://kovan.optimism.io/" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=69&address=${ADDRESS}" + ], + "nativeCurrency": { + "name": "Kovan Ether", + "symbol": "ETH", + "decimals": 18 + }, + "explorers": [ + { + "name": "etherscan", + "url": "https://kovan-optimistic.etherscan.io", + "standard": "EIP3091" + } + ], + "infoURL": "https://optimism.io", + "shortName": "okov", + "chainId": 69, + "networkId": 69, + "slip44": 1, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "69", + "chainName": "Optimism Kovan", + "blockExplorerUrl": "https://kovan-optimistic.etherscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Conflux eSpace (Testnet)", + "chain": "Conflux", + "rpc": [ + "https://evmtestnet.confluxrpc.com" + ], + "faucets": [ + "https://faucet.confluxnetwork.org" + ], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfxtest", + "chainId": 71, + "networkId": 71, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evmtestnet.confluxscan.net", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "71", + "chainName": "Conflux eSpace (Testnet)", + "blockExplorerUrl": "https://evmtestnet.confluxscan.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Japan Open Chain Mainnet", + "chain": "JOC", + "rpc": [ + "https://rpc-1.japanopenchain.org:8545", + "https://rpc-2.japanopenchain.org:8545", + "https://rpc-3.japanopenchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Japan Open Chain Token", + "symbol": "JOC", + "decimals": 18 + }, + "infoURL": "https://www.japanopenchain.org/", + "shortName": "joc", + "chainId": 81, + "networkId": 81, + "icon": "joc", + "explorers": [ + { + "name": "Block Explorer", + "url": "https://explorer.japanopenchain.org", + "standard": "EIP3091", + "icon": "joc" + } + ], + "redFlags": [ + "reusedChainId" + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "81", + "chainName": "Japan Open Chain Mainnet", + "blockExplorerUrl": "https://explorer.japanopenchain.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Meter Mainnet", + "chain": "METER", + "rpc": [ + "https://rpc.meter.io" + ], + "faucets": [ + "https://faucet.meter.io" + ], + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "infoURL": "https://www.meter.io", + "shortName": "Meter", + "chainId": 82, + "networkId": 82, + "explorers": [ + { + "name": "Meter Mainnet Scan", + "url": "https://scan.meter.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "82", + "chainName": "Meter Mainnet", + "blockExplorerUrl": "https://scan.meter.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Meter Testnet", + "chain": "METER Testnet", + "rpc": [ + "https://rpctest.meter.io" + ], + "faucets": [ + "https://faucet-warringstakes.meter.io" + ], + "nativeCurrency": { + "name": "Meter", + "symbol": "MTR", + "decimals": 18 + }, + "infoURL": "https://www.meter.io", + "shortName": "MeterTest", + "chainId": 83, + "networkId": 83, + "slip44": 1, + "explorers": [ + { + "name": "Meter Testnet Scan", + "url": "https://scan-warringstakes.meter.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "83", + "chainName": "Meter Testnet", + "blockExplorerUrl": "https://scan-warringstakes.meter.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Viction", + "chain": "Viction", + "rpc": [ + "https://rpc.viction.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Viction", + "symbol": "VIC", + "decimals": 18 + }, + "infoURL": "https://viction.xyz", + "shortName": "vic", + "chainId": 88, + "networkId": 88, + "slip44": 889, + "smartAccounts": [ + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "88", + "chainName": "Viction", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BNB Smart Chain Testnet", + "chain": "BSC", + "rpc": [ + "https://data-seed-prebsc-1-s1.bnbchain.org:8545", + "https://data-seed-prebsc-2-s1.bnbchain.org:8545", + "https://data-seed-prebsc-1-s2.bnbchain.org:8545", + "https://data-seed-prebsc-2-s2.bnbchain.org:8545", + "https://data-seed-prebsc-1-s3.bnbchain.org:8545", + "https://data-seed-prebsc-2-s3.bnbchain.org:8545", + "https://bsc-testnet-rpc.publicnode.com", + "wss://bsc-testnet-rpc.publicnode.com" + ], + "faucets": [ + "https://testnet.bnbchain.org/faucet-smart" + ], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "tBNB", + "decimals": 18 + }, + "infoURL": "https://www.bnbchain.org/en", + "shortName": "bnbt", + "chainId": 97, + "networkId": 97, + "slip44": 1, + "explorers": [ + { + "name": "bscscan-testnet", + "url": "https://testnet.bscscan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com" + } + ], + "modules": [ + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "97", + "chainName": "BNB Smart Chain Testnet", + "blockExplorerUrl": "https://testnet.bscscan.com", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Gnosis", + "chain": "GNO", + "icon": "gnosis", + "rpc": [ + "https://rpc.gnosischain.com", + "https://rpc.gnosis.gateway.fm", + "https://rpc.ankr.com/gnosis", + "https://gnosischain-rpc.gateway.pokt.network", + "https://gnosis-mainnet.public.blastapi.io", + "https://gnosis.api.onfinality.io/public", + "https://gnosis.blockpi.network/v1/rpc/public", + "https://web3endpoints.com/gnosischain-mainnet", + "https://gnosis.oat.farm", + "wss://rpc.gnosischain.com/wss", + "https://gnosis-rpc.publicnode.com", + "wss://gnosis-rpc.publicnode.com" + ], + "faucets": [ + "https://gnosisfaucet.com", + "https://stakely.io/faucet/gnosis-chain-xdai", + "https://faucet.prussia.dev/xdai" + ], + "nativeCurrency": { + "name": "xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "gno", + "chainId": 100, + "networkId": 100, + "slip44": 700, + "explorers": [ + { + "name": "gnosisscan", + "url": "https://gnosisscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://gnosis.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "gnosis_safe", + "version": "v1.0.0", + "address": "0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.0.0", + "address": "0x12302fE9c02ff50939BaAaaf415fc226C078613C", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "allowance-module" + }, + { + "name": "allowance-module", + "version": "v0.1.1", + "address": "0xAA46724893dedD72658219405185Fb0Fc91e091C", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "100", + "chainName": "Gnosis", + "blockExplorerUrl": "https://gnosisscan.io", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/gnosis-gno.png" + }, + { + "name": "Velas EVM Mainnet", + "chain": "Velas", + "icon": "velas", + "rpc": [ + "https://evmexplorer.velas.com/rpc", + "https://explorer.velas.com/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "Velas", + "symbol": "VLX", + "decimals": 18 + }, + "infoURL": "https://velas.com", + "shortName": "vlx", + "chainId": 106, + "networkId": 106, + "explorers": [ + { + "name": "Velas Explorer", + "url": "https://evmexplorer.velas.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "106", + "chainName": "Velas EVM Mainnet", + "blockExplorerUrl": "https://evmexplorer.velas.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "ThunderCore Mainnet", + "chain": "TT", + "rpc": [ + "https://mainnet-rpc.thundercore.com", + "https://mainnet-rpc.thundertoken.net", + "https://mainnet-rpc.thundercore.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "ThunderCore Token", + "symbol": "TT", + "decimals": 18 + }, + "infoURL": "https://thundercore.com", + "shortName": "TT", + "chainId": 108, + "networkId": 108, + "slip44": 1001, + "explorers": [ + { + "name": "thundercore-viewblock", + "url": "https://viewblock.io/thundercore", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "108", + "chainName": "ThunderCore Mainnet", + "blockExplorerUrl": "https://viewblock.io/thundercore" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Shibarium", + "chain": "Shibarium", + "icon": "shibarium", + "rpc": [ + "https://www.shibrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "BONE Shibarium", + "symbol": "BONE", + "decimals": 18 + }, + "infoURL": "https://shibariumecosystem.com", + "shortName": "shibariumecosystem", + "chainId": 109, + "networkId": 109, + "explorers": [ + { + "name": "shibariumscan", + "url": "https://www.shibariumscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "109", + "chainName": "Shibarium", + "blockExplorerUrl": "https://www.shibariumscan.io" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_shibarium.png" + }, + { + "name": "EtherLite Chain", + "chain": "ETL", + "rpc": [ + "https://rpc.etherlite.org" + ], + "faucets": [ + "https://etherlite.org/faucets" + ], + "nativeCurrency": { + "name": "EtherLite", + "symbol": "ETL", + "decimals": 18 + }, + "infoURL": "https://etherlite.org", + "shortName": "ETL", + "chainId": 111, + "networkId": 111, + "icon": "etherlite", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "111", + "chainName": "EtherLite Chain", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Flare Testnet Coston2", + "chain": "FLR", + "icon": "coston2", + "rpc": [ + "https://coston2-api.flare.network/ext/C/rpc", + "https://flare-testnet-coston2.rpc.thirdweb.com", + "https://flaretestnet-bundler.etherspot.io", + "https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc", + "https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc", + "https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc", + "https://coston2.enosys.global/ext/C/rpc" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.flare.network" + ], + "nativeCurrency": { + "name": "Coston2 Flare", + "symbol": "C2FLR", + "decimals": 18 + }, + "infoURL": "https://flare.network", + "shortName": "c2flr", + "chainId": 114, + "networkId": 114, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://coston2-explorer.flare.network", + "standard": "EIP3091" + }, + { + "name": "flarescan", + "url": "https://coston2.testnet.flarescan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "114", + "chainName": "Flare Testnet Coston2", + "blockExplorerUrl": "https://coston2-explorer.flare.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fuse Mainnet", + "chain": "FUSE", + "rpc": [ + "https://rpc.fuse.io", + "https://fuse.drpc.org", + "wss://fuse.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Fuse", + "symbol": "FUSE", + "decimals": 18 + }, + "infoURL": "https://fuse.io/", + "shortName": "fuse", + "chainId": 122, + "networkId": 122, + "icon": "fuse", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.fuse.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "122", + "chainName": "Fuse Mainnet", + "blockExplorerUrl": "https://explorer.fuse.io" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_fuse.png" + }, + { + "name": "Fuse Sparknet", + "chain": "fuse", + "rpc": [ + "https://rpc.fusespark.io" + ], + "faucets": [ + "https://get.fusespark.io" + ], + "nativeCurrency": { + "name": "Spark", + "symbol": "SPARK", + "decimals": 18 + }, + "infoURL": "https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet", + "shortName": "spark", + "chainId": 123, + "networkId": 123, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "123", + "chainName": "Fuse Sparknet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Polygon Mainnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://polygon-rpc.com/", + "https://rpc-mainnet.matic.network", + "https://matic-mainnet.chainstacklabs.com", + "https://rpc-mainnet.maticvigil.com", + "https://rpc-mainnet.matic.quiknode.pro", + "https://matic-mainnet-full-rpc.bwarelabs.com", + "https://polygon-bor-rpc.publicnode.com", + "wss://polygon-bor-rpc.publicnode.com", + "https://polygon.gateway.tenderly.co", + "wss://polygon.gateway.tenderly.co", + "https://polygon.drpc.org", + "wss://polygon.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "POL", + "symbol": "POL", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "pol", + "chainId": 137, + "networkId": 137, + "slip44": 966, + "explorers": [ + { + "name": "polygonscan", + "url": "https://polygonscan.com", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://polygon.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0x1Fb403834C911eB98d56E74F5182b0d64C3b3b4D", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "allowance-module" + }, + { + "name": "allowance-module", + "version": "v0.1.1", + "address": "0xAA46724893dedD72658219405185Fb0Fc91e091C", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "137", + "chainName": "Polygon Mainnet", + "blockExplorerUrl": "https://polygonscan.com", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/polygon.png" + }, + { + "name": "ShimmerEVM", + "title": "ShimmerEVM", + "chain": "ShimmerEVM", + "rpc": [ + "https://json-rpc.evm.shimmer.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "SMR", + "symbol": "SMR", + "decimals": 18 + }, + "infoURL": "https://shimmer.network", + "shortName": "shimmerevm", + "chainId": 148, + "networkId": 148, + "icon": "shimmerevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.shimmer.network", + "icon": "shimmerevm", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "148", + "chainName": "ShimmerEVM", + "blockExplorerUrl": "https://explorer.evm.shimmer.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Tenet Testnet", + "title": "Tenet Testnet", + "chain": "TENET", + "icon": "tenet", + "rpc": [ + "https://rpc.testnet.tenet.org" + ], + "faucets": [ + "https://faucet.testnet.tenet.org" + ], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet-testnet", + "chainId": 155, + "networkId": 155, + "slip44": 1, + "explorers": [ + { + "name": "TenetScan Testnet", + "url": "https://testnet.tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "155", + "chainName": "Tenet Testnet", + "blockExplorerUrl": "https://testnet.tenetscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Manta Pacific Mainnet", + "chain": "Manta Pacific", + "rpc": [ + "https://pacific-rpc.manta.network/http", + "https://manta-pacific.drpc.org", + "wss://manta-pacific.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://pacific-info.manta.network", + "shortName": "manta", + "chainId": 169, + "networkId": 169, + "icon": "manta", + "explorers": [ + { + "name": "manta-pacific Explorer", + "url": "https://pacific-explorer.manta.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "169", + "chainName": "Manta Pacific Mainnet", + "blockExplorerUrl": "https://pacific-explorer.manta.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "ABEY Mainnet", + "chain": "ABEY", + "rpc": [ + "https://rpc.abeychain.com" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "ABEY", + "symbol": "ABEY", + "decimals": 18 + }, + "infoURL": "https://abey.com", + "shortName": "abey", + "chainId": 179, + "networkId": 179, + "explorers": [ + { + "name": "abeyscan", + "url": "https://abeyscan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "179", + "chainName": "ABEY Mainnet", + "blockExplorerUrl": "https://abeyscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "X Layer Testnet", + "chain": "X Layer", + "rpc": [ + "https://testrpc.xlayer.tech", + "https://xlayertestrpc.okx.com" + ], + "faucets": [ + "https://www.okx.com/xlayer/faucet" + ], + "nativeCurrency": { + "name": "X Layer Global Utility Token in testnet", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/xlayer", + "shortName": "tokb", + "chainId": 195, + "networkId": 195, + "slip44": 1, + "icon": "xlayerTestnet", + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer-test", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "195", + "chainName": "X Layer Testnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer-test" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "X Layer Mainnet", + "chain": "X Layer", + "rpc": [ + "https://rpc.xlayer.tech", + "https://xlayerrpc.okx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "X Layer Global Utility Token", + "symbol": "OKB", + "decimals": 18 + }, + "features": [], + "infoURL": "https://www.okx.com/xlayer", + "shortName": "okb", + "chainId": 196, + "networkId": 196, + "icon": "xlayer", + "explorers": [ + { + "name": "OKLink", + "url": "https://www.oklink.com/xlayer", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "196", + "chainName": "X Layer Mainnet", + "blockExplorerUrl": "https://www.oklink.com/xlayer" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/okb.png" + }, + { + "name": "opBNB Mainnet", + "icon": "bnbchain", + "chain": "opBNB", + "rpc": [ + "https://opbnb-mainnet-rpc.bnbchain.org", + "https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3", + "wss://opbnb-mainnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3", + "https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "wss://opbnb-mainnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5", + "https://opbnb-rpc.publicnode.com", + "wss://opbnb-rpc.publicnode.com", + "https://opbnb.drpc.org", + "wss://opbnb.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "BNB Chain Native Token", + "symbol": "BNB", + "decimals": 18 + }, + "infoURL": "https://opbnb.bnbchain.org/en", + "shortName": "obnb", + "chainId": 204, + "networkId": 204, + "slip44": 714, + "explorers": [ + { + "name": "opbnbscan", + "url": "https://mainnet.opbnbscan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "204", + "chainName": "opBNB Mainnet", + "blockExplorerUrl": "https://mainnet.opbnbscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Energy Web Chain", + "chain": "Energy Web Chain", + "rpc": [ + "https://rpc.energyweb.org", + "wss://rpc.energyweb.org/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Energy Web Token", + "symbol": "EWT", + "decimals": 18 + }, + "infoURL": "https://energyweb.org", + "shortName": "ewt", + "chainId": 246, + "networkId": 246, + "slip44": 246, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.energyweb.org", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "246", + "chainName": "Energy Web Chain", + "blockExplorerUrl": "https://explorer.energyweb.org", + "moduleName": "allowance-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fantom Opera", + "chain": "FTM", + "rpc": [ + "https://rpc.ftm.tools", + "https://fantom-rpc.publicnode.com", + "wss://fantom-rpc.publicnode.com", + "https://fantom.drpc.org", + "wss://fantom.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "infoURL": "https://fantom.foundation", + "shortName": "ftm", + "chainId": 250, + "networkId": 250, + "icon": "fantom", + "explorers": [ + { + "name": "ftmscan", + "url": "https://ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://fantom.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "250", + "chainName": "Fantom Opera", + "blockExplorerUrl": "https://ftmscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fraxtal", + "chain": "FRAX", + "rpc": [ + "https://rpc.frax.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Frax Ether", + "symbol": "frxETH", + "decimals": 18 + }, + "infoURL": "https://mainnet.frax.com", + "shortName": "fraxtal", + "chainId": 252, + "networkId": 252, + "icon": "fraxtal", + "explorers": [ + { + "name": "fraxscan", + "url": "https://fraxscan.com", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "252", + "chainName": "Fraxtal", + "blockExplorerUrl": "https://fraxscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kroma", + "chain": "ETH", + "rpc": [ + "https://api.kroma.network", + "https://rpc-kroma.rockx.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://kroma.network", + "icon": "kroma", + "shortName": "kroma", + "chainId": 255, + "networkId": 255, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.kroma.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "255", + "chainName": "Kroma", + "blockExplorerUrl": "https://blockscout.kroma.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "zkSync Era Goerli Testnet (deprecated)", + "status": "deprecated", + "chain": "ETH", + "rpc": [ + "https://testnet.era.zksync.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync-goerli", + "chainId": 280, + "networkId": 280, + "slip44": 1, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://goerli.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zksync.io/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x357147caf9C0cCa67DfA0CF5369318d8193c8407", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x4191E2e12E8BC5002424CE0c51f9947b02675a44", + "chainId": "280", + "chainName": "zkSync Era Goerli Testnet (deprecated)", + "blockExplorerUrl": "https://goerli.explorer.zksync.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cronos zkEVM Testnet", + "chain": "CronosZkEVMTestnet", + "rpc": [ + "https://testnet.zkevm.cronos.org" + ], + "faucets": [ + "https://zkevm.cronos.org/faucet" + ], + "nativeCurrency": { + "name": "Cronos zkEVM Test Coin", + "symbol": "zkTCRO", + "decimals": 18 + }, + "infoURL": "https://docs-zkevm.cronos.org", + "shortName": "zkTCRO", + "chainId": 282, + "networkId": 282, + "slip44": 1, + "explorers": [ + { + "name": "Cronos zkEVM Testnet Explorer", + "url": "https://explorer.zkevm.cronos.org/testnet", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x357147caf9C0cCa67DfA0CF5369318d8193c8407", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x4191E2e12E8BC5002424CE0c51f9947b02675a44", + "chainId": "282", + "chainName": "Cronos zkEVM Testnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org/testnet" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Boba Network", + "chain": "ETH", + "rpc": [ + "https://mainnet.boba.network", + "https://replica.boba.network", + "https://boba-ethereum.gateway.tenderly.co", + "https://gateway.tenderly.co/public/boba-ethereum", + "wss://boba-ethereum.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-ethereum", + "https://boba-eth.drpc.org", + "wss://boba-eth.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Boba", + "chainId": 288, + "networkId": 288, + "explorers": [ + { + "name": "Bobascan", + "url": "https://bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "288", + "chainName": "Boba Network", + "blockExplorerUrl": "https://bobascan.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/boba-network.png" + }, + { + "name": "Orderly Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.orderly.network", + "https://l2-orderly-mainnet-0.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "www.orderly.network", + "shortName": "orderly", + "chainId": 291, + "networkId": 291, + "icon": "orderly", + "explorers": [ + { + "name": "orderlyscout", + "url": "https://explorer.orderly.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "291", + "chainName": "Orderly Mainnet", + "blockExplorerUrl": "https://explorer.orderly.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "zkSync Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.era.zksync.dev", + "https://zksync-sepolia.drpc.org", + "wss://zksync-sepolia.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync-sepolia", + "chainId": 300, + "networkId": 300, + "slip44": 1, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Block Explorer", + "url": "https://sepolia.explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zksync.io/" + } + ] + }, + "redFlags": [ + "reusedChainId" + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "300", + "chainName": "zkSync Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zksync.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Filecoin - Mainnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.node.glif.io/", + "https://rpc.ankr.com/filecoin", + "https://filecoin-mainnet.chainstacklabs.com/rpc/v1", + "https://filfox.info/rpc/v1", + "https://filecoin.drpc.org", + "wss://filecoin.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "filecoin", + "symbol": "FIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin", + "chainId": 314, + "networkId": 314, + "slip44": 461, + "explorers": [ + { + "name": "Filfox", + "url": "https://filfox.info/en", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + }, + { + "name": "Glif Explorer", + "url": "https://explorer.glif.io", + "standard": "EIP3091" + }, + { + "name": "Dev.storage", + "url": "https://dev.storage", + "standard": "none" + }, + { + "name": "Filscan", + "url": "https://filscan.io", + "standard": "none" + }, + { + "name": "Filscout", + "url": "https://filscout.io/en", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "314", + "chainName": "Filecoin - Mainnet", + "blockExplorerUrl": "https://filfox.info/en" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/filecoin.png" + }, + { + "name": "KCC Mainnet", + "chain": "KCC", + "rpc": [ + "https://rpc-mainnet.kcc.network", + "https://kcc.mytokenpocket.vip", + "https://public-rpc.blockpi.io/http/kcc" + ], + "faucets": [], + "nativeCurrency": { + "name": "KuCoin Token", + "symbol": "KCS", + "decimals": 18 + }, + "infoURL": "https://kcc.io", + "shortName": "kcs", + "chainId": 321, + "networkId": 321, + "slip44": 641, + "explorers": [ + { + "name": "KCC Explorer", + "url": "https://explorer.kcc.io/en", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "321", + "chainName": "KCC Mainnet", + "blockExplorerUrl": "https://explorer.kcc.io/en" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "KCC Testnet", + "chain": "KCC", + "rpc": [ + "https://rpc-testnet.kcc.network" + ], + "faucets": [ + "https://faucet-testnet.kcc.network" + ], + "nativeCurrency": { + "name": "KuCoin Testnet Token", + "symbol": "tKCS", + "decimals": 18 + }, + "infoURL": "https://scan-testnet.kcc.network", + "shortName": "kcst", + "chainId": 322, + "networkId": 322, + "slip44": 1, + "explorers": [ + { + "name": "kcc-scan-testnet", + "url": "https://scan-testnet.kcc.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "322", + "chainName": "KCC Testnet", + "blockExplorerUrl": "https://scan-testnet.kcc.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "zkSync Mainnet", + "chain": "ETH", + "rpc": [ + "https://mainnet.era.zksync.io", + "https://zksync.drpc.org", + "wss://zksync.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zksync.io/", + "shortName": "zksync", + "chainId": 324, + "networkId": 324, + "icon": "zksync-era", + "explorers": [ + { + "name": "zkSync Era Block Explorer", + "url": "https://explorer.zksync.io", + "icon": "zksync-era", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zksync.io/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x357147caf9C0cCa67DfA0CF5369318d8193c8407", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x4191E2e12E8BC5002424CE0c51f9947b02675a44", + "chainId": "324", + "chainName": "zkSync Mainnet", + "blockExplorerUrl": "https://explorer.zksync.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/zksync.png" + }, + { + "name": "Shiden", + "chain": "SDN", + "rpc": [ + "https://shiden.api.onfinality.io/public", + "https://shiden-rpc.dwellir.com", + "https://shiden.public.blastapi.io", + "wss://shiden.api.onfinality.io/public-ws", + "wss://shiden.public.blastapi.io", + "wss://shiden-rpc.dwellir.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shiden", + "symbol": "SDN", + "decimals": 18 + }, + "infoURL": "https://shiden.astar.network/", + "shortName": "sdn", + "chainId": 336, + "networkId": 336, + "icon": "shiden", + "explorers": [ + { + "name": "subscan", + "url": "https://shiden.subscan.io", + "standard": "none", + "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/shiden", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "336", + "chainName": "Shiden", + "blockExplorerUrl": "https://shiden.subscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cronos Testnet", + "chain": "CRO", + "rpc": [ + "https://evm-t3.cronos.org", + "https://cronos-testnet.drpc.org", + "wss://cronos-testnet.drpc.org" + ], + "faucets": [ + "https://cronos.org/faucet" + ], + "nativeCurrency": { + "name": "Cronos Test Coin", + "symbol": "TCRO", + "decimals": 18 + }, + "infoURL": "https://cronos.org", + "shortName": "tcro", + "chainId": 338, + "networkId": 338, + "slip44": 1, + "explorers": [ + { + "name": "Cronos Testnet Explorer", + "url": "https://explorer.cronos.org/testnet", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "338", + "chainName": "Cronos Testnet", + "blockExplorerUrl": "https://explorer.cronos.org/testnet" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Shape", + "chain": "ETH", + "rpc": [ + "https://mainnet.shape.network", + "https://shape-mainnet.g.alchemy.com/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://shape.network", + "shortName": "shape", + "chainId": 360, + "networkId": 360, + "icon": "shape", + "explorers": [ + { + "name": "shapescan", + "url": "https://shapescan.xyz", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "360", + "chainName": "Shape", + "blockExplorerUrl": "https://shapescan.xyz" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_shape.png" + }, + { + "name": "PulseChain", + "shortName": "pls", + "chain": "PLS", + "chainId": 369, + "networkId": 369, + "infoURL": "https://pulsechain.com/", + "rpc": [ + "https://rpc.pulsechain.com", + "wss://rpc.pulsechain.com", + "https://pulsechain-rpc.publicnode.com", + "wss://pulsechain-rpc.publicnode.com", + "https://rpc-pulsechain.g4mm4.io", + "wss://rpc-pulsechain.g4mm4.io" + ], + "slip44": 60, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "active", + "nativeCurrency": { + "name": "Pulse", + "symbol": "PLS", + "decimals": 18 + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "otterscan", + "url": "https://otter.pulsechain.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "369", + "chainName": "PulseChain", + "blockExplorerUrl": "https://scan.pulsechain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cronos zkEVM Mainnet", + "chain": "CronosZkEVMMainnet", + "rpc": [ + "https://mainnet.zkevm.cronos.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Cronos zkEVM CRO", + "symbol": "zkCRO", + "decimals": 18 + }, + "infoURL": "https://cronos.org/zkevm", + "shortName": "zkCRO", + "chainId": 388, + "networkId": 388, + "explorers": [ + { + "name": "Cronos zkEVM (Mainnet) Chain Explorer", + "url": "https://explorer.zkevm.cronos.org", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x357147caf9C0cCa67DfA0CF5369318d8193c8407", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x4191E2e12E8BC5002424CE0c51f9947b02675a44", + "chainId": "388", + "chainName": "Cronos zkEVM Mainnet", + "blockExplorerUrl": "https://explorer.zkevm.cronos.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Optimism Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.optimism.io", + "https://optimism-goerli-rpc.publicnode.com", + "wss://optimism-goerli-rpc.publicnode.com", + "https://optimism-goerli.gateway.tenderly.co", + "wss://optimism-goerli.gateway.tenderly.co", + "https://optimism-testnet.drpc.org", + "wss://optimism-testnet.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://optimism.io", + "shortName": "ogor", + "chainId": 420, + "networkId": 420, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://optimism-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "420", + "chainName": "Optimism Goerli Testnet", + "blockExplorerUrl": "https://optimism-goerli.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "PGN (Public Goods Network)", + "chain": "ETH", + "rpc": [ + "https://rpc.publicgoods.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://publicgoods.network/", + "shortName": "PGN", + "chainId": 424, + "networkId": 424, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.publicgoods.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "424", + "chainName": "PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.publicgoods.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "World Chain", + "chain": "ETH", + "rpc": [ + "https://worldchain-mainnet.g.alchemy.com/public" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://worldcoin.org", + "shortName": "wc", + "chainId": 480, + "networkId": 480, + "status": "incubating", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "" + } + ], + "modules": [ + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "480", + "chainName": "World Chain", + "blockExplorerUrl": "", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "F(x)Core Mainnet Network", + "chain": "Fxcore", + "rpc": [ + "https://fx-json-web3.functionx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "infoURL": "https://functionx.io/", + "shortName": "FxCore", + "chainId": 530, + "networkId": 530, + "icon": "fxcore", + "explorers": [ + { + "name": "FunctionX Explorer", + "url": "https://fx-evm.functionx.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "530", + "chainName": "F(x)Core Mainnet Network", + "blockExplorerUrl": "https://fx-evm.functionx.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Rollux Mainnet", + "chain": "SYS", + "rpc": [ + "https://rpc.rollux.com", + "wss://rpc.rollux.com/wss", + "https://rpc.ankr.com/rollux" + ], + "faucets": [ + "https://rollux.id/faucet" + ], + "nativeCurrency": { + "name": "Syscoin", + "symbol": "SYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "sys-rollux", + "chainId": 570, + "networkId": 570, + "explorers": [ + { + "name": "Rollux Mainnet Explorer", + "url": "https://explorer.rollux.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "570", + "chainName": "Rollux Mainnet", + "blockExplorerUrl": "https://explorer.rollux.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Metis Stardust Testnet", + "chain": "ETH", + "rpc": [ + "https://stardust.metis.io/?owner=588" + ], + "faucets": [], + "nativeCurrency": { + "name": "tMetis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-stardust", + "chainId": 588, + "networkId": 588, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://stardust-explorer.metis.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://bridge.metis.io" + } + ] + }, + "status": "deprecated", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "588", + "chainName": "Metis Stardust Testnet", + "blockExplorerUrl": "https://stardust-explorer.metis.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Astar", + "chain": "ASTR", + "rpc": [ + "https://rpc.astar.network:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Astar", + "symbol": "ASTR", + "decimals": 18 + }, + "infoURL": "https://astar.network/", + "shortName": "astr", + "chainId": 592, + "networkId": 592, + "icon": "astar", + "explorers": [ + { + "name": "subscan", + "url": "https://astar.subscan.io", + "standard": "none", + "icon": "subscan" + }, + { + "name": "blockscout", + "url": "https://blockscout.com/astar", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "592", + "chainName": "Astar", + "blockExplorerUrl": "https://astar.subscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Acala Mandala Testnet TC9", + "chain": "mACA", + "rpc": [ + "https://eth-rpc-tc9.aca-staging.network", + "wss://eth-rpc-tc9.aca-staging.network" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Acala Mandala Token", + "symbol": "mACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "maca", + "chainId": 595, + "networkId": 595, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.mandala.aca-staging.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "595", + "chainName": "Acala Mandala Testnet TC9", + "blockExplorerUrl": "https://blockscout.mandala.aca-staging.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Metis Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.gateway.metisdevops.link" + ], + "faucets": [ + "https://goerli.faucet.metisdevops.link" + ], + "nativeCurrency": { + "name": "Goerli Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-goerli", + "chainId": 599, + "networkId": 599, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://goerli.explorer.metisdevops.link", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://testnet-bridge.metis.io" + } + ] + }, + "status": "deprecated", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "599", + "chainName": "Metis Goerli Testnet", + "blockExplorerUrl": "https://goerli.explorer.metisdevops.link" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Endurance Smart Chain Mainnet", + "chain": "ACE", + "rpc": [ + "https://rpc-endurance.fusionist.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Endurance Chain Native Token", + "symbol": "ACE", + "decimals": 18 + }, + "infoURL": "https://ace.fusionist.io/", + "shortName": "ace", + "chainId": 648, + "networkId": 648, + "explorers": [ + { + "name": "Endurance Scan", + "url": "https://explorer.endurance.fusionist.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "648", + "chainName": "Endurance Smart Chain Mainnet", + "blockExplorerUrl": "https://explorer.endurance.fusionist.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/ace.png" + }, + { + "name": "Karura Network", + "chain": "KAR", + "rpc": [ + "https://eth-rpc-karura.aca-api.network", + "wss://eth-rpc-karura.aca-api.network" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Karura Token", + "symbol": "KAR", + "decimals": 18 + }, + "infoURL": "https://acala.network/karura", + "shortName": "kar", + "chainId": 686, + "networkId": 686, + "slip44": 686, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.karura.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "686", + "chainName": "Karura Network", + "blockExplorerUrl": "https://blockscout.karura.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Redstone", + "chain": "ETH", + "rpc": [ + "https://rpc.redstonechain.com", + "wss://rpc.redstonechain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "redstone", + "chainId": 690, + "networkId": 690, + "icon": "redstone", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.redstone.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://redstone.xyz/deposit" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "690", + "chainName": "Redstone", + "blockExplorerUrl": "https://explorer.redstone.xyz" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_redstone.png" + }, + { + "name": "Acala Network", + "chain": "ACA", + "rpc": [ + "https://eth-rpc-acala.aca-api.network", + "wss://eth-rpc-acala.aca-api.network" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Acala Token", + "symbol": "ACA", + "decimals": 18 + }, + "infoURL": "https://acala.network", + "shortName": "aca", + "chainId": 787, + "networkId": 787, + "slip44": 787, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.acala.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "787", + "chainName": "Acala Network", + "blockExplorerUrl": "https://blockscout.acala.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mode Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.mode.network" + ], + "faucets": [ + "https://sepoliafaucet.com/" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "modesep", + "chainId": 919, + "networkId": 919, + "slip44": 1, + "icon": "modeTestnet", + "explorers": [ + { + "name": "modescout", + "url": "https://sepolia.explorer.mode.network", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.mode.network/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "919", + "chainName": "Mode Testnet", + "blockExplorerUrl": "https://sepolia.explorer.mode.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "PulseChain Testnet v4", + "shortName": "t4pls", + "chain": "t4PLS", + "chainId": 943, + "networkId": 943, + "icon": "pulsechain", + "infoURL": "https://pulsechain.com", + "rpc": [ + "https://rpc.v4.testnet.pulsechain.com", + "wss://rpc.v4.testnet.pulsechain.com", + "https://pulsechain-testnet-rpc.publicnode.com", + "wss://pulsechain-testnet-rpc.publicnode.com", + "https://rpc-testnet-pulsechain.g4mm4.io", + "wss://rpc-testnet-pulsechain.g4mm4.io" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.v4.testnet.pulsechain.com/" + ], + "ens": { + "registry": "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" + }, + "status": "active", + "slip44": 1, + "nativeCurrency": { + "name": "Test Pulse", + "symbol": "tPLS", + "decimals": 18 + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://scan.v4.testnet.pulsechain.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://otter-testnet-pulsechain.g4mm4.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "943", + "chainName": "PulseChain Testnet v4", + "blockExplorerUrl": "https://scan.v4.testnet.pulsechain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Oort Mainnet", + "chain": "Oort Mainnet", + "rpc": [ + "https://mainnet-rpc.oortech.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Oort", + "symbol": "OORT", + "decimals": 18 + }, + "infoURL": "https://oortech.com", + "shortName": "ccn", + "chainId": 970, + "networkId": 970, + "icon": "oort", + "explorers": [ + { + "name": "Oort Mainnet Explorer", + "url": "https://mainnet-scan.oortech.com", + "standard": "none", + "icon": "oort" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "970", + "chainName": "Oort Mainnet", + "blockExplorerUrl": "https://mainnet-scan.oortech.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kaia Testnet Kairos", + "chain": "KAIA", + "rpc": [ + "https://public-en.kairos.node.kaia.io" + ], + "faucets": [ + "https://faucet.kaia.io" + ], + "nativeCurrency": { + "name": "KAIA", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://kaia.io/", + "shortName": "kaia-kairos", + "chainId": 1001, + "networkId": 1001, + "slip44": 1, + "explorers": [ + { + "name": "Klaytnscope", + "url": "https://baobab.klaytnscope.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://baobab.klaytnfinder.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1001", + "chainName": "Kaia Testnet Kairos", + "blockExplorerUrl": "https://baobab.klaytnscope.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Eurus Mainnet", + "chain": "EUN", + "rpc": [ + "https://mainnet.eurus.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "eun", + "chainId": 1008, + "networkId": 1008, + "icon": "eurus", + "explorers": [ + { + "name": "eurusexplorer", + "url": "https://explorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1008", + "chainName": "Eurus Mainnet", + "blockExplorerUrl": "https://explorer.eurus.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Conflux eSpace", + "chain": "Conflux", + "rpc": [ + "https://evm.confluxrpc.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "CFX", + "symbol": "CFX", + "decimals": 18 + }, + "infoURL": "https://confluxnetwork.org", + "shortName": "cfx", + "chainId": 1030, + "networkId": 1030, + "icon": "conflux", + "explorers": [ + { + "name": "Conflux Scan", + "url": "https://evm.confluxscan.net", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1030", + "chainName": "Conflux eSpace", + "blockExplorerUrl": "https://evm.confluxscan.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Metis Andromeda Mainnet", + "chain": "ETH", + "rpc": [ + "https://andromeda.metis.io/?owner=1088", + "https://metis.drpc.org", + "wss://metis.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Metis", + "symbol": "METIS", + "decimals": 18 + }, + "infoURL": "https://www.metis.io", + "shortName": "metis-andromeda", + "chainId": 1088, + "networkId": 1088, + "explorers": [ + { + "name": "blockscout", + "url": "https://andromeda-explorer.metis.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.metis.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "1088", + "chainName": "Metis Andromeda Mainnet", + "blockExplorerUrl": "https://andromeda-explorer.metis.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Polygon zkEVM", + "title": "Polygon zkEVM", + "chain": "Polygon", + "rpc": [ + "https://zkevm-rpc.com", + "https://polygon-zkevm.drpc.org", + "wss://polygon-zkevm.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/polygon-zkevm", + "shortName": "zkevm", + "chainId": 1101, + "networkId": 1101, + "icon": "zkevm", + "explorers": [ + { + "name": "blockscout", + "url": "https://zkevm.polygonscan.com", + "icon": "zkevm", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.zkevm-rpc.com" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1101", + "chainName": "Polygon zkEVM", + "blockExplorerUrl": "https://zkevm.polygonscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "WEMIX3.0 Mainnet", + "chain": "WEMIX", + "rpc": [ + "https://api.wemix.com", + "wss://ws.wemix.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "WEMIX", + "symbol": "WEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "wemix", + "chainId": 1111, + "networkId": 1111, + "explorers": [ + { + "name": "WEMIX Block Explorer", + "url": "https://explorer.wemix.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1111", + "chainName": "WEMIX3.0 Mainnet", + "blockExplorerUrl": "https://explorer.wemix.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/wemix.png" + }, + { + "name": "WEMIX3.0 Testnet", + "chain": "TWEMIX", + "rpc": [ + "https://api.test.wemix.com", + "wss://ws.test.wemix.com" + ], + "faucets": [ + "https://wallet.test.wemix.com/faucet" + ], + "nativeCurrency": { + "name": "TestnetWEMIX", + "symbol": "tWEMIX", + "decimals": 18 + }, + "infoURL": "https://wemix.com", + "shortName": "twemix", + "chainId": 1112, + "networkId": 1112, + "slip44": 1, + "explorers": [ + { + "name": "WEMIX Testnet Microscope", + "url": "https://microscope.test.wemix.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1112", + "chainName": "WEMIX3.0 Testnet", + "blockExplorerUrl": "https://microscope.test.wemix.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Core Blockchain Testnet", + "chain": "Core", + "icon": "core", + "rpc": [ + "https://rpc.test.btcs.network/" + ], + "faucets": [ + "https://scan.test.btcs.network/faucet" + ], + "nativeCurrency": { + "name": "Core Blockchain Testnet Native Token", + "symbol": "tCORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "tcore", + "chainId": 1115, + "networkId": 1115, + "slip44": 1, + "explorers": [ + { + "name": "Core Scan Testnet", + "url": "https://scan.test.btcs.network", + "icon": "core", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1115", + "chainName": "Core Blockchain Testnet", + "blockExplorerUrl": "https://scan.test.btcs.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Core Blockchain Mainnet", + "chain": "Core", + "icon": "core", + "rpc": [ + "https://rpc.coredao.org/", + "https://rpc-core.icecreamswap.com", + "https://core.drpc.org", + "wss://core.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Core Blockchain Native Token", + "symbol": "CORE", + "decimals": 18 + }, + "infoURL": "https://www.coredao.org", + "shortName": "core", + "chainId": 1116, + "networkId": 1116, + "explorers": [ + { + "name": "Core Scan", + "url": "https://scan.coredao.org", + "icon": "core", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1116", + "chainName": "Core Blockchain Mainnet", + "blockExplorerUrl": "https://scan.coredao.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lisk", + "chain": "ETH", + "icon": "lisk", + "rpc": [ + "https://rpc.api.lisk.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisk", + "chainId": 1135, + "networkId": 1135, + "slip44": 134, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1135", + "chainName": "Lisk", + "blockExplorerUrl": "https://blockscout.lisk.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/lisk.png" + }, + { + "name": "Ultron Testnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": [ + "https://ultron-dev.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UltronTestnet", + "chainId": 1230, + "networkId": 1230, + "slip44": 1, + "explorers": [ + { + "name": "Ultron Testnet Explorer", + "url": "https://explorer.ultron-dev.io", + "icon": "ultron", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1230", + "chainName": "Ultron Testnet", + "blockExplorerUrl": "https://explorer.ultron-dev.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Ultron Mainnet", + "chain": "Ultron", + "icon": "ultron", + "rpc": [ + "https://ultron-rpc.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ultron", + "symbol": "ULX", + "decimals": 18 + }, + "infoURL": "https://ultron.foundation", + "shortName": "UtronMainnet", + "chainId": 1231, + "networkId": 1231, + "explorers": [ + { + "name": "Ultron Explorer", + "url": "https://ulxscan.com", + "icon": "ultron", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1231", + "chainName": "Ultron Mainnet", + "blockExplorerUrl": "https://ulxscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Moonbeam", + "chain": "MOON", + "rpc": [ + "https://rpc.api.moonbeam.network", + "wss://wss.api.moonbeam.network", + "https://moonbeam.public.blastapi.io", + "wss://moonbeam.public.blastapi.io", + "https://moonbeam-rpc.dwellir.com", + "wss://moonbeam-rpc.dwellir.com", + "https://moonbeam.api.onfinality.io/public", + "wss://moonbeam.api.onfinality.io/public-ws", + "https://moonbeam.unitedbloc.com", + "wss://moonbeam.unitedbloc.com", + "https://moonbeam-rpc.publicnode.com", + "wss://moonbeam-rpc.publicnode.com", + "https://moonbeam.drpc.org", + "wss://moonbeam.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Glimmer", + "symbol": "GLMR", + "decimals": 18 + }, + "infoURL": "https://moonbeam.network/networks/moonbeam/", + "shortName": "mbeam", + "chainId": 1284, + "networkId": 1284, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbeam.moonscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1284", + "chainName": "Moonbeam", + "blockExplorerUrl": "https://moonbeam.moonscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Moonriver", + "chain": "MOON", + "rpc": [ + "https://rpc.api.moonriver.moonbeam.network", + "wss://wss.api.moonriver.moonbeam.network", + "https://moonriver.public.blastapi.io", + "wss://moonriver.public.blastapi.io", + "https://moonriver-rpc.dwellir.com", + "wss://moonriver-rpc.dwellir.com", + "https://moonriver.api.onfinality.io/public", + "wss://moonriver.api.onfinality.io/public-ws", + "https://moonriver.unitedbloc.com", + "wss://moonriver.unitedbloc.com", + "https://moonriver-rpc.publicnode.com", + "wss://moonriver-rpc.publicnode.com", + "https://moonriver.drpc.org", + "wss://moonriver.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Moonriver", + "symbol": "MOVR", + "decimals": 18 + }, + "infoURL": "https://moonbeam.network/networks/moonriver/", + "shortName": "mriver", + "chainId": 1285, + "networkId": 1285, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonriver.moonscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1285", + "chainName": "Moonriver", + "blockExplorerUrl": "https://moonriver.moonscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Moonbase Alpha", + "chain": "MOON", + "rpc": [ + "https://rpc.api.moonbase.moonbeam.network", + "wss://wss.api.moonbase.moonbeam.network", + "https://moonbase-alpha.public.blastapi.io", + "wss://moonbase-alpha.public.blastapi.io", + "https://moonbase-rpc.dwellir.com", + "wss://moonbase-rpc.dwellir.com", + "https://moonbeam-alpha.api.onfinality.io/public", + "wss://moonbeam-alpha.api.onfinality.io/public-ws", + "https://moonbase.unitedbloc.com", + "wss://moonbase.unitedbloc.com", + "https://moonbase-alpha.drpc.org", + "wss://moonbase-alpha.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dev", + "symbol": "DEV", + "decimals": 18 + }, + "infoURL": "https://docs.moonbeam.network/learn/platform/networks/moonbase/", + "shortName": "mbase", + "chainId": 1287, + "networkId": 1287, + "slip44": 1, + "explorers": [ + { + "name": "moonscan", + "url": "https://moonbase.moonscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1287", + "chainName": "Moonbase Alpha", + "blockExplorerUrl": "https://moonbase.moonscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Bobabeam", + "chain": "Bobabeam", + "status": "deprecated", + "rpc": [ + "https://bobabeam.boba.network", + "wss://wss.bobabeam.boba.network", + "https://replica.bobabeam.boba.network", + "wss://replica-wss.bobabeam.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "Bobabeam", + "chainId": 1294, + "networkId": 1294, + "explorers": [ + { + "name": "Bobabeam block explorer", + "url": "https://blockexplorer.bobabeam.boba.network", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1294", + "chainName": "Bobabeam", + "blockExplorerUrl": "https://blockexplorer.bobabeam.boba.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/boba-network.png" + }, + { + "name": "Sei Network", + "chain": "Sei", + "rpc": [ + "https://evm-rpc.sei-apis.com", + "wss://evm-ws.sei-apis.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei", + "chainId": 1329, + "networkId": 1329, + "icon": "seiv2", + "explorers": [ + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1329", + "chainName": "Sei Network", + "blockExplorerUrl": "https://seitrace.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/sei.png" + }, + { + "name": "Geth Testnet", + "title": "Go Ethereum (Geth) Private Testnet", + "chain": "ETH", + "rpc": [ + "http://127.0.0.1:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Geth Testnet Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://geth.ethereum.org", + "shortName": "geth", + "chainId": 1337, + "networkId": 1337, + "slip44": 1, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1337", + "chainName": "Geth Testnet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Polygon zkEVM Testnet", + "title": "Polygon zkEVM Testnet", + "chain": "Polygon", + "rpc": [ + "https://rpc.public.zkevm-test.net", + "https://polygon-zkevm-testnet.drpc.org", + "wss://polygon-zkevm-testnet.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/solutions/polygon-zkevm/", + "shortName": "testnet-zkEVM-mango", + "chainId": 1442, + "networkId": 1442, + "slip44": 1, + "explorers": [ + { + "name": "Polygon zkEVM explorer", + "url": "https://explorer.public.zkevm-test.net", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1442", + "chainName": "Polygon zkEVM Testnet", + "blockExplorerUrl": "https://explorer.public.zkevm-test.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Tenet", + "title": "Tenet Mainnet", + "chain": "TENET", + "icon": "tenet", + "rpc": [ + "https://rpc.tenet.org", + "https://tenet-evm.publicnode.com", + "wss://tenet-evm.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "TENET", + "symbol": "TENET", + "decimals": 18 + }, + "infoURL": "https://tenet.org/", + "shortName": "tenet", + "chainId": 1559, + "networkId": 1559, + "explorers": [ + { + "name": "TenetScan Mainnet", + "url": "https://tenetscan.io", + "icon": "tenet", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1559", + "chainName": "Tenet", + "blockExplorerUrl": "https://tenetscan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/tenet.png" + }, + { + "name": "Gravity Alpha Mainnet", + "chain": "Gravity", + "rpc": [ + "https://rpc.gravity.xyz", + "https://rpc.ankr.com/gravity" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gravity", + "symbol": "G", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + }, + { + "name": "EIP1108" + } + ], + "infoURL": "https://gravity.xyz", + "shortName": "gravity", + "chainId": 1625, + "networkId": 1625, + "icon": "gravity", + "explorers": [ + { + "name": "Gravity Alpha Mainnet Explorer", + "url": "https://explorer.gravity.xyz", + "standard": "EIP3091" + }, + { + "name": "gscan", + "url": "https://gscan.xyz", + "standard": "EIP3091" + }, + { + "name": "OKLink", + "url": "https://www.oklink.com/gravity-alpha", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.gravity.xyz" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1625", + "chainName": "Gravity Alpha Mainnet", + "blockExplorerUrl": "https://explorer.gravity.xyz" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/gravity.png" + }, + { + "name": "Horizen Gobi Testnet", + "shortName": "Gobi", + "chain": "Gobi", + "icon": "eon", + "rpc": [ + "https://gobi-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_gobi_testnet" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.horizen.io" + ], + "nativeCurrency": { + "name": "Testnet Zen", + "symbol": "tZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 1663, + "networkId": 1663, + "slip44": 1, + "explorers": [ + { + "name": "Gobi Testnet Block Explorer", + "url": "https://gobi-explorer.horizen.io", + "icon": "eon", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1663", + "chainName": "Horizen Gobi Testnet", + "blockExplorerUrl": "https://gobi-explorer.horizen.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Reya Network", + "chain": "Reya", + "rpc": [ + "https://rpc.reya.network", + "wss://ws.reya.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://reya.network", + "shortName": "reya", + "chainId": 1729, + "networkId": 1729, + "explorers": [ + { + "name": "Reya Network Explorer", + "url": "https://explorer.reya.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1729", + "chainName": "Reya Network", + "blockExplorerUrl": "https://explorer.reya.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Rabbit Analog Testnet Chain", + "chain": "rAna", + "icon": "rabbit", + "rpc": [ + "https://rabbit.analog-rpc.com" + ], + "faucets": [ + "https://analogfaucet.com" + ], + "nativeCurrency": { + "name": "Rabbit Analog Test Chain Native Token ", + "symbol": "rAna", + "decimals": 18 + }, + "infoURL": "https://rabbit.analogscan.com", + "shortName": "rAna", + "chainId": 1807, + "networkId": 1807, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://rabbit.analogscan.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1807", + "chainName": "Rabbit Analog Testnet Chain", + "blockExplorerUrl": "https://rabbit.analogscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lif3 Chain Testnet", + "chain": "lif3chain", + "rpc": [ + "https://testnet-evm.lif3.com" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "LIF3", + "symbol": "LIF3", + "decimals": 18 + }, + "infoURL": "https://docs.lif3.com/", + "shortName": "lif3-testnet", + "icon": "lif3", + "chainId": 1811, + "networkId": 1811, + "explorers": [ + { + "name": "lif3scout", + "url": "https://testnet.lif3scout.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1811", + "chainName": "Lif3 Chain Testnet", + "blockExplorerUrl": "https://testnet.lif3scout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lightlink Phoenix Mainnet", + "chain": "Lightlink Phoenix Mainnet", + "icon": "lightlink", + "rpc": [ + "https://replicator.phoenix.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_phoenix", + "chainId": 1890, + "networkId": 1890, + "explorers": [ + { + "name": "phoenix", + "url": "https://phoenix.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1890", + "chainName": "Lightlink Phoenix Mainnet", + "blockExplorerUrl": "https://phoenix.lightlink.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lightlink Pegasus Testnet", + "chain": "Lightlink Pegasus Testnet", + "icon": "lightlink", + "rpc": [ + "https://replicator.pegasus.lightlink.io/rpc/v1" + ], + "features": [ + { + "name": "EIP155" + } + ], + "faucets": [ + "https://faucet.pegasus.lightlink.io/" + ], + "nativeCurrency": { + "name": "Ethereum", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lightlink.io", + "shortName": "lightlink_pegasus", + "chainId": 1891, + "networkId": 1891, + "slip44": 1, + "explorers": [ + { + "name": "pegasus", + "url": "https://pegasus.lightlink.io", + "icon": "lightlink", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1891", + "chainName": "Lightlink Pegasus Testnet", + "blockExplorerUrl": "https://pegasus.lightlink.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Eurus Testnet", + "chain": "EUN", + "rpc": [ + "https://testnet.eurus.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Eurus", + "symbol": "EUN", + "decimals": 18 + }, + "infoURL": "https://eurus.network", + "shortName": "euntest", + "chainId": 1984, + "networkId": 1984, + "slip44": 1, + "icon": "eurus", + "explorers": [ + { + "name": "testnetexplorer", + "url": "https://testnetexplorer.eurus.network", + "icon": "eurus", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1984", + "chainName": "Eurus Testnet", + "blockExplorerUrl": "https://testnetexplorer.eurus.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kyoto Testnet", + "chain": "KYOTO", + "rpc": [ + "https://rpc.testnet.kyotoprotocol.io:8545" + ], + "faucets": [ + "https://faucet.kyotoprotocol.io" + ], + "nativeCurrency": { + "name": "Kyoto", + "symbol": "KYOTO", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://kyotoprotocol.io", + "shortName": "kyoto-testnet", + "chainId": 1998, + "networkId": 1998, + "slip44": 1, + "explorers": [ + { + "name": "Kyotoscan", + "url": "https://testnet.kyotoscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1998", + "chainName": "Kyoto Testnet", + "blockExplorerUrl": "https://testnet.kyotoscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Dogechain Mainnet", + "chain": "DC", + "icon": "dogechain", + "rpc": [ + "https://rpc.dogechain.dog", + "https://rpc01-sg.dogechain.dog", + "https://rpc.ankr.com/dogechain" + ], + "faucets": [], + "nativeCurrency": { + "name": "Dogecoin", + "symbol": "DOGE", + "decimals": 18 + }, + "infoURL": "https://dogechain.dog", + "shortName": "dc", + "chainId": 2000, + "networkId": 2000, + "explorers": [ + { + "name": "dogechain explorer", + "url": "https://explorer.dogechain.dog", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "2000", + "chainName": "Dogechain Mainnet", + "blockExplorerUrl": "https://explorer.dogechain.dog" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Milkomeda C1 Mainnet", + "chain": "milkAda", + "icon": "milkomeda", + "rpc": [ + "https://rpc-mainnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-mainnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkAda", + "symbol": "mADA", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkAda", + "chainId": 2001, + "networkId": 2001, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2001", + "chainName": "Milkomeda C1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-cardano-evm.c1.milkomeda.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Milkomeda A1 Mainnet", + "chain": "milkALGO", + "icon": "milkomeda", + "rpc": [ + "https://rpc-mainnet-algorand-rollup.a1.milkomeda.com", + "wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkALGO", + "symbol": "mALGO", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkALGO", + "chainId": 2002, + "networkId": 2002, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2002", + "chainName": "Milkomeda A1 Mainnet", + "blockExplorerUrl": "https://explorer-mainnet-algorand-rollup.a1.milkomeda.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "CloudWalk Testnet", + "chain": "CloudWalk Testnet", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "CloudWalk Native Token", + "symbol": "CWN", + "decimals": 18 + }, + "infoURL": "https://cloudwalk.io", + "shortName": "cloudwalk_testnet", + "chainId": 2008, + "networkId": 2008, + "slip44": 1, + "explorers": [ + { + "name": "CloudWalk Testnet Explorer", + "url": "https://explorer.testnet.cloudwalk.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2008", + "chainName": "CloudWalk Testnet", + "blockExplorerUrl": "https://explorer.testnet.cloudwalk.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "PublicMint Testnet", + "title": "Public Mint Testnet", + "chain": "PublicMint", + "rpc": [ + "https://rpc.tst.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint_test", + "chainId": 2019, + "networkId": 2019, + "slip44": 1, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.tst.publicmint.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2019", + "chainName": "PublicMint Testnet", + "blockExplorerUrl": "https://explorer.tst.publicmint.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "PublicMint Mainnet", + "title": "Public Mint Mainnet", + "chain": "PublicMint", + "rpc": [ + "https://rpc.publicmint.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "USD", + "symbol": "USD", + "decimals": 18 + }, + "infoURL": "https://publicmint.com", + "shortName": "pmint", + "chainId": 2020, + "networkId": 2020, + "slip44": 60, + "explorers": [ + { + "name": "PublicMint Explorer", + "url": "https://explorer.publicmint.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2020", + "chainName": "PublicMint Mainnet", + "blockExplorerUrl": "https://explorer.publicmint.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Edgeware EdgeEVM Mainnet", + "chain": "EDG", + "icon": "edgeware", + "rpc": [ + "https://edgeware-evm.jelliedowl.net", + "https://edgeware-evm0.jelliedowl.net", + "https://edgeware-evm1.jelliedowl.net", + "https://edgeware-evm2.jelliedowl.net", + "https://edgeware-evm3.jelliedowl.net", + "wss://edgeware.jelliedowl.net", + "wss://edgeware-rpc0.jelliedowl.net", + "wss://edgeware-rpc1.jelliedowl.net", + "wss://edgeware-rpc2.jelliedowl.net", + "wss://edgeware-rpc3.jelliedowl.net" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Edgeware", + "symbol": "EDG", + "decimals": 18 + }, + "infoURL": "https://edgeware.io", + "shortName": "edg", + "chainId": 2021, + "networkId": 2021, + "slip44": 523, + "explorers": [ + { + "name": "Edgscan EdgeEVM explorer by Bharathcoorg", + "url": "https://edgscan.live", + "standard": "EIP3091" + }, + { + "name": "Edgscan EdgeWASM explorer by Bharathcoorg", + "url": "https://edgscan.ink", + "standard": "none", + "icon": "edgscan" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2021", + "chainName": "Edgeware EdgeEVM Mainnet", + "blockExplorerUrl": "https://edgscan.live" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Aleph Zero", + "chain": "Aleph Zero", + "icon": "aleph", + "rpc": [ + "https://rpc.alephzero-testnet.gelato.digital", + "wss://rpc.alephzero-testnet.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "TZERO", + "symbol": "TZERO", + "decimals": 18 + }, + "infoURL": "https://alephzero.org/", + "shortName": "aleph", + "chainId": 2039, + "networkId": 2039, + "explorers": [ + { + "name": "Aleph Zero", + "url": "https://evm-explorer-testnet.alephzero.org", + "icon": "aleph", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "2039", + "chainName": "Aleph Zero", + "blockExplorerUrl": "https://evm-explorer-testnet.alephzero.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "SnaxChain", + "chain": "ETH", + "rpc": [ + "https://mainnet.snaxchain.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://synthetix.io", + "shortName": "snax", + "chainId": 2192, + "networkId": 2192, + "icon": "snax", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.snaxchain.io", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "2192", + "chainName": "SnaxChain", + "blockExplorerUrl": "https://explorer.snaxchain.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kava Testnet", + "chain": "KAVA", + "rpc": [ + "https://evm.testnet.kava.io", + "https://kava-evm-testnet.rpc.thirdweb.com", + "wss://wevm.testnet.kava.io", + "https://kava-testnet.drpc.org", + "wss://kava-testnet.drpc.org" + ], + "faucets": [ + "https://faucet.kava.io" + ], + "nativeCurrency": { + "name": "TKava", + "symbol": "TKAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "tkava", + "chainId": 2221, + "networkId": 2221, + "icon": "kava", + "explorers": [ + { + "name": "Kava Testnet Explorer", + "url": "http://testnet.kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "2221", + "chainName": "Kava Testnet", + "blockExplorerUrl": "http://testnet.kavascan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kava", + "chain": "KAVA", + "rpc": [ + "https://evm.kava.io", + "https://kava-rpc.gateway.pokt.network", + "https://kava-evm.rpc.thirdweb.com", + "wss://wevm.kava.io", + "https://kava-evm-rpc.publicnode.com", + "wss://kava-evm-rpc.publicnode.com", + "https://evm.kava-rpc.com", + "https://rpc.ankr.com/kava_evm", + "wss://wevm.kava-rpc.com", + "https://kava.drpc.org", + "wss://kava.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Kava", + "symbol": "KAVA", + "decimals": 18 + }, + "infoURL": "https://www.kava.io", + "shortName": "kava", + "chainId": 2222, + "networkId": 2222, + "icon": "kava", + "explorers": [ + { + "name": "Kava EVM Explorer", + "url": "https://kavascan.com", + "standard": "EIP3091", + "icon": "kava" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "2222", + "chainName": "Kava", + "blockExplorerUrl": "https://kavascan.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/kava.png" + }, + { + "name": "RSS3 VSL Sepolia Testnet", + "chain": "RSS3", + "rpc": [ + "https://rpc.testnet.rss3.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3-testnet", + "chainId": 2331, + "networkId": 2331, + "icon": "rss3-testnet", + "explorers": [ + { + "name": "RSS3 VSL Sepolia Testnet Scan", + "url": "https://scan.testnet.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://explorer.testnet.rss3.io/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "2331", + "chainName": "RSS3 VSL Sepolia Testnet", + "blockExplorerUrl": "https://scan.testnet.rss3.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kroma Sepolia", + "title": "Kroma Testnet Sepolia", + "chainId": 2358, + "shortName": "kroma-sepolia", + "chain": "ETH", + "networkId": 2358, + "slip44": 1, + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://api.sepolia.kroma.network" + ], + "faucets": [], + "infoURL": "https://kroma.network", + "icon": "kroma", + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.sepolia.kroma.network", + "icon": "kroma", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://kroma.network/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "2358", + "chainName": "Kroma Sepolia", + "blockExplorerUrl": "https://blockscout.sepolia.kroma.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Morph Holesky", + "title": "Morph Holesky Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc-quicknode-holesky.morphl2.io", + "wss://rpc-quicknode-holesky.morphl2.io", + "https://rpc-holesky.morphl2.io" + ], + "faucets": [ + "https://morphfaucet.com/" + ], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://morphl2.io", + "shortName": "hmorph", + "chainId": 2810, + "networkId": 2810, + "slip44": 1, + "explorers": [ + { + "name": "Morph Holesky Testnet Explorer", + "url": "https://explorer-holesky.morphl2.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge-holesky.morphl2.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "2810", + "chainName": "Morph Holesky", + "blockExplorerUrl": "https://explorer-holesky.morphl2.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "peaq", + "chain": "peaq", + "icon": "peaq", + "rpc": [ + "https://peaq.api.onfinality.io/public", + "https://peaq-rpc.dwellir.com", + "https://peaq-rpc.publicnode.com", + "https://evm.peaq.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "peaq", + "symbol": "PEAQ", + "decimals": 18 + }, + "infoURL": "https://www.peaq.network", + "shortName": "PEAQ", + "chainId": 3338, + "networkId": 3338, + "explorers": [ + { + "name": "Subscan", + "url": "https://peaq.subscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "3338", + "chainName": "peaq", + "blockExplorerUrl": "https://peaq.subscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Botanix Testnet", + "chain": "BOTANIX", + "icon": "botanix", + "rpc": [ + "https://node.botanixlabs.dev" + ], + "faucets": [ + "https://faucet.botanixlabs.dev" + ], + "nativeCurrency": { + "name": "Botanix", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://botanixlabs.xyz", + "shortName": "BTNX", + "chainId": 3636, + "networkId": 3636, + "slip44": 1, + "explorers": [ + { + "name": "3xpl", + "url": "https://3xpl.com/botanix", + "standard": "EIP3091" + }, + { + "name": "Blockscout", + "url": "https://blockscout.botanixlabs.dev", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "3636", + "chainName": "Botanix Testnet", + "blockExplorerUrl": "https://3xpl.com/botanix" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Crossbell", + "chain": "Crossbell", + "rpc": [ + "https://rpc.crossbell.io" + ], + "faucets": [ + "https://faucet.crossbell.io" + ], + "nativeCurrency": { + "name": "Crossbell Token", + "symbol": "CSB", + "decimals": 18 + }, + "infoURL": "https://crossbell.io", + "shortName": "csb", + "chainId": 3737, + "networkId": 3737, + "icon": "crossbell", + "explorers": [ + { + "name": "Crossbell Explorer", + "url": "https://scan.crossbell.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "3737", + "chainName": "Crossbell", + "blockExplorerUrl": "https://scan.crossbell.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Astar zkEVM", + "shortName": "astrzk", + "title": "Astar zkEVM Mainnet", + "chain": "ETH", + "icon": "astar", + "rpc": [ + "https://rpc.startale.com/astar-zkevm" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 3776, + "networkId": 3776, + "explorers": [ + { + "name": "Blockscout Astar zkEVM explorer", + "url": "https://astar-zkevm.explorer.startale.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.astar.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "3776", + "chainName": "Astar zkEVM", + "blockExplorerUrl": "https://astar-zkevm.explorer.startale.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fantom Testnet", + "chain": "FTM", + "rpc": [ + "https://rpc.testnet.fantom.network", + "https://fantom-testnet-rpc.publicnode.com", + "wss://fantom-testnet-rpc.publicnode.com", + "https://fantom-testnet.drpc.org", + "wss://fantom-testnet.drpc.org" + ], + "faucets": [ + "https://faucet.fantom.network" + ], + "nativeCurrency": { + "name": "Fantom", + "symbol": "FTM", + "decimals": 18 + }, + "infoURL": "https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet", + "shortName": "tftm", + "chainId": 4002, + "networkId": 4002, + "slip44": 1, + "icon": "fantom", + "explorers": [ + { + "name": "ftmscan", + "url": "https://testnet.ftmscan.com", + "icon": "ftmscan", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4002", + "chainName": "Fantom Testnet", + "blockExplorerUrl": "https://testnet.ftmscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Nahmii 3 Testnet", + "chain": "Nahmii", + "rpc": [ + "https://rpc.testnet.nahmii.io" + ], + "status": "active", + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://nahmii.io", + "shortName": "Nahmii3Testnet", + "chainId": 4062, + "networkId": 4062, + "slip44": 1, + "icon": "nahmii", + "explorers": [ + { + "name": "Nahmii 3 Testnet Explorer", + "url": "https://explorer.testnet.nahmii.io", + "icon": "nahmii", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://accounts.testnet.nahmii.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4062", + "chainName": "Nahmii 3 Testnet", + "blockExplorerUrl": "https://explorer.testnet.nahmii.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Muster Mainnet", + "chainId": 4078, + "shortName": "muster", + "chain": "Muster", + "icon": "muster", + "networkId": 4078, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://muster.alt.technology" + ], + "faucets": [], + "explorers": [ + { + "name": "Musterscan", + "url": "https://muster-explorer.alt.technology", + "standard": "EIP3091" + } + ], + "infoURL": "", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology" + } + ], + "modules": [ + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "4078", + "chainName": "Muster Mainnet", + "blockExplorerUrl": "https://muster-explorer.alt.technology", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "CrossFi Testnet", + "title": "CrossFi Testnet", + "chain": "XFI", + "icon": "crossfi", + "rpc": [ + "https://rpc.testnet.ms" + ], + "faucets": [], + "nativeCurrency": { + "name": "XFI", + "symbol": "XFI", + "decimals": 18 + }, + "infoURL": "https://crossfi.org", + "shortName": "crossfi-testnet", + "chainId": 4157, + "networkId": 4157, + "slip44": 1, + "explorers": [ + { + "name": "CrossFi Testnet Scan", + "url": "https://test.xfiscan.com", + "standard": "EIP3091", + "icon": "crossfi" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4157", + "chainName": "CrossFi Testnet", + "blockExplorerUrl": "https://test.xfiscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "SX Rollup", + "chain": "SX", + "icon": "SX", + "rpc": [ + "https://rpc.sx-rollup.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "SX Network", + "symbol": "SX", + "decimals": 18 + }, + "infoURL": "https://www.sx.technology", + "shortName": "SXR", + "chainId": 4162, + "networkId": 4162, + "explorers": [ + { + "name": "SX L2 Explorer", + "url": "https://explorerl2.sx.technology", + "standard": "EIP3091", + "icon": "SX" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4162", + "chainName": "SX Rollup", + "blockExplorerUrl": "https://explorerl2.sx.technology" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lisk Sepolia Testnet", + "chain": "ETH", + "icon": "lisk", + "rpc": [ + "https://rpc.sepolia-api.lisk.com" + ], + "faucets": [ + "https://app.optimism.io/faucet" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://lisk.com", + "shortName": "lisksep", + "chainId": 4202, + "networkId": 4202, + "slip44": 134, + "explorers": [ + { + "name": "liskscout", + "url": "https://sepolia-blockscout.lisk.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4202", + "chainName": "Lisk Sepolia Testnet", + "blockExplorerUrl": "https://sepolia-blockscout.lisk.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Beam", + "chain": "BEAM", + "rpc": [ + "https://build.onbeam.com/rpc", + "wss://build.onbeam.com/ws", + "https://subnets.avax.network/beam/mainnet/rpc", + "wss://subnets.avax.network/beam/mainnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.onbeam.com" + ], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam", + "icon": "beam", + "chainId": 4337, + "networkId": 4337, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets.avax.network/beam", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4337", + "chainName": "Beam", + "blockExplorerUrl": "https://subnets.avax.network/beam" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/beam.png" + }, + { + "name": "Orderly Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "www.orderly.network", + "shortName": "orderlyl2", + "chainId": 4460, + "networkId": 4460, + "slip44": 1, + "icon": "orderlyTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4460", + "chainName": "Orderly Sepolia Testnet", + "blockExplorerUrl": "https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Gold Chain", + "title": "Gold Chain", + "chain": "Gold", + "rpc": [ + "https://chain-rpc.gold.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gold.dev", + "shortName": "gold", + "chainId": 4653, + "networkId": 4653, + "status": "incubating", + "icon": "gold", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "4653", + "chainName": "Gold Chain", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "IoTeX Network Mainnet", + "chain": "iotex.io", + "rpc": [ + "https://babel-api.mainnet.iotex.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "IoTeX", + "symbol": "IOTX", + "decimals": 18 + }, + "infoURL": "https://iotex.io", + "shortName": "iotex-mainnet", + "chainId": 4689, + "networkId": 4689, + "explorers": [ + { + "name": "iotexscan", + "url": "https://iotexscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "4689", + "chainName": "IoTeX Network Mainnet", + "blockExplorerUrl": "https://iotexscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Venidium Testnet", + "chain": "XVM", + "rpc": [ + "https://rpc-evm-testnet.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "txvm", + "chainId": 4918, + "networkId": 4918, + "slip44": 1, + "explorers": [ + { + "name": "Venidium EVM Testnet Explorer", + "url": "https://evm-testnet.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4918", + "chainName": "Venidium Testnet", + "blockExplorerUrl": "https://evm-testnet.venidiumexplorer.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Venidium Mainnet", + "chain": "XVM", + "icon": "venidium", + "rpc": [ + "https://rpc.venidium.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Venidium", + "symbol": "XVM", + "decimals": 18 + }, + "infoURL": "https://venidium.io", + "shortName": "xvm", + "chainId": 4919, + "networkId": 4919, + "explorers": [ + { + "name": "Venidium Explorer", + "url": "https://evm.venidiumexplorer.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "4919", + "chainName": "Venidium Mainnet", + "blockExplorerUrl": "https://evm.venidiumexplorer.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mantle", + "chain": "ETH", + "icon": "mantle", + "rpc": [ + "https://rpc.mantle.xyz", + "https://mantle-rpc.publicnode.com", + "wss://mantle-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle", + "chainId": 5000, + "networkId": 5000, + "explorers": [ + { + "name": "mantlescan", + "url": "https://mantlescan.xyz", + "standard": "EIP3091" + }, + { + "name": "Mantle Explorer", + "url": "https://explorer.mantle.xyz", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.mantle.xyz" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "5000", + "chainName": "Mantle", + "blockExplorerUrl": "https://mantlescan.xyz" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/mantle.png" + }, + { + "name": "Mantle Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.testnet.mantle.xyz" + ], + "faucets": [ + "https://faucet.testnet.mantle.xyz" + ], + "nativeCurrency": { + "name": "Testnet Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mantle-testnet", + "chainId": 5001, + "networkId": 5001, + "slip44": 1, + "explorers": [ + { + "name": "Mantle Testnet Explorer", + "url": "https://explorer.testnet.mantle.xyz", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "5001", + "chainName": "Mantle Testnet", + "blockExplorerUrl": "https://explorer.testnet.mantle.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mantle Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.mantle.xyz" + ], + "faucets": [ + "https://faucet.sepolia.mantle.xyz" + ], + "nativeCurrency": { + "name": "Sepolia Mantle", + "symbol": "MNT", + "decimals": 18 + }, + "infoURL": "https://mantle.xyz", + "shortName": "mnt-sep", + "chainId": 5003, + "networkId": 5003, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.mantle.xyz", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "5003", + "chainName": "Mantle Sepolia Testnet", + "blockExplorerUrl": "https://explorer.sepolia.mantle.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Bahamut", + "title": "Bahamut mainnet", + "chain": "Bahamut", + "icon": "bahamut", + "rpc": [ + "https://rpc1.bahamut.io", + "https://rpc2.bahamut.io", + "wss://ws1.sahara.bahamutchain.com", + "wss://ws2.sahara.bahamutchain.com", + "https://bahamut-rpc.publicnode.com", + "wss://bahamut-rpc.publicnode.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "FTN", + "symbol": "FTN", + "decimals": 18 + }, + "shortName": "ftn", + "infoURL": "https://bahamut.io", + "chainId": 5165, + "networkId": 5165, + "explorers": [ + { + "name": "blockscout", + "url": "https://ftnscan.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "5165", + "chainName": "Bahamut", + "blockExplorerUrl": "https://ftnscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Syscoin Tanenbaum Testnet", + "chain": "SYS", + "rpc": [ + "https://rpc.tanenbaum.io", + "wss://rpc.tanenbaum.io/wss", + "https://syscoin-tanenbaum-evm.publicnode.com", + "wss://syscoin-tanenbaum-evm.publicnode.com" + ], + "faucets": [ + "https://faucet.tanenbaum.io" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "tSYS", + "decimals": 18 + }, + "infoURL": "https://syscoin.org", + "shortName": "tsys", + "chainId": 5700, + "networkId": 5700, + "slip44": 1, + "explorers": [ + { + "name": "Syscoin Testnet Block Explorer", + "url": "https://tanenbaum.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "5700", + "chainName": "Syscoin Tanenbaum Testnet", + "blockExplorerUrl": "https://tanenbaum.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BounceBit Mainnet", + "chain": "BounceBit", + "rpc": [ + "https://fullnode-mainnet.bouncebitapi.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BounceBit", + "symbol": "BB", + "decimals": 18 + }, + "infoURL": "https://bouncebit.io", + "shortName": "bouncebit-mainnet", + "chainId": 6001, + "networkId": 6001, + "icon": "bouncebit", + "explorers": [ + { + "name": "BBScan Mainnet Explorer", + "url": "https://bbscan.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "6001", + "chainName": "BounceBit Mainnet", + "blockExplorerUrl": "https://bbscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cascadia Testnet", + "chain": "Cascadia", + "rpc": [ + "https://testnet.cascadia.foundation" + ], + "faucets": [ + "https://www.cascadia.foundation/faucet" + ], + "nativeCurrency": { + "name": "CC", + "symbol": "tCC", + "decimals": 18 + }, + "infoURL": "https://www.cascadia.foundation", + "shortName": "cascadia", + "chainId": 6102, + "networkId": 6102, + "icon": "cascadia", + "explorers": [ + { + "name": "Cascadia EVM Explorer", + "url": "https://explorer.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + }, + { + "name": "Cascadia Cosmos Explorer", + "url": "https://validator.cascadia.foundation", + "standard": "none", + "icon": "cascadia" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "6102", + "chainName": "Cascadia Testnet", + "blockExplorerUrl": "https://explorer.cascadia.foundation" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Aura Euphoria Testnet", + "chain": "Aura", + "rpc": [ + "https://jsonrpc.euphoria.aura.network" + ], + "faucets": [ + "https://aura.faucetme.pro" + ], + "nativeCurrency": { + "name": "test-EAura", + "symbol": "eAura", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "eaura", + "chainId": 6321, + "networkId": 6321, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://euphoria.aurascan.io", + "standard": "none", + "icon": "aura" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "6321", + "chainName": "Aura Euphoria Testnet", + "blockExplorerUrl": "https://euphoria.aurascan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Aura Mainnet", + "chain": "Aura", + "rpc": [ + "https://jsonrpc.aura.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aura", + "symbol": "AURA", + "decimals": 18 + }, + "infoURL": "https://aura.network", + "shortName": "aura", + "chainId": 6322, + "networkId": 6322, + "slip44": 1, + "icon": "aura", + "explorers": [ + { + "name": "Aurascan Explorer", + "url": "https://aurascan.io", + "standard": "none", + "icon": "aura" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "6322", + "chainName": "Aura Mainnet", + "blockExplorerUrl": "https://aurascan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/aura.png" + }, + { + "name": "Connext Sepolia", + "chain": "Connext Sepolia", + "rpc": [ + "https://rpc.connext-sepolia.gelato.digital/" + ], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "connext-sepolia", + "chainId": 6398, + "networkId": 6398, + "explorers": [ + { + "name": "Connext Sepolia", + "url": "https://connext-sepolia.blockscout.com", + "icon": "connext", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "6398", + "chainName": "Connext Sepolia", + "blockExplorerUrl": "https://connext-sepolia.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "IRIShub", + "chain": "IRIShub", + "rpc": [ + "https://evmrpc.irishub-1.irisnet.org", + "https://iris-evm.publicnode.com", + "wss://iris-evm.publicnode.com" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eris", + "symbol": "ERIS", + "decimals": 18 + }, + "infoURL": "https://www.irisnet.org", + "shortName": "iris", + "chainId": 6688, + "networkId": 6688, + "icon": "irishub", + "explorers": [ + { + "name": "IRISHub Cosmos Explorer (IOBScan)", + "url": "https://irishub.iobscan.io", + "standard": "none", + "icon": "irishub" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "6688", + "chainName": "IRIShub", + "blockExplorerUrl": "https://irishub.iobscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "ZetaChain Mainnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://zetachain-evm.blockpi.network/v1/rpc/public", + "https://zetachain-mainnet.g.allthatnode.com/archive/evm", + "https://zeta-chain.drpc.org", + "https://zetachain-mainnet.public.blastapi.io", + "https://7000.rpc.thirdweb.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs/", + "shortName": "zetachain-mainnet", + "chainId": 7000, + "networkId": 7000, + "status": "active", + "explorers": [ + { + "name": "ZetaChain Mainnet Explorer", + "url": "https://explorer.zetachain.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7000", + "chainName": "ZetaChain Mainnet", + "blockExplorerUrl": "https://explorer.zetachain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "ZetaChain Testnet", + "chain": "ZetaChain", + "icon": "zetachain", + "rpc": [ + "https://zetachain-athens-evm.blockpi.network/v1/rpc/public", + "https://zetachain-testnet.public.blastapi.io", + "https://zetachain-athens.g.allthatnode.com/archive/evm", + "https://7001.rpc.thirdweb.com", + "https://zeta-chain-testnet.drpc.org" + ], + "faucets": [ + "https://www.zetachain.com/docs/reference/apps/get-testnet-zeta/" + ], + "nativeCurrency": { + "name": "Zeta", + "symbol": "ZETA", + "decimals": 18 + }, + "infoURL": "https://zetachain.com/docs", + "shortName": "zetachain-testnet", + "chainId": 7001, + "networkId": 7001, + "slip44": 1, + "status": "active", + "explorers": [ + { + "name": "ZetaScan", + "url": "https://athens.explorer.zetachain.com", + "standard": "none" + }, + { + "name": "Blockscout", + "url": "https://zetachain-athens-3.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7001", + "chainName": "ZetaChain Testnet", + "blockExplorerUrl": "https://athens.explorer.zetachain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Bitrock Mainnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": [ + "https://connect.bit-rock.io", + "https://brockrpc.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "bitrock", + "chainId": 7171, + "networkId": 7171, + "explorers": [ + { + "name": "Bitrock Explorer", + "url": "https://explorer.bit-rock.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7171", + "chainName": "Bitrock Mainnet", + "blockExplorerUrl": "https://explorer.bit-rock.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/bitrock.png" + }, + { + "name": "Horizen EON Mainnet", + "shortName": "EON", + "chain": "EON", + "icon": "eon", + "rpc": [ + "https://eon-rpc.horizenlabs.io/ethv1", + "https://rpc.ankr.com/horizen_eon" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Zencash", + "symbol": "ZEN", + "decimals": 18 + }, + "infoURL": "https://horizen.io/", + "chainId": 7332, + "networkId": 7332, + "slip44": 121, + "explorers": [ + { + "name": "Horizen EON Block Explorer", + "url": "https://eon-explorer.horizenlabs.io", + "icon": "eon", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "7332", + "chainName": "Horizen EON Mainnet", + "blockExplorerUrl": "https://eon-explorer.horizenlabs.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Shyft Mainnet", + "chain": "SHYFT", + "icon": "shyft", + "rpc": [ + "https://rpc.shyft.network/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Shyft", + "symbol": "SHYFT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyft", + "chainId": 7341, + "networkId": 7341, + "slip44": 2147490989, + "explorers": [ + { + "name": "Shyft BX", + "url": "https://bx.shyft.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "7341", + "chainName": "Shyft Mainnet", + "blockExplorerUrl": "https://bx.shyft.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cyber Mainnet", + "chain": "Cyber", + "rpc": [ + "https://cyber.alt.technology/", + "wss://cyber-ws.alt.technology/", + "https://rpc.cyber.co/", + "wss://rpc.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cyeth", + "chainId": 7560, + "networkId": 7560, + "explorers": [ + { + "name": "Cyber Mainnet Explorer", + "url": "https://cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://cyber.co/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7560", + "chainName": "Cyber Mainnet", + "blockExplorerUrl": "https://cyberscan.co" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Canto", + "chain": "Canto", + "rpc": [ + "https://canto.slingshot.finance", + "https://canto-rpc.ansybl.io", + "https://mainnode.plexnode.org:8545", + "https://canto.gravitychain.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Canto", + "symbol": "CANTO", + "decimals": 18 + }, + "infoURL": "https://canto.io", + "shortName": "canto", + "chainId": 7700, + "networkId": 7700, + "explorers": [ + { + "name": "Canto Explorer (OKLink)", + "url": "https://www.oklink.com/canto", + "standard": "EIP3091" + }, + { + "name": "Canto EVM Explorer (Blockscout)", + "url": "https://tuber.build", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://canto.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "7700", + "chainName": "Canto", + "blockExplorerUrl": "https://www.oklink.com/canto" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/canto.png" + }, + { + "name": "Bitrock Testnet", + "chain": "Bitrock", + "icon": "bitrock", + "rpc": [ + "https://testnet.bit-rock.io" + ], + "faucets": [ + "https://faucet.bit-rock.io" + ], + "nativeCurrency": { + "name": "BITROCK", + "symbol": "BROCK", + "decimals": 18 + }, + "infoURL": "https://bit-rock.io", + "shortName": "tbitrock", + "chainId": 7771, + "networkId": 7771, + "slip44": 1, + "explorers": [ + { + "name": "Bitrock Testnet Explorer", + "url": "https://testnetscan.bit-rock.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7771", + "chainName": "Bitrock Testnet", + "blockExplorerUrl": "https://testnetscan.bit-rock.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Torus Mainnet", + "chain": "TQF", + "icon": "torus", + "rpc": [ + "https://rpc.toruschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "TQF", + "symbol": "TQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "tqf", + "chainId": 8192, + "networkId": 8192, + "explorers": [ + { + "name": "blockscout", + "url": "https://toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "8192", + "chainName": "Torus Mainnet", + "blockExplorerUrl": "https://toruscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Torus Testnet", + "chain": "TQF", + "icon": "torus", + "rpc": [ + "https://rpc.testnet.toruschain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "tTQF", + "symbol": "TTQF", + "decimals": 18 + }, + "infoURL": "https://docs.toruschain.com", + "shortName": "ttqf", + "chainId": 8194, + "networkId": 8194, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://testnet.toruscan.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "8194", + "chainName": "Torus Testnet", + "blockExplorerUrl": "https://testnet.toruscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kaia Mainnet", + "chain": "KAIA", + "rpc": [ + "https://public-en.node.kaia.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "KAIA", + "symbol": "KLAY", + "decimals": 18 + }, + "infoURL": "https://kaia.io", + "shortName": "kaia-mainnet", + "chainId": 8217, + "networkId": 8217, + "slip44": 8217, + "explorers": [ + { + "name": "Klaytnscope", + "url": "https://scope.klaytn.com", + "standard": "EIP3091" + }, + { + "name": "Klaytnfinder", + "url": "https://klaytnfinder.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "8217", + "chainName": "Kaia Mainnet", + "blockExplorerUrl": "https://scope.klaytn.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lorenzo", + "chain": "Lorenzo", + "rpc": [ + "https://rpc.lorenzo-protocol.xyz" + ], + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Lorenzo stBTC", + "symbol": "stBTC", + "decimals": 18 + }, + "infoURL": "https://www.lorenzo-protocol.xyz/", + "shortName": "lrz", + "chainId": 8329, + "networkId": 8329, + "icon": "lorenzo", + "explorers": [ + { + "name": "Lorenzo Explorer", + "url": "https://scan.lorenzo-protocol.xyz", + "standard": "none", + "icon": "lorenzo" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "8329", + "chainName": "Lorenzo", + "blockExplorerUrl": "https://scan.lorenzo-protocol.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Base", + "chain": "ETH", + "rpc": [ + "https://mainnet.base.org/", + "https://developer-access-mainnet.base.org/", + "https://base.gateway.tenderly.co", + "wss://base.gateway.tenderly.co", + "https://base-rpc.publicnode.com", + "wss://base-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "base", + "chainId": 8453, + "networkId": 8453, + "icon": "base", + "explorers": [ + { + "name": "basescan", + "url": "https://basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://base.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "8453", + "chainName": "Base", + "blockExplorerUrl": "https://basescan.org", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "IOTA EVM", + "title": "IOTA EVM", + "chain": "IOTA EVM", + "rpc": [ + "https://json-rpc.evm.iotaledger.net", + "https://ws.json-rpc.evm.iotaledger.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "IOTA", + "symbol": "IOTA", + "decimals": 18 + }, + "infoURL": "https://www.iota.org", + "shortName": "iotaevm", + "chainId": 8822, + "networkId": 8822, + "icon": "iotaevm", + "explorers": [ + { + "name": "explorer", + "url": "https://explorer.evm.iota.org", + "icon": "iotaevm", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "8822", + "chainName": "IOTA EVM", + "blockExplorerUrl": "https://explorer.evm.iota.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Evmos Testnet", + "chain": "Evmos", + "rpc": [ + "https://evmos-testnet.lava.build", + "https://eth.bd.evmos.dev:8545", + "https://evmos-testnet-evm-rpc.publicnode.com", + "wss://evmos-testnet-evm-rpc.publicnode.com" + ], + "faucets": [ + "https://faucet.evmos.dev" + ], + "nativeCurrency": { + "name": "test-Evmos", + "symbol": "tEVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos-testnet", + "chainId": 9000, + "networkId": 9000, + "slip44": 1, + "icon": "evmos", + "explorers": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://testnet.escan.live", + "standard": "none", + "icon": "evmos" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "9000", + "chainName": "Evmos Testnet", + "blockExplorerUrl": "https://testnet.escan.live" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Evmos", + "chain": "Evmos", + "rpc": [ + "https://evmos.lava.build", + "wss://evmos.lava.build/websocket", + "https://evmos-evm-rpc.publicnode.com", + "wss://evmos-evm-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Evmos", + "symbol": "EVMOS", + "decimals": 18 + }, + "infoURL": "https://evmos.org", + "shortName": "evmos", + "chainId": 9001, + "networkId": 9001, + "icon": "evmos", + "explorers": [ + { + "name": "Evmos Explorer (Escan)", + "url": "https://escan.live", + "standard": "none", + "icon": "evmos" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "9001", + "chainName": "Evmos", + "blockExplorerUrl": "https://escan.live" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/evmos.png" + }, + { + "name": "Boba BNB Testnet", + "chain": "Boba BNB Testnet", + "rpc": [ + "https://testnet.bnb.boba.network", + "wss://wss.testnet.bnb.boba.network", + "https://replica.testnet.bnb.boba.network", + "wss://replica-wss.testnet.bnb.boba.network", + "https://boba-bnb-testnet.gateway.tenderly.co", + "wss://boba-bnb-testnet.gateway.tenderly.co" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnbTestnet", + "chainId": 9728, + "networkId": 9728, + "slip44": 1, + "explorers": [ + { + "name": "Boba BNB Testnet block explorer", + "url": "https://testnet.bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "9728", + "chainName": "Boba BNB Testnet", + "blockExplorerUrl": "https://testnet.bobascan.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/boba-network.png" + }, + { + "name": "Smart Bitcoin Cash", + "chain": "smartBCH", + "rpc": [ + "https://smartbch.greyh.at", + "https://rpc-mainnet.smartbch.org", + "https://smartbch.fountainhead.cash/mainnet", + "https://smartbch.devops.cash/mainnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Cash", + "symbol": "BCH", + "decimals": 18 + }, + "infoURL": "https://smartbch.org/", + "shortName": "smartbch", + "chainId": 10000, + "networkId": 10000, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "10000", + "chainName": "Smart Bitcoin Cash", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Smart Bitcoin Cash Testnet", + "chain": "smartBCHTest", + "rpc": [ + "https://rpc-testnet.smartbch.org", + "https://smartbch.devops.cash/testnet" + ], + "faucets": [], + "nativeCurrency": { + "name": "Bitcoin Cash Test Token", + "symbol": "BCHT", + "decimals": 18 + }, + "infoURL": "http://smartbch.org/", + "shortName": "smartbchtest", + "chainId": 10001, + "networkId": 10001, + "slip44": 1, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "10001", + "chainName": "Smart Bitcoin Cash Testnet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Japan Open Chain Testnet", + "chain": "JOCT", + "rpc": [ + "https://rpc-1.testnet.japanopenchain.org:8545", + "https://rpc-2.testnet.japanopenchain.org:8545", + "https://rpc-3.testnet.japanopenchain.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Japan Open Chain Testnet Token", + "symbol": "JOCT", + "decimals": 18 + }, + "infoURL": "https://www.japanopenchain.org/", + "shortName": "joct", + "chainId": 10081, + "networkId": 10081, + "slip44": 1, + "explorers": [ + { + "name": "Testnet Block Explorer", + "url": "https://explorer.testnet.japanopenchain.org", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "10081", + "chainName": "Japan Open Chain Testnet", + "blockExplorerUrl": "https://explorer.testnet.japanopenchain.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Gnosis Chiado Testnet", + "chain": "GNO", + "icon": "gnosis", + "rpc": [ + "https://rpc.chiadochain.net", + "https://rpc.chiado.gnosis.gateway.fm", + "wss://rpc.chiadochain.net/wss", + "https://gnosis-chiado-rpc.publicnode.com", + "wss://gnosis-chiado-rpc.publicnode.com", + "https://gnosis-chiado.drpc.org", + "wss://gnosis-chiado.drpc.org" + ], + "faucets": [ + "https://gnosisfaucet.com" + ], + "nativeCurrency": { + "name": "Chiado xDAI", + "symbol": "XDAI", + "decimals": 18 + }, + "infoURL": "https://docs.gnosischain.com", + "shortName": "chi", + "chainId": 10200, + "networkId": 10200, + "slip44": 1, + "explorers": [ + { + "name": "blockscout-chiadochain", + "url": "https://blockscout.chiadochain.net", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://gnosis-chiado.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "10200", + "chainName": "Gnosis Chiado Testnet", + "blockExplorerUrl": "https://blockscout.chiadochain.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arthera Mainnet", + "chain": "AA", + "icon": "arthera", + "rpc": [ + "https://rpc.arthera.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net/build/developing-sc/using-hardhat", + "shortName": "aa", + "chainId": 10242, + "networkId": 10242, + "slip44": 10242, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "10242", + "chainName": "Arthera Mainnet", + "blockExplorerUrl": "https://explorer.arthera.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arthera Testnet", + "chain": "AA", + "icon": "arthera", + "rpc": [ + "https://rpc-test.arthera.net" + ], + "faucets": [ + "https://faucet.arthera.net" + ], + "nativeCurrency": { + "name": "Arthera", + "symbol": "AA", + "decimals": 18 + }, + "infoURL": "https://docs.arthera.net", + "shortName": "aat", + "chainId": 10243, + "networkId": 10243, + "slip44": 1, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-test.arthera.net", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "10243", + "chainName": "Arthera Testnet", + "blockExplorerUrl": "https://explorer-test.arthera.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lamina1", + "chain": "Lamina1", + "rpc": [ + "https://subnets.avax.network/lamina1/mainnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "L1", + "symbol": "L1", + "decimals": 18 + }, + "infoURL": "https://www.lamina1.com/", + "shortName": "lamina1", + "chainId": 10849, + "networkId": 10849, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Explorer", + "url": "https://subnets.avax.network/lamina1", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "10849", + "chainName": "Lamina1", + "blockExplorerUrl": "https://subnets.avax.network/lamina1" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Shape Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.shape.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://shape.network", + "shortName": "shapesep", + "chainId": 11011, + "networkId": 11011, + "icon": "shapeTestnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer-sepolia.shape.network", + "standard": "EIP3091" + } + ], + "slip44": 1, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "11011", + "chainName": "Shape Sepolia Testnet", + "blockExplorerUrl": "https://explorer-sepolia.shape.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "WAGMI", + "chain": "WAGMI", + "icon": "wagmi", + "rpc": [ + "https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc" + ], + "faucets": [ + "https://faucet.avax.network/?subnet=wagmi" + ], + "nativeCurrency": { + "name": "WAGMI", + "symbol": "WGM", + "decimals": 18 + }, + "infoURL": "https://subnets-test.avax.network/wagmi/details", + "shortName": "WAGMI", + "chainId": 11111, + "networkId": 11111, + "explorers": [ + { + "name": "Avalanche Subnet Explorer", + "url": "https://subnets-test.avax.network/wagmi", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11111", + "chainName": "WAGMI", + "blockExplorerUrl": "https://subnets-test.avax.network/wagmi" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Haqq Network", + "chain": "Haqq", + "rpc": [ + "https://rpc.eth.haqq.network", + "https://haqq-evm-rpc.publicnode.com", + "wss://haqq-evm-rpc.publicnode.com", + "https://haqq.drpc.org", + "wss://haqq.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLM", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLM", + "chainId": 11235, + "networkId": 11235, + "explorers": [ + { + "name": "Mainnet HAQQ Explorer", + "url": "https://explorer.haqq.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "11235", + "chainName": "Haqq Network", + "blockExplorerUrl": "https://explorer.haqq.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Shyft Testnet", + "chain": "SHYFTT", + "icon": "shyft", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Shyft Test Token", + "symbol": "SHYFTT", + "decimals": 18 + }, + "infoURL": "https://shyft.network", + "shortName": "shyftt", + "chainId": 11437, + "networkId": 11437, + "slip44": 1, + "explorers": [ + { + "name": "Shyft Testnet BX", + "url": "https://bx.testnet.shyft.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11437", + "chainName": "Shyft Testnet", + "blockExplorerUrl": "https://bx.testnet.shyft.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BEVM Mainnet", + "chain": "BEVM", + "rpc": [ + "https://rpc-mainnet-1.bevm.io/", + "https://rpc-mainnet-2.bevm.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bevm.io", + "shortName": "bevm", + "chainId": 11501, + "networkId": 11501, + "icon": "bevm", + "explorers": [ + { + "name": "bevm mainnet scan", + "url": "https://scan-mainnet.bevm.io", + "standard": "none" + }, + { + "name": "bevm mainnet oklink", + "url": "https://www.oklink.com/bevm", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "11501", + "chainName": "BEVM Mainnet", + "blockExplorerUrl": "https://scan-mainnet.bevm.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BEVM Testnet", + "chain": "BEVM", + "rpc": [ + "https://testnet.bevm.io/" + ], + "faucets": [], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://bevm.io", + "shortName": "bevm-test", + "chainId": 11503, + "networkId": 11503, + "icon": "bevm", + "explorers": [ + { + "name": "bevm testnet scan", + "url": "https://scan-testnet.bevm.io", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "11503", + "chainName": "BEVM Testnet", + "blockExplorerUrl": "https://scan-testnet.bevm.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Polygon Supernet Arianee", + "chain": "Arianee", + "rpc": [ + "https://rpc.polygonsupernet.public.arianee.net" + ], + "faucets": [], + "nativeCurrency": { + "name": "Arianee", + "symbol": "ARIA20", + "decimals": 18 + }, + "infoURL": "https://arianee.org", + "shortName": "Arianee", + "chainId": 11891, + "networkId": 11891, + "explorers": [ + { + "name": "Polygon Supernet Arianee Explorer", + "url": "https://polygonsupernet.explorer.arianee.net", + "standard": "EIP3091" + } + ], + "parent": { + "chain": "eip155-1", + "type": "L2" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11891", + "chainName": "Polygon Supernet Arianee", + "blockExplorerUrl": "https://polygonsupernet.explorer.arianee.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "L3X Protocol", + "chainId": 12324, + "shortName": "l3x", + "chain": "L3X", + "icon": "l3x", + "networkId": 12324, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc-mainnet.l3x.com" + ], + "faucets": [], + "explorers": [ + { + "name": "L3X Mainnet Explorer", + "url": "https://explorer.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-42161", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "12324", + "chainName": "L3X Protocol", + "blockExplorerUrl": "https://explorer.l3x.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "L3X Protocol Testnet", + "chainId": 12325, + "shortName": "l3x-testnet", + "chain": "L3X", + "icon": "l3x", + "networkId": 12325, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rpc-testnet.l3x.com" + ], + "faucets": [], + "explorers": [ + { + "name": "L3X Testnet Explorer", + "url": "https://explorer-testnet.l3x.com", + "standard": "EIP3091" + } + ], + "infoURL": "https://l3x.com", + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "12325", + "chainName": "L3X Protocol Testnet", + "blockExplorerUrl": "https://explorer-testnet.l3x.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "RSS3 VSL Mainnet", + "chain": "RSS3", + "rpc": [ + "https://rpc.rss3.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "RSS3", + "symbol": "RSS3", + "decimals": 18 + }, + "infoURL": "https://rss3.io", + "shortName": "rss3", + "chainId": 12553, + "networkId": 12553, + "icon": "rss3", + "explorers": [ + { + "name": "RSS3 VSL Scan", + "url": "https://scan.rss3.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://explorer.rss3.io/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "12553", + "chainName": "RSS3 VSL Mainnet", + "blockExplorerUrl": "https://scan.rss3.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/rss3.png" + }, + { + "name": "Beam Testnet", + "chain": "BEAM", + "rpc": [ + "https://build.onbeam.com/rpc/testnet", + "wss://build.onbeam.com/ws/testnet", + "https://subnets.avax.network/beam/testnet/rpc", + "wss://subnets.avax.network/beam/testnet/ws" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [ + "https://faucet.avax.network/?subnet=beam", + "https://faucet.onbeam.com" + ], + "nativeCurrency": { + "name": "Beam", + "symbol": "BEAM", + "decimals": 18 + }, + "infoURL": "https://www.onbeam.com", + "shortName": "beam-testnet", + "icon": "beam", + "chainId": 13337, + "networkId": 13337, + "slip44": 1, + "explorers": [ + { + "name": "Beam Explorer", + "url": "https://subnets-test.avax.network/beam", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "13337", + "chainName": "Beam Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/beam" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Immutable zkEVM", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.immutable.com", + "https://immutable-zkevm.drpc.org", + "wss://immutable-zkevm.drpc.org" + ], + "faucets": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "nativeCurrency": { + "name": "IMX", + "symbol": "IMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx", + "chainId": 13371, + "networkId": 13371, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable explorer", + "url": "https://explorer.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "13371", + "chainName": "Immutable zkEVM", + "blockExplorerUrl": "https://explorer.immutable.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Immutable zkEVM Testnet", + "chain": "Immutable zkEVM", + "rpc": [ + "https://rpc.testnet.immutable.com", + "https://immutable-zkevm-testnet.drpc.org", + "wss://immutable-zkevm-testnet.drpc.org" + ], + "faucets": [ + "https://docs.immutable.com/docs/zkEVM/guides/faucet" + ], + "nativeCurrency": { + "name": "Test IMX", + "symbol": "tIMX", + "decimals": 18 + }, + "infoURL": "https://www.immutable.com", + "shortName": "imx-testnet", + "chainId": 13473, + "networkId": 13473, + "slip44": 1, + "icon": "immutable", + "explorers": [ + { + "name": "Immutable Testnet explorer", + "url": "https://explorer.testnet.immutable.com", + "standard": "EIP3091", + "icon": "immutable" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "13473", + "chainName": "Immutable zkEVM Testnet", + "blockExplorerUrl": "https://explorer.testnet.immutable.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Vana Moksha Testnet", + "chain": "Vana Moksha Testnet", + "rpc": [ + "https://rpc.moksha.vana.org" + ], + "nativeCurrency": { + "name": "VANA", + "symbol": "VANA", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "vana-moksha", + "chainId": 14800, + "networkId": 14800, + "explorers": [ + { + "name": "Vana Moksha Testnet", + "url": "https://vanascan.io", + "icon": "vanamoksha", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "14800", + "chainName": "Vana Moksha Testnet", + "blockExplorerUrl": "https://vanascan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Holesky", + "title": "Ethereum Testnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.holesky.ethpandaops.io", + "https://ethereum-holesky-rpc.publicnode.com", + "wss://ethereum-holesky-rpc.publicnode.com", + "https://holesky.drpc.org", + "wss://holesky.drpc.org", + "https://rpc-holesky.rockx.com" + ], + "faucets": [ + "https://faucet.holesky.ethpandaops.io", + "https://holesky-faucet.pk910.de" + ], + "nativeCurrency": { + "name": "Testnet ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://holesky.ethpandaops.io", + "shortName": "holesky", + "chainId": 17000, + "networkId": 17000, + "slip44": 1, + "icon": "ethereum", + "status": "incubating", + "explorers": [ + { + "name": "Holesky Explorer", + "url": "https://holesky.beaconcha.in", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "otterscan-holesky", + "url": "https://holesky.otterscan.io", + "icon": "ethereum", + "standard": "EIP3091" + }, + { + "name": "Holesky Etherscan", + "url": "https://holesky.etherscan.io", + "icon": "ethereum", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "17000", + "chainName": "Holesky", + "blockExplorerUrl": "https://holesky.beaconcha.in" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Garnet Holesky", + "chain": "ETH", + "rpc": [ + "https://rpc.garnetchain.com", + "wss://rpc.garnetchain.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://redstone.xyz", + "shortName": "garnet", + "chainId": 17069, + "networkId": 17069, + "icon": "garnet", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.garnetchain.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [ + { + "url": "https://garnetchain.com/deposit" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "17069", + "chainName": "Garnet Holesky", + "blockExplorerUrl": "https://explorer.garnetchain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Eclipse Subnet", + "chain": "ECLIPSE", + "rpc": [ + "https://subnets.avax.network/eclipse/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLP", + "decimals": 16 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipse", + "chainId": 17172, + "networkId": 17172, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipse", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "17172", + "chainName": "Eclipse Subnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipse" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "unreal-old", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal.gelato.digital", + "wss://ws.unreal.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal-old", + "chainId": 18231, + "networkId": 18231, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [] + }, + "status": "deprecated", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "18231", + "chainName": "unreal-old", + "blockExplorerUrl": "https://unreal.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "unreal", + "title": "unreal testnet for re.al", + "chain": "unreal", + "rpc": [ + "https://rpc.unreal-orbit.gelato.digital", + "wss://ws.unreal-orbit.gelato.digital" + ], + "nativeCurrency": { + "name": "unreal Ether", + "symbol": "reETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/unreal", + "faucets": [], + "shortName": "unreal", + "chainId": 18233, + "networkId": 18233, + "slip44": 60, + "icon": "unreal", + "explorers": [ + { + "name": "blockscout", + "url": "https://unreal.blockscout.com", + "icon": "unreal", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-17000", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/unreal" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "18233", + "chainName": "unreal", + "blockExplorerUrl": "https://unreal.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "MAP Protocol", + "chain": "MAPO", + "icon": "map", + "rpc": [ + "https://rpc.maplabs.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "MAPO", + "symbol": "MAPO", + "decimals": 18 + }, + "infoURL": "https://mapprotocol.io/", + "shortName": "mapo", + "chainId": 22776, + "networkId": 22776, + "slip44": 60, + "explorers": [ + { + "name": "maposcan", + "url": "https://maposcan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "22776", + "chainName": "MAP Protocol", + "blockExplorerUrl": "https://maposcan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Oasis Sapphire", + "chain": "Sapphire", + "icon": "oasis", + "rpc": [ + "https://sapphire.oasis.io", + "wss://sapphire.oasis.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Rose", + "symbol": "ROSE", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire", + "chainId": 23294, + "networkId": 23294, + "explorers": [ + { + "name": "Oasis Sapphire Explorer", + "url": "https://explorer.oasis.io/mainnet/sapphire", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "23294", + "chainName": "Oasis Sapphire", + "blockExplorerUrl": "https://explorer.oasis.io/mainnet/sapphire" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/sapphire.png" + }, + { + "name": "Oasis Sapphire Testnet", + "chain": "Sapphire", + "icon": "oasis", + "rpc": [ + "https://testnet.sapphire.oasis.io", + "wss://testnet.sapphire.oasis.io/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sapphire Test Rose", + "symbol": "TEST", + "decimals": 18 + }, + "infoURL": "https://docs.oasis.io/dapp/sapphire", + "shortName": "sapphire-testnet", + "chainId": 23295, + "networkId": 23295, + "slip44": 1, + "explorers": [ + { + "name": "Oasis Sapphire Testnet Explorer", + "url": "https://explorer.oasis.io/testnet/sapphire", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "23295", + "chainName": "Oasis Sapphire Testnet", + "blockExplorerUrl": "https://explorer.oasis.io/testnet/sapphire" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Everclear Mainnet", + "chain": "Everclear Mainnet", + "rpc": [ + "https://rpc.everclear.raas.gelato.cloud" + ], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "faucets": [], + "infoURL": "", + "shortName": "Everclear", + "chainId": 25327, + "networkId": 25327, + "explorers": [ + { + "name": "Everclear", + "url": "https://scan.everclear.org", + "icon": "everclear", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "25327", + "chainName": "Everclear Mainnet", + "blockExplorerUrl": "https://scan.everclear.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Zilliqa EVM", + "chain": "ZIL", + "rpc": [ + "https://api.zilliqa.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil", + "chainId": 32769, + "networkId": 32769, + "icon": "zilliqa", + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "32769", + "chainName": "Zilliqa EVM", + "blockExplorerUrl": "https://evmx.zilliqa.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Zilliqa EVM Testnet", + "chain": "ZIL", + "rpc": [ + "https://dev-api.zilliqa.com" + ], + "faucets": [ + "https://dev-wallet.zilliqa.com/faucet?network=testnet" + ], + "nativeCurrency": { + "name": "Zilliqa", + "symbol": "ZIL", + "decimals": 18 + }, + "infoURL": "https://www.zilliqa.com/", + "shortName": "zil-testnet", + "chainId": 33101, + "networkId": 33101, + "slip44": 1, + "explorers": [ + { + "name": "Zilliqa EVM Explorer", + "url": "https://evmx.zilliqa.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "33101", + "chainName": "Zilliqa EVM Testnet", + "blockExplorerUrl": "https://evmx.zilliqa.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "SlingShot", + "chain": "SLING", + "rpc": [ + "https://rpc.slingshotdao.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sling", + "symbol": "SLING", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://slingshotdao.com", + "shortName": "slingshot", + "chainId": 33401, + "networkId": 33401, + "icon": "slingshot", + "explorers": [ + { + "name": "SlingShot Explorer", + "url": "https://explore.slingshotdao.com", + "icon": "slingshot", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "33401", + "chainName": "SlingShot", + "blockExplorerUrl": "https://explore.slingshotdao.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mode", + "chain": "ETH", + "rpc": [ + "https://mainnet.mode.network", + "https://mode.drpc.org", + "wss://mode.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://docs.mode.network/", + "shortName": "mode", + "chainId": 34443, + "networkId": 34443, + "icon": "mode", + "explorers": [ + { + "name": "modescout", + "url": "https://explorer.mode.network", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "34443", + "chainName": "Mode", + "blockExplorerUrl": "https://explorer.mode.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/mode.png" + }, + { + "name": "Q Mainnet", + "chain": "Q", + "rpc": [ + "https://rpc.q.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "QGOV", + "symbol": "QGOV", + "decimals": 18 + }, + "infoURL": "https://q.org", + "shortName": "q", + "chainId": 35441, + "networkId": 35441, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.q.org", + "icon": "q", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "35441", + "chainName": "Q Mainnet", + "blockExplorerUrl": "https://explorer.q.org" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_q.png" + }, + { + "name": "Q Testnet", + "chain": "Q", + "rpc": [ + "https://rpc.qtestnet.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Q token", + "symbol": "Q", + "decimals": 18 + }, + "infoURL": "https://q.org/", + "shortName": "q-testnet", + "chainId": 35443, + "networkId": 35443, + "slip44": 1, + "icon": "q", + "explorers": [ + { + "name": "Q explorer", + "url": "https://explorer.qtestnet.org", + "icon": "q", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "35443", + "chainName": "Q Testnet", + "blockExplorerUrl": "https://explorer.qtestnet.org" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_q.png" + }, + { + "name": "Aleph Zero EVM", + "chain": "Aleph Zero EVM", + "icon": "aleph-zero", + "rpc": [ + "https://rpc.alephzero.raas.gelato.cloud", + "wss://ws.alephzero.raas.gelato.cloud" + ], + "faucets": [], + "nativeCurrency": { + "name": "Aleph Zero", + "symbol": "AZERO", + "decimals": 18 + }, + "infoURL": "https://alephzero.org/", + "shortName": "aleph-zero", + "chainId": 41455, + "networkId": 41455, + "explorers": [ + { + "name": "Aleph Zero EVM Mainnet Explorer", + "url": "https://evm-explorer.alephzero.org", + "icon": "aleph-zero", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "41455", + "chainName": "Aleph Zero EVM", + "blockExplorerUrl": "https://evm-explorer.alephzero.org" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/aleph-zero.png" + }, + { + "name": "Arbitrum One", + "chainId": 42161, + "shortName": "arb1", + "chain": "ETH", + "networkId": 42161, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}", + "https://arb1.arbitrum.io/rpc", + "https://arbitrum-one.publicnode.com", + "wss://arbitrum-one.publicnode.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbiscan", + "url": "https://arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "Arbitrum Explorer", + "url": "https://explorer.arbitrum.io", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://arbitrum.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io" + } + ], + "modules": [ + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "42161", + "chainName": "Arbitrum One", + "blockExplorerUrl": "https://arbiscan.io", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arbitrum Nova", + "chainId": 42170, + "shortName": "arb-nova", + "chain": "ETH", + "networkId": 42170, + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://nova.arbitrum.io/rpc", + "https://arbitrum-nova.publicnode.com", + "wss://arbitrum-nova.publicnode.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Arbitrum Nova Chain Explorer", + "url": "https://nova-explorer.arbitrum.io", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://nova.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "infoURL": "https://arbitrum.io", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "42170", + "chainName": "Arbitrum Nova", + "blockExplorerUrl": "https://nova-explorer.arbitrum.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Celo Mainnet", + "chainId": 42220, + "shortName": "celo", + "chain": "CELO", + "networkId": 42220, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://forno.celo.org", + "wss://forno.celo.org/ws" + ], + "faucets": [], + "infoURL": "https://docs.celo.org/", + "explorers": [ + { + "name": "Celoscan", + "url": "https://celoscan.io", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://explorer.celo.org", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "42220", + "chainName": "Celo Mainnet", + "blockExplorerUrl": "https://celoscan.io", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/celo.png" + }, + { + "name": "Etherlink Mainnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 42793, + "networkId": 42793, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://etherlink.com", + "shortName": "etlk", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": [ + "https://node.mainnet.etherlink.com" + ], + "faucets": [], + "explorers": [ + { + "name": "Etherlink Explorer", + "url": "https://explorer.etherlink.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "42793", + "chainName": "Etherlink Mainnet", + "blockExplorerUrl": "https://explorer.etherlink.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Avalanche Fuji Testnet", + "chain": "AVAX", + "icon": "avax", + "rpc": [ + "https://api.avax-test.network/ext/bc/C/rpc", + "https://avalanche-fuji-c-chain-rpc.publicnode.com", + "wss://avalanche-fuji-c-chain-rpc.publicnode.com" + ], + "faucets": [ + "https://faucet.avax-test.network/" + ], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://cchain.explorer.avax-test.network", + "shortName": "Fuji", + "chainId": 43113, + "networkId": 1, + "slip44": 1, + "explorers": [ + { + "name": "snowtrace", + "url": "https://testnet.snowtrace.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "43113", + "chainName": "Avalanche Fuji Testnet", + "blockExplorerUrl": "https://testnet.snowtrace.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Avalanche C-Chain", + "chain": "AVAX", + "icon": "avax", + "rpc": [ + "https://api.avax.network/ext/bc/C/rpc", + "https://avalanche-c-chain-rpc.publicnode.com", + "wss://avalanche-c-chain-rpc.publicnode.com" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Avalanche", + "symbol": "AVAX", + "decimals": 18 + }, + "infoURL": "https://www.avax.network/", + "shortName": "avax", + "chainId": 43114, + "networkId": 43114, + "slip44": 9005, + "explorers": [ + { + "name": "snowtrace", + "url": "https://snowtrace.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0x1Fb403834C911eB98d56E74F5182b0d64C3b3b4D", + "chainId": "43114", + "chainName": "Avalanche C-Chain", + "blockExplorerUrl": "https://snowtrace.io", + "moduleName": "allowance-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Boba Avax", + "chain": "Boba Avax", + "status": "deprecated", + "rpc": [ + "https://avax.boba.network", + "wss://wss.avax.boba.network", + "https://replica.avax.boba.network", + "wss://replica-wss.avax.boba.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://docs.boba.network/for-developers/network-avalanche", + "shortName": "bobaavax", + "chainId": 43288, + "networkId": 43288, + "explorers": [ + { + "name": "Boba Avax Explorer", + "url": "https://blockexplorer.avax.boba.network", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "43288", + "chainName": "Boba Avax", + "blockExplorerUrl": "https://blockexplorer.avax.boba.network" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/boba-network.png" + }, + { + "name": "Celo Alfajores Testnet", + "chainId": 44787, + "shortName": "ALFA", + "chain": "CELO", + "networkId": 44787, + "slip44": 1, + "nativeCurrency": { + "name": "CELO", + "symbol": "CELO", + "decimals": 18 + }, + "rpc": [ + "https://alfajores-forno.celo-testnet.org", + "wss://alfajores-forno.celo-testnet.org/ws" + ], + "faucets": [ + "https://celo.org/developers/faucet", + "https://cauldron.pretoriaresearchlab.io/alfajores-faucet" + ], + "infoURL": "https://docs.celo.org/", + "explorers": [ + { + "name": "Alfajoresscan", + "url": "https://alfajores.celoscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "44787", + "chainName": "Celo Alfajores Testnet", + "blockExplorerUrl": "https://alfajores.celoscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Autobahn Network", + "chain": "TXL", + "rpc": [ + "https://rpc.autobahn.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "TXL", + "symbol": "TXL", + "decimals": 18 + }, + "infoURL": "https://autobahn.network", + "shortName": "AutobahnNetwork", + "chainId": 45000, + "networkId": 45000, + "icon": "autobahn", + "explorers": [ + { + "name": "autobahn explorer", + "url": "https://explorer.autobahn.network", + "icon": "autobahn", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "45000", + "chainName": "Autobahn Network", + "blockExplorerUrl": "https://explorer.autobahn.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Neo X Mainnet", + "chain": "Neo X", + "rpc": [ + "https://mainnet-1.rpc.banelabs.org", + "https://mainnet-2.rpc.banelabs.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://neo.org/", + "shortName": "neox-mainnet", + "chainId": 47763, + "networkId": 47763, + "icon": "neox", + "explorers": [ + { + "name": "Neo X - Explorer", + "url": "https://xexplorer.neo.org", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "47763", + "chainName": "Neo X Mainnet", + "blockExplorerUrl": "https://xexplorer.neo.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "REI Network", + "chain": "REI", + "rpc": [ + "https://rpc.rei.network", + "wss://rpc.rei.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "REI", + "symbol": "REI", + "decimals": 18 + }, + "infoURL": "https://rei.network/", + "shortName": "REI", + "chainId": 47805, + "networkId": 47805, + "explorers": [ + { + "name": "rei-scan", + "url": "https://scan.rei.network", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "47805", + "chainName": "REI Network", + "blockExplorerUrl": "https://scan.rei.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Zircuit Testnet", + "chain": "Zircuit Testnet", + "icon": "zircuit", + "rpc": [ + "http://zircuit1-testnet.p2pify.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.zircuit.com/", + "shortName": "zircuit-testnet", + "chainId": 48899, + "networkId": 48899, + "explorers": [ + { + "name": "Zircuit", + "url": "https://explorer.testnet.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "48899", + "chainName": "Zircuit Testnet", + "blockExplorerUrl": "https://explorer.testnet.zircuit.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Zircuit Mainnet", + "chain": "Zircuit Mainnet", + "icon": "zircuit", + "rpc": [ + "https://zircuit1-mainnet.p2pify.com/" + ], + "faucets": [], + "nativeCurrency": { + "name": "ETH", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.zircuit.com/", + "shortName": "zircuit-mainnet", + "chainId": 48900, + "networkId": 48900, + "explorers": [ + { + "name": "Zircuit", + "url": "https://explorer.zircuit.com", + "icon": "zircuit", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "48900", + "chainName": "Zircuit Mainnet", + "blockExplorerUrl": "https://explorer.zircuit.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "DODOchain testnet", + "title": "DODOchain testnet", + "chain": "DODOchain", + "icon": "dodochain_testnet", + "rpc": [ + "https://dodochain-testnet.alt.technology", + "wss://dodochain-testnet.alt.technology/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "DODO", + "symbol": "DODO", + "decimals": 18 + }, + "infoURL": "https://www.dodochain.com", + "shortName": "dodochain", + "chainId": 53457, + "networkId": 53457, + "explorers": [ + { + "name": "DODOchain Testnet (Sepolia) Explorer", + "url": "https://testnet-scan.dodochain.com", + "icon": "dodochain_testnet", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "53457", + "chainName": "DODOchain testnet", + "blockExplorerUrl": "https://testnet-scan.dodochain.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Haqq Chain Testnet", + "chain": "TestEdge2", + "rpc": [ + "https://rpc.eth.testedge2.haqq.network" + ], + "faucets": [ + "https://testedge2.haqq.network" + ], + "nativeCurrency": { + "name": "Islamic Coin", + "symbol": "ISLMT", + "decimals": 18 + }, + "infoURL": "https://islamiccoin.net", + "shortName": "ISLMT", + "chainId": 54211, + "networkId": 54211, + "slip44": 1, + "explorers": [ + { + "name": "TestEdge HAQQ Explorer", + "url": "https://explorer.testedge2.haqq.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "54211", + "chainName": "Haqq Chain Testnet", + "blockExplorerUrl": "https://explorer.testedge2.haqq.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Boba BNB Mainnet", + "chain": "Boba BNB Mainnet", + "rpc": [ + "https://bnb.boba.network", + "https://boba-bnb.gateway.tenderly.co/", + "https://gateway.tenderly.co/public/boba-bnb", + "https://replica.bnb.boba.network", + "wss://boba-bnb.gateway.tenderly.co/", + "wss://gateway.tenderly.co/public/boba-bnb" + ], + "faucets": [], + "nativeCurrency": { + "name": "Boba Token", + "symbol": "BOBA", + "decimals": 18 + }, + "infoURL": "https://boba.network", + "shortName": "BobaBnb", + "chainId": 56288, + "networkId": 56288, + "explorers": [ + { + "name": "Boba BNB block explorer", + "url": "https://bobascan.com", + "standard": "none" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://gateway.boba.network" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "56288", + "chainName": "Boba BNB Mainnet", + "blockExplorerUrl": "https://bobascan.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/boba-network.png" + }, + { + "name": "Rollux Testnet", + "chain": "SYS", + "rpc": [ + "https://rpc-tanenbaum.rollux.com", + "https://rpc.ankr.com/rollux_testnet/${ANKR_API_KEY}", + "wss://rpc-tanenbaum.rollux.com/wss", + "https://rollux.rpc.tanenbaum.io", + "wss://rollux.rpc.tanenbaum.io/wss" + ], + "faucets": [ + "https://rollux.id/faucetapp" + ], + "nativeCurrency": { + "name": "Testnet Syscoin", + "symbol": "TSYS", + "decimals": 18 + }, + "infoURL": "https://rollux.com", + "shortName": "tsys-rollux", + "chainId": 57000, + "networkId": 57000, + "slip44": 1, + "explorers": [ + { + "name": "Rollux Testnet Explorer", + "url": "https://rollux.tanenbaum.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "57000", + "chainName": "Rollux Testnet", + "blockExplorerUrl": "https://rollux.tanenbaum.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Sepolia PGN (Public Goods Network)", + "chain": "ETH", + "rpc": [ + "https://sepolia.publicgoods.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://publicgoods.network/", + "shortName": "sepPGN", + "chainId": 58008, + "networkId": 58008, + "icon": "publicGoodsNetwork", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.sepolia.publicgoods.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://pgn-bridge.vercel.app/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "58008", + "chainName": "Sepolia PGN (Public Goods Network)", + "blockExplorerUrl": "https://explorer.sepolia.publicgoods.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Linea Goerli", + "title": "Linea Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.goerli.linea.build", + "wss://rpc.goerli.linea.build", + "https://linea-goerli.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-goerli.infura.io/ws/v3/${INFURA_API_KEY}" + ], + "faucets": [ + "https://faucetlink.to/goerli" + ], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-goerli", + "chainId": 59140, + "networkId": 59140, + "slip44": 1, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://goerli.hop.exchange/#/send?token=ETH&sourceNetwork=ethereum&destNetwork=linea" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://goerli.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.goerli.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "59140", + "chainName": "Linea Goerli", + "blockExplorerUrl": "https://goerli.lineascan.build" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Linea Sepolia", + "title": "Linea Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.linea.build", + "wss://rpc.sepolia.linea.build", + "https://linea-sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-sepolia.infura.io/ws/v3/${INFURA_API_KEY}", + "https://linea-sepolia-rpc.publicnode.com", + "wss://linea-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea-sepolia", + "chainId": 59141, + "networkId": 59141, + "slip44": 1, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.linea.build/" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://sepolia.lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.sepolia.linea.build", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "59141", + "chainName": "Linea Sepolia", + "blockExplorerUrl": "https://sepolia.lineascan.build" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Linea", + "title": "Linea Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.linea.build", + "wss://rpc.linea.build", + "https://linea-mainnet.infura.io/v3/${INFURA_API_KEY}", + "wss://linea-mainnet.infura.io/ws/v3/${INFURA_API_KEY}", + "https://linea-rpc.publicnode.com", + "wss://linea-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Linea Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://linea.build", + "shortName": "linea", + "chainId": 59144, + "networkId": 59144, + "icon": "linea", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.linea.build" + } + ] + }, + "explorers": [ + { + "name": "Etherscan", + "url": "https://lineascan.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "Blockscout", + "url": "https://explorer.linea.build", + "standard": "EIP3091", + "icon": "linea" + }, + { + "name": "L2scan", + "url": "https://linea.l2scan.co", + "standard": "EIP3091", + "icon": "linea" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "59144", + "chainName": "Linea", + "blockExplorerUrl": "https://lineascan.build" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BOB", + "chain": "ETH", + "rpc": [ + "https://rpc.gobob.xyz", + "wss://rpc.gobob.xyz", + "https://bob-mainnet.public.blastapi.io", + "wss://bob-mainnet.public.blastapi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gobob.xyz", + "shortName": "bob", + "chainId": 60808, + "networkId": 60808, + "icon": "bob", + "explorers": [ + { + "name": "bobscout", + "url": "https://explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://app.gobob.xyz" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "60808", + "chainName": "BOB", + "blockExplorerUrl": "https://explorer.gobob.xyz" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/bob.png" + }, + { + "name": "Godwoken Testnet v1", + "chain": "GWT", + "rpc": [ + "https://godwoken-testnet-v1.ckbapp.dev", + "https://v1.testnet.godwoken.io/rpc" + ], + "faucets": [ + "https://testnet.bridge.godwoken.io" + ], + "nativeCurrency": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-testnet-v1", + "chainId": 71401, + "networkId": 71401, + "slip44": 1, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.testnet.gwscan.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "71401", + "chainName": "Godwoken Testnet v1", + "blockExplorerUrl": "https://v1.testnet.gwscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Godwoken Mainnet", + "chain": "GWT", + "rpc": [ + "https://v1.mainnet.godwoken.io/rpc" + ], + "faucets": [], + "nativeCurrency": { + "name": "pCKB", + "symbol": "pCKB", + "decimals": 18 + }, + "infoURL": "https://www.nervos.org", + "shortName": "gw-mainnet-v1", + "chainId": 71402, + "networkId": 71402, + "explorers": [ + { + "name": "GWScan Block Explorer", + "url": "https://v1.gwscan.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "71402", + "chainName": "Godwoken Mainnet", + "blockExplorerUrl": "https://v1.gwscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Energy Web Volta Testnet", + "chain": "Volta", + "rpc": [ + "https://volta-rpc.energyweb.org", + "wss://volta-rpc.energyweb.org/ws" + ], + "faucets": [ + "https://voltafaucet.energyweb.org" + ], + "nativeCurrency": { + "name": "Volta Token", + "symbol": "VT", + "decimals": 18 + }, + "infoURL": "https://energyweb.org", + "shortName": "vt", + "chainId": 73799, + "networkId": 73799, + "slip44": 1, + "smartAccounts": [ + { + "name": "create_and_add_modules", + "version": "v1.1.1", + "address": "0xF61A721642B0c0C8b334bA3763BA1326F53798C0", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.1.1", + "address": "0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "default_callback_handler", + "version": "v1.1.1", + "address": "0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.1.1", + "address": "0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.1.1", + "address": "0x8D29bE29923b68abfDD21e541b9374737B49cdAD", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.1.1", + "address": "0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.2.0", + "address": "0x6851D6fDFAfD08c0295C392436245E5bc78B0185", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "73799", + "chainName": "Energy Web Volta Testnet", + "blockExplorerUrl": "", + "moduleName": "allowance-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Mumbai", + "title": "Polygon Testnet Mumbai", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-mumbai.maticvigil.com", + "https://polygon-mumbai-bor-rpc.publicnode.com", + "wss://polygon-mumbai-bor-rpc.publicnode.com", + "https://polygon-mumbai.gateway.tenderly.co", + "wss://polygon-mumbai.gateway.tenderly.co" + ], + "faucets": [ + "https://faucet.polygon.technology/" + ], + "nativeCurrency": { + "name": "MATIC", + "symbol": "MATIC", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "maticmum", + "chainId": 80001, + "networkId": 80001, + "slip44": 1, + "explorers": [ + { + "name": "polygonscan", + "url": "https://mumbai.polygonscan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com" + } + ], + "modules": [ + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "80001", + "chainName": "Mumbai", + "blockExplorerUrl": "https://mumbai.polygonscan.com", + "moduleName": "safe-4337-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Amoy", + "title": "Polygon Amoy Testnet", + "chain": "Polygon", + "icon": "polygon", + "rpc": [ + "https://rpc-amoy.polygon.technology", + "https://polygon-amoy-bor-rpc.publicnode.com", + "wss://polygon-amoy-bor-rpc.publicnode.com" + ], + "faucets": [ + "https://faucet.polygon.technology/" + ], + "nativeCurrency": { + "name": "POL", + "symbol": "POL", + "decimals": 18 + }, + "infoURL": "https://polygon.technology/", + "shortName": "polygonamoy", + "chainId": 80002, + "networkId": 80002, + "slip44": 1, + "explorers": [ + { + "name": "polygonamoy", + "url": "https://www.oklink.com/amoy", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy" + } + ], + "modules": [ + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "80002", + "chainName": "Amoy", + "blockExplorerUrl": "https://www.oklink.com/amoy", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Berachain bArtio", + "chain": "Berachain bArtio", + "rpc": [ + "https://bartio.rpc.berachain.com", + "https://bera-testnet.nodeinfra.com", + "https://bartio.rpc.b-harvest.io" + ], + "faucets": [ + "https://bartio.faucet.berachain.com" + ], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachainbArtio", + "chainId": 80084, + "networkId": 80084, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://bartio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "80084", + "chainName": "Berachain bArtio", + "blockExplorerUrl": "https://bartio.beratrail.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Berachain Artio", + "chain": "Berachain Artio", + "rpc": [ + "https://artio.rpc.berachain.com", + "https://rpc.ankr.com/berachain_testnet" + ], + "faucets": [ + "https://artio.faucet.berachain.com" + ], + "nativeCurrency": { + "name": "BERA Token", + "symbol": "BERA", + "decimals": 18 + }, + "infoURL": "https://www.berachain.com", + "shortName": "berachainArtio", + "chainId": 80085, + "networkId": 80085, + "icon": "berachain", + "explorers": [ + { + "name": "Beratrail", + "url": "https://artio.beratrail.io", + "icon": "berachain", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "80085", + "chainName": "Berachain Artio", + "blockExplorerUrl": "https://artio.beratrail.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Blast", + "status": "active", + "chain": "ETH", + "rpc": [ + "https://rpc.blast.io", + "https://rpc.ankr.com/blast", + "https://blast.din.dev/rpc", + "https://blastl2-mainnet.public.blastapi.io", + "https://blast.blockpi.network/v1/rpc/public", + "https://blast-rpc.publicnode.com", + "wss://blast-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://blast.io/", + "shortName": "blastmainnet", + "chainId": 81457, + "networkId": 81457, + "icon": "blast", + "explorers": [ + { + "name": "Blastscan", + "url": "https://blastscan.io", + "icon": "blast", + "standard": "EIP3091" + }, + { + "name": "Blast Explorer", + "url": "https://blastexplorer.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "81457", + "chainName": "Blast", + "blockExplorerUrl": "https://blastscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Base Goerli Testnet", + "chain": "ETH", + "rpc": [ + "https://goerli.base.org", + "https://base-goerli.gateway.tenderly.co", + "wss://base-goerli.gateway.tenderly.co", + "https://base-goerli-rpc.publicnode.com", + "wss://base-goerli-rpc.publicnode.com" + ], + "faucets": [ + "https://www.coinbase.com/faucets/base-ethereum-goerli-faucet" + ], + "nativeCurrency": { + "name": "Goerli Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basegor", + "chainId": 84531, + "networkId": 84531, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescan", + "url": "https://goerli.basescan.org", + "standard": "none" + }, + { + "name": "basescout", + "url": "https://base-goerli.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + }, + { + "name": "dexguru", + "url": "https://base-goerli.dex.guru", + "icon": "dexguru", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "84531", + "chainName": "Base Goerli Testnet", + "blockExplorerUrl": "https://goerli.basescan.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Base Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.base.org", + "https://base-sepolia-rpc.publicnode.com", + "wss://base-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://base.org", + "shortName": "basesep", + "chainId": 84532, + "networkId": 84532, + "slip44": 1, + "icon": "baseTestnet", + "explorers": [ + { + "name": "basescout", + "url": "https://base-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com" + } + ], + "modules": [ + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "84532", + "chainName": "Base Sepolia Testnet", + "blockExplorerUrl": "https://base-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "F(x)Core Testnet Network", + "chain": "Fxcore", + "rpc": [ + "https://testnet-fx-json-web3.functionx.io:8545" + ], + "faucets": [], + "nativeCurrency": { + "name": "Function X", + "symbol": "FX", + "decimals": 18 + }, + "infoURL": "https://functionx.io/", + "shortName": "dhobyghaut", + "chainId": 90001, + "networkId": 90001, + "icon": "fxcore", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "90001", + "chainName": "F(x)Core Testnet Network", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "SlingShot Testnet", + "chain": "SLING", + "rpc": [ + "https://rpc-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sling Test", + "symbol": "SLINGT", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + } + ], + "infoURL": "https://slingshotdao.com", + "shortName": "sling", + "chainId": 97435, + "networkId": 97435, + "icon": "slingshot", + "explorers": [ + { + "name": "SlingShot Test Explorer", + "url": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz", + "icon": "slingshot", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "97435", + "chainName": "SlingShot Testnet", + "blockExplorerUrl": "https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Masa Testnet", + "chain": "MASA", + "icon": "masa", + "rpc": [ + "https://subnets.avax.network/masatestne/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Masa Token", + "symbol": "MASA", + "decimals": 18 + }, + "infoURL": "https://masa.finance", + "shortName": "masatest", + "chainId": 103454, + "networkId": 103454, + "explorers": [ + { + "name": "Masa Testnet Explorer", + "url": "https://subnets-test.avax.network/masatestnet", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "103454", + "chainName": "Masa Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/masatestnet" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Stratis Mainnet", + "chain": "Stratis", + "rpc": [ + "https://rpc.stratisevm.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Stratis", + "symbol": "STRAX", + "decimals": 18 + }, + "infoURL": "https://www.stratisplatform.com", + "shortName": "stratis", + "chainId": 105105, + "networkId": 105105, + "icon": "stratis", + "explorers": [ + { + "name": "Stratis Explorer", + "url": "https://explorer.stratisevm.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "105105", + "chainName": "Stratis Mainnet", + "blockExplorerUrl": "https://explorer.stratisevm.com" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/stratis.png" + }, + { + "name": "re.al", + "title": "re.al Real-World Assets network", + "chain": "re.al", + "rpc": [ + "https://rpc.realforreal.gelato.digital", + "wss://ws.realforreal.gelato.digital", + "https://tangible-real.gateway.tenderly.co", + "https://real.drpc.org", + "wss://real.drpc.org" + ], + "nativeCurrency": { + "name": "re.al Ether", + "symbol": "reETH", + "decimals": 18 + }, + "infoURL": "https://re.al", + "faucets": [], + "shortName": "re-al", + "chainId": 111188, + "networkId": 111188, + "slip44": 60, + "icon": "real", + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.re.al", + "icon": "real", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://re.al/bridge" + }, + { + "url": "https://bridge.gelato.network/bridge/real" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "111188", + "chainName": "re.al", + "blockExplorerUrl": "https://explorer.re.al" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Etherlink Testnet", + "chain": "Etherlink", + "icon": "etherlink", + "chainId": 128123, + "networkId": 128123, + "features": [ + { + "name": "EIP1559" + } + ], + "infoURL": "https://etherlink.com", + "shortName": "etlt", + "nativeCurrency": { + "name": "tez", + "symbol": "XTZ", + "decimals": 18 + }, + "rpc": [ + "https://node.ghostnet.etherlink.com" + ], + "faucets": [ + "https://faucet.etherlink.com" + ], + "explorers": [ + { + "name": "Etherlink Testnet Explorer", + "url": "https://testnet-explorer.etherlink.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "128123", + "chainName": "Etherlink Testnet", + "blockExplorerUrl": "https://testnet-explorer.etherlink.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Taiko Mainnet", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.mainnet.taiko.xyz", + "https://taiko-rpc.publicnode.com", + "wss://taiko-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-mainnet", + "chainId": 167000, + "networkId": 167000, + "explorers": [ + { + "name": "etherscan", + "url": "https://taikoscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "167000", + "chainName": "Taiko Mainnet", + "blockExplorerUrl": "https://taikoscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Taiko Katla L2", + "chain": "ETH", + "status": "deprecated", + "icon": "taiko", + "rpc": [], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-katla", + "chainId": 167008, + "networkId": 167008, + "explorers": [], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "167008", + "chainName": "Taiko Katla L2", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Taiko Hekla L2", + "chain": "ETH", + "status": "active", + "icon": "taiko", + "rpc": [ + "https://rpc.hekla.taiko.xyz", + "wss://ws.hekla.taiko.xyz", + "https://taiko-hekla-rpc.publicnode.com", + "wss://taiko-hekla-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://taiko.xyz", + "shortName": "tko-hekla", + "chainId": 167009, + "networkId": 167009, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscoutapi.hekla.taiko.xyz", + "standard": "EIP3091" + }, + { + "name": "routescan", + "url": "https://hekla.taikoscan.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "167009", + "chainName": "Taiko Hekla L2", + "blockExplorerUrl": "https://blockscoutapi.hekla.taiko.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Milkomeda C1 Testnet", + "chain": "milkTAda", + "icon": "milkomeda", + "rpc": [ + "https://rpc-devnet-cardano-evm.c1.milkomeda.com", + "wss://rpc-devnet-cardano-evm.c1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAda", + "symbol": "mTAda", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAda", + "chainId": 200101, + "networkId": 200101, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-cardano-evm.c1.milkomeda.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "200101", + "chainName": "Milkomeda C1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-cardano-evm.c1.milkomeda.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Milkomeda A1 Testnet", + "chain": "milkTAlgo", + "icon": "milkomeda", + "rpc": [ + "https://rpc-devnet-algorand-rollup.a1.milkomeda.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "milkTAlgo", + "symbol": "mTAlgo", + "decimals": 18 + }, + "infoURL": "https://milkomeda.com", + "shortName": "milkTAlgo", + "chainId": 200202, + "networkId": 200202, + "slip44": 1, + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "200202", + "chainName": "Milkomeda A1 Testnet", + "blockExplorerUrl": "https://explorer-devnet-algorand-rollup.a1.milkomeda.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Bitlayer Testnet", + "chain": "Bitlayer", + "rpc": [ + "https://testnet-rpc.bitlayer.org", + "wss://testnet-ws.bitlayer.org", + "https://testnet-rpc.bitlayer-rpc.com", + "wss://testnet-ws.bitlayer-rpc.com", + "https://rpc.ankr.com/bitlayer_testnet" + ], + "faucets": [ + "https://www.bitlayer.org/faucet" + ], + "nativeCurrency": { + "name": "BTC", + "symbol": "BTC", + "decimals": 18 + }, + "infoURL": "https://docs.bitlayer.org/", + "shortName": "btrt", + "chainId": 200810, + "networkId": 200810, + "slip44": 1, + "icon": "bitlayer", + "explorers": [ + { + "name": "bitlayer testnet scan", + "url": "https://testnet.btrscan.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "200810", + "chainName": "Bitlayer Testnet", + "blockExplorerUrl": "https://testnet.btrscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Auroria Testnet", + "title": "Stratis Testnet Auroria", + "chain": "Auroria", + "rpc": [ + "https://auroria.rpc.stratisevm.com" + ], + "faucets": [ + "https://auroria.faucet.stratisevm.com" + ], + "nativeCurrency": { + "name": "Auroria Stratis", + "symbol": "tSTRAX", + "decimals": 18 + }, + "infoURL": "https://www.stratisplatform.com", + "shortName": "auroria", + "chainId": 205205, + "networkId": 205205, + "icon": "auroria", + "explorers": [ + { + "name": "Auroria Testnet Explorer", + "url": "https://auroria.explorer.stratisevm.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "205205", + "chainName": "Auroria Testnet", + "blockExplorerUrl": "https://auroria.explorer.stratisevm.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Filecoin - Calibration testnet", + "chain": "FIL", + "icon": "filecoin", + "rpc": [ + "https://api.calibration.node.glif.io/rpc/v1", + "https://rpc.ankr.com/filecoin_testnet", + "https://filecoin-calibration.chainstacklabs.com/rpc/v1", + "https://filecoin-calibration.chainup.net/rpc/v1", + "https://calibration.filfox.info/rpc/v1", + "https://filecoin-calibration.drpc.org", + "wss://filecoin-calibration.drpc.org" + ], + "faucets": [ + "https://faucet.calibration.fildev.network/" + ], + "nativeCurrency": { + "name": "testnet filecoin", + "symbol": "tFIL", + "decimals": 18 + }, + "infoURL": "https://filecoin.io", + "shortName": "filecoin-calibration", + "chainId": 314159, + "networkId": 314159, + "slip44": 1, + "explorers": [ + { + "name": "Filscan - Calibration", + "url": "https://calibration.filscan.io", + "standard": "none" + }, + { + "name": "Filscout - Calibration", + "url": "https://calibration.filscout.com/en", + "standard": "none" + }, + { + "name": "Filfox - Calibration", + "url": "https://calibration.filfox.info", + "standard": "none" + }, + { + "name": "Glif Explorer - Calibration", + "url": "https://explorer.glif.io/?network=calibration", + "standard": "none" + }, + { + "name": "Beryx", + "url": "https://beryx.zondax.ch", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "314159", + "chainName": "Filecoin - Calibration testnet", + "blockExplorerUrl": "https://calibration.filscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Nal Mainnet", + "chain": "ETH", + "icon": "nal", + "rpc": [ + "https://rpc.nal.network", + "wss://wss.nal.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.nal.network", + "shortName": "nal", + "chainId": 328527, + "networkId": 328527, + "explorers": [ + { + "name": "Nal Network Explorer", + "url": "https://scan.nal.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "328527", + "chainName": "Nal Mainnet", + "blockExplorerUrl": "https://scan.nal.network" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_nal.png" + }, + { + "name": "Polis Mainnet", + "chain": "Olympus", + "icon": "polis", + "rpc": [ + "https://rpc.polis.tech" + ], + "faucets": [ + "https://faucet.polis.tech" + ], + "nativeCurrency": { + "name": "Polis", + "symbol": "POLIS", + "decimals": 18 + }, + "infoURL": "https://polis.tech", + "shortName": "olympus", + "chainId": 333999, + "networkId": 333999, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "333999", + "chainName": "Polis Mainnet", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/olympus.png" + }, + { + "name": "Arbitrum Rinkeby", + "title": "Arbitrum Testnet Rinkeby", + "chainId": 421611, + "shortName": "arb-rinkeby", + "chain": "ETH", + "networkId": 421611, + "slip44": 1, + "nativeCurrency": { + "name": "Arbitrum Rinkeby Ether", + "symbol": "ETH", + "decimals": 18 + }, + "rpc": [ + "https://rinkeby.arbitrum.io/rpc" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=421611&address=${ADDRESS}" + ], + "infoURL": "https://arbitrum.io", + "explorers": [ + { + "name": "arbiscan-testnet", + "url": "https://testnet.arbiscan.io", + "standard": "EIP3091" + }, + { + "name": "arbitrum-rinkeby", + "url": "https://rinkeby-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-4", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "421611", + "chainName": "Arbitrum Rinkeby", + "blockExplorerUrl": "https://testnet.arbiscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arbitrum Goerli", + "title": "Arbitrum Goerli Rollup Testnet", + "chainId": 421613, + "shortName": "arb-goerli", + "chain": "ETH", + "networkId": 421613, + "slip44": 1, + "nativeCurrency": { + "name": "Arbitrum Goerli Ether", + "symbol": "AGOR", + "decimals": 18 + }, + "rpc": [ + "https://goerli-rollup.arbitrum.io/rpc", + "https://arbitrum-goerli.publicnode.com", + "wss://arbitrum-goerli.publicnode.com" + ], + "faucets": [], + "infoURL": "https://arbitrum.io/", + "explorers": [ + { + "name": "Arbitrum Goerli Arbiscan", + "url": "https://goerli.arbiscan.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [ + { + "url": "https://bridge.arbitrum.io/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "421613", + "chainName": "Arbitrum Goerli", + "blockExplorerUrl": "https://goerli.arbiscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arbitrum Sepolia", + "title": "Arbitrum Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia-rollup.arbitrum.io/rpc", + "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://arbitrum.io", + "shortName": "arb-sep", + "chainId": 421614, + "networkId": 421614, + "slip44": 1, + "explorers": [ + { + "name": "Arbitrum Sepolia Rollup Testnet Explorer", + "url": "https://sepolia-explorer.arbitrum.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.arbitrum.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io" + } + ], + "modules": [ + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "421614", + "chainName": "Arbitrum Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.arbitrum.io", + "moduleName": "safe-passkey-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Syndr L3 Sepolia", + "title": "Syndr L3 Sepolia Rollup Testnet", + "chain": "SYNDRSEPOLIA", + "rpc": [ + "https://sepolia.syndr.com/http", + "wss://sepolia.syndr.com/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://syndr.com", + "shortName": "syndr", + "chainId": 444444, + "networkId": 444444, + "explorers": [ + { + "name": "Syndr L3 Sepolia Testnet Explorer", + "url": "https://sepolia-explorer.syndr.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://sepolia-bridge.syndr.com" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "444444", + "chainName": "Syndr L3 Sepolia", + "blockExplorerUrl": "https://sepolia-explorer.syndr.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Autonomys Testnet Nova Domain", + "chain": "TATC", + "rpc": [ + "https://nova-0.gemini-3h.subspace.network/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Test Auto Coin", + "symbol": "TATC", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.autonomys.net", + "shortName": "ATN", + "chainId": 490000, + "networkId": 490000, + "explorers": [ + { + "name": "astral", + "url": "https://nova.subspace.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "490000", + "chainName": "Autonomys Testnet Nova Domain", + "blockExplorerUrl": "https://nova.subspace.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Scroll Sepolia Testnet", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://sepolia-rpc.scroll.io", + "https://rpc.ankr.com/scroll_sepolia_testnet", + "https://scroll-sepolia.chainstacklabs.com", + "https://scroll-testnet-public.unifra.io", + "https://scroll-sepolia-rpc.publicnode.com", + "wss://scroll-sepolia-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-sepolia", + "chainId": 534351, + "networkId": 534351, + "slip44": 1, + "explorers": [ + { + "name": "Scroll Sepolia Etherscan", + "url": "https://sepolia.scrollscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://sepolia.scroll.io/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "534351", + "chainName": "Scroll Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.scrollscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Scroll", + "chain": "ETH", + "status": "active", + "rpc": [ + "https://rpc.scroll.io", + "https://rpc.ankr.com/scroll", + "https://scroll-mainnet.chainstacklabs.com", + "https://scroll-rpc.publicnode.com", + "wss://scroll-rpc.publicnode.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr", + "chainId": 534352, + "networkId": 534352, + "explorers": [ + { + "name": "Scrollscan", + "url": "https://scrollscan.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://scroll.io/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "534352", + "chainName": "Scroll", + "blockExplorerUrl": "https://scrollscan.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Scroll Alpha Testnet", + "chain": "ETH", + "status": "deprecated", + "rpc": [ + "https://alpha-rpc.scroll.io/l2" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://scroll.io", + "shortName": "scr-alpha", + "chainId": 534353, + "networkId": 534353, + "slip44": 1, + "explorers": [ + { + "name": "Scroll Alpha Testnet Block Explorer", + "url": "https://alpha-blockscout.scroll.io", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-5", + "bridges": [] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "534353", + "chainName": "Scroll Alpha Testnet", + "blockExplorerUrl": "https://alpha-blockscout.scroll.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Eclipse Testnet", + "chain": "ECLIPSE", + "rpc": [ + "https://subnets.avax.network/eclipsecha/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Eclipse", + "symbol": "ECLPS", + "decimals": 18 + }, + "infoURL": "http://eclipsenet.io", + "shortName": "eclipset", + "chainId": 555666, + "networkId": 555666, + "explorers": [ + { + "name": "ECLIPSE Explorer", + "url": "https://subnets-test.avax.network/eclipsecha", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "555666", + "chainName": "Eclipse Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/eclipsecha" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Hypra Mainnet", + "chain": "HYP", + "rpc": [ + "https://rpc.hypra.network", + "https://rpc.rethereum.org", + "https://rethereum.rpc.restratagem.com", + "https://rpc.rthcentral.org", + "https://hypra.rpc.thirdweb.com" + ], + "faucets": [], + "nativeCurrency": { + "name": "Hypra", + "symbol": "HYP", + "decimals": 18 + }, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://www.hypra.network", + "shortName": "hyp", + "chainId": 622277, + "networkId": 622277, + "icon": "rethereum", + "explorers": [ + { + "name": "hypra", + "url": "https://explorer.hypra.network", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "622277", + "chainName": "Hypra Mainnet", + "blockExplorerUrl": "https://explorer.hypra.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Open Campus Codex", + "chain": "Open Campus Codex", + "icon": "open-campus-codex", + "rpc": [ + "https://rpc.open-campus-codex.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "EDU", + "symbol": "EDU", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/open-campus-codex", + "shortName": "open-campus-codex", + "chainId": 656476, + "networkId": 656476, + "explorers": [ + { + "name": "Open Campus Codex", + "url": "https://opencampus-codex.blockscout.com", + "icon": "open-campus-codex", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "656476", + "chainName": "Open Campus Codex", + "blockExplorerUrl": "https://opencampus-codex.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Xai Mainnet", + "chainId": 660279, + "shortName": "xai", + "chain": "XAI", + "networkId": 660279, + "nativeCurrency": { + "name": "Xai", + "symbol": "XAI", + "decimals": 18 + }, + "rpc": [ + "https://xai-chain.net/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://explorer.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "660279", + "chainName": "Xai Mainnet", + "blockExplorerUrl": "https://explorer.xai-chain.net" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/xai.png" + }, + { + "name": "Sei Devnet", + "chain": "Sei", + "rpc": [ + "https://evm-rpc-arctic-1.sei-apis.com", + "https://evm-rpc.arctic-1.seinetwork.io" + ], + "faucets": [ + "https://sei-faucet.nima.enterprises", + "https://sei-evm.faucetme.pro" + ], + "nativeCurrency": { + "name": "Sei", + "symbol": "SEI", + "decimals": 18 + }, + "infoURL": "https://www.sei.io", + "shortName": "sei-devnet", + "chainId": 713715, + "networkId": 713715, + "icon": "sei", + "explorers": [ + { + "name": "Seistream", + "url": "https://seistream.app", + "standard": "none" + }, + { + "name": "Seitrace", + "url": "https://seitrace.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "713715", + "chainName": "Sei Devnet", + "blockExplorerUrl": "https://seistream.app" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Lamina1 Testnet", + "chain": "Lamina1 Testnet", + "rpc": [ + "https://subnets.avax.network/lamina1tes/testnet/rpc" + ], + "features": [ + { + "name": "EIP1559" + } + ], + "faucets": [], + "nativeCurrency": { + "name": "Lamina1 Test", + "symbol": "L1T", + "decimals": 18 + }, + "infoURL": "https://fuji.lamina1.com/", + "shortName": "lamina1test", + "chainId": 764984, + "networkId": 764984, + "slip44": 1, + "explorers": [ + { + "name": "Lamina1 Test Explorer", + "url": "https://subnets-test.avax.network/lamina1tes", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "764984", + "chainName": "Lamina1 Testnet", + "blockExplorerUrl": "https://subnets-test.avax.network/lamina1tes" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "BOB Sepolia", + "chain": "ETH", + "rpc": [ + "https://bob-sepolia.rpc.gobob.xyz", + "wss://bob-sepolia.rpc.gobob.xyz" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://gobob.xyz", + "shortName": "bob-sepolia", + "chainId": 808813, + "networkId": 808813, + "icon": "bob", + "explorers": [ + { + "name": "bobscout", + "url": "https://bob-sepolia.explorer.gobob.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "status": "active", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bob-sepolia.gobob.xyz/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "808813", + "chainName": "BOB Sepolia", + "blockExplorerUrl": "https://bob-sepolia.explorer.gobob.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "zkLink Nova Mainnet", + "chain": "ETH", + "rpc": [ + "https://rpc.zklink.io", + "wss://rpc.zklink.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://zklink.io", + "shortName": "zklink-nova", + "chainId": 810180, + "networkId": 810180, + "slip44": 1, + "icon": "zklink-nova", + "explorers": [ + { + "name": "zkLink Nova Block Explorer", + "url": "https://explorer.zklink.io", + "icon": "zklink-nova", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-59144", + "bridges": [ + { + "url": "https://portal.zklink.io" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x1727c2c531cf966f902E5927b98490fDFb3b2b70", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xDAec33641865E4651fB43181C6DB6f7232Ee91c2", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x357147caf9C0cCa67DfA0CF5369318d8193c8407", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x4191E2e12E8BC5002424CE0c51f9947b02675a44", + "chainId": "810180", + "chainName": "zkLink Nova Mainnet", + "blockExplorerUrl": "https://explorer.zklink.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Treasure Ruby", + "chainId": 978657, + "shortName": "treasure-ruby", + "chain": "TRS", + "networkId": 978657, + "nativeCurrency": { + "name": "Testnet MAGIC", + "symbol": "MAGIC", + "decimals": 18 + }, + "slip44": 1, + "features": [ + { + "name": "EIP155" + }, + { + "name": "EIP1559" + } + ], + "infoURL": "https://portal.treasure.lol", + "icon": "treasureruby", + "rpc": [ + "https://rpc-testnet.treasure.lol/http", + "wss://rpc-testnet.treasure.lol/ws" + ], + "faucets": [ + "https://portal.treasure.lol/faucet" + ], + "explorers": [ + { + "name": "treasurescan", + "url": "https://testnet.treasurescan.io", + "icon": "treasure", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://portal.treasure.lol/bridge" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "978657", + "chainName": "Treasure Ruby", + "blockExplorerUrl": "https://testnet.treasurescan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Astar zKyoto", + "shortName": "azkyt", + "title": "Astar zkEVM Testnet zKyoto", + "chain": "ETH", + "icon": "astarzk", + "rpc": [ + "https://rpc.startale.com/zkyoto", + "https://rpc.zkyoto.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://astar.network", + "chainId": 6038361, + "networkId": 6038361, + "explorers": [ + { + "name": "Blockscout zKyoto explorer", + "url": "https://astar-zkyoto.blockscout.com", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://portal.astar.network" + }, + { + "url": "https://bridge.gelato.network/bridge/astar-zkyoto" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "6038361", + "chainName": "Astar zKyoto", + "blockExplorerUrl": "https://astar-zkyoto.blockscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Saakuru Mainnet", + "chain": "Saakuru", + "icon": "saakuru", + "rpc": [ + "https://rpc.saakuru.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "OAS", + "symbol": "OAS", + "decimals": 18 + }, + "infoURL": "https://saakuru.network", + "shortName": "saakuru", + "chainId": 7225878, + "networkId": 7225878, + "explorers": [ + { + "name": "saakuru-explorer", + "url": "https://explorer.saakuru.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7225878", + "chainName": "Saakuru Mainnet", + "blockExplorerUrl": "https://explorer.saakuru.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Zora", + "chain": "ETH", + "rpc": [ + "https://rpc.zora.energy/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zora", + "infoURL": "https://zora.energy", + "shortName": "zora", + "chainId": 7777777, + "networkId": 7777777, + "explorers": [ + { + "name": "Zora Network Explorer", + "url": "https://explorer.zora.energy", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "7777777", + "chainName": "Zora", + "blockExplorerUrl": "https://explorer.zora.energy" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fluence", + "chain": "Fluence", + "rpc": [ + "https://rpc.mainnet.fluence.dev/", + "wss://ws.mainnet.fluence.dev/" + ], + "faucets": [], + "nativeCurrency": { + "name": "FLT", + "symbol": "FLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence", + "chainId": 9999999, + "networkId": 9999999, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.mainnet.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-1" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "9999999", + "chainName": "Fluence", + "blockExplorerUrl": "https://blockscout.mainnet.fluence.dev" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Sepolia", + "title": "Ethereum Testnet Sepolia", + "chain": "ETH", + "rpc": [ + "https://rpc.sepolia.org", + "https://rpc2.sepolia.org", + "https://rpc-sepolia.rockx.com", + "https://rpc.sepolia.ethpandaops.io", + "https://sepolia.infura.io/v3/${INFURA_API_KEY}", + "wss://sepolia.infura.io/v3/${INFURA_API_KEY}", + "https://sepolia.gateway.tenderly.co", + "wss://sepolia.gateway.tenderly.co", + "https://ethereum-sepolia-rpc.publicnode.com", + "wss://ethereum-sepolia-rpc.publicnode.com", + "https://sepolia.drpc.org", + "wss://sepolia.drpc.org", + "https://rpc-sepolia.rockx.com" + ], + "faucets": [ + "http://fauceth.komputing.org?chain=11155111&address=${ADDRESS}" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://sepolia.otterscan.io", + "shortName": "sep", + "chainId": 11155111, + "networkId": 11155111, + "slip44": 1, + "explorers": [ + { + "name": "etherscan-sepolia", + "url": "https://sepolia.etherscan.io", + "standard": "EIP3091" + }, + { + "name": "otterscan-sepolia", + "url": "https://sepolia.otterscan.io", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ], + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ], + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ], + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ], + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ], + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ], + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ], + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ], + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ], + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ] + ], + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io" + } + ], + "modules": [ + { + "name": "allowance-module", + "version": "v0.1.0", + "address": "0xCFbFaC74C26F8647cBDb8c5caf80BB5b32E43134", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "allowance-module" + }, + { + "name": "add-modules-lib", + "version": "v0.2.0", + "address": "0x8EcD4ec46D4D2a6B64fE960B3D64e8B94B2234eb", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.2.0", + "address": "0xa581c4A4DB7175302464fF3C06380BC3270b4037", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-4337-module", + "version": "v0.3.0", + "address": "0x75cf11467937ce3F2f357CE24ffc3DBF8fD5c226", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "safe-module-setup", + "version": "v0.3.0", + "address": "0x2dd68b007B46fBe91B9A7c3EDa5A7a1063cB5b47", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-4337-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-passkey-module" + }, + { + "name": "social-recovery-module", + "version": "v0.1.0", + "address": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897", + "chainId": "11155111", + "chainName": "Sepolia", + "blockExplorerUrl": "https://sepolia.etherscan.io", + "moduleName": "safe-recovery-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "OP Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.optimism.io", + "https://optimism-sepolia.drpc.org", + "wss://optimism-sepolia.drpc.org" + ], + "faucets": [ + "https://app.optimism.io/faucet" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://optimism.io", + "shortName": "opsep", + "chainId": 11155420, + "networkId": 11155420, + "slip44": 1, + "explorers": [ + { + "name": "opscout", + "url": "https://optimism-sepolia.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com" + } + ], + "modules": [ + { + "name": "daimo-p256-verifier", + "version": "v0.2.0", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.0", + "address": "0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.0", + "address": "0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "daimo-p256-verifier", + "version": "v0.2.1", + "address": "0xc2b78104907F722DABAc4C69f826a522B2754De4", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "fcl-p256-verifier", + "version": "v0.2.1", + "address": "0xA86e0054C51E4894D88762a017ECc5E5235f5DBA", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-shared-signer", + "version": "v0.2.1", + "address": "0x94a4F6affBd8975951142c3999aEAB7ecee555c2", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "safe-webauthn-signer-factory", + "version": "v0.2.1", + "address": "0x1d31F259eE307358a26dFb23EB365939E8641195", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-passkey-module" + }, + { + "name": "social-recovery-module", + "version": "v0.1.0", + "address": "0x4Aa5Bf7D840aC607cb5BD3249e6Af6FC86C04897", + "chainId": "11155420", + "chainName": "OP Sepolia Testnet", + "blockExplorerUrl": "https://optimism-sepolia.blockscout.com", + "moduleName": "safe-recovery-module" + } + ], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Neo X Testnet T4", + "chain": "Neo X", + "rpc": [ + "https://testnet.rpc.banelabs.org/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Gas", + "symbol": "GAS", + "decimals": 18 + }, + "infoURL": "https://neo.org/", + "shortName": "neox-t4", + "chainId": 12227332, + "networkId": 12227332, + "icon": "neox", + "explorers": [ + { + "name": "neox-scan", + "url": "https://xt4scan.ngd.network", + "standard": "EIP3091" + } + ], + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "12227332", + "chainName": "Neo X Testnet T4", + "blockExplorerUrl": "https://xt4scan.ngd.network" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fluence Testnet", + "chain": "Fluence Testnet", + "rpc": [ + "https://rpc.testnet.fluence.dev/", + "wss://ws.testnet.fluence.dev/" + ], + "faucets": [], + "nativeCurrency": { + "name": "tFLT", + "symbol": "tFLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence-testnet", + "chainId": 52164803, + "networkId": 52164803, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.testnet.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "52164803", + "chainName": "Fluence Testnet", + "blockExplorerUrl": "https://blockscout.testnet.fluence.dev" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Polygon Blackberry", + "title": "Polygon Blackberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.polygon-blackberry.gelato.digital", + "wss://ws.polygon-blackberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/polygon-blackberry", + "shortName": "polygon-blackberry", + "chainId": 94204209, + "networkId": 94204209, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://polygon-blackberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/polygon-blackberry" + } + ] + }, + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "94204209", + "chainName": "Polygon Blackberry", + "blockExplorerUrl": "https://polygon-blackberry.gelatoscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Cyber Testnet", + "chain": "Cyber", + "rpc": [ + "https://cyber-testnet.alt.technology/", + "wss://cyber-testnet.alt.technology/ws", + "https://rpc.testnet.cyber.co/", + "wss://rpc.testnet.cyber.co/" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "cyber", + "infoURL": "https://cyber.co/", + "shortName": "cysep", + "chainId": 111557560, + "networkId": 111557560, + "explorers": [ + { + "name": "Cyber Testnet Explorer", + "url": "https://testnet.cyberscan.co", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://cyber-testnet.testnets.rollbridge.app/" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "111557560", + "chainName": "Cyber Testnet", + "blockExplorerUrl": "https://testnet.cyberscan.co" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "OP Celestia Raspberry", + "title": "OP Celestia Raspberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.opcelestia-raspberry.gelato.digital", + "wss://ws.opcelestia-raspberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/opcelestia-raspberry", + "shortName": "opcelestia-raspberry", + "chainId": 123420111, + "networkId": 123420111, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://opcelestia-raspberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/opcelestia-raspberry" + } + ] + }, + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "123420111", + "chainName": "OP Celestia Raspberry", + "blockExplorerUrl": "https://opcelestia-raspberry.gelatoscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Plume Testnet", + "title": "Plume Sepolia Rollup Testnet", + "chain": "ETH", + "rpc": [ + "https://testnet-rpc.plumenetwork.xyz/http", + "wss://testnet-rpc.plumenetwork.xyz/ws" + ], + "faucets": [], + "nativeCurrency": { + "name": "Plume Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://www.plumenetwork.xyz/", + "shortName": "plume-testnet", + "chainId": 161221135, + "networkId": 161221135, + "slip44": 1, + "icon": "plume", + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer.plumenetwork.xyz", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://testnet-bridge.plumenetwork.xyz" + } + ] + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "161221135", + "chainName": "Plume Testnet", + "blockExplorerUrl": "https://testnet-explorer.plumenetwork.xyz" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Blast Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.blast.io", + "https://blast-sepolia.drpc.org", + "wss://blast-sepolia.drpc.org" + ], + "faucets": [ + "https://faucet.quicknode.com/blast/sepolia" + ], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://blast.io/", + "shortName": "blastsepolia", + "chainId": 168587773, + "networkId": 168587773, + "icon": "blast", + "explorers": [ + { + "name": "Blast Sepolia Explorer", + "url": "https://testnet.blastscan.io", + "icon": "blast", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "168587773", + "chainName": "Blast Sepolia Testnet", + "blockExplorerUrl": "https://testnet.blastscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Kanazawa", + "title": "Meld Testnet Kanazawa", + "chain": "Kanazawa", + "rpc": [ + "https://testnet-rpc.meld.com" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "kanazawa", + "chainId": 222000222, + "networkId": 222000222, + "slip44": 1, + "explorers": [ + { + "name": "explorer", + "url": "https://testnet.meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets-test.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "222000222", + "chainName": "Kanazawa", + "blockExplorerUrl": "https://testnet.meldscan.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Neon EVM Devnet", + "chain": "Solana", + "rpc": [ + "https://devnet.neonevm.org", + "https://neon-evm-devnet.drpc.org", + "wss://neon-evm-devnet.drpc.org" + ], + "faucets": [ + "https://neonfaucet.org" + ], + "icon": "neon", + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neon-labs.org", + "shortName": "neonevm-devnet", + "chainId": 245022926, + "networkId": 245022926, + "explorers": [ + { + "name": "neonscan", + "url": "https://devnet.neonscan.org", + "standard": "EIP3091" + }, + { + "name": "blockscout", + "url": "https://neon-devnet.blockscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "245022926", + "chainName": "Neon EVM Devnet", + "blockExplorerUrl": "https://devnet.neonscan.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Neon EVM Mainnet", + "chain": "Solana", + "rpc": [ + "https://neon-proxy-mainnet.solana.p2p.org", + "https://neon-evm.drpc.org", + "wss://neon-evm.drpc.org" + ], + "faucets": [], + "icon": "neon", + "nativeCurrency": { + "name": "Neon", + "symbol": "NEON", + "decimals": 18 + }, + "infoURL": "https://neonevm.org", + "shortName": "neonevm-mainnet", + "chainId": 245022934, + "networkId": 245022934, + "explorers": [ + { + "name": "neonscan", + "url": "https://neonscan.org", + "standard": "EIP3091" + }, + { + "name": "native", + "url": "https://neon.blockscout.com", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "245022934", + "chainName": "Neon EVM Mainnet", + "blockExplorerUrl": "https://neonscan.org" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Nal Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://testnet-rpc.nal.network" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "nal", + "infoURL": "https://www.nal.network", + "shortName": "nalsep", + "chainId": 328527624, + "networkId": 328527624, + "explorers": [ + { + "name": "Nal Sepolia Testnet Network Explorer", + "url": "https://testnet-scan.nal.network", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "328527624", + "chainName": "Nal Sepolia Testnet", + "blockExplorerUrl": "https://testnet-scan.nal.network" + } + ], + "modules": [], + "iconUrl": "https://icons.llamao.fi/icons/chains/rsz_nal.png" + }, + { + "name": "Meld", + "title": "Meld Mainnet", + "chain": "MELD", + "rpc": [ + "https://rpc-1.meld.com" + ], + "faucets": [], + "features": [], + "nativeCurrency": { + "name": "gMeld", + "symbol": "gMELD", + "decimals": 18 + }, + "icon": "meld", + "infoURL": "https://meld.com", + "shortName": "meld", + "chainId": 333000333, + "networkId": 333000333, + "explorers": [ + { + "name": "explorer", + "url": "https://meldscan.io", + "icon": "meld", + "standard": "EIP3091" + }, + { + "name": "explorer", + "url": "https://subnets.avax.network/meld", + "icon": "meld", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "333000333", + "chainName": "Meld", + "blockExplorerUrl": "https://meldscan.io" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/meld.png" + }, + { + "name": "Skopje Testnet", + "chain": "Skopje Testnet", + "icon": "skopje-gpt", + "rpc": [ + "https://skopje-rpc.gptprotocol.io" + ], + "faucets": [ + "https://skopje-faucet.gptprotocol.io" + ], + "chainId": 476462898, + "networkId": 476462898, + "nativeCurrency": { + "name": "SkpGPT", + "symbol": "SkpGPT", + "decimals": 18 + }, + "infoURL": "https://gptprotocol.com", + "shortName": "Skopje", + "parent": { + "type": "L2", + "chain": "eip155-11155111", + "bridges": [ + { + "url": "https://skopje-bridge.gptprotocol.io" + } + ] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://skopje-explorer.gptprotocol.io", + "standard": "EIP3091", + "icon": "blockscout" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "476462898", + "chainName": "Skopje Testnet", + "blockExplorerUrl": "https://skopje-explorer.gptprotocol.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Degen Chain", + "title": "Degen Chain", + "chain": "Degen", + "rpc": [ + "https://rpc.degen.tips" + ], + "faucets": [], + "nativeCurrency": { + "name": "DEGEN", + "symbol": "DEGEN", + "decimals": 18 + }, + "infoURL": "https://degen.tips", + "shortName": "degen-chain", + "chainId": 666666666, + "networkId": 666666666, + "status": "incubating", + "icon": "degen", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "666666666", + "chainName": "Degen Chain", + "blockExplorerUrl": "" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Ancient8", + "chain": "Ancient8", + "icon": "ancient8", + "rpc": [ + "https://rpc.ancient8.gg" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://ancient8.gg/", + "shortName": "ancient8", + "chainId": 888888888, + "networkId": 888888888, + "explorers": [ + { + "name": "Ancient8 Explorer", + "url": "https://scan.ancient8.gg", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "888888888", + "chainName": "Ancient8", + "blockExplorerUrl": "https://scan.ancient8.gg" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/ancient8.png" + }, + { + "name": "Zora Sepolia Testnet", + "chain": "ETH", + "rpc": [ + "https://sepolia.rpc.zora.energy" + ], + "faucets": [], + "nativeCurrency": { + "name": "Sepolia Ether", + "symbol": "ETH", + "decimals": 18 + }, + "icon": "zoraSepoliaTestnet", + "infoURL": "https://zora.energy", + "shortName": "zsep", + "chainId": 999999999, + "networkId": 999999999, + "slip44": 1, + "explorers": [ + { + "name": "Zora Sepolia Testnet Network Explorer", + "url": "https://sepolia.explorer.zora.energy", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "999999999", + "chainName": "Zora Sepolia Testnet", + "blockExplorerUrl": "https://sepolia.explorer.zora.energy" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Aurora Mainnet", + "chain": "NEAR", + "rpc": [ + "https://mainnet.aurora.dev", + "https://aurora.drpc.org", + "wss://aurora.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "aurora", + "chainId": 1313161554, + "networkId": 1313161554, + "explorers": [ + { + "name": "Aurora Explorer", + "url": "https://explorer.aurora.dev", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe_migration", + "version": "v1.4.1", + "address": "0x526643F69b81B008F46d95CD5ced5eC0edFFDaC6", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe_to_l2_migration", + "version": "v1.4.1", + "address": "0xfF83F6335d8930cBad1c0D439A841f01888D9f69", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "safe_to_l2_setup", + "version": "v1.4.1", + "address": "0xBD89A1CE4DDe368FFAB0eC35506eEcE0b1fFdc54", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1313161554", + "chainName": "Aurora Mainnet", + "blockExplorerUrl": "https://explorer.aurora.dev" + } + ], + "modules": [], + "iconUrl": "https://raw.githubusercontent.com/ErikThiart/cryptocurrency-icons/refs/heads/master/128/aurora.png" + }, + { + "name": "Aurora Testnet", + "chain": "NEAR", + "rpc": [ + "https://testnet.aurora.dev/", + "https://aurora-testnet.drpc.org", + "wss://aurora-testnet.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "Ether", + "symbol": "ETH", + "decimals": 18 + }, + "infoURL": "https://aurora.dev", + "shortName": "aurora-testnet", + "chainId": 1313161555, + "networkId": 1313161555, + "slip44": 1, + "explorers": [ + { + "name": "Aurora Explorer", + "url": "https://explorer.testnet.aurora.dev", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1313161555", + "chainName": "Aurora Testnet", + "blockExplorerUrl": "https://explorer.testnet.aurora.dev" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "GPT Mainnet", + "chain": "GPT Protocol", + "icon": "gpt", + "rpc": [ + "https://rpc.gptprotocol.io" + ], + "faucets": [], + "chainId": 1511670449, + "networkId": 1511670449, + "nativeCurrency": { + "name": "GPT", + "symbol": "GPT", + "decimals": 18 + }, + "infoURL": "https://gptprotocol.com", + "shortName": "GPT", + "parent": { + "type": "L2", + "chain": "eip155-1", + "bridges": [ + { + "url": "https://bridge.gptprotocol.io" + } + ] + }, + "explorers": [ + { + "name": "blockscout", + "url": "https://explorer.gptprotocol.io", + "standard": "EIP3091", + "icon": "blockscout" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1511670449", + "chainName": "GPT Mainnet", + "blockExplorerUrl": "https://explorer.gptprotocol.io" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Harmony Mainnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://api.harmony.one", + "https://a.api.s0.t.hmny.io", + "https://api.s0.t.hmny.io", + "https://rpc.ankr.com/harmony", + "https://1rpc.io/one", + "https://harmony-0.drpc.org", + "wss://harmony-0.drpc.org" + ], + "faucets": [], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "slip44": 1023, + "ens": { + "registry": "0x4cd2563118e57b19179d8dc033f2b0c5b5d69ff5" + }, + "shortName": "hmy-s0", + "chainId": 1666600000, + "networkId": 1666600000, + "explorers": [ + { + "name": "Harmony Block Explorer", + "url": "https://explorer.harmony.one", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1666600000", + "chainName": "Harmony Mainnet Shard 0", + "blockExplorerUrl": "https://explorer.harmony.one" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Harmony Testnet Shard 0", + "chain": "Harmony", + "rpc": [ + "https://api.s0.b.hmny.io" + ], + "faucets": [ + "https://faucet.pops.one" + ], + "nativeCurrency": { + "name": "ONE", + "symbol": "ONE", + "decimals": 18 + }, + "infoURL": "https://www.harmony.one/", + "shortName": "hmy-b-s0", + "chainId": 1666700000, + "networkId": 1666700000, + "explorers": [ + { + "name": "Harmony Testnet Block Explorer", + "url": "https://explorer.testnet.harmony.one", + "standard": "EIP3091" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0x69f4D1788e39c87893C980c06EdF4b7f686e2938", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0x998739BFdAAdde7C933B942a68053933098f9EDa", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0x98FFBBF51bb33A056B08ddf711f289936AafF717", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x727a77a074D1E6c4530e814F89E618a3298FC044", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "1666700000", + "chainName": "Harmony Testnet Shard 0", + "blockExplorerUrl": "https://explorer.testnet.harmony.one" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Palm Testnet", + "chain": "Palm", + "icon": "palm", + "rpc": [ + "https://palm-testnet.infura.io/v3/${INFURA_API_KEY}", + "https://palm-testnet.public.blastapi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.network", + "shortName": "tpalm", + "chainId": 11297108099, + "networkId": 11297108099, + "slip44": 1, + "explorers": [ + { + "name": "Chainlens", + "url": "https://testnet.palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm-testnet", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11297108099", + "chainName": "Palm Testnet", + "blockExplorerUrl": "https://testnet.palm.chainlens.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Palm", + "chain": "Palm", + "icon": "palm", + "rpc": [ + "https://palm-mainnet.infura.io/v3/${INFURA_API_KEY}", + "https://palm-mainnet.public.blastapi.io" + ], + "faucets": [], + "nativeCurrency": { + "name": "PALM", + "symbol": "PALM", + "decimals": 18 + }, + "infoURL": "https://palm.network", + "shortName": "palm", + "chainId": 11297108109, + "networkId": 11297108109, + "explorers": [ + { + "name": "Chainlens", + "url": "https://palm.chainlens.com", + "standard": "EIP3091" + }, + { + "name": "Dora", + "url": "https://www.ondora.xyz/network/palm", + "standard": "none" + } + ], + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "11297108109", + "chainName": "Palm", + "blockExplorerUrl": "https://palm.chainlens.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Xai Testnet v2", + "chainId": 37714555429, + "shortName": "xaitestnet", + "chain": "XAI Testnet", + "networkId": 37714555429, + "nativeCurrency": { + "name": "sXai", + "symbol": "sXAI", + "decimals": 18 + }, + "rpc": [ + "https://testnet-v2.xai-chain.net/rpc" + ], + "faucets": [], + "explorers": [ + { + "name": "Blockscout", + "url": "https://testnet-explorer-v2.xai-chain.net", + "standard": "EIP3091" + } + ], + "infoURL": "https://xai.games", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "address": "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "create_call", + "version": "v1.3.0", + "address": "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "address": "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "address": "0x3E5c63644E683549055b9Be8653de26E0B4CD36E", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "address": "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "address": "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "address": "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "address": "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "address": "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da", + "chainId": "37714555429", + "chainName": "Xai Testnet v2", + "blockExplorerUrl": "https://testnet-explorer-v2.xai-chain.net" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Arbitrum Blueberry", + "title": "Arbitrum Blueberry Testnet", + "chain": "ETH", + "rpc": [ + "https://rpc.arb-blueberry.gelato.digital", + "wss://ws.arb-blueberry.gelato.digital" + ], + "faucets": [], + "nativeCurrency": { + "name": "GelatoCGT", + "symbol": "CGT", + "decimals": 18 + }, + "infoURL": "https://raas.gelato.network/rollups/details/public/arb-blueberry", + "shortName": "arb-blueberry", + "chainId": 88153591557, + "networkId": 88153591557, + "slip44": 60, + "explorers": [ + { + "name": "blockscout", + "url": "https://arb-blueberry.gelatoscout.com", + "icon": "blockscout", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-421614", + "bridges": [ + { + "url": "https://bridge.gelato.network/bridge/arb-blueberry" + } + ] + }, + "status": "active", + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4" + ], + [ + "EIP-155 contracts", + "0x017062a1dE2FE6b99BE3d9d37841FeD19F573804" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4" + ], + [ + "EIP-155 contracts", + "0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "gnosis_safe", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552" + ], + [ + "EIP-155 contracts", + "0x69f4D1788e39c87893C980c06EdF4b7f686e2938" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "gnosis_safe_l2", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x3E5c63644E683549055b9Be8653de26E0B4CD36E" + ], + [ + "EIP-155 contracts", + "0xfb1bffC9d739B8D520DaF37dF666da4C687191EA" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761" + ], + [ + "EIP-155 contracts", + "0x998739BFdAAdde7C933B942a68053933098f9EDa" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x40A2aCCbd92BCA938b02010E17A5b8929b49130D" + ], + [ + "EIP-155 contracts", + "0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "proxy_factory", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2" + ], + [ + "EIP-155 contracts", + "0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2" + ], + [ + "EIP-155 contracts", + "0x98FFBBF51bb33A056B08ddf711f289936AafF717" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.3.0", + "addresses": [ + [ + "Canonical contracts", + "0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da" + ], + [ + "EIP-155 contracts", + "0x727a77a074D1E6c4530e814F89E618a3298FC044" + ] + ], + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "88153591557", + "chainName": "Arbitrum Blueberry", + "blockExplorerUrl": "https://arb-blueberry.gelatoscout.com" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + }, + { + "name": "Fluence Stage", + "chain": "Fluence Stage (Testnet)", + "rpc": [ + "https://rpc.stage.fluence.dev", + "wss://ws.stage.fluence.dev" + ], + "faucets": [], + "nativeCurrency": { + "name": "tFLT", + "symbol": "tFLT", + "decimals": 18 + }, + "infoURL": "https://fluence.network/", + "shortName": "fluence-stage", + "chainId": 123420000220, + "networkId": 123420000220, + "explorers": [ + { + "name": "blockscout", + "url": "https://blockscout.stage.fluence.dev", + "standard": "EIP3091" + } + ], + "parent": { + "type": "L2", + "chain": "eip155-11155111" + }, + "smartAccounts": [ + { + "name": "compatibility_fallback_handler", + "version": "v1.4.1", + "address": "0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "create_call", + "version": "v1.4.1", + "address": "0x9b35Af71d77eaf8d7e40252370304687390A1A52", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "multi_send", + "version": "v1.4.1", + "address": "0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "multi_send_call_only", + "version": "v1.4.1", + "address": "0x9641d764fc13c8B624c04430C7356C1C7C8102e2", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "safe", + "version": "v1.4.1", + "address": "0x41675C099F32341bf84BFc5382aF534df5C7461a", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "safe_l2", + "version": "v1.4.1", + "address": "0x29fcB43b46531BcA003ddC8FCB67FFE91900C762", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "safe_proxy_factory", + "version": "v1.4.1", + "address": "0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "sign_message_lib", + "version": "v1.4.1", + "address": "0xd53cd0aB83D845Ac265BE939c57F53AD838012c9", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + }, + { + "name": "simulate_tx_accessor", + "version": "v1.4.1", + "address": "0x3d4BA2E0884aa488718476ca2FB8Efc291A46199", + "chainId": "123420000220", + "chainName": "Fluence Stage", + "blockExplorerUrl": "https://blockscout.stage.fluence.dev" + } + ], + "modules": [], + "iconUrl": "/unknown-logo.png" + } +] \ No newline at end of file diff --git a/components/SupportedNetworks/styles.module.css b/components/SupportedNetworks/styles.module.css new file mode 100644 index 00000000..1c945aef --- /dev/null +++ b/components/SupportedNetworks/styles.module.css @@ -0,0 +1,204 @@ +.wrapper { + margin-top: 0 !important; +} + +.cardWrapper { + position: relative; +} + +.searchField :global .MuiInputBase-root { + background: white; +} + +/* Project card */ +.card { + background: var(--mui-palette-border-background); + box-shadow: inset 0 0 0 1px var(--mui-palette-border-light); + border-radius: 6px; + padding: 24px; + display: flex; + flex-direction: column; + align-items: flex-start; + position: relative; + transition: 0.3s; +} + +.outline:hover { + box-shadow: inset 0 0 0 1px var(--mui-palette-primary-main); +} + +.image { + width: 48px; + height: 48px; + margin-bottom: 16px; +} + +.image > img { + object-fit: contain; +} + +.socials { + position: absolute; + top: 24px; + right: 24px; + display: flex; + gap: 8px; + z-index: 1; +} + +.categories { + display: flex; + gap: 8px; + flex-wrap: wrap; + margin-top: 16px; + overflow-y: auto; + scrollbar-width: none; /* Firefox */ +} + +.categories::-webkit-scrollbar { + display: none; +} + +.chip { + border-radius: 4px; + height: 23px; + font-size: 14px; + cursor: pointer; +} + +.reset { + text-decoration: none; + color: var(--mui-palette-text-primary); + cursor: pointer; +} + +.reset:hover { + color: var(--mui-palette-primary-light); +} + +.sidebar { + display: none; +} + +.accordion { + background-color: transparent; + margin: 0 !important; +} + +/* Remove double borders between Accordions */ +.accordion + .accordion { + clip-path: inset(0px -1px -1px -1px); +} + +.accordion :global .Mui-expanded { + min-height: unset; +} + +.accordion :global .MuiAccordionSummary-expandIconWrapper { + margin-right: 2px; +} + +.accordion :global .MuiAccordionSummary-content { + margin: 16px 0 !important; +} + +.accordion :global .MuiAccordionDetails-root { + padding-top: 0; +} + +.list { + padding-top: 0; + padding-bottom: 0; +} + +.label { + display: flex; + margin: 0; + width: 100%; + justify-content: space-between; +} + +.chipContainer { + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.description { + color: var(--mui-palette-primary-light); + overflow: hidden; + display: -webkit-box; + -webkit-line-clamp: 5; + -webkit-box-orient: vertical; + flex-shrink: 0; + font-size: 14px; +} + +.filterButton { + border: 1px solid var(--mui-palette-border-light); + color: var(--mui-palette-text-primary); + display: flex; + align-items: center; + padding: 0px 16px; + gap: 16px; + height: 48px; + font-size: 16px; +} + +.baseButton { + border: 0; + background: 0; + color: inherit; + font-size: 18px; + padding: 0; + margin: 0; + cursor: pointer; +} + +/* Mobile filter */ +.appBar { + border-bottom: 1px solid var(--mui-palette-border-light); + font-size: 20px; + position: sticky; + background-color: var(--mui-palette-background-main); + color: var(--mui-palette-text-primary); +} + +.backButton { + width: 64px; +} + +.backButton:hover { + background-color: unset; +} + +.filterWrapper { + padding: 60px 16px 20px; + background-color: var(--mui-palette-background-main); + display: flex; + flex-direction: column; + flex-grow: 1; +} + +.filterWrapper :global .MuiPaper-root { + box-shadow: unset; +} + +.filterWrapper :global .MuiPaper-root:not(:last-child) { + border-bottom: 1px solid var(--mui-palette-border-light); +} + +@media (min-width: 600px) { + .filterButton { + display: none; + } + + .sidebar { + display: block; + } +} + +.searchField input:focus-visible { + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; +} diff --git a/components/SupportedNetworks/useNetworksSearch.ts b/components/SupportedNetworks/useNetworksSearch.ts new file mode 100644 index 00000000..67120452 --- /dev/null +++ b/components/SupportedNetworks/useNetworksSearch.ts @@ -0,0 +1,43 @@ +import { useMemo } from 'react' +import Fuse from 'fuse.js' +import { type Network } from './Networks' + +export const useNetworksSearch = ( + resources: Network[], + query: string +): Network[] => { + const sortedByChainId = useMemo( + () => + resources.sort((a, b) => { + return a.chainId - b.chainId + }), + [resources] + ) + const fuse = useMemo( + () => + new Fuse(sortedByChainId, { + keys: [ + { + name: 'name', + weight: 0.99 + }, + { + name: 'chainId', + weight: 0.5 + } + ], + distance: 500, + threshold: 0.3, + findAllMatches: true + }), + [sortedByChainId] + ) + + return useMemo(() => { + if (query.length === 0) { + return sortedByChainId + } + + return fuse.search(query).map(result => result.item) + }, [fuse, sortedByChainId, query]) +} diff --git a/components/SupportedNetworks/utils.ts b/components/SupportedNetworks/utils.ts new file mode 100644 index 00000000..96c43cb5 --- /dev/null +++ b/components/SupportedNetworks/utils.ts @@ -0,0 +1,59 @@ +import txServiceNetworks from '../ApiReference/tx-service-networks.json' + +export const deprecatedNetworks = [ + 3, // Ropsten + 4, // Rinkeby + 5, // Goerli + 28, // Boba Rinkeby + 42, // Kovan + 69, // Optimistic Kovan + 280, // zkSync Goerli + 420, // Optimistic Goerli + 599, // Metis Goerli + 59140, // Linea Goerli + 80001, // Polygon Mumbai + 84531, // Base goerli + 421611, // Arbitrum Rinkeby + 421613 // Arbitrum Goerli +] + +export const apiServices = ( + chainId: string +): Array<{ name: string; link: string }> => [ + { + name: 'Safe{Core} SDK', + link: '/sdk/overview' + }, + { + name: 'Safe{Wallet}', + link: 'https://safe.global/wallet' + }, + { + name: 'Transaction Service', + link: `/core-api/transaction-service-reference/${ + txServiceNetworks + .find(n => n.chainId.toString() === chainId) + ?.txServiceUrl?.split('-')[2] + .split('.')[0] + }` + }, + { + name: 'Event Service', + link: 'https://github.com/safe-global/safe-events-service' + } +] + +export const curatedBlockExplorers = [ + 'https://etherscan.io', + 'https://goerli.etherscan.io', + 'https://optimistic.etherscan.io', + 'https://bscscan.com', + 'https://testnet.bscscan.com', + 'https://gnosisscan.io', + 'https://polygonscan.com', + 'https://mumbai.polygonscan.com', + 'https://zkevm.polygonscan.com', + 'https://explorer.zksync.io', + 'https://basescan.org', + 'https://sepolia.basescan.org' +] diff --git a/lib/mdx.tsx b/lib/mdx.tsx index 610574e8..0996a344 100644 --- a/lib/mdx.tsx +++ b/lib/mdx.tsx @@ -125,9 +125,9 @@ const getMarkdownHeaderComponent: ( headingLevel: number ) => React.FC<{ children: ReactNode }> = headingLevel => - // eslint-disable-next-line @typescript-eslint/promise-function-async - ({ children }) => - MdxHeading({ headingLevel, children }) + // eslint-disable-next-line @typescript-eslint/promise-function-async + ({ children }) => + MdxHeading({ headingLevel, children }) export const useCurrentTocIndex: ( headings: Heading[], @@ -166,7 +166,7 @@ export const useCurrentTocIndex: ( nextHeadingNode.offsetTop - navHeight < document.documentElement.scrollTop + window.innerHeight setCurrentIndex( - isNextHeadingInView ? nextHeading?.link ?? '' : active?.link ?? '' + isNextHeadingInView ? (nextHeading?.link ?? '') : (active?.link ?? '') ) } else setCurrentIndex(_headings[0]?.children?.[0]?.link ?? '') }, [headings, navHeight]) diff --git a/lib/storage/index.ts b/lib/storage/index.ts index c68bf6ff..7780a845 100644 --- a/lib/storage/index.ts +++ b/lib/storage/index.ts @@ -6,7 +6,7 @@ class Storage { private readonly prefix: string private readonly storage?: BrowserStorage - constructor (storage?: BrowserStorage, prefix = LS_NAMESPACE) { + constructor(storage?: BrowserStorage, prefix = LS_NAMESPACE) { this.prefix = prefix this.storage = storage } @@ -63,14 +63,14 @@ const local = new Storage( export const localItem = ( key: string -): { get: () => T | null, set: (value: T) => void, remove: () => void } => ({ - get: () => local.getItem(key), - set: (value: T) => { - local.setItem(key, value) - }, - remove: () => { - local.removeItem(key) - } - }) +): { get: () => T | null; set: (value: T) => void; remove: () => void } => ({ + get: () => local.getItem(key), + set: (value: T) => { + local.setItem(key, value) + }, + remove: () => { + local.removeItem(key) + } +}) export default local diff --git a/package.json b/package.json index 429bf912..3c924c76 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,9 @@ "scripts": { "build": "next build", "dev": "next dev", - "generate-api-reference": "node .github/scripts/generateApiReference.js", + "generate-api-reference": "pnpm ts-node --project tsconfig.json .github/scripts/generateApiReference.ts", "generate-code-examples": "node .github/scripts/generateCodeExamples.js", - "generate-supported-networks": "node .github/scripts/generateSupportedNetworks.js", + "generate-supported-networks": "pnpm ts-node --project tsconfig.json .github/scripts/generateSupportedNetworks.ts", "get-resources-og": "node .github/scripts/getResourcesOg.js", "validate-resources": "node .github/scripts/validateResources.js", "linkcheck": "find ./pages -name '*.md*' -print0 | xargs -0 -n1 pnpm markdown-link-check --quiet --progress --config linkchecker-config.json", @@ -56,25 +56,30 @@ "@types/node": "20.14.11", "@types/react": "18.3.8", "@types/react-dom": "^18.3.0", + "@types/shelljs": "^0.8.15", "@typescript-eslint/eslint-plugin": "^7.18.0", "@typescript-eslint/parser": "^7.18.0", "cypress": "^13.14.2", "env-cmd": "^10.1.0", "eslint": "8.57.1", "eslint-config-next": "^14.2.13", + "eslint-config-prettier": "^9.1.0", "eslint-config-standard": "^17.1.0", "eslint-config-standard-jsx": "^11.0.0", "eslint-config-standard-with-typescript": "^43.0.1", "eslint-plugin-import": "^2.30.0", "eslint-plugin-n": "^17.10.3", "eslint-plugin-node": "^11.1.0", + "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-promise": "^6.6.0", "eslint-plugin-react": "^7.36.1", "eslint-plugin-security": "^3.0.1", "husky": "^9.1.6", "markdown-link-check": "^3.12.2", "open-graph-scraper": "^6.8.2", + "prettier": "^3.3.3", "serve": "^14.2.3", + "ts-node": "^10.9.2", "typescript": "^5.6.2" }, "release-it": { diff --git a/pages/advanced/_meta.json b/pages/advanced/_meta.json index 3f96c81e..9e539c2c 100644 --- a/pages/advanced/_meta.json +++ b/pages/advanced/_meta.json @@ -11,7 +11,12 @@ "smart-account-modules": "Safe Modules", "smart-account-guards": "Safe Guards", "smart-account-signatures": "Signatures", - "smart-account-supported-networks": "Supported Networks", + "smart-account-supported-networks": { + "title": "Supported Networks", + "theme": { + "layout": "raw" + } + }, "smart-account-audits": "Audits", "smart-account-bug-bounty": "Bug Bounty", "-- Features": { diff --git a/pages/advanced/erc-4337/_meta.json b/pages/advanced/erc-4337/_meta.json index fece13e2..7acb8920 100644 --- a/pages/advanced/erc-4337/_meta.json +++ b/pages/advanced/erc-4337/_meta.json @@ -1,6 +1,9 @@ { - "overview": "Overview", - "4337-safe": "Safe and ERC-4337", - "supported-networks": "Supported Networks", - "guides": "Guides" -} \ No newline at end of file + "overview": "Overview", + "4337-safe": "Safe and ERC-4337", + "supported-networks": { + "title": "Supported Networks", + "href": "/advanced/smart-account-supported-networks?module=Safe+4337+Module" + }, + "guides": "Guides" +} diff --git a/pages/advanced/erc-4337/supported-networks.md b/pages/advanced/erc-4337/supported-networks.md deleted file mode 100644 index 97e882d0..00000000 --- a/pages/advanced/erc-4337/supported-networks.md +++ /dev/null @@ -1,16 +0,0 @@ -# Supported Networks - -The `Safe4337Module` `v0.2.0` is deployed in the following networks: - -| Network | Address | -| ---------------------------- | ------------------------------------------ | -| Arbitrum | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Base | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Base Sepolia | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Celo | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Gnosis Chain | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Optimism | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Polygon | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | -| Sepolia | 0xa581c4A4DB7175302464fF3C06380BC3270b4037 | - -To add additional deployments please follow the [deployment instructions](https://github.com/safe-global/safe-modules/tree/main/modules/4337#deployments) in the Safe Modules repository. diff --git a/pages/advanced/passkeys/_meta.json b/pages/advanced/passkeys/_meta.json index 2fc78d89..2168e886 100644 --- a/pages/advanced/passkeys/_meta.json +++ b/pages/advanced/passkeys/_meta.json @@ -1,6 +1,9 @@ { "overview": "Overview", "passkeys-safe": "Safe and Passkeys", - "supported-networks": "Supported Networks", + "supported-networks": { + "title": "Supported Networks", + "href": "/advanced/smart-account-supported-networks?module=Safe+Passkey+Module" + }, "tutorials": "Tutorials" } \ No newline at end of file diff --git a/pages/advanced/passkeys/supported-networks.mdx b/pages/advanced/passkeys/supported-networks.mdx deleted file mode 100644 index e16b8f96..00000000 --- a/pages/advanced/passkeys/supported-networks.mdx +++ /dev/null @@ -1,19 +0,0 @@ -# Supported Networks - -The Safe Passkeys Module `v0.2.0` is deployed in the following networks: - -| Network | `SafeWebAuthnSignerFactory` Address | `DaimoP256Verifier` Address | `FCLP256Verifier` Address | -| ---------------------------- | ------------------------------------------ | ------------------------------------------ | ------------------------------------------ | -| Arbitrum | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Arbitrum Sepolia | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Base | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Base Sepolia | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Ethereum Mainnet | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Ethereum Sepolia | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Muster | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Optimism | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Optimism Sepolia | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Polygon | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | -| Polygon Mumbai | 0xF7488fFbe67327ac9f37D5F722d83Fc900852Fbf | 0xc2b78104907F722DABAc4C69f826a522B2754De4 | 0x445a0683e494ea0c5AF3E83c5159fBE47Cf9e765 | - -To add additional deployments please follow the [deployment instructions](https://github.com/safe-global/safe-modules/tree/main/modules/passkey#deploy) in the Safe Modules repository. diff --git a/pages/advanced/smart-account-bug-bounty.md b/pages/advanced/smart-account-bug-bounty.md index 53e02fe8..72cd860e 100644 --- a/pages/advanced/smart-account-bug-bounty.md +++ b/pages/advanced/smart-account-bug-bounty.md @@ -41,7 +41,7 @@ The scope of the bug bounty also includes officially supported Safe Modules: * MultiSend.sol, MultiSendCallOnly.sol, CreateCall.sol * TokenCallbackHandler.sol (formerly DefaultCallbackHandler.sol), CompatibilityFallbackHandler.sol, HandlerContext.sol -You can find addresses for deployed instances of these contracts [here](./smart-account-supported-networks/v1.4.1.md) or in the [Safe deployments](https://github.com/safe-global/safe-deployments) repository. +You can find addresses for deployed instances of these contracts [here](/advanced/smart-account-supported-networks.mdx?version=v1.4.1) or in the [Safe deployments](https://github.com/safe-global/safe-deployments) repository. **Gnosis Safe core contracts (up to version 1.3.0)** @@ -52,7 +52,7 @@ You can find addresses for deployed instances of these contracts [here](./smart- * CreateAndAddModules.sol, MultiSend.sol, MultiSendCallOnly.sol, CreateCall.sol * DefaultCallbackHandler.sol, CompatibilityFallbackHandler.sol, HandlerContext.sol -You can find addresses for deployed instances of these contracts [here](./smart-account-supported-networks/v1.3.0.md) in the [Safe deployments](https://github.com/safe-global/safe-deployments) repository. +You can find addresses for deployed instances of these contracts [here](/advanced/smart-account-supported-networks.mdx?version=v1.3.0) in the [Safe deployments](https://github.com/safe-global/safe-deployments) repository. **Safe Modules contracts** diff --git a/pages/advanced/smart-account-supported-networks.md b/pages/advanced/smart-account-supported-networks.md deleted file mode 100644 index 87f7c168..00000000 --- a/pages/advanced/smart-account-supported-networks.md +++ /dev/null @@ -1,5 +0,0 @@ -# Supported Networks - -This section lists the addresses of all the Safe contracts deployed grouped by version and chain. The same list can be found on the [GitHub repository](https://github.com/safe-global/safe-deployments), from which these pages are automatically generated. - -The most recent version of the Safe contracts is `v1.4.1`, which adds compatibility with the ERC-4337. However, it's not supported yet in the [Safe{Wallet}](https://app.safe.global) interface and the Safe Transaction Service. For that reason, depending on your use case, it might be recommended to continue using `v1.3.0` until there is better support. \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks.mdx b/pages/advanced/smart-account-supported-networks.mdx new file mode 100644 index 00000000..e12e36ab --- /dev/null +++ b/pages/advanced/smart-account-supported-networks.mdx @@ -0,0 +1,3 @@ +import SupportedNetworks from '../../components/SupportedNetworks' + + diff --git a/pages/advanced/smart-account-supported-networks/_meta.json b/pages/advanced/smart-account-supported-networks/_meta.json deleted file mode 100644 index 3726dac9..00000000 --- a/pages/advanced/smart-account-supported-networks/_meta.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "v1.4.1": "v1.4.1", - "v1.3.0": "v1.3.0", - "v1.2.0": "v1.2.0", - "v1.1.1": "v1.1.1", - "v1.0.0": "v1.0.0" -} \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks/v1.0.0.md b/pages/advanced/smart-account-supported-networks/v1.0.0.md deleted file mode 100644 index 130fc16e..00000000 --- a/pages/advanced/smart-account-supported-networks/v1.0.0.md +++ /dev/null @@ -1,47 +0,0 @@ -# v1.0.0 - -This page lists the addresses of all the Safe contracts `v1.0.0` grouped by chain. - -## Networks - -### Ethereum Mainnet - -This network's chain ID is 1. - -- `gnosis_safe.sol`: [0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A](https://etherscan.io/address/0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A) -- `proxy_factory.sol`: [0x12302fE9c02ff50939BaAaaf415fc226C078613C](https://etherscan.io/address/0x12302fE9c02ff50939BaAaaf415fc226C078613C) - - -### Rinkeby - -This network's chain ID is 4. - -- `gnosis_safe.sol`: 0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A -- `proxy_factory.sol`: 0x12302fE9c02ff50939BaAaaf415fc226C078613C - - -### Goerli - -This network's chain ID is 5. - -- `gnosis_safe.sol`: 0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A -- `proxy_factory.sol`: 0x12302fE9c02ff50939BaAaaf415fc226C078613C - - -### LUKSO Mainnet - -This network's chain ID is 42. - -- `gnosis_safe.sol`: 0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A -- `proxy_factory.sol`: 0x12302fE9c02ff50939BaAaaf415fc226C078613C - - -### Gnosis - -This network's chain ID is 100. - -- `gnosis_safe.sol`: [0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A](https://gnosisscan.io/address/0xb6029EA3B2c51D09a50B53CA8012FeEB05bDa35A) -- `proxy_factory.sol`: [0x12302fE9c02ff50939BaAaaf415fc226C078613C](https://gnosisscan.io/address/0x12302fE9c02ff50939BaAaaf415fc226C078613C) - - - \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks/v1.1.1.md b/pages/advanced/smart-account-supported-networks/v1.1.1.md deleted file mode 100644 index 5d0756ab..00000000 --- a/pages/advanced/smart-account-supported-networks/v1.1.1.md +++ /dev/null @@ -1,103 +0,0 @@ -# v1.1.1 - -This page lists the addresses of all the Safe contracts `v1.1.1` grouped by chain. - -## Networks - -### Ethereum Mainnet - -This network's chain ID is 1. - -- `create_and_add_modules.sol`: [0xF61A721642B0c0C8b334bA3763BA1326F53798C0](https://etherscan.io/address/0xF61A721642B0c0C8b334bA3763BA1326F53798C0) -- `create_call.sol`: [0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A](https://etherscan.io/address/0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A) -- `default_callback_handler.sol`: [0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44](https://etherscan.io/address/0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44) -- `gnosis_safe.sol`: [0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F](https://etherscan.io/address/0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F) -- `multi_send.sol`: [0x8D29bE29923b68abfDD21e541b9374737B49cdAD](https://etherscan.io/address/0x8D29bE29923b68abfDD21e541b9374737B49cdAD) -- `proxy_factory.sol`: [0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B](https://etherscan.io/address/0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B) - - -### Rinkeby - -This network's chain ID is 4. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - -### Goerli - -This network's chain ID is 5. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - -### LUKSO Mainnet - -This network's chain ID is 42. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - -### Viction - -This network's chain ID is 88. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - -### Gnosis - -This network's chain ID is 100. - -- `create_and_add_modules.sol`: [0xF61A721642B0c0C8b334bA3763BA1326F53798C0](https://gnosisscan.io/address/0xF61A721642B0c0C8b334bA3763BA1326F53798C0) -- `create_call.sol`: [0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A](https://gnosisscan.io/address/0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A) -- `default_callback_handler.sol`: [0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44](https://gnosisscan.io/address/0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44) -- `gnosis_safe.sol`: [0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F](https://gnosisscan.io/address/0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F) -- `multi_send.sol`: [0x8D29bE29923b68abfDD21e541b9374737B49cdAD](https://gnosisscan.io/address/0x8D29bE29923b68abfDD21e541b9374737B49cdAD) -- `proxy_factory.sol`: [0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B](https://gnosisscan.io/address/0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B) - - -### Energy Web Chain - -This network's chain ID is 246. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - -### Energy Web Volta Testnet - -This network's chain ID is 73799. - -- `create_and_add_modules.sol`: 0xF61A721642B0c0C8b334bA3763BA1326F53798C0 -- `create_call.sol`: 0x8538FcBccba7f5303d2C679Fa5d7A629A8c9bf4A -- `default_callback_handler.sol`: 0xd5D82B6aDDc9027B22dCA772Aa68D5d74cdBdF44 -- `gnosis_safe.sol`: 0x34CfAC646f301356fAa8B21e94227e3583Fe3F5F -- `multi_send.sol`: 0x8D29bE29923b68abfDD21e541b9374737B49cdAD -- `proxy_factory.sol`: 0x76E2cFc1F5Fa8F6a5b3fC4c8F4788F0116861F9B - - - \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks/v1.2.0.md b/pages/advanced/smart-account-supported-networks/v1.2.0.md deleted file mode 100644 index bdc6be54..00000000 --- a/pages/advanced/smart-account-supported-networks/v1.2.0.md +++ /dev/null @@ -1,63 +0,0 @@ -# v1.2.0 - -This page lists the addresses of all the Safe contracts `v1.2.0` grouped by chain. - -## Networks - -### Ethereum Mainnet - -This network's chain ID is 1. - -- `gnosis_safe.sol`: [0x6851D6fDFAfD08c0295C392436245E5bc78B0185](https://etherscan.io/address/0x6851D6fDFAfD08c0295C392436245E5bc78B0185) - - -### Rinkeby - -This network's chain ID is 4. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - -### Goerli - -This network's chain ID is 5. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - -### LUKSO Mainnet - -This network's chain ID is 42. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - -### Viction - -This network's chain ID is 88. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - -### Gnosis - -This network's chain ID is 100. - -- `gnosis_safe.sol`: [0x6851D6fDFAfD08c0295C392436245E5bc78B0185](https://gnosisscan.io/address/0x6851D6fDFAfD08c0295C392436245E5bc78B0185) - - -### Energy Web Chain - -This network's chain ID is 246. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - -### Energy Web Volta Testnet - -This network's chain ID is 73799. - -- `gnosis_safe.sol`: 0x6851D6fDFAfD08c0295C392436245E5bc78B0185 - - - \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks/v1.3.0.md b/pages/advanced/smart-account-supported-networks/v1.3.0.md deleted file mode 100644 index 31cf8519..00000000 --- a/pages/advanced/smart-account-supported-networks/v1.3.0.md +++ /dev/null @@ -1,5287 +0,0 @@ -# v1.3.0 - -This page lists the addresses of all the Safe contracts `v1.3.0` grouped by chain. - -## Networks - -### Ethereum Mainnet - -This network's chain ID is 1. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: [0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4](https://etherscan.io/address/0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4) - - EIP-155 contracts: [0x017062a1dE2FE6b99BE3d9d37841FeD19F573804](https://etherscan.io/address/0x017062a1dE2FE6b99BE3d9d37841FeD19F573804) - -- `create_call.sol`: - - Canonical contracts: [0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4](https://etherscan.io/address/0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4) - - EIP-155 contracts: [0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d](https://etherscan.io/address/0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d) - -- `gnosis_safe.sol`: - - Canonical contracts: [0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552](https://etherscan.io/address/0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552) - - EIP-155 contracts: [0x69f4D1788e39c87893C980c06EdF4b7f686e2938](https://etherscan.io/address/0x69f4D1788e39c87893C980c06EdF4b7f686e2938) - -- `gnosis_safe_l2.sol`: - - Canonical contracts: [0x3E5c63644E683549055b9Be8653de26E0B4CD36E](https://etherscan.io/address/0x3E5c63644E683549055b9Be8653de26E0B4CD36E) - - EIP-155 contracts: [0xfb1bffC9d739B8D520DaF37dF666da4C687191EA](https://etherscan.io/address/0xfb1bffC9d739B8D520DaF37dF666da4C687191EA) - -- `multi_send.sol`: - - Canonical contracts: [0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761](https://etherscan.io/address/0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761) - - EIP-155 contracts: [0x998739BFdAAdde7C933B942a68053933098f9EDa](https://etherscan.io/address/0x998739BFdAAdde7C933B942a68053933098f9EDa) - -- `multi_send_call_only.sol`: - - Canonical contracts: [0x40A2aCCbd92BCA938b02010E17A5b8929b49130D](https://etherscan.io/address/0x40A2aCCbd92BCA938b02010E17A5b8929b49130D) - - EIP-155 contracts: [0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B](https://etherscan.io/address/0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B) - -- `proxy_factory.sol`: - - Canonical contracts: [0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2](https://etherscan.io/address/0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2) - - EIP-155 contracts: [0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC](https://etherscan.io/address/0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC) - -- `sign_message_lib.sol`: - - Canonical contracts: [0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2](https://etherscan.io/address/0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2) - - EIP-155 contracts: [0x98FFBBF51bb33A056B08ddf711f289936AafF717](https://etherscan.io/address/0x98FFBBF51bb33A056B08ddf711f289936AafF717) - -- `simulate_tx_accessor.sol`: - - Canonical contracts: [0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da](https://etherscan.io/address/0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da) - - EIP-155 contracts: [0x727a77a074D1E6c4530e814F89E618a3298FC044](https://etherscan.io/address/0x727a77a074D1E6c4530e814F89E618a3298FC044) - - - -### Ropsten - -This network's chain ID is 3. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Rinkeby - -This network's chain ID is 4. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Goerli - -This network's chain ID is 5. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### OP Mainnet - -This network's chain ID is 10. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Metadium Mainnet - -This network's chain ID is 11. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Metadium Testnet - -This network's chain ID is 12. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### ThunderCore Testnet - -This network's chain ID is 18. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Cronos Mainnet - -This network's chain ID is 25. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Boba Network Rinkeby Testnet - -This network's chain ID is 28. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Rootstock Mainnet - -This network's chain ID is 30. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Rootstock Testnet - -This network's chain ID is 31. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### U2U Solaris Mainnet - -This network's chain ID is 39. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Telos EVM Mainnet - -This network's chain ID is 40. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Telos EVM Testnet - -This network's chain ID is 41. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### LUKSO Mainnet - -This network's chain ID is 42. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Darwinia Pangolin Testnet - -This network's chain ID is 43. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Crab Network - -This network's chain ID is 44. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Darwinia Network - -This network's chain ID is 46. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### XDC Network - -This network's chain ID is 50. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### XDC Apothem Network - -This network's chain ID is 51. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### BNB Smart Chain Mainnet - -This network's chain ID is 56. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: [0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4](https://bscscan.com/address/0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4) - - EIP-155 contracts: [0x017062a1dE2FE6b99BE3d9d37841FeD19F573804](https://bscscan.com/address/0x017062a1dE2FE6b99BE3d9d37841FeD19F573804) - -- `create_call.sol`: - - Canonical contracts: [0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4](https://bscscan.com/address/0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4) - - EIP-155 contracts: [0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d](https://bscscan.com/address/0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d) - -- `gnosis_safe.sol`: - - Canonical contracts: [0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552](https://bscscan.com/address/0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552) - - EIP-155 contracts: [0x69f4D1788e39c87893C980c06EdF4b7f686e2938](https://bscscan.com/address/0x69f4D1788e39c87893C980c06EdF4b7f686e2938) - -- `gnosis_safe_l2.sol`: - - Canonical contracts: [0x3E5c63644E683549055b9Be8653de26E0B4CD36E](https://bscscan.com/address/0x3E5c63644E683549055b9Be8653de26E0B4CD36E) - - EIP-155 contracts: [0xfb1bffC9d739B8D520DaF37dF666da4C687191EA](https://bscscan.com/address/0xfb1bffC9d739B8D520DaF37dF666da4C687191EA) - -- `multi_send.sol`: - - Canonical contracts: [0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761](https://bscscan.com/address/0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761) - - EIP-155 contracts: [0x998739BFdAAdde7C933B942a68053933098f9EDa](https://bscscan.com/address/0x998739BFdAAdde7C933B942a68053933098f9EDa) - -- `multi_send_call_only.sol`: - - Canonical contracts: [0x40A2aCCbd92BCA938b02010E17A5b8929b49130D](https://bscscan.com/address/0x40A2aCCbd92BCA938b02010E17A5b8929b49130D) - - EIP-155 contracts: [0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B](https://bscscan.com/address/0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B) - -- `proxy_factory.sol`: - - Canonical contracts: [0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2](https://bscscan.com/address/0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2) - - EIP-155 contracts: [0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC](https://bscscan.com/address/0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC) - -- `sign_message_lib.sol`: - - Canonical contracts: [0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2](https://bscscan.com/address/0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2) - - EIP-155 contracts: [0x98FFBBF51bb33A056B08ddf711f289936AafF717](https://bscscan.com/address/0x98FFBBF51bb33A056B08ddf711f289936AafF717) - -- `simulate_tx_accessor.sol`: - - Canonical contracts: [0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da](https://bscscan.com/address/0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da) - - EIP-155 contracts: [0x727a77a074D1E6c4530e814F89E618a3298FC044](https://bscscan.com/address/0x727a77a074D1E6c4530e814F89E618a3298FC044) - - - -### Syscoin Mainnet - -This network's chain ID is 57. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Ethereum Classic - -This network's chain ID is 61. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Mordor Testnet - -This network's chain ID is 63. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Optimism Kovan - -This network's chain ID is 69. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Conflux eSpace (Testnet) - -This network's chain ID is 71. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Japan Open Chain Mainnet - -This network's chain ID is 81. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Meter Mainnet - -This network's chain ID is 82. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Meter Testnet - -This network's chain ID is 83. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### BNB Smart Chain Testnet - -This network's chain ID is 97. - -- `compatibility_fallback_handler.sol`: [0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4](https://testnet.bscscan.com/address/0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4) -- `create_call.sol`: [0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4](https://testnet.bscscan.com/address/0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4) -- `gnosis_safe.sol`: [0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552](https://testnet.bscscan.com/address/0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552) -- `gnosis_safe_l2.sol`: [0x3E5c63644E683549055b9Be8653de26E0B4CD36E](https://testnet.bscscan.com/address/0x3E5c63644E683549055b9Be8653de26E0B4CD36E) -- `multi_send.sol`: [0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761](https://testnet.bscscan.com/address/0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761) -- `multi_send_call_only.sol`: [0x40A2aCCbd92BCA938b02010E17A5b8929b49130D](https://testnet.bscscan.com/address/0x40A2aCCbd92BCA938b02010E17A5b8929b49130D) -- `proxy_factory.sol`: [0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2](https://testnet.bscscan.com/address/0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2) -- `sign_message_lib.sol`: [0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2](https://testnet.bscscan.com/address/0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2) -- `simulate_tx_accessor.sol`: [0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da](https://testnet.bscscan.com/address/0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da) - - -### Gnosis - -This network's chain ID is 100. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: [0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4](https://gnosisscan.io/address/0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4) - - EIP-155 contracts: [0x017062a1dE2FE6b99BE3d9d37841FeD19F573804](https://gnosisscan.io/address/0x017062a1dE2FE6b99BE3d9d37841FeD19F573804) - -- `create_call.sol`: - - Canonical contracts: [0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4](https://gnosisscan.io/address/0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4) - - EIP-155 contracts: [0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d](https://gnosisscan.io/address/0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d) - -- `gnosis_safe.sol`: - - Canonical contracts: [0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552](https://gnosisscan.io/address/0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552) - - EIP-155 contracts: [0x69f4D1788e39c87893C980c06EdF4b7f686e2938](https://gnosisscan.io/address/0x69f4D1788e39c87893C980c06EdF4b7f686e2938) - -- `gnosis_safe_l2.sol`: - - Canonical contracts: [0x3E5c63644E683549055b9Be8653de26E0B4CD36E](https://gnosisscan.io/address/0x3E5c63644E683549055b9Be8653de26E0B4CD36E) - - EIP-155 contracts: [0xfb1bffC9d739B8D520DaF37dF666da4C687191EA](https://gnosisscan.io/address/0xfb1bffC9d739B8D520DaF37dF666da4C687191EA) - -- `multi_send.sol`: - - Canonical contracts: [0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761](https://gnosisscan.io/address/0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761) - - EIP-155 contracts: [0x998739BFdAAdde7C933B942a68053933098f9EDa](https://gnosisscan.io/address/0x998739BFdAAdde7C933B942a68053933098f9EDa) - -- `multi_send_call_only.sol`: - - Canonical contracts: [0x40A2aCCbd92BCA938b02010E17A5b8929b49130D](https://gnosisscan.io/address/0x40A2aCCbd92BCA938b02010E17A5b8929b49130D) - - EIP-155 contracts: [0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B](https://gnosisscan.io/address/0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B) - -- `proxy_factory.sol`: - - Canonical contracts: [0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2](https://gnosisscan.io/address/0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2) - - EIP-155 contracts: [0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC](https://gnosisscan.io/address/0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC) - -- `sign_message_lib.sol`: - - Canonical contracts: [0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2](https://gnosisscan.io/address/0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2) - - EIP-155 contracts: [0x98FFBBF51bb33A056B08ddf711f289936AafF717](https://gnosisscan.io/address/0x98FFBBF51bb33A056B08ddf711f289936AafF717) - -- `simulate_tx_accessor.sol`: - - Canonical contracts: [0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da](https://gnosisscan.io/address/0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da) - - EIP-155 contracts: [0x727a77a074D1E6c4530e814F89E618a3298FC044](https://gnosisscan.io/address/0x727a77a074D1E6c4530e814F89E618a3298FC044) - - - -### Velas EVM Mainnet - -This network's chain ID is 106. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### ThunderCore Mainnet - -This network's chain ID is 108. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Shibarium - -This network's chain ID is 109. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### EtherLite Chain - -This network's chain ID is 111. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Fuse Mainnet - -This network's chain ID is 122. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Fuse Sparknet - -This network's chain ID is 123. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Polygon Mainnet - -This network's chain ID is 137. - -- `compatibility_fallback_handler.sol`: [0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4](https://polygonscan.com/address/0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4) -- `create_call.sol`: [0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4](https://polygonscan.com/address/0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4) -- `gnosis_safe.sol`: [0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552](https://polygonscan.com/address/0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552) -- `gnosis_safe_l2.sol`: [0x3E5c63644E683549055b9Be8653de26E0B4CD36E](https://polygonscan.com/address/0x3E5c63644E683549055b9Be8653de26E0B4CD36E) -- `multi_send.sol`: [0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761](https://polygonscan.com/address/0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761) -- `multi_send_call_only.sol`: [0x40A2aCCbd92BCA938b02010E17A5b8929b49130D](https://polygonscan.com/address/0x40A2aCCbd92BCA938b02010E17A5b8929b49130D) -- `proxy_factory.sol`: [0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2](https://polygonscan.com/address/0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2) -- `sign_message_lib.sol`: [0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2](https://polygonscan.com/address/0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2) -- `simulate_tx_accessor.sol`: [0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da](https://polygonscan.com/address/0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da) - - -### ShimmerEVM - -This network's chain ID is 148. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Tenet Testnet - -This network's chain ID is 155. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Manta Pacific Mainnet - -This network's chain ID is 169. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### ABEY Mainnet - -This network's chain ID is 179. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### X Layer Testnet - -This network's chain ID is 195. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### X Layer Mainnet - -This network's chain ID is 196. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### opBNB Mainnet - -This network's chain ID is 204. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Energy Web Chain - -This network's chain ID is 246. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Fantom Opera - -This network's chain ID is 250. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Fraxtal - -This network's chain ID is 252. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Kroma - -This network's chain ID is 255. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### zkSync Era Goerli Testnet (deprecated) - -This network's chain ID is 280. - -- `compatibility_fallback_handler.sol`: 0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A -- `create_call.sol`: 0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56 -- `gnosis_safe.sol`: 0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910 -- `gnosis_safe_l2.sol`: 0x1727c2c531cf966f902E5927b98490fDFb3b2b70 -- `multi_send.sol`: 0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912 -- `multi_send_call_only.sol`: 0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F -- `proxy_factory.sol`: 0xDAec33641865E4651fB43181C6DB6f7232Ee91c2 -- `sign_message_lib.sol`: 0x357147caf9C0cCa67DfA0CF5369318d8193c8407 -- `simulate_tx_accessor.sol`: 0x4191E2e12E8BC5002424CE0c51f9947b02675a44 - - -### Boba Network - -This network's chain ID is 288. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Orderly Mainnet - -This network's chain ID is 291. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### zkSync Sepolia Testnet - -This network's chain ID is 300. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### KCC Mainnet - -This network's chain ID is 321. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### KCC Testnet - -This network's chain ID is 322. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### zkSync Mainnet - -This network's chain ID is 324. - -- `compatibility_fallback_handler.sol`: 0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A -- `create_call.sol`: 0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56 -- `gnosis_safe.sol`: 0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910 -- `gnosis_safe_l2.sol`: 0x1727c2c531cf966f902E5927b98490fDFb3b2b70 -- `multi_send.sol`: 0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912 -- `multi_send_call_only.sol`: 0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F -- `proxy_factory.sol`: 0xDAec33641865E4651fB43181C6DB6f7232Ee91c2 -- `sign_message_lib.sol`: 0x357147caf9C0cCa67DfA0CF5369318d8193c8407 -- `simulate_tx_accessor.sol`: 0x4191E2e12E8BC5002424CE0c51f9947b02675a44 - - -### Shiden - -This network's chain ID is 336. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Cronos Testnet - -This network's chain ID is 338. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### PulseChain - -This network's chain ID is 369. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Optimism Goerli Testnet - -This network's chain ID is 420. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### PGN (Public Goods Network) - -This network's chain ID is 424. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### World Chain - -This network's chain ID is 480. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Rollux Mainnet - -This network's chain ID is 570. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Metis Stardust Testnet - -This network's chain ID is 588. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Astar - -This network's chain ID is 592. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Acala Mandala Testnet TC9 - -This network's chain ID is 595. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Metis Goerli Testnet - -This network's chain ID is 599. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Karura Network - -This network's chain ID is 686. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Redstone - -This network's chain ID is 690. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Acala Network - -This network's chain ID is 787. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Mode Testnet - -This network's chain ID is 919. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### PulseChain Testnet v4 - -This network's chain ID is 943. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Klaytn Testnet Baobab - -This network's chain ID is 1001. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Eurus Mainnet - -This network's chain ID is 1008. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Conflux eSpace - -This network's chain ID is 1030. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Metis Andromeda Mainnet - -This network's chain ID is 1088. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Polygon zkEVM - -This network's chain ID is 1101. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### WEMIX3.0 Mainnet - -This network's chain ID is 1111. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### WEMIX3.0 Testnet - -This network's chain ID is 1112. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Core Blockchain Testnet - -This network's chain ID is 1115. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Core Blockchain Mainnet - -This network's chain ID is 1116. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Lisk - -This network's chain ID is 1135. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Ultron Testnet - -This network's chain ID is 1230. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Ultron Mainnet - -This network's chain ID is 1231. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Moonbeam - -This network's chain ID is 1284. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Moonriver - -This network's chain ID is 1285. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Moonbase Alpha - -This network's chain ID is 1287. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Bobabeam - -This network's chain ID is 1294. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Sei Network - -This network's chain ID is 1329. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Geth Testnet - -This network's chain ID is 1337. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Polygon zkEVM Testnet - -This network's chain ID is 1442. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Tenet - -This network's chain ID is 1559. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Horizen Gobi Testnet - -This network's chain ID is 1663. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Reya Network - -This network's chain ID is 1729. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Rabbit Analog Testnet Chain - -This network's chain ID is 1807. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Lightlink Phoenix Mainnet - -This network's chain ID is 1890. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Lightlink Pegasus Testnet - -This network's chain ID is 1891. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Eurus Testnet - -This network's chain ID is 1984. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Kyoto Testnet - -This network's chain ID is 1998. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Milkomeda C1 Mainnet - -This network's chain ID is 2001. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Milkomeda A1 Mainnet - -This network's chain ID is 2002. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### CloudWalk Testnet - -This network's chain ID is 2008. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### PublicMint Testnet - -This network's chain ID is 2019. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### PublicMint Mainnet - -This network's chain ID is 2020. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Edgeware EdgeEVM Mainnet - -This network's chain ID is 2021. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Aleph Zero Testnet - -This network's chain ID is 2039. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Kava Testnet - -This network's chain ID is 2221. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Kava - -This network's chain ID is 2222. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### RSS3 VSL Sepolia Testnet - -This network's chain ID is 2331. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Kroma Sepolia - -This network's chain ID is 2358. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Morph Holesky - -This network's chain ID is 2810. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Crossbell - -This network's chain ID is 3737. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Astar zkEVM - -This network's chain ID is 3776. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Fantom Testnet - -This network's chain ID is 4002. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Muster Mainnet - -This network's chain ID is 4078. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### CrossFi Testnet - -This network's chain ID is 4157. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Lisk Sepolia Testnet - -This network's chain ID is 4202. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Beam - -This network's chain ID is 4337. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Orderly Sepolia Testnet - -This network's chain ID is 4460. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Gold Chain - -This network's chain ID is 4653. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### IoTeX Network Mainnet - -This network's chain ID is 4689. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Venidium Testnet - -This network's chain ID is 4918. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Venidium Mainnet - -This network's chain ID is 4919. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Mantle - -This network's chain ID is 5000. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Mantle Testnet - -This network's chain ID is 5001. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Mantle Sepolia Testnet - -This network's chain ID is 5003. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Syscoin Tanenbaum Testnet - -This network's chain ID is 5700. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### BounceBit Mainnet - -This network's chain ID is 6001. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Cascadia Testnet - -This network's chain ID is 6102. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### ZetaChain Mainnet - -This network's chain ID is 7000. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### ZetaChain Testnet - -This network's chain ID is 7001. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Horizen EON Mainnet - -This network's chain ID is 7332. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Shyft Mainnet - -This network's chain ID is 7341. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Cyber Mainnet - -This network's chain ID is 7560. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Canto - -This network's chain ID is 7700. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Torus Mainnet - -This network's chain ID is 8192. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Torus Testnet - -This network's chain ID is 8194. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Klaytn Mainnet Cypress - -This network's chain ID is 8217. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Lorenzo - -This network's chain ID is 8329. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Base - -This network's chain ID is 8453. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### IOTA EVM - -This network's chain ID is 8822. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Evmos Testnet - -This network's chain ID is 9000. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Evmos - -This network's chain ID is 9001. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Boba BNB Testnet - -This network's chain ID is 9728. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Smart Bitcoin Cash - -This network's chain ID is 10000. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Smart Bitcoin Cash Testnet - -This network's chain ID is 10001. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Japan Open Chain Testnet - -This network's chain ID is 10081. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Gnosis Chiado Testnet - -This network's chain ID is 10200. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arthera Mainnet - -This network's chain ID is 10242. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Arthera Testnet - -This network's chain ID is 10243. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Lamina1 - -This network's chain ID is 10849. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### WAGMI - -This network's chain ID is 11111. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Haqq Network - -This network's chain ID is 11235. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Shyft Testnet - -This network's chain ID is 11437. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Polygon Supernet Arianee - -This network's chain ID is 11891. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### L3X Protocol - -This network's chain ID is 12324. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### L3X Protocol Testnet - -This network's chain ID is 12325. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### undefined - -This network's chain ID is 12357. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### RSS3 VSL Mainnet - -This network's chain ID is 12553. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Beam Testnet - -This network's chain ID is 13337. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Immutable zkEVM - -This network's chain ID is 13371. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Immutable zkEVM Testnet - -This network's chain ID is 13473. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Holesky - -This network's chain ID is 17000. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Garnet Holesky - -This network's chain ID is 17069. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Eclipse Subnet - -This network's chain ID is 17172. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### unreal-old - -This network's chain ID is 18231. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### unreal - -This network's chain ID is 18233. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### MAP Protocol - -This network's chain ID is 22776. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Oasis Sapphire - -This network's chain ID is 23294. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Oasis Sapphire Testnet - -This network's chain ID is 23295. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### undefined - -This network's chain ID is 28979. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Mode - -This network's chain ID is 34443. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Arbitrum One - -This network's chain ID is 42161. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arbitrum Nova - -This network's chain ID is 42170. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Celo Mainnet - -This network's chain ID is 42220. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Etherlink Mainnet - -This network's chain ID is 42793. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Avalanche Fuji Testnet - -This network's chain ID is 43113. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Avalanche C-Chain - -This network's chain ID is 43114. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Boba Avax - -This network's chain ID is 43288. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Celo Alfajores Testnet - -This network's chain ID is 44787. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Autobahn Network - -This network's chain ID is 45000. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Neo X Mainnet - -This network's chain ID is 47763. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### REI Network - -This network's chain ID is 47805. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Zircuit Testnet - -This network's chain ID is 48899. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### DODOchain testnet - -This network's chain ID is 53457. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Haqq Chain Testnet - -This network's chain ID is 54211. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Boba BNB Mainnet - -This network's chain ID is 56288. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Rollux Testnet - -This network's chain ID is 57000. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Sepolia PGN (Public Goods Network) - -This network's chain ID is 58008. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Linea Goerli - -This network's chain ID is 59140. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Linea - -This network's chain ID is 59144. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Godwoken Testnet v1 - -This network's chain ID is 71401. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Godwoken Mainnet - -This network's chain ID is 71402. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Energy Web Volta Testnet - -This network's chain ID is 73799. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Mumbai - -This network's chain ID is 80001. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Amoy - -This network's chain ID is 80002. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Berachain bArtio - -This network's chain ID is 80084. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Berachain Artio - -This network's chain ID is 80085. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Blast - -This network's chain ID is 81457. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### undefined - -This network's chain ID is 83291. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Base Goerli Testnet - -This network's chain ID is 84531. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Base Sepolia Testnet - -This network's chain ID is 84532. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Masa Testnet - -This network's chain ID is 103454. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### re.al - -This network's chain ID is 111188. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Etherlink Testnet - -This network's chain ID is 128123. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Taiko Mainnet - -This network's chain ID is 167000. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Taiko Katla L2 - -This network's chain ID is 167008. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Taiko Hekla L2 - -This network's chain ID is 167009. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Milkomeda C1 Testnet - -This network's chain ID is 200101. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Milkomeda A1 Testnet - -This network's chain ID is 200202. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Bitlayer Testnet - -This network's chain ID is 200810. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Polis Mainnet - -This network's chain ID is 333999. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arbitrum Rinkeby - -This network's chain ID is 421611. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arbitrum Goerli - -This network's chain ID is 421613. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arbitrum Sepolia - -This network's chain ID is 421614. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Autonomys Testnet Nova Domain - -This network's chain ID is 490000. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Scroll Sepolia Testnet - -This network's chain ID is 534351. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Scroll - -This network's chain ID is 534352. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Scroll Alpha Testnet - -This network's chain ID is 534353. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Eclipse Testnet - -This network's chain ID is 555666. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Hypra Mainnet - -This network's chain ID is 622277. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Open Campus Codex - -This network's chain ID is 656476. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Xai Mainnet - -This network's chain ID is 660279. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Sei Devnet - -This network's chain ID is 713715. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Lamina1 Testnet - -This network's chain ID is 764984. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### zkLink Nova Mainnet - -This network's chain ID is 810180. - -- `compatibility_fallback_handler.sol`: 0x2f870a80647BbC554F3a0EBD093f11B4d2a7492A -- `create_call.sol`: 0xcB8e5E438c5c2b45FbE17B02Ca9aF91509a8ad56 -- `gnosis_safe.sol`: 0xB00ce5CCcdEf57e539ddcEd01DF43a13855d9910 -- `gnosis_safe_l2.sol`: 0x1727c2c531cf966f902E5927b98490fDFb3b2b70 -- `multi_send.sol`: 0x0dFcccB95225ffB03c6FBB2559B530C2B7C8A912 -- `multi_send_call_only.sol`: 0xf220D3b4DFb23C4ade8C88E526C1353AbAcbC38F -- `proxy_factory.sol`: 0xDAec33641865E4651fB43181C6DB6f7232Ee91c2 -- `sign_message_lib.sol`: 0x357147caf9C0cCa67DfA0CF5369318d8193c8407 -- `simulate_tx_accessor.sol`: 0x4191E2e12E8BC5002424CE0c51f9947b02675a44 - - -### Treasure Ruby - -This network's chain ID is 978657. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Astar zKyoto - -This network's chain ID is 6038361. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### Saakuru Mainnet - -This network's chain ID is 7225878. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Zora - -This network's chain ID is 7777777. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Sepolia - -This network's chain ID is 11155111. - -- `compatibility_fallback_handler.sol`: - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - -- `create_call.sol`: - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - -- `gnosis_safe.sol`: - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - -- `gnosis_safe_l2.sol`: - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - -- `multi_send.sol`: - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - -- `multi_send_call_only.sol`: - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - -- `proxy_factory.sol`: - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - -- `sign_message_lib.sol`: - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - -- `simulate_tx_accessor.sol`: - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - - -### OP Sepolia Testnet - -This network's chain ID is 11155420. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### NeoX Testnet T4 - -This network's chain ID is 12227332. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Polygon Blackberry - -This network's chain ID is 94204209. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Cyber Testnet - -This network's chain ID is 111557560. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### OP Celestia Raspberry - -This network's chain ID is 123420111. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Plume Testnet - -This network's chain ID is 161221135. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Blast Sepolia Testnet - -This network's chain ID is 168587773. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Kanazawa - -This network's chain ID is 222000222. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Neon EVM Devnet - -This network's chain ID is 245022926. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Neon EVM Mainnet - -This network's chain ID is 245022934. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Meld - -This network's chain ID is 333000333. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Degen Chain - -This network's chain ID is 666666666. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Zora Sepolia Testnet - -This network's chain ID is 999999999. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Aurora Mainnet - -This network's chain ID is 1313161554. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - -### Aurora Testnet - -This network's chain ID is 1313161555. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Harmony Mainnet Shard 0 - -This network's chain ID is 1666600000. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Harmony Testnet Shard 0 - -This network's chain ID is 1666700000. - -- `compatibility_fallback_handler.sol`: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 -- `create_call.sol`: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d -- `gnosis_safe.sol`: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 -- `gnosis_safe_l2.sol`: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA -- `multi_send.sol`: 0x998739BFdAAdde7C933B942a68053933098f9EDa -- `multi_send_call_only.sol`: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B -- `proxy_factory.sol`: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC -- `sign_message_lib.sol`: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 -- `simulate_tx_accessor.sol`: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - -### Palm Testnet - -This network's chain ID is 11297108099. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Palm - -This network's chain ID is 11297108109. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Xai Testnet v2 - -This network's chain ID is 37714555429. - -- `compatibility_fallback_handler.sol`: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 -- `create_call.sol`: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 -- `gnosis_safe.sol`: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 -- `gnosis_safe_l2.sol`: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E -- `multi_send.sol`: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 -- `multi_send_call_only.sol`: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D -- `proxy_factory.sol`: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 -- `sign_message_lib.sol`: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 -- `simulate_tx_accessor.sol`: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - -### Arbitrum Blueberry - -This network's chain ID is 88153591557. - -- `compatibility_fallback_handler.sol`: - - Canonical contracts: 0xf48f2B2d2a534e402487b3ee7C18c33Aec0Fe5e4 - - EIP-155 contracts: 0x017062a1dE2FE6b99BE3d9d37841FeD19F573804 - -- `create_call.sol`: - - Canonical contracts: 0x7cbB62EaA69F79e6873cD1ecB2392971036cFAa4 - - EIP-155 contracts: 0xB19D6FFc2182150F8Eb585b79D4ABcd7C5640A9d - -- `gnosis_safe.sol`: - - Canonical contracts: 0xd9Db270c1B5E3Bd161E8c8503c55cEABeE709552 - - EIP-155 contracts: 0x69f4D1788e39c87893C980c06EdF4b7f686e2938 - -- `gnosis_safe_l2.sol`: - - Canonical contracts: 0x3E5c63644E683549055b9Be8653de26E0B4CD36E - - EIP-155 contracts: 0xfb1bffC9d739B8D520DaF37dF666da4C687191EA - -- `multi_send.sol`: - - Canonical contracts: 0xA238CBeb142c10Ef7Ad8442C6D1f9E89e07e7761 - - EIP-155 contracts: 0x998739BFdAAdde7C933B942a68053933098f9EDa - -- `multi_send_call_only.sol`: - - Canonical contracts: 0x40A2aCCbd92BCA938b02010E17A5b8929b49130D - - EIP-155 contracts: 0xA1dabEF33b3B82c7814B6D82A79e50F4AC44102B - -- `proxy_factory.sol`: - - Canonical contracts: 0xa6B71E26C5e0845f74c812102Ca7114b6a896AB2 - - EIP-155 contracts: 0xC22834581EbC8527d974F8a1c97E1bEA4EF910BC - -- `sign_message_lib.sol`: - - Canonical contracts: 0xA65387F16B013cf2Af4605Ad8aA5ec25a2cbA3a2 - - EIP-155 contracts: 0x98FFBBF51bb33A056B08ddf711f289936AafF717 - -- `simulate_tx_accessor.sol`: - - Canonical contracts: 0x59AD6735bCd8152B84860Cb256dD9e96b85F69Da - - EIP-155 contracts: 0x727a77a074D1E6c4530e814F89E618a3298FC044 - - - - \ No newline at end of file diff --git a/pages/advanced/smart-account-supported-networks/v1.4.1.md b/pages/advanced/smart-account-supported-networks/v1.4.1.md deleted file mode 100644 index 14ffdec8..00000000 --- a/pages/advanced/smart-account-supported-networks/v1.4.1.md +++ /dev/null @@ -1,1732 +0,0 @@ -# v1.4.1 - -This page lists the addresses of all the Safe contracts `v1.4.1` grouped by chain. - -## Networks - -### Ethereum Mainnet - -This network's chain ID is 1. - -- `compatibility_fallback_handler.sol`: [0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99](https://etherscan.io/address/0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99) -- `create_call.sol`: [0x9b35Af71d77eaf8d7e40252370304687390A1A52](https://etherscan.io/address/0x9b35Af71d77eaf8d7e40252370304687390A1A52) -- `multi_send.sol`: [0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526](https://etherscan.io/address/0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526) -- `multi_send_call_only.sol`: [0x9641d764fc13c8B624c04430C7356C1C7C8102e2](https://etherscan.io/address/0x9641d764fc13c8B624c04430C7356C1C7C8102e2) -- `safe.sol`: [0x41675C099F32341bf84BFc5382aF534df5C7461a](https://etherscan.io/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) -- `safe_l2.sol`: [0x29fcB43b46531BcA003ddC8FCB67FFE91900C762](https://etherscan.io/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) -- `safe_proxy_factory.sol`: [0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67](https://etherscan.io/address/0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67) -- `sign_message_lib.sol`: [0xd53cd0aB83D845Ac265BE939c57F53AD838012c9](https://etherscan.io/address/0xd53cd0aB83D845Ac265BE939c57F53AD838012c9) -- `simulate_tx_accessor.sol`: [0x3d4BA2E0884aa488718476ca2FB8Efc291A46199](https://etherscan.io/address/0x3d4BA2E0884aa488718476ca2FB8Efc291A46199) - - -### Goerli - -This network's chain ID is 5. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### OP Mainnet - -This network's chain ID is 10. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Cronos Mainnet - -This network's chain ID is 25. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Rootstock Testnet - -This network's chain ID is 31. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Telos EVM Mainnet - -This network's chain ID is 40. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Telos EVM Testnet - -This network's chain ID is 41. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### BNB Smart Chain Mainnet - -This network's chain ID is 56. - -- `compatibility_fallback_handler.sol`: [0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99](https://bscscan.com/address/0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99) -- `create_call.sol`: [0x9b35Af71d77eaf8d7e40252370304687390A1A52](https://bscscan.com/address/0x9b35Af71d77eaf8d7e40252370304687390A1A52) -- `multi_send.sol`: [0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526](https://bscscan.com/address/0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526) -- `multi_send_call_only.sol`: [0x9641d764fc13c8B624c04430C7356C1C7C8102e2](https://bscscan.com/address/0x9641d764fc13c8B624c04430C7356C1C7C8102e2) -- `safe.sol`: [0x41675C099F32341bf84BFc5382aF534df5C7461a](https://bscscan.com/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) -- `safe_l2.sol`: [0x29fcB43b46531BcA003ddC8FCB67FFE91900C762](https://bscscan.com/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) -- `safe_proxy_factory.sol`: [0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67](https://bscscan.com/address/0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67) -- `sign_message_lib.sol`: [0xd53cd0aB83D845Ac265BE939c57F53AD838012c9](https://bscscan.com/address/0xd53cd0aB83D845Ac265BE939c57F53AD838012c9) -- `simulate_tx_accessor.sol`: [0x3d4BA2E0884aa488718476ca2FB8Efc291A46199](https://bscscan.com/address/0x3d4BA2E0884aa488718476ca2FB8Efc291A46199) - - -### Conflux eSpace (Testnet) - -This network's chain ID is 71. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### BNB Smart Chain Testnet - -This network's chain ID is 97. - -- `compatibility_fallback_handler.sol`: [0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99](https://testnet.bscscan.com/address/0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99) -- `create_call.sol`: [0x9b35Af71d77eaf8d7e40252370304687390A1A52](https://testnet.bscscan.com/address/0x9b35Af71d77eaf8d7e40252370304687390A1A52) -- `multi_send.sol`: [0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526](https://testnet.bscscan.com/address/0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526) -- `multi_send_call_only.sol`: [0x9641d764fc13c8B624c04430C7356C1C7C8102e2](https://testnet.bscscan.com/address/0x9641d764fc13c8B624c04430C7356C1C7C8102e2) -- `safe.sol`: [0x41675C099F32341bf84BFc5382aF534df5C7461a](https://testnet.bscscan.com/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) -- `safe_l2.sol`: [0x29fcB43b46531BcA003ddC8FCB67FFE91900C762](https://testnet.bscscan.com/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) -- `safe_proxy_factory.sol`: [0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67](https://testnet.bscscan.com/address/0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67) -- `sign_message_lib.sol`: [0xd53cd0aB83D845Ac265BE939c57F53AD838012c9](https://testnet.bscscan.com/address/0xd53cd0aB83D845Ac265BE939c57F53AD838012c9) -- `simulate_tx_accessor.sol`: [0x3d4BA2E0884aa488718476ca2FB8Efc291A46199](https://testnet.bscscan.com/address/0x3d4BA2E0884aa488718476ca2FB8Efc291A46199) - - -### Gnosis - -This network's chain ID is 100. - -- `compatibility_fallback_handler.sol`: [0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99](https://gnosisscan.io/address/0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99) -- `create_call.sol`: [0x9b35Af71d77eaf8d7e40252370304687390A1A52](https://gnosisscan.io/address/0x9b35Af71d77eaf8d7e40252370304687390A1A52) -- `multi_send.sol`: [0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526](https://gnosisscan.io/address/0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526) -- `multi_send_call_only.sol`: [0x9641d764fc13c8B624c04430C7356C1C7C8102e2](https://gnosisscan.io/address/0x9641d764fc13c8B624c04430C7356C1C7C8102e2) -- `safe.sol`: [0x41675C099F32341bf84BFc5382aF534df5C7461a](https://gnosisscan.io/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) -- `safe_l2.sol`: [0x29fcB43b46531BcA003ddC8FCB67FFE91900C762](https://gnosisscan.io/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) -- `safe_proxy_factory.sol`: [0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67](https://gnosisscan.io/address/0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67) -- `sign_message_lib.sol`: [0xd53cd0aB83D845Ac265BE939c57F53AD838012c9](https://gnosisscan.io/address/0xd53cd0aB83D845Ac265BE939c57F53AD838012c9) -- `simulate_tx_accessor.sol`: [0x3d4BA2E0884aa488718476ca2FB8Efc291A46199](https://gnosisscan.io/address/0x3d4BA2E0884aa488718476ca2FB8Efc291A46199) - - -### Polygon Mainnet - -This network's chain ID is 137. - -- `compatibility_fallback_handler.sol`: [0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99](https://polygonscan.com/address/0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99) -- `create_call.sol`: [0x9b35Af71d77eaf8d7e40252370304687390A1A52](https://polygonscan.com/address/0x9b35Af71d77eaf8d7e40252370304687390A1A52) -- `multi_send.sol`: [0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526](https://polygonscan.com/address/0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526) -- `multi_send_call_only.sol`: [0x9641d764fc13c8B624c04430C7356C1C7C8102e2](https://polygonscan.com/address/0x9641d764fc13c8B624c04430C7356C1C7C8102e2) -- `safe.sol`: [0x41675C099F32341bf84BFc5382aF534df5C7461a](https://polygonscan.com/address/0x41675C099F32341bf84BFc5382aF534df5C7461a) -- `safe_l2.sol`: [0x29fcB43b46531BcA003ddC8FCB67FFE91900C762](https://polygonscan.com/address/0x29fcB43b46531BcA003ddC8FCB67FFE91900C762) -- `safe_proxy_factory.sol`: [0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67](https://polygonscan.com/address/0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67) -- `sign_message_lib.sol`: [0xd53cd0aB83D845Ac265BE939c57F53AD838012c9](https://polygonscan.com/address/0xd53cd0aB83D845Ac265BE939c57F53AD838012c9) -- `simulate_tx_accessor.sol`: [0x3d4BA2E0884aa488718476ca2FB8Efc291A46199](https://polygonscan.com/address/0x3d4BA2E0884aa488718476ca2FB8Efc291A46199) - - -### Tenet Testnet - -This network's chain ID is 155. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Manta Pacific Mainnet - -This network's chain ID is 169. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Fantom Opera - -This network's chain ID is 250. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Fraxtal - -This network's chain ID is 252. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Kroma - -This network's chain ID is 255. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Shiden - -This network's chain ID is 336. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Cronos Testnet - -This network's chain ID is 338. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### PulseChain - -This network's chain ID is 369. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### World Chain - -This network's chain ID is 480. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### F(x)Core Mainnet Network - -This network's chain ID is 530. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Astar - -This network's chain ID is 592. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Redstone - -This network's chain ID is 690. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Mode Testnet - -This network's chain ID is 919. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Conflux eSpace - -This network's chain ID is 1030. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Polygon zkEVM - -This network's chain ID is 1101. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### WEMIX3.0 Mainnet - -This network's chain ID is 1111. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### WEMIX3.0 Testnet - -This network's chain ID is 1112. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Lisk - -This network's chain ID is 1135. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Moonbeam - -This network's chain ID is 1284. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Moonriver - -This network's chain ID is 1285. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Moonbase Alpha - -This network's chain ID is 1287. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Sei Network - -This network's chain ID is 1329. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Geth Testnet - -This network's chain ID is 1337. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Polygon zkEVM Testnet - -This network's chain ID is 1442. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Gravity Alpha Mainnet - -This network's chain ID is 1625. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Reya Network - -This network's chain ID is 1729. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Dogechain Mainnet - -This network's chain ID is 2000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Aleph Zero Testnet - -This network's chain ID is 2039. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Kroma Sepolia - -This network's chain ID is 2358. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Morph Holesky - -This network's chain ID is 2810. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### The peaq Network - -This network's chain ID is 3338. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Botanix Testnet - -This network's chain ID is 3636. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Astar zkEVM - -This network's chain ID is 3776. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Fantom Testnet - -This network's chain ID is 4002. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### CrossFi Testnet - -This network's chain ID is 4157. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Lisk Sepolia Testnet - -This network's chain ID is 4202. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Beam - -This network's chain ID is 4337. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Gold Chain - -This network's chain ID is 4653. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Mantle - -This network's chain ID is 5000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Mantle Sepolia Testnet - -This network's chain ID is 5003. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### BounceBit Mainnet - -This network's chain ID is 6001. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Aura Euphoria Testnet - -This network's chain ID is 6321. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Aura Mainnet - -This network's chain ID is 6322. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### ZetaChain Mainnet - -This network's chain ID is 7000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### ZetaChain Testnet - -This network's chain ID is 7001. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Bitrock Mainnet - -This network's chain ID is 7171. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Cyber Mainnet - -This network's chain ID is 7560. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Bitrock Testnet - -This network's chain ID is 7771. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Torus Mainnet - -This network's chain ID is 8192. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Torus Testnet - -This network's chain ID is 8194. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Base - -This network's chain ID is 8453. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Evmos - -This network's chain ID is 9001. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Arthera Mainnet - -This network's chain ID is 10242. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Arthera Testnet - -This network's chain ID is 10243. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Haqq Network - -This network's chain ID is 11235. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Beam Testnet - -This network's chain ID is 13337. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Holesky - -This network's chain ID is 17000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Garnet Holesky - -This network's chain ID is 17069. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### unreal - -This network's chain ID is 18233. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Oasis Sapphire - -This network's chain ID is 23294. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Oasis Sapphire Testnet - -This network's chain ID is 23295. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Zilliqa EVM - -This network's chain ID is 32769. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Zilliqa EVM Testnet - -This network's chain ID is 33101. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Mode - -This network's chain ID is 34443. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Arbitrum One - -This network's chain ID is 42161. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Celo Mainnet - -This network's chain ID is 42220. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Avalanche C-Chain - -This network's chain ID is 43114. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Haqq Chain Testnet - -This network's chain ID is 54211. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Linea Goerli - -This network's chain ID is 59140. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Linea Sepolia - -This network's chain ID is 59141. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Linea - -This network's chain ID is 59144. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Mumbai - -This network's chain ID is 80001. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Berachain Artio - -This network's chain ID is 80085. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Blast - -This network's chain ID is 81457. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Base Goerli Testnet - -This network's chain ID is 84531. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Base Sepolia Testnet - -This network's chain ID is 84532. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### F(x)Core Testnet Network - -This network's chain ID is 90001. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Stratis Mainnet - -This network's chain ID is 105105. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### re.al - -This network's chain ID is 111188. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Taiko Mainnet - -This network's chain ID is 167000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Taiko Hekla L2 - -This network's chain ID is 167009. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Auroria Testnet - -This network's chain ID is 205205. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Syndr L3 Sepolia - -This network's chain ID is 444444. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Scroll Sepolia Testnet - -This network's chain ID is 534351. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Scroll - -This network's chain ID is 534352. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Eclipse Testnet - -This network's chain ID is 555666. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Sei Devnet - -This network's chain ID is 713715. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Astar zKyoto - -This network's chain ID is 6038361. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Saakuru Mainnet - -This network's chain ID is 7225878. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Zora - -This network's chain ID is 7777777. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Sepolia - -This network's chain ID is 11155111. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### OP Sepolia Testnet - -This network's chain ID is 11155420. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Polygon Blackberry - -This network's chain ID is 94204209. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Cyber Testnet - -This network's chain ID is 111557560. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### OP Celestia Raspberry - -This network's chain ID is 123420111. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Blast Sepolia Testnet - -This network's chain ID is 168587773. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Degen Chain - -This network's chain ID is 666666666. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Zora Sepolia Testnet - -This network's chain ID is 999999999. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Aurora Mainnet - -This network's chain ID is 1313161554. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Aurora Testnet - -This network's chain ID is 1313161555. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Harmony Mainnet Shard 0 - -This network's chain ID is 1666600000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Harmony Testnet Shard 0 - -This network's chain ID is 1666700000. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - -### Arbitrum Blueberry - -This network's chain ID is 88153591557. - -- `compatibility_fallback_handler.sol`: 0xfd0732Dc9E303f09fCEf3a7388Ad10A83459Ec99 -- `create_call.sol`: 0x9b35Af71d77eaf8d7e40252370304687390A1A52 -- `multi_send.sol`: 0x38869bf66a61cF6bDB996A6aE40D5853Fd43B526 -- `multi_send_call_only.sol`: 0x9641d764fc13c8B624c04430C7356C1C7C8102e2 -- `safe.sol`: 0x41675C099F32341bf84BFc5382aF534df5C7461a -- `safe_l2.sol`: 0x29fcB43b46531BcA003ddC8FCB67FFE91900C762 -- `safe_proxy_factory.sol`: 0x4e1DCf7AD4e460CfD30791CCC4F9c8a4f820ec67 -- `sign_message_lib.sol`: 0xd53cd0aB83D845Ac265BE939c57F53AD838012c9 -- `simulate_tx_accessor.sol`: 0x3d4BA2E0884aa488718476ca2FB8Efc291A46199 - - - \ No newline at end of file diff --git a/pages/core-api/_meta.json b/pages/core-api/_meta.json index 11d254fe..f94bf715 100644 --- a/pages/core-api/_meta.json +++ b/pages/core-api/_meta.json @@ -14,7 +14,10 @@ "title": "Safe Transaction Service" }, "transaction-service-overview": "Overview", - "transaction-service-supported-networks": "Supported Networks", + "transaction-service-supported-networks": { + "title": "Supported Networks", + "href": "/advanced/smart-account-supported-networks?service=Transaction+Service" + }, "transaction-service-guides": "Guides", "transaction-service-reference": { "title": "Reference", diff --git a/pages/core-api/transaction-service-reference/arbitrum.mdx b/pages/core-api/transaction-service-reference/arbitrum.mdx new file mode 100644 index 00000000..8c210ff4 --- /dev/null +++ b/pages/core-api/transaction-service-reference/arbitrum.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/aurora.mdx b/pages/core-api/transaction-service-reference/aurora.mdx new file mode 100644 index 00000000..b587e9e5 --- /dev/null +++ b/pages/core-api/transaction-service-reference/aurora.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/avalanche.mdx b/pages/core-api/transaction-service-reference/avalanche.mdx new file mode 100644 index 00000000..aa801018 --- /dev/null +++ b/pages/core-api/transaction-service-reference/avalanche.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/base.mdx b/pages/core-api/transaction-service-reference/base.mdx new file mode 100644 index 00000000..fce04113 --- /dev/null +++ b/pages/core-api/transaction-service-reference/base.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/blast.mdx b/pages/core-api/transaction-service-reference/blast.mdx new file mode 100644 index 00000000..443a1334 --- /dev/null +++ b/pages/core-api/transaction-service-reference/blast.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference.mdx b/pages/core-api/transaction-service-reference/bsc.mdx similarity index 60% rename from pages/core-api/transaction-service-reference.mdx rename to pages/core-api/transaction-service-reference/bsc.mdx index b4a14e01..975dc1af 100644 --- a/pages/core-api/transaction-service-reference.mdx +++ b/pages/core-api/transaction-service-reference/bsc.mdx @@ -1,8 +1,9 @@ + {/* */} -import ApiReference from '../../components/ApiReference' +import ApiReference from '../../../components/ApiReference' import { renderToString } from 'react-dom/server' -import { MDXComponents, getHeadingsFromHtml } from '../../lib/mdx' -import Mdx from '../../components/ApiReference/generated-reference.mdx' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' export const getStaticProps = async () => { const renderedMdx = @@ -16,5 +17,5 @@ export const getStaticProps = async () => { } } - + {/* */} diff --git a/pages/core-api/transaction-service-reference/celo.mdx b/pages/core-api/transaction-service-reference/celo.mdx new file mode 100644 index 00000000..2d66a558 --- /dev/null +++ b/pages/core-api/transaction-service-reference/celo.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/chiado.mdx b/pages/core-api/transaction-service-reference/chiado.mdx new file mode 100644 index 00000000..b765d1f6 --- /dev/null +++ b/pages/core-api/transaction-service-reference/chiado.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/gnosis.mdx b/pages/core-api/transaction-service-reference/gnosis.mdx new file mode 100644 index 00000000..e7734bfb --- /dev/null +++ b/pages/core-api/transaction-service-reference/gnosis.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/linea.mdx b/pages/core-api/transaction-service-reference/linea.mdx new file mode 100644 index 00000000..c05b2ff8 --- /dev/null +++ b/pages/core-api/transaction-service-reference/linea.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/mainnet.mdx b/pages/core-api/transaction-service-reference/mainnet.mdx new file mode 100644 index 00000000..ae29bfd9 --- /dev/null +++ b/pages/core-api/transaction-service-reference/mainnet.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/mantle.mdx b/pages/core-api/transaction-service-reference/mantle.mdx new file mode 100644 index 00000000..0fdc6c09 --- /dev/null +++ b/pages/core-api/transaction-service-reference/mantle.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/optimism.mdx b/pages/core-api/transaction-service-reference/optimism.mdx new file mode 100644 index 00000000..61d43105 --- /dev/null +++ b/pages/core-api/transaction-service-reference/optimism.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/polygon.mdx b/pages/core-api/transaction-service-reference/polygon.mdx new file mode 100644 index 00000000..01faaa97 --- /dev/null +++ b/pages/core-api/transaction-service-reference/polygon.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/scroll.mdx b/pages/core-api/transaction-service-reference/scroll.mdx new file mode 100644 index 00000000..58d7d051 --- /dev/null +++ b/pages/core-api/transaction-service-reference/scroll.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/sepolia.mdx b/pages/core-api/transaction-service-reference/sepolia.mdx new file mode 100644 index 00000000..b159013d --- /dev/null +++ b/pages/core-api/transaction-service-reference/sepolia.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/worldchain.mdx b/pages/core-api/transaction-service-reference/worldchain.mdx new file mode 100644 index 00000000..70c307d4 --- /dev/null +++ b/pages/core-api/transaction-service-reference/worldchain.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/xlayer.mdx b/pages/core-api/transaction-service-reference/xlayer.mdx new file mode 100644 index 00000000..2c938774 --- /dev/null +++ b/pages/core-api/transaction-service-reference/xlayer.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/zkevm.mdx b/pages/core-api/transaction-service-reference/zkevm.mdx new file mode 100644 index 00000000..2b8bcef7 --- /dev/null +++ b/pages/core-api/transaction-service-reference/zkevm.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-reference/zksync.mdx b/pages/core-api/transaction-service-reference/zksync.mdx new file mode 100644 index 00000000..09b117c9 --- /dev/null +++ b/pages/core-api/transaction-service-reference/zksync.mdx @@ -0,0 +1,21 @@ + +{/* */} +import ApiReference from '../../../components/ApiReference' +import { renderToString } from 'react-dom/server' +import { MDXComponents, getHeadingsFromHtml } from '../../../lib/mdx' +import Mdx from '../../../components/ApiReference/generated-reference.mdx' + +export const getStaticProps = async () => { + const renderedMdx = + const contentString = renderToString(renderedMdx) + const headings = getHeadingsFromHtml(contentString) + + return { + props: { + ssg: { headings } + } + } +} + + +{/* */} diff --git a/pages/core-api/transaction-service-supported-networks.md b/pages/core-api/transaction-service-supported-networks.md deleted file mode 100644 index 2aef8682..00000000 --- a/pages/core-api/transaction-service-supported-networks.md +++ /dev/null @@ -1,22 +0,0 @@ -# Supported Networks - - -| Network | Host | -| ---------------------------- | -------------------------------------------------------------------------------------------------------- | -| Arbitrum | [https://safe-transaction-arbitrum.safe.global](https://safe-transaction-arbitrum.safe.global/) | -| Aurora | [https://safe-transaction-aurora.safe.global](https://safe-transaction-aurora.safe.global/) | -| Avalanche | [https://safe-transaction-avalanche.safe.global](https://safe-transaction-avalanche.safe.global/) | -| Base | [https://safe-transaction-base.safe.global](https://safe-transaction-base.safe.global/) | -| Base Sepolia | [https://safe-transaction-base-sepolia.safe.global](https://safe-transaction-base-sepolia.safe.global/) | -| BNB Smart Chain | [https://safe-transaction-bsc.safe.global](https://safe-transaction-bsc.safe.global/) | -| Celo | [https://safe-transaction-celo.safe.global](https://safe-transaction-celo.safe.global/) | -| Ethereum Mainnet | [https://safe-transaction-mainnet.safe.global](https://safe-transaction-mainnet.safe.global/) | -| Gnosis Chain | [https://safe-transaction-gnosis-chain.safe.global](https://safe-transaction-gnosis-chain.safe.global/) | -| Linea | [https://safe-transaction-linea.safe.global](https://safe-transaction-linea.safe.global/) | -| Optimism | [https://safe-transaction-optimism.safe.global](https://safe-transaction-optimism.safe.global/) | -| Polygon | [https://safe-transaction-polygon.safe.global](https://safe-transaction-polygon.safe.global/) | -| Polygon zkEVM | [https://safe-transaction-zkevm.safe.global](https://safe-transaction-zkevm.safe.global/) | -| Scroll | [https://safe-transaction-scroll.safe.global](https://safe-transaction-scroll.safe.global/) | -| Sepolia | [https://safe-transaction-sepolia.safe.global](https://safe-transaction-sepolia.safe.global/) | -| X Layer | [https://safe-transaction-xlayer.safe.global](https://safe-transaction-xlayer.safe.global/) | -| zkSync Era Mainnet | [https://safe-transaction-zksync.safe.global](https://safe-transaction-zksync.safe.global/) | diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 5703a6a1..148100fe 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -84,6 +84,9 @@ importers: '@types/react-dom': specifier: ^18.3.0 version: 18.3.0 + '@types/shelljs': + specifier: ^0.8.15 + version: 0.8.15 '@typescript-eslint/eslint-plugin': specifier: ^7.18.0 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1)(typescript@5.6.2) @@ -102,6 +105,9 @@ importers: eslint-config-next: specifier: ^14.2.13 version: 14.2.13(eslint@8.57.1)(typescript@5.6.2) + eslint-config-prettier: + specifier: ^9.1.0 + version: 9.1.0(eslint@8.57.1) eslint-config-standard: specifier: ^17.1.0 version: 17.1.0(eslint-plugin-import@2.30.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.6.2))(eslint@8.57.1))(eslint-plugin-n@17.10.3(eslint@8.57.1))(eslint-plugin-promise@6.6.0(eslint@8.57.1))(eslint@8.57.1) @@ -120,6 +126,9 @@ importers: eslint-plugin-node: specifier: ^11.1.0 version: 11.1.0(eslint@8.57.1) + eslint-plugin-prettier: + specifier: ^5.2.1 + version: 5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3) eslint-plugin-promise: specifier: ^6.6.0 version: 6.6.0(eslint@8.57.1) @@ -138,9 +147,15 @@ importers: open-graph-scraper: specifier: ^6.8.2 version: 6.8.2 + prettier: + specifier: ^3.3.3 + version: 3.3.3 serve: specifier: ^14.2.3 version: 14.2.3 + ts-node: + specifier: ^10.9.2 + version: 10.9.2(@types/node@20.14.11)(typescript@5.6.2) typescript: specifier: ^5.6.2 version: 5.6.2 @@ -798,6 +813,10 @@ packages: resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} engines: {node: '>=0.1.90'} + '@cspotcode/source-map-support@0.8.1': + resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==} + engines: {node: '>=12'} + '@cypress/request@3.0.5': resolution: {integrity: sha512-v+XHd9XmWbufxF1/bTaVm2yhbxY+TB4YtWRqF2zaXBlDNMkls34KiATz0AVDLavL3iB6bQk9/7n3oY1EoLSWGA==} engines: {node: '>= 6'} @@ -926,6 +945,9 @@ packages: '@jridgewell/trace-mapping@0.3.25': resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==} + '@jridgewell/trace-mapping@0.3.9': + resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==} + '@mdx-js/mdx@2.3.0': resolution: {integrity: sha512-jLuwRlz8DQfQNiUCJR50Y09CGPq3fLtmtUQfVrj79E0JWu3dvsVcxVIcfhR5h0iXu+/z++zDrYeiJqifRynJkA==} @@ -1248,6 +1270,10 @@ packages: resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} + '@pkgr/core@0.1.1': + resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==} + engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} + '@pnpm/config.env-replace@1.1.0': resolution: {integrity: sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==} engines: {node: '>=12.22.0'} @@ -1389,6 +1415,18 @@ packages: resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==} engines: {node: '>=10.13.0'} + '@tsconfig/node10@1.0.11': + resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==} + + '@tsconfig/node12@1.0.11': + resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==} + + '@tsconfig/node14@1.0.3': + resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==} + + '@tsconfig/node16@1.0.4': + resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} + '@types/acorn@4.0.6': resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==} @@ -1410,6 +1448,9 @@ packages: '@types/estree@1.0.6': resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==} + '@types/glob@7.2.0': + resolution: {integrity: sha512-ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==} + '@types/hast@2.3.10': resolution: {integrity: sha512-McWspRw8xx8J9HurkVBfYj0xKoE25tOFlHGdx4MJ5xORQrMGZNqJhVQWaIbm6Oyla5kYOXtDiopzKRJzEOkwJw==} @@ -1440,6 +1481,9 @@ packages: '@types/mdx@2.0.13': resolution: {integrity: sha512-+OWZQfAYyio6YkJb3HLxDrvnx6SWWDbC0zVPfBRzUk0/nqoDyf6dNxQi3eArPe8rJ473nobTMQ/8Zk+LxJ+Yuw==} + '@types/minimatch@5.1.2': + resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==} + '@types/ms@0.7.34': resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==} @@ -1461,6 +1505,9 @@ packages: '@types/react@18.3.8': resolution: {integrity: sha512-syBUrW3/XpnW4WJ41Pft+I+aPoDVbrBVQGEnbD7NijDGlVC+8gV/XKRY+7vMDlfPpbwYt0l1vd/Sj8bJGMbs9Q==} + '@types/shelljs@0.8.15': + resolution: {integrity: sha512-vzmnCHl6hViPu9GNLQJ+DZFd6BQI2DBTUeOvYHqkWQLMfKAAQYMb/xAmZkTogZI/vqXHCWkqDRymDI5p0QTi5Q==} + '@types/sinonjs__fake-timers@8.1.1': resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==} @@ -1580,6 +1627,10 @@ packages: peerDependencies: acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 + acorn-walk@8.3.4: + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} + engines: {node: '>=0.4.0'} + acorn@8.12.1: resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==} engines: {node: '>=0.4.0'} @@ -1639,6 +1690,9 @@ packages: arg@1.0.0: resolution: {integrity: sha512-Wk7TEzl1KqvTGs/uyhmHO/3XLd3t1UeU4IstvPXVzGPM522cTjqjNZ99esCkcL52sjqjo8e8CTBcWhkxvGzoAw==} + arg@4.1.3: + resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==} + arg@5.0.2: resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==} @@ -2085,6 +2139,9 @@ packages: typescript: optional: true + create-require@1.1.1: + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} + cross-spawn@5.1.0: resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==} @@ -2403,6 +2460,10 @@ packages: devlop@1.1.0: resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} + diff@4.0.2: + resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==} + engines: {node: '>=0.3.1'} + diff@5.2.0: resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} engines: {node: '>=0.3.1'} @@ -2570,6 +2631,12 @@ packages: typescript: optional: true + eslint-config-prettier@9.1.0: + resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==} + hasBin: true + peerDependencies: + eslint: '>=7.0.0' + eslint-config-standard-jsx@11.0.0: resolution: {integrity: sha512-+1EV/R0JxEK1L0NGolAr8Iktm3Rgotx3BKwgaX+eAuSX8D952LULKtjgZD3F+e6SvibONnhLwoTi9DPxN5LvvQ==} peerDependencies: @@ -2673,6 +2740,20 @@ packages: peerDependencies: eslint: '>=5.16.0' + eslint-plugin-prettier@5.2.1: + resolution: {integrity: sha512-gH3iR3g4JfF+yYPaJYkN7jEl9QbweL/YfkoRlNnuIEHEz1vHVlCmWOS+eGGiRuzHQXdJFCOTxRgvju9b8VUmrw==} + engines: {node: ^14.18.0 || >=16.0.0} + peerDependencies: + '@types/eslint': '>=8.0.0' + eslint: '>=8.0.0' + eslint-config-prettier: '*' + prettier: '>=3.0.0' + peerDependenciesMeta: + '@types/eslint': + optional: true + eslint-config-prettier: + optional: true + eslint-plugin-promise@6.6.0: resolution: {integrity: sha512-57Zzfw8G6+Gq7axm2Pdo3gW/Rx3h9Yywgn61uE/3elTCOePEHVrn2i5CdfBwA1BLK0Q0WqctICIUSqXZW/VprQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -2809,6 +2890,9 @@ packages: fast-deep-equal@3.1.3: resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} + fast-diff@1.3.0: + resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==} + fast-glob@3.3.2: resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==} engines: {node: '>=8.6.0'} @@ -3722,6 +3806,9 @@ packages: resolution: {integrity: sha512-tPJQ1HeyiU2vRruNGhZ+VleWuMQRro8iFtJxYgnS4NQe+EukKF6aGiIT+7flZhISAt2iaXBCfFGvAyif7/f8nQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + make-error@1.3.6: + resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} + markdown-extensions@1.1.1: resolution: {integrity: sha512-WWC0ZuMzCyDHYCasEGs4IPvLyTGftYwh6wIEOULOF0HXcqZlhwRzrK0w2VUlxWA98xnvb/jszw4ZSkJ6ADpM6Q==} engines: {node: '>=0.10.0'} @@ -4357,6 +4444,15 @@ packages: resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==} engines: {node: '>= 0.8.0'} + prettier-linter-helpers@1.0.0: + resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==} + engines: {node: '>=6.0.0'} + + prettier@3.3.3: + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} + engines: {node: '>=14'} + hasBin: true + pretty-bytes@5.6.0: resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==} engines: {node: '>=6'} @@ -4944,6 +5040,10 @@ packages: peerDependencies: react: ^16.11.0 || ^17.0.0 || ^18.0.0 + synckit@0.9.2: + resolution: {integrity: sha512-vrozgXDQwYO72vHjUb/HnFbQx1exDjoKzqx23aXEg2a9VIg2TSFZ8FmeZpTjUCFMYw7mpX4BE2SFu8wI7asYsw==} + engines: {node: ^14.18.0 || >=16.0.0} + tapable@2.2.1: resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} engines: {node: '>=6'} @@ -5007,6 +5107,20 @@ packages: resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} engines: {node: '>=6.10'} + ts-node@10.9.2: + resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + tsconfig-paths@3.15.0: resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==} @@ -5213,6 +5327,9 @@ packages: engines: {node: '>=8'} hasBin: true + v8-compile-cache-lib@3.0.1: + resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==} + vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} @@ -5350,6 +5467,10 @@ packages: yauzl@2.10.0: resolution: {integrity: sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==} + yn@3.1.1: + resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==} + engines: {node: '>=6'} + yocto-queue@0.1.0: resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} engines: {node: '>=10'} @@ -6225,6 +6346,10 @@ snapshots: '@colors/colors@1.5.0': optional: true + '@cspotcode/source-map-support@0.8.1': + dependencies: + '@jridgewell/trace-mapping': 0.3.9 + '@cypress/request@3.0.5': dependencies: aws-sign2: 0.7.0 @@ -6408,6 +6533,11 @@ snapshots: '@jridgewell/resolve-uri': 3.1.2 '@jridgewell/sourcemap-codec': 1.5.0 + '@jridgewell/trace-mapping@0.3.9': + dependencies: + '@jridgewell/resolve-uri': 3.1.2 + '@jridgewell/sourcemap-codec': 1.5.0 + '@mdx-js/mdx@2.3.0': dependencies: '@types/estree-jsx': 1.0.5 @@ -6697,6 +6827,8 @@ snapshots: '@pkgjs/parseargs@0.11.0': optional: true + '@pkgr/core@0.1.1': {} + '@pnpm/config.env-replace@1.1.0': {} '@pnpm/network.ca-file@1.0.2': @@ -6848,6 +6980,14 @@ snapshots: '@trysound/sax@0.2.0': {} + '@tsconfig/node10@1.0.11': {} + + '@tsconfig/node12@1.0.11': {} + + '@tsconfig/node14@1.0.3': {} + + '@tsconfig/node16@1.0.4': {} + '@types/acorn@4.0.6': dependencies: '@types/estree': 1.0.6 @@ -6870,6 +7010,11 @@ snapshots: '@types/estree@1.0.6': {} + '@types/glob@7.2.0': + dependencies: + '@types/minimatch': 5.1.2 + '@types/node': 20.14.11 + '@types/hast@2.3.10': dependencies: '@types/unist': 2.0.11 @@ -6898,6 +7043,8 @@ snapshots: '@types/mdx@2.0.13': {} + '@types/minimatch@5.1.2': {} + '@types/ms@0.7.34': {} '@types/node@20.14.11': @@ -6921,6 +7068,11 @@ snapshots: '@types/prop-types': 15.7.13 csstype: 3.1.3 + '@types/shelljs@0.8.15': + dependencies: + '@types/glob': 7.2.0 + '@types/node': 20.14.11 + '@types/sinonjs__fake-timers@8.1.1': {} '@types/sizzle@2.3.8': {} @@ -7068,6 +7220,10 @@ snapshots: dependencies: acorn: 8.12.1 + acorn-walk@8.3.4: + dependencies: + acorn: 8.12.1 + acorn@8.12.1: {} agent-base@7.1.1: @@ -7125,6 +7281,8 @@ snapshots: arg@1.0.0: {} + arg@4.1.3: {} + arg@5.0.2: {} argparse@1.0.10: @@ -7606,6 +7764,8 @@ snapshots: optionalDependencies: typescript: 5.6.2 + create-require@1.1.1: {} + cross-spawn@5.1.0: dependencies: lru-cache: 4.1.5 @@ -8002,6 +8162,8 @@ snapshots: dependencies: dequal: 2.0.3 + diff@4.0.2: {} + diff@5.2.0: {} dir-glob@3.0.1: @@ -8246,6 +8408,10 @@ snapshots: - eslint-plugin-import-x - supports-color + eslint-config-prettier@9.1.0(eslint@8.57.1): + dependencies: + eslint: 8.57.1 + eslint-config-standard-jsx@11.0.0(eslint-plugin-react@7.36.1(eslint@8.57.1))(eslint@8.57.1): dependencies: eslint: 8.57.1 @@ -8392,6 +8558,15 @@ snapshots: resolve: 1.22.8 semver: 6.3.1 + eslint-plugin-prettier@5.2.1(eslint-config-prettier@9.1.0(eslint@8.57.1))(eslint@8.57.1)(prettier@3.3.3): + dependencies: + eslint: 8.57.1 + prettier: 3.3.3 + prettier-linter-helpers: 1.0.0 + synckit: 0.9.2 + optionalDependencies: + eslint-config-prettier: 9.1.0(eslint@8.57.1) + eslint-plugin-promise@6.6.0(eslint@8.57.1): dependencies: eslint: 8.57.1 @@ -8611,6 +8786,8 @@ snapshots: fast-deep-equal@3.1.3: {} + fast-diff@1.3.0: {} + fast-glob@3.3.2: dependencies: '@nodelib/fs.stat': 2.0.5 @@ -9560,6 +9737,8 @@ snapshots: macos-release@3.3.0: {} + make-error@1.3.6: {} + markdown-extensions@1.1.1: {} markdown-link-check@3.12.2: @@ -10545,6 +10724,12 @@ snapshots: prelude-ls@1.2.1: {} + prettier-linter-helpers@1.0.0: + dependencies: + fast-diff: 1.3.0 + + prettier@3.3.3: {} + pretty-bytes@5.6.0: {} process@0.11.10: {} @@ -11232,6 +11417,11 @@ snapshots: react: 18.3.1 use-sync-external-store: 1.2.2(react@18.3.1) + synckit@0.9.2: + dependencies: + '@pkgr/core': 0.1.1 + tslib: 2.7.0 + tapable@2.2.1: {} text-table@0.2.0: {} @@ -11282,6 +11472,24 @@ snapshots: ts-dedent@2.2.0: {} + ts-node@10.9.2(@types/node@20.14.11)(typescript@5.6.2): + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@tsconfig/node10': 1.0.11 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.14.11 + acorn: 8.12.1 + acorn-walk: 8.3.4 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.6.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + tsconfig-paths@3.15.0: dependencies: '@types/json5': 0.0.29 @@ -11531,6 +11739,8 @@ snapshots: kleur: 4.1.5 sade: 1.8.1 + v8-compile-cache-lib@3.0.1: {} + vary@1.1.2: {} verror@1.10.0: @@ -11699,6 +11909,8 @@ snapshots: buffer-crc32: 0.2.13 fd-slicer: 1.1.0 + yn@3.1.1: {} + yocto-queue@0.1.0: {} yoctocolors-cjs@2.1.2: {} diff --git a/public/unknown-logo.png b/public/unknown-logo.png new file mode 100644 index 00000000..e7e5216a Binary files /dev/null and b/public/unknown-logo.png differ diff --git a/redirects.json b/redirects.json index be422fd6..1f906177 100644 --- a/redirects.json +++ b/redirects.json @@ -803,5 +803,45 @@ "source": "/safe-core-protocol/security/security-audits", "destination": "https://github.com/5afe/safe-core-protocol", "permanent": true + }, + { + "source": "/core-api/transaction-service-supported-networks", + "destination": "/advanced/smart-account-supported-networks?service=Transaction+Service", + "permanent": true + }, + { + "source": "/advanced/smart-account-supported-networks/v1.4.1", + "destination": "/advanced/smart-account-supported-networks?version=v1.4.1", + "permanent": true + }, + { + "source": "/advanced/smart-account-supported-networks/v1.3.0", + "destination": "/advanced/smart-account-supported-networks?version=v1.3.0", + "permanent": true + }, + { + "source": "/advanced/smart-account-supported-networks/v1.2.0", + "destination": "/advanced/smart-account-supported-networks?version=v1.2.0", + "permanent": true + }, + { + "source": "/advanced/smart-account-supported-networks/v1.1.1", + "destination": "/advanced/smart-account-supported-networks?version=v1.1.1", + "permanent": true + }, + { + "source": "/advanced/smart-account-supported-networks/v1.0.0", + "destination": "/advanced/smart-account-supported-networks?version=v1.0.0", + "permanent": true + }, + { + "source": "/advanced/erc-4337/supported-networks", + "destination": "/advanced/smart-account-supported-networks?module=Safe+4337+Module", + "permanent": true + }, + { + "source": "/advanced/passkeys/supported-networks", + "destination": "/advanced/smart-account-supported-networks?module=Safe+Passkey+Module", + "permanent": true } ] diff --git a/styles/emotion.ts b/styles/emotion.ts index 183a5276..3cc7521a 100644 --- a/styles/emotion.ts +++ b/styles/emotion.ts @@ -7,7 +7,9 @@ export const createEmotionCache = (): EmotionCache => { let insertionPoint if (typeof document !== 'undefined') { - const emotionInsertionPoint = document.querySelector('meta[name="emotion-insertion-point"]') + const emotionInsertionPoint = document.querySelector( + 'meta[name="emotion-insertion-point"]' + ) insertionPoint = emotionInsertionPoint ?? undefined } diff --git a/styles/theme.ts b/styles/theme.ts index 2e626419..6a537584 100644 --- a/styles/theme.ts +++ b/styles/theme.ts @@ -164,11 +164,6 @@ export const theme = createTheme({ } }, MuiContainer: { - defaultProps: { - fixed: true, - maxWidth: 'xl', - disableGutters: true - }, styleOverrides: { root: { paddingLeft: '15px', diff --git a/tsconfig.json b/tsconfig.json index 6eb3fde3..278ae123 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,8 +8,8 @@ "forceConsistentCasingInFileNames": true, "noEmit": true, "esModuleInterop": true, - "module": "esnext", - "moduleResolution": "node", + "module": "ESNext", + "moduleResolution": "Bundler", "resolveJsonModule": true, "isolatedModules": true, "jsx": "preserve", @@ -19,7 +19,7 @@ "incremental": true, "sourceMap": true, "outDir": "dist", - "types": ["cypress"] + "types": ["cypress", "node"] }, "include": [ "next-env.d.ts",