diff --git a/.gitignore b/.gitignore index c1f5b05587..6aa4a0f9e5 100644 --- a/.gitignore +++ b/.gitignore @@ -10,4 +10,3 @@ vocs.config.ts.timestamp-* docs/pages/solutions/.DS_Store .cursorrules .env* -docs/data diff --git a/biome.json b/biome.json index 9387718e50..b7d2974e54 100644 --- a/biome.json +++ b/biome.json @@ -8,8 +8,7 @@ "tsconfig.json", "tsconfig.*.json", ".vercel", - ".vocs", - "./docs/data" + ".vocs" ] }, "formatter": { @@ -34,12 +33,8 @@ "correctness": { "useJsxKeyInIterable": "off" }, - "complexity": { - "noForEach": "off" - }, "suspicious": { "noAssignInExpressions": "off", - "noPrototypeBuiltins": "off", "noExplicitAny": "off", "noArrayIndexKey": "off" } diff --git a/docs/.DS_Store b/docs/.DS_Store index b601114e65..99a6944efa 100644 Binary files a/docs/.DS_Store and b/docs/.DS_Store differ diff --git a/docs/components/CodeTabs/index.tsx b/docs/components/CodeTabs/index.tsx new file mode 100644 index 0000000000..c0fe8b951b --- /dev/null +++ b/docs/components/CodeTabs/index.tsx @@ -0,0 +1,106 @@ +import { useState } from 'react' +// import SyntaxHighlighter from 'react-syntax-highlighter'; + +import { CopyIcon } from '../Landing/icons' +import { Prism as SyntaxHighlighter } from 'react-syntax-highlighter' +import { vscDarkPlus } from 'react-syntax-highlighter/dist/cjs/styles/prism' +import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from '../Tooltip/Tooltip' + +type CodeTabsProps = { + tabs: { + label: string + content: string + }[] +} + +const CodeTabs: React.FC = ({ tabs }) => { + const [activeTab, setActiveTab] = useState(0) + const [copied, setCopied] = useState(false) + + const handleCopy = () => { + const code = tabs[activeTab].content + navigator.clipboard.writeText(code).then( + () => { + setCopied(true) + setTimeout(() => setCopied(false), 2000) + }, + (err) => { + console.error('Error to copy the code: ', err) + }, + ) + } + + return ( +
+
+ {tabs.map((tab, index) => ( + + ))} + + + + + + {localStorage.getItem('sequenceProjectAccessKey') === + 'AQAAAAAAADVH8R2AGuQhwQ1y8NaEf1T7PJM' ? ( +
+

Using Sample Access Key

+
+ ) : ( +
+

Using Your Own Access Key

+
+ )} +
+
+ +

+ {localStorage.getItem('sequenceProjectAccessKey') === + 'AQAAAAAAADVH8R2AGuQhwQ1y8NaEf1T7PJM' ? ( + <> + We use a sample access key in order to authenticate your requests.
Please + create an account on{' '} + + Sequence Builder + {' '} + and login with your wallet +
+ in order to use your own project credentials. + + ) : ( + <>Injecting your own project access key into the code below. + )} +

+
+
+
+ +
+
+
+          
+            {tabs[activeTab].content}
+          
+        
+
+
+ ) +} + +export default CodeTabs diff --git a/docs/components/SwaggerAPIComponent/specParser.js b/docs/components/SwaggerAPIComponent/specParser.js deleted file mode 100644 index 0bb6a10bc4..0000000000 --- a/docs/components/SwaggerAPIComponent/specParser.js +++ /dev/null @@ -1,145 +0,0 @@ -import fs from 'node:fs/promises' -import path from 'node:path' -import { fileURLToPath } from 'node:url' - -const __filename = fileURLToPath(import.meta.url) -const __dirname = path.dirname(__filename) - -async function parseOpenAPISpec(specPath) { - // Read the OpenAPI spec file - const specContent = await fs.readFile(specPath, 'utf8') - const spec = JSON.parse(specContent) - - // Initialize an object to store endpoints by tag - const specsByTag = { - metadata: { ...spec, paths: {} }, - analytics: { ...spec, paths: {} }, - marketplace: { ...spec, paths: {} }, - relayer: { ...spec, paths: {} }, - api: { ...spec, paths: {} }, - indexer: { ...spec, paths: {} }, - } - - // Object to store servers for each tag - const serversByTag = {} - - // Iterate through the paths in the spec - for (const [path, methods] of Object.entries(spec.paths)) { - for (const [method, details] of Object.entries(methods)) { - const tags = details.tags || [] - - // Add the endpoint to the corresponding tag(s) - tags.forEach((tag) => { - if (specsByTag.hasOwnProperty(tag)) { - if (!specsByTag[tag].paths[path]) { - specsByTag[tag].paths[path] = {} - } - specsByTag[tag].paths[path][method] = details - - // Check for servers in the operation - if (details.servers) { - if (!serversByTag[tag]) { - serversByTag[tag] = new Set() - } - details.servers.forEach((server) => serversByTag[tag].add(JSON.stringify(server))) - } - } - }) - } - } - - // Create output directory if it doesn't exist - const outputDir = path.join(__dirname, 'output') - try { - await fs.mkdir(outputDir) - } catch (error) { - if (error.code !== 'EEXIST') throw error - } - - // Write separate files for each tag - for (const [tag, tagSpec] of Object.entries(specsByTag)) { - // Remove empty paths - if (Object.keys(tagSpec.paths).length === 0) { - continue - } - - // Update the info object with tag-specific title and description - tagSpec.info = { - ...tagSpec.info, - title: `${tagSpec.info.title} - ${tag.charAt(0).toUpperCase() + tag.slice(1)} API`, - description: `${tagSpec.info.description}\n\nThis specification covers the ${tag} endpoints of the API.`, - } - - // Update servers for this tag - if (serversByTag[tag]) { - tagSpec.servers = Array.from(serversByTag[tag]).map(JSON.parse) - } else { - // If no specific servers for this tag, use the top-level servers - tagSpec.servers = spec.servers - } - - // Ensure the spec is valid by including only relevant schema components - tagSpec.components = { - schemas: {}, - securitySchemes: { - ApiKeyAuth: { - description: - 'Project access key for authenticating requests, get an access key at https://sequence.build', - in: 'header', - name: 'X-Access-Key', - type: 'apiKey', - }, - }, - } - - const usedSchemas = new Set() - - // Helper function to recursively find schema references - const findSchemaRefs = (obj) => { - if (typeof obj !== 'object' || obj === null) return - if (obj.$ref?.startsWith('#/components/schemas/')) { - usedSchemas.add(obj.$ref.split('/').pop()) - } - Object.values(obj).forEach(findSchemaRefs) - } - - // Find all schema references used in this tag's paths - findSchemaRefs(tagSpec.paths) - - // Add used schemas and their dependencies - const addSchema = (schemaName) => { - if (spec.components.schemas[schemaName]) { - tagSpec.components.schemas[schemaName] = spec.components.schemas[schemaName] - findSchemaRefs(tagSpec.components.schemas[schemaName]) - } - } - - usedSchemas.forEach(addSchema) - - // Add global security requirement - tagSpec.security = [{ ApiKeyAuth: [] }] - - // Write the OpenAPI spec for this tag - const outputPath = path.join(outputDir, `${tag}-openapi.json`) - await fs.writeFile(outputPath, JSON.stringify(tagSpec, null, 2)) - console.log(`Created ${outputPath}`) - } - - // Update the top-level spec with all servers - const allServers = new Set() - Object.values(serversByTag).forEach((servers) => - servers.forEach((server) => allServers.add(server)), - ) - spec.servers = Array.from(allServers).map(JSON.parse) - - // Write the updated top-level spec - const updatedSpecPath = path.join(outputDir, 'updated-openapi.json') - await fs.writeFile(updatedSpecPath, JSON.stringify(spec, null, 2)) - console.log(`Created ${updatedSpecPath}`) -} - -// Usage -const specPath = './swaggerspec.json' -parseOpenAPISpec(specPath) - -export { parseOpenAPISpec } diff --git a/docs/components/Table.tsx b/docs/components/Table.tsx index 2c65458789..fe67c15ea5 100644 --- a/docs/components/Table.tsx +++ b/docs/components/Table.tsx @@ -36,8 +36,6 @@ const Table = ({ rows, columns }: any) => { - - ))} diff --git a/docs/pages/solutions/chainlist/Integrated/arbitrum-nova.mdx b/docs/pages/solutions/chainlist/Integrated/arbitrum-nova.mdx deleted file mode 100644 index 6976744035..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/arbitrum-nova.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Arbitrum Nova - ETH Blockchain Network -description: Explore Arbitrum Nova, a blockchain network with chain ID 42170. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Arbitrum Nova - -Arbitrum Nova is a blockchain network with chain ID 42170. - -## Network Details - -- **Chain ID**: 42170 -- **Chain Name**: ETH -- **Short Name**: arb-nova -- **Network ID**: 42170 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Arbitrum Nova can be accessed through the following RPC endpoints: - -- https://nova.arbitrum.io/rpc -- https://arbitrum-nova.publicnode.com -- wss://arbitrum-nova.publicnode.com - -## Arbitrum Nova Block Explorers - -- [Arbitrum Nova Chain Explorer](https://nova-explorer.arbitrum.io) -- [dexguru](https://nova.dex.guru) - -## Additional Information - -- **Official Website**: https://arbitrum.io - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/arbitrum-sepolia.mdx b/docs/pages/solutions/chainlist/Integrated/arbitrum-sepolia.mdx deleted file mode 100644 index 84a0c1a7b9..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/arbitrum-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arbitrum Sepolia - ETH Blockchain Network -description: Explore Arbitrum Sepolia, a blockchain network with chain ID 421614. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Arbitrum Sepolia - -Arbitrum Sepolia is a blockchain network with chain ID 421614. - -## Network Details - -- **Chain ID**: 421614 -- **Chain Name**: ETH -- **Short Name**: arb-sep -- **Network ID**: 421614 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Arbitrum Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia-rollup.arbitrum.io/rpc - -## Arbitrum Sepolia Block Explorers - -- [Arbitrum Sepolia Rollup Testnet Explorer](https://sepolia-explorer.arbitrum.io) - -## Additional Information - -- **Official Website**: https://arbitrum.io - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Arbitrum Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/arbitrum.mdx b/docs/pages/solutions/chainlist/Integrated/arbitrum.mdx deleted file mode 100644 index 6b8fabb675..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/arbitrum.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Arbitrum One - ETH Blockchain Network -description: Explore Arbitrum One, a blockchain network with chain ID 42161. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Arbitrum One - -Arbitrum One is a blockchain network with chain ID 42161. - -## Network Details - -- **Chain ID**: 42161 -- **Chain Name**: ETH -- **Short Name**: arb1 -- **Network ID**: 42161 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Arbitrum One can be accessed through the following RPC endpoints: - -- 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 - -## Arbitrum One Block Explorers - -- [Arbiscan](https://arbiscan.io) -- [Arbitrum Explorer](https://explorer.arbitrum.io) -- [dexguru](https://arbitrum.dex.guru) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/astar-zkevm.mdx b/docs/pages/solutions/chainlist/Integrated/astar-zkevm.mdx deleted file mode 100644 index 377edc0dca..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/astar-zkevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Astar zkEVM - ETH Blockchain Network -description: Explore Astar zkEVM, a blockchain network with chain ID 3776. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Astar zkEVM - -Astar zkEVM is a blockchain network with chain ID 3776. - -## Network Details - -- **Chain ID**: 3776 -- **Chain Name**: ETH -- **Short Name**: astrzk -- **Network ID**: 3776 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Astar zkEVM can be accessed through the following RPC endpoints: - -- https://rpc.startale.com/astar-zkevm - -## Astar zkEVM Block Explorers - -- [Blockscout Astar zkEVM explorer](https://astar-zkevm.explorer.startale.com) - -## Additional Information - -- **Official Website**: https://astar.network - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/astar-zkyoto.mdx b/docs/pages/solutions/chainlist/Integrated/astar-zkyoto.mdx deleted file mode 100644 index d7368bf2c1..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/astar-zkyoto.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Astar zKyoto - ETH Blockchain Network -description: Explore Astar zKyoto, a blockchain network with chain ID 6038361. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Astar zKyoto - -Astar zKyoto is a blockchain network with chain ID 6038361. - -## Network Details - -- **Chain ID**: 6038361 -- **Chain Name**: ETH -- **Short Name**: azkyt -- **Network ID**: 6038361 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Astar zKyoto can be accessed through the following RPC endpoints: - -- https://rpc.startale.com/zkyoto -- https://rpc.zkyoto.gelato.digital - -## Astar zKyoto Block Explorers - -- [Blockscout zKyoto explorer](https://astar-zkyoto.blockscout.com) - -## Additional Information - -- **Official Website**: https://astar.network - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Astar zKyoto Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/avalanche-fuji.mdx b/docs/pages/solutions/chainlist/Integrated/avalanche-fuji.mdx deleted file mode 100644 index bdfe46fddb..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/avalanche-fuji.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Avalanche Fuji Testnet - AVAX Blockchain Network -description: Explore Avalanche Fuji Testnet, a blockchain network with chain ID 43113. Learn about its native currency, Avalanche, and how to interact with the network. ---- - -# Avalanche Fuji Testnet - -Avalanche Fuji Testnet is a blockchain network with chain ID 43113. - -## Network Details - -- **Chain ID**: 43113 -- **Chain Name**: AVAX -- **Short Name**: Fuji -- **Network ID**: 43113 -- **Currency**: - - **Name**: Avalanche - - **Symbol**: AVAX - - **Decimals**: 18 - -## RPC URLs - -Avalanche Fuji Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Avalanche Fuji Testnet Block Explorers - -- [snowtrace](https://testnet.snowtrace.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Avalanche Fuji Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/avalanche.mdx b/docs/pages/solutions/chainlist/Integrated/avalanche.mdx deleted file mode 100644 index d890b0c9bc..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/avalanche.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Avalanche C-Chain - AVAX Blockchain Network -description: Explore Avalanche C-Chain, a blockchain network with chain ID 43114. Learn about its native currency, Avalanche, and how to interact with the network. ---- - -# Avalanche C-Chain - -Avalanche C-Chain is a blockchain network with chain ID 43114. - -## Network Details - -- **Chain ID**: 43114 -- **Chain Name**: AVAX -- **Short Name**: avax -- **Network ID**: 43114 -- **Currency**: - - **Name**: Avalanche - - **Symbol**: AVAX - - **Decimals**: 18 - -## RPC URLs - -Avalanche C-Chain can be accessed through the following RPC endpoints: - -- https://api.avax.network/ext/bc/C/rpc -- https://avalanche-c-chain-rpc.publicnode.com -- wss://avalanche-c-chain-rpc.publicnode.com - -## Avalanche C-Chain Block Explorers - -- [snowtrace](https://snowtrace.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/b3-sepolia.mdx b/docs/pages/solutions/chainlist/Integrated/b3-sepolia.mdx deleted file mode 100644 index fde52daa47..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/b3-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: B3 Sepolia Testnet - B3 Sepolia Testnet Blockchain Network -description: Explore B3 Sepolia Testnet, a blockchain network with chain ID 1993. Learn about its native currency, ETH, and how to interact with the network. ---- - -# B3 Sepolia Testnet - -B3 Sepolia Testnet is a blockchain network with chain ID 1993. - -## Network Details - -- **Chain ID**: 1993 -- **Chain Name**: B3 Sepolia Testnet -- **Short Name**: b3-sepolia -- **Network ID**: 1993 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -B3 Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.b3.fun - -## B3 Sepolia Testnet Block Explorers - -- [Blockscout](https://sepolia.explorer.b3.fun) - -## Additional Information - -- **Official Website**: https://b3.fun - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## B3 Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/b3.mdx b/docs/pages/solutions/chainlist/Integrated/b3.mdx deleted file mode 100644 index e34b148b3e..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/b3.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: B3 - B3 Blockchain Network -description: Explore B3, a blockchain network with chain ID 8333. Learn about its native currency, ETH, and how to interact with the network. ---- - -# B3 - -B3 is a blockchain network with chain ID 8333. - -## Network Details - -- **Chain ID**: 8333 -- **Chain Name**: B3 -- **Short Name**: b3 -- **Network ID**: 8333 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -B3 can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.b3.fun - -## B3 Block Explorers - -- [Blockscout](https://explorer.b3.fun) - -## Additional Information - -- **Official Website**: https://b3.fun - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/base-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/base-sepolia-testnet.mdx deleted file mode 100644 index e66bde0c46..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/base-sepolia-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Base Sepolia Testnet - ETH Blockchain Network -description: Explore Base Sepolia Testnet, a blockchain network with chain ID 84532. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Base Sepolia Testnet - -Base Sepolia Testnet is a blockchain network with chain ID 84532. - -## Network Details - -- **Chain ID**: 84532 -- **Chain Name**: ETH -- **Short Name**: basesep -- **Network ID**: 84532 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Base Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.base.org -- https://base-sepolia-rpc.publicnode.com -- wss://base-sepolia-rpc.publicnode.com - -## Base Sepolia Testnet Block Explorers - -- [basescout](https://base-sepolia.blockscout.com) - -## Additional Information - -- **Official Website**: https://base.org - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Base Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/base.mdx b/docs/pages/solutions/chainlist/Integrated/base.mdx deleted file mode 100644 index b19362e751..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/base.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Base - ETH Blockchain Network -description: Explore Base, a blockchain network with chain ID 8453. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Base - -Base is a blockchain network with chain ID 8453. - -## Network Details - -- **Chain ID**: 8453 -- **Chain Name**: ETH -- **Short Name**: base -- **Network ID**: 8453 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Base can be accessed through the following RPC endpoints: - -- 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 - -## Base Block Explorers - -- [basescan](https://basescan.org) -- [basescout](https://base.blockscout.com) -- [dexguru](https://base.dex.guru) - -## Additional Information - -- **Official Website**: https://base.org - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/binance-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/binance-testnet.mdx deleted file mode 100644 index f8bd49e23e..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/binance-testnet.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: BNB Smart Chain Testnet - BSC Blockchain Network -description: Explore BNB Smart Chain Testnet, a blockchain network with chain ID 97. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# BNB Smart Chain Testnet - -BNB Smart Chain Testnet is a blockchain network with chain ID 97. - -## Network Details - -- **Chain ID**: 97 -- **Chain Name**: BSC -- **Short Name**: bnbt -- **Network ID**: 97 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: tBNB - - **Decimals**: 18 - -## RPC URLs - -BNB Smart Chain Testnet can be accessed through the following RPC endpoints: - -- 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 - -## BNB Smart Chain Testnet Block Explorers - -- [bscscan-testnet](https://testnet.bscscan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## BNB Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/binance.mdx b/docs/pages/solutions/chainlist/Integrated/binance.mdx deleted file mode 100644 index 793254be27..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/binance.mdx +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: BNB Smart Chain Mainnet - BSC Blockchain Network -description: Explore BNB Smart Chain Mainnet, a blockchain network with chain ID 56. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# BNB Smart Chain Mainnet - -BNB Smart Chain Mainnet is a blockchain network with chain ID 56. - -## Network Details - -- **Chain ID**: 56 -- **Chain Name**: BSC -- **Short Name**: bnb -- **Network ID**: 56 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: BNB - - **Decimals**: 18 - -## RPC URLs - -BNB Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## BNB Smart Chain Mainnet Block Explorers - -- [bscscan](https://bscscan.com) -- [dexguru](https://bnb.dex.guru) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/blast-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/blast-sepolia-testnet.mdx deleted file mode 100644 index f18892501e..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/blast-sepolia-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Blast Sepolia Testnet - ETH Blockchain Network -description: Explore Blast Sepolia Testnet, a blockchain network with chain ID 168587773. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Blast Sepolia Testnet - -Blast Sepolia Testnet is a blockchain network with chain ID 168587773. - -## Network Details - -- **Chain ID**: 168587773 -- **Chain Name**: ETH -- **Short Name**: blastsepolia -- **Network ID**: 168587773 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Blast Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.blast.io -- https://blast-sepolia.drpc.org -- wss://blast-sepolia.drpc.org - -## Blast Sepolia Testnet Block Explorers - -- [Blast Sepolia Explorer](https://testnet.blastscan.io) - -## Additional Information - -- **Official Website**: https://blast.io/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Blast Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/blast.mdx b/docs/pages/solutions/chainlist/Integrated/blast.mdx deleted file mode 100644 index f2dc170e4d..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/blast.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Blast Mainnet - ETH Blockchain Network -description: Explore Blast Mainnet, a blockchain network with chain ID 238. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Blast Mainnet - -Blast Mainnet is a blockchain network with chain ID 238. - -## Network Details - -- **Chain ID**: 238 -- **Chain Name**: ETH -- **Short Name**: blast -- **Network ID**: 238 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Blast Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.blastblockchain.com - -## Blast Mainnet Block Explorers - -- [Blast Mainnet](https://scan.blastblockchain.com) - -## Additional Information - -- **Official Website**: https://docs.blastblockchain.com - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/borne-gaming-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/borne-gaming-testnet.mdx deleted file mode 100644 index 0fdfdc3905..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/borne-gaming-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Borne Gaming Testnet - Avalanche Blockchain Network -description: Explore Borne Gaming Testnet, a blockchain network with chain ID 99308. Learn about its native currency, Borne Gaming Testnet Token, and how to interact with the network. ---- - -# Borne Gaming Testnet - -Borne Gaming Testnet is a blockchain network with chain ID 99308. - -## Network Details - -- **Chain ID**: 99308 -- **Chain Name**: Avalanche -- **Short Name**: Borne Gaming Testnet -- **Network ID**: 99308 -- **Currency**: - - **Name**: Borne Gaming Testnet Token - - **Symbol**: BORNE - - **Decimals**: 18 - -## RPC URLs - -Borne Gaming Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/bornegamin/testnet/rpc - -## Borne Gaming Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Borne Gaming Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/borne-gaming.mdx b/docs/pages/solutions/chainlist/Integrated/borne-gaming.mdx deleted file mode 100644 index 5c41b13fc1..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/borne-gaming.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Borne Gaming - Avalanche Blockchain Network -description: Explore Borne Gaming, a blockchain network with chain ID 94984. Learn about its native currency, Borne Gaming Token, and how to interact with the network. ---- - -# Borne Gaming - -Borne Gaming is a blockchain network with chain ID 94984. - -## Network Details - -- **Chain ID**: 94984 -- **Chain Name**: Avalanche -- **Short Name**: Borne Gaming -- **Network ID**: 94984 -- **Currency**: - - **Name**: Borne Gaming Token - - **Symbol**: BORNE - - **Decimals**: 18 - -## RPC URLs - -Borne Gaming can be accessed through the following RPC endpoints: - -- https://testnet-bornegfdn-b5ce4.avax-test.network/ext/bc/2Z4VS89jR4PEB8K1JADyfXnRNAdGKHe5hUADWDiZzgY2VM7UL7/rpc?token=2f931310b8ce2b1c06a397edb32fc8fb004f1f1b499d9c9a35676e8b88ec1979 - -## Borne Gaming Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Borne Gaming Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/ethereum.mdx b/docs/pages/solutions/chainlist/Integrated/ethereum.mdx deleted file mode 100644 index 04a0ff2585..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/ethereum.mdx +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Ethereum Mainnet - ETH Blockchain Network -description: Explore Ethereum Mainnet, a blockchain network with chain ID 1. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ethereum Mainnet - -Ethereum Mainnet is a blockchain network with chain ID 1. - -## Network Details - -- **Chain ID**: 1 -- **Chain Name**: ETH -- **Short Name**: eth -- **Network ID**: 1 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ethereum Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Ethereum Mainnet Block Explorers - -- [etherscan](https://etherscan.io) -- [blockscout](https://eth.blockscout.com) -- [dexguru](https://ethereum.dex.guru) - -## Additional Information - -- **Official Website**: https://ethereum.org - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/gnosis.mdx b/docs/pages/solutions/chainlist/Integrated/gnosis.mdx deleted file mode 100644 index ead7118f5b..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/gnosis.mdx +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Gnosis - GNO Blockchain Network -description: Explore Gnosis, a blockchain network with chain ID 100. Learn about its native currency, xDAI, and how to interact with the network. ---- - -# Gnosis - -Gnosis is a blockchain network with chain ID 100. - -## Network Details - -- **Chain ID**: 100 -- **Chain Name**: GNO -- **Short Name**: gno -- **Network ID**: 100 -- **Currency**: - - **Name**: xDAI - - **Symbol**: XDAI - - **Decimals**: 18 - -## RPC URLs - -Gnosis can be accessed through the following RPC endpoints: - -- 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 - -## Gnosis Block Explorers - -- [blockscout](https://gnosis.blockscout.com) -- [gnosisscan](https://gnosisscan.io) -- [dexguru](https://gnosis.dex.guru) - -## Additional Information - -- **Official Website**: https://docs.gnosischain.com - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/home-verse.mdx b/docs/pages/solutions/chainlist/Integrated/home-verse.mdx deleted file mode 100644 index 7df4427824..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/home-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HOME Verse Mainnet - HOME Verse Blockchain Network -description: Explore HOME Verse Mainnet, a blockchain network with chain ID 19011. Learn about its native currency, OAS, and how to interact with the network. ---- - -# HOME Verse Mainnet - -HOME Verse Mainnet is a blockchain network with chain ID 19011. - -## Network Details - -- **Chain ID**: 19011 -- **Chain Name**: HOME Verse -- **Short Name**: HMV -- **Network ID**: 19011 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -HOME Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.oasys.homeverse.games/ - -## HOME Verse Mainnet Block Explorers - -- [HOME Verse Explorer](https://explorer.oasys.homeverse.games) - -## Additional Information - -- **Official Website**: https://www.homeverse.games/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/oasys-homeverse-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/oasys-homeverse-testnet.mdx deleted file mode 100644 index e661f6d446..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/oasys-homeverse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Oasys Homeverse Testnet - HMV Blockchain Network -description: Explore Oasys Homeverse Testnet, a blockchain network with chain ID 40875. Learn about its native currency, Homeverse OAS, and how to interact with the network. ---- - -# Oasys Homeverse Testnet - -Oasys Homeverse Testnet is a blockchain network with chain ID 40875. - -## Network Details - -- **Chain ID**: 40875 -- **Chain Name**: HMV -- **Short Name**: HMV -- **Network ID**: 40875 -- **Currency**: - - **Name**: Homeverse OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Oasys Homeverse Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.oasys.homeverse.games - -## Oasys Homeverse Testnet Block Explorers - -- [Blockscout](https://explorer.testnet.oasys.homeverse.games/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Oasys Homeverse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/op-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/op-sepolia-testnet.mdx deleted file mode 100644 index cc23e6549a..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/op-sepolia-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: OP Sepolia Testnet - ETH Blockchain Network -description: Explore OP Sepolia Testnet, a blockchain network with chain ID 11155420. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# OP Sepolia Testnet - -OP Sepolia Testnet is a blockchain network with chain ID 11155420. - -## Network Details - -- **Chain ID**: 11155420 -- **Chain Name**: ETH -- **Short Name**: opsep -- **Network ID**: 11155420 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -OP Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.optimism.io -- https://optimism-sepolia.drpc.org -- wss://optimism-sepolia.drpc.org - -## OP Sepolia Testnet Block Explorers - -- [opscout](https://optimism-sepolia.blockscout.com) - -## Additional Information - -- **Official Website**: https://optimism.io - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## OP Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/optimism.mdx b/docs/pages/solutions/chainlist/Integrated/optimism.mdx deleted file mode 100644 index 4a5ec7821f..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/optimism.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: OP Mainnet - ETH Blockchain Network -description: Explore OP Mainnet, a blockchain network with chain ID 10. Learn about its native currency, Ether, and how to interact with the network. ---- - -# OP Mainnet - -OP Mainnet is a blockchain network with chain ID 10. - -## Network Details - -- **Chain ID**: 10 -- **Chain Name**: ETH -- **Short Name**: oeth -- **Network ID**: 10 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -OP Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.optimism.io -- https://optimism.publicnode.com -- wss://optimism.publicnode.com -- https://optimism.gateway.tenderly.co -- wss://optimism.gateway.tenderly.co -- https://optimism-rpc.publicnode.com -- wss://optimism-rpc.publicnode.com -- https://optimism.drpc.org -- wss://optimism.drpc.org - -## OP Mainnet Block Explorers - -- [etherscan](https://optimistic.etherscan.io) -- [blockscout](https://optimism.blockscout.com) -- [dexguru](https://optimism.dex.guru) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/polygon-amoy-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/polygon-amoy-testnet.mdx deleted file mode 100644 index 3c532a0315..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/polygon-amoy-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Amoy - Polygon Blockchain Network -description: Explore Amoy, a blockchain network with chain ID 80002. Learn about its native currency, MATIC, and how to interact with the network. ---- - -# Amoy - -Amoy is a blockchain network with chain ID 80002. - -## Network Details - -- **Chain ID**: 80002 -- **Chain Name**: Polygon -- **Short Name**: polygonamoy -- **Network ID**: 80002 -- **Currency**: - - **Name**: MATIC - - **Symbol**: MATIC - - **Decimals**: 18 - -## RPC URLs - -Amoy can be accessed through the following RPC endpoints: - -- https://rpc-amoy.polygon.technology -- https://polygon-amoy-bor-rpc.publicnode.com -- wss://polygon-amoy-bor-rpc.publicnode.com - -## Amoy Block Explorers - -- [polygonamoy](https://www.oklink.com/amoy) - -## Additional Information - -- **Official Website**: https://polygon.technology/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Amoy Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/polygon-zkevm.mdx b/docs/pages/solutions/chainlist/Integrated/polygon-zkevm.mdx deleted file mode 100644 index e0e9162c51..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/polygon-zkevm.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Polygon zkEVM - Polygon Blockchain Network -description: Explore Polygon zkEVM, a blockchain network with chain ID 1101. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polygon zkEVM - -Polygon zkEVM is a blockchain network with chain ID 1101. - -## Network Details - -- **Chain ID**: 1101 -- **Chain Name**: Polygon -- **Short Name**: zkevm -- **Network ID**: 1101 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon zkEVM can be accessed through the following RPC endpoints: - -- https://zkevm-rpc.com -- https://polygon-zkevm.drpc.org -- wss://polygon-zkevm.drpc.org - -## Polygon zkEVM Block Explorers - -- [blockscout](https://zkevm.polygonscan.com) - -## Additional Information - -- **Official Website**: https://polygon.technology/polygon-zkevm - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/polygon.mdx b/docs/pages/solutions/chainlist/Integrated/polygon.mdx deleted file mode 100644 index 1625f5cbca..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/polygon.mdx +++ /dev/null @@ -1,49 +0,0 @@ ---- -title: Polygon Mainnet - Polygon Blockchain Network -description: Explore Polygon Mainnet, a blockchain network with chain ID 137. Learn about its native currency, POL, and how to interact with the network. ---- - -# Polygon Mainnet - -Polygon Mainnet is a blockchain network with chain ID 137. - -## Network Details - -- **Chain ID**: 137 -- **Chain Name**: Polygon -- **Short Name**: matic -- **Network ID**: 137 -- **Currency**: - - **Name**: POL - - **Symbol**: POL - - **Decimals**: 18 - -## RPC URLs - -Polygon Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Polygon Mainnet Block Explorers - -- [polygonscan](https://polygonscan.com) -- [dexguru](https://polygon.dex.guru) - -## Additional Information - -- **Official Website**: https://polygon.technology/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/sepolia.mdx b/docs/pages/solutions/chainlist/Integrated/sepolia.mdx deleted file mode 100644 index b00b92db9a..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/sepolia.mdx +++ /dev/null @@ -1,52 +0,0 @@ ---- -title: Sepolia - ETH Blockchain Network -description: Explore Sepolia, a blockchain network with chain ID 11155111. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Sepolia - -Sepolia is a blockchain network with chain ID 11155111. - -## Network Details - -- **Chain ID**: 11155111 -- **Chain Name**: ETH -- **Short Name**: sep -- **Network ID**: 11155111 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.sepolia.org -- https://rpc2.sepolia.org -- https://rpc-sepolia.rockx.com -- https://rpc.sepolia.ethpandaops.io -- 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 - -## Sepolia Block Explorers - -- [etherscan-sepolia](https://sepolia.etherscan.io) -- [otterscan-sepolia](https://sepolia.otterscan.io) - -## Additional Information - -- **Official Website**: https://sepolia.otterscan.io - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub-testnet.mdx b/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub-testnet.mdx deleted file mode 100644 index 69b79f03df..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: SKALE Nebula Hub Testnet - lanky-ill-funny-testnet Blockchain Network -description: Explore SKALE Nebula Hub Testnet, a blockchain network with chain ID 37084624. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Nebula Hub Testnet - -SKALE Nebula Hub Testnet is a blockchain network with chain ID 37084624. - -## Network Details - -- **Chain ID**: 37084624 -- **Chain Name**: lanky-ill-funny-testnet -- **Short Name**: nebula-testnet -- **Network ID**: 37084624 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Nebula Hub Testnet can be accessed through the following RPC endpoints: - -- https://testnet.skalenodes.com/v1/lanky-ill-funny-testnet -- wss://testnet.skalenodes.com/v1/ws/lanky-ill-funny-testnet - -## SKALE Nebula Hub Testnet Block Explorers - -- [Blockscout](https://lanky-ill-funny-testnet.explorer.testnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://nebulachain.io/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## SKALE Nebula Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub.mdx b/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub.mdx deleted file mode 100644 index 6863797961..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/skale-nebula-hub.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: SKALE Nebula Hub - green-giddy-denebola Blockchain Network -description: Explore SKALE Nebula Hub, a blockchain network with chain ID 1482601649. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Nebula Hub - -SKALE Nebula Hub is a blockchain network with chain ID 1482601649. - -## Network Details - -- **Chain ID**: 1482601649 -- **Chain Name**: green-giddy-denebola -- **Short Name**: nebula-mainnet -- **Network ID**: 1482601649 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Nebula Hub can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/green-giddy-denebola -- wss://mainnet-proxy.skalenodes.com/v1/ws/green-giddy-denebola - -## SKALE Nebula Hub Block Explorers - -- [Blockscout](https://green-giddy-denebola.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://nebulachain.io/ - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/xai-sepolia.mdx b/docs/pages/solutions/chainlist/Integrated/xai-sepolia.mdx deleted file mode 100644 index 6adc75e366..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/xai-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xai Testnet v2 - XAI Testnet Blockchain Network -description: Explore Xai Testnet v2, a blockchain network with chain ID 37714555429. Learn about its native currency, sXai, and how to interact with the network. ---- - -# Xai Testnet v2 - -Xai Testnet v2 is a blockchain network with chain ID 37714555429. - -## Network Details - -- **Chain ID**: 37714555429 -- **Chain Name**: XAI Testnet -- **Short Name**: xaitestnet -- **Network ID**: 37714555429 -- **Currency**: - - **Name**: sXai - - **Symbol**: sXAI - - **Decimals**: 18 - -## RPC URLs - -Xai Testnet v2 can be accessed through the following RPC endpoints: - -- https://testnet-v2.xai-chain.net/rpc - -## Xai Testnet v2 Block Explorers - -- [Blockscout](https://testnet-explorer-v2.xai-chain.net) - -## Additional Information - -- **Official Website**: https://xai.games - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## Xai Testnet v2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/Integrated/xai.mdx b/docs/pages/solutions/chainlist/Integrated/xai.mdx deleted file mode 100644 index 2dd9133d7c..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/xai.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Xai Mainnet - XAI Blockchain Network -description: Explore Xai Mainnet, a blockchain network with chain ID 660279. Learn about its native currency, Xai, and how to interact with the network. ---- - -# Xai Mainnet - -Xai Mainnet is a blockchain network with chain ID 660279. - -## Network Details - -- **Chain ID**: 660279 -- **Chain Name**: XAI -- **Short Name**: xai -- **Network ID**: 660279 -- **Currency**: - - **Name**: Xai - - **Symbol**: XAI - - **Decimals**: 18 - -## RPC URLs - -Xai Mainnet can be accessed through the following RPC endpoints: - -- https://xai-chain.net/rpc - -## Xai Mainnet Block Explorers - -- [Blockscout](https://explorer.xai-chain.net) - -## Additional Information - -- **Official Website**: https://xai.games - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. diff --git a/docs/pages/solutions/chainlist/Integrated/xr-sepolia.mdx b/docs/pages/solutions/chainlist/Integrated/xr-sepolia.mdx deleted file mode 100644 index 859583eb67..0000000000 --- a/docs/pages/solutions/chainlist/Integrated/xr-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: XR Sepolia - ETH Blockchain Network -description: Explore XR Sepolia, a blockchain network with chain ID 2730. Learn about its native currency, tXR, and how to interact with the network. ---- - -# XR Sepolia - -XR Sepolia is a blockchain network with chain ID 2730. - -## Network Details - -- **Chain ID**: 2730 -- **Chain Name**: ETH -- **Short Name**: txr -- **Network ID**: 2730 -- **Currency**: - - **Name**: tXR - - **Symbol**: tXR - - **Decimals**: 18 - -## RPC URLs - -XR Sepolia can be accessed through the following RPC endpoints: - -- https://xr-sepolia-testnet.rpc.caldera.xyz/http - -## XR Sepolia Block Explorers - -- [XR Sepolia Explorer](https://xr-sepolia-testnet.explorer.caldera.xyz) - -## Additional Information - -- **Official Website**: https://xr-one.gitbook.io - -## Sequence Integration Status - -All Sequence services including our smart account infrastructure are available on this network. - -## XR Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/(deprecated)-kroma-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/(deprecated)-kroma-sepolia.mdx deleted file mode 100644 index 4936eb9e1c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/(deprecated)-kroma-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: (deprecated) Kroma Sepolia - ETH Blockchain Network -description: Explore (deprecated) Kroma Sepolia, a blockchain network with chain ID 2357. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# (deprecated) Kroma Sepolia - -(deprecated) Kroma Sepolia is a blockchain network with chain ID 2357. - -## Network Details - -- **Chain ID**: 2357 -- **Chain Name**: ETH -- **Short Name**: deprecated-kroma-sepolia -- **Network ID**: 2357 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -(deprecated) Kroma Sepolia can be accessed through the following RPC endpoints: - -- https://api.sepolia-deprecated.kroma.network - -## (deprecated) Kroma Sepolia Block Explorers - -- [blockscout](https://blockscout.sepolia-deprecated.kroma.network) - -## Additional Information - -- **Official Website**: https://kroma.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## (deprecated) Kroma Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/.mdx b/docs/pages/solutions/chainlist/non-integrated/.mdx deleted file mode 100644 index 999491971d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mainnet - Flow Blockchain Network -description: Explore Mainnet, a blockchain network with chain ID 747. Learn about its native currency, FLOW, and how to interact with the network. ---- - -# Mainnet - -Mainnet is a blockchain network with chain ID 747. - -## Network Details - -- **Chain ID**: 747 -- **Chain Name**: Flow -- **Short Name**: flow-mainnet -- **Network ID**: 747 -- **Currency**: - - **Name**: FLOW - - **Symbol**: FLOW - - **Decimals**: 18 - -## RPC URLs - -Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.evm.nodes.onflow.org - -## Mainnet Block Explorers - -- [Flow Diver](https://flowdiver.io) - -## Additional Information - -- **Official Website**: https://developers.flow.com/evm/about - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/0g-newton-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/0g-newton-testnet.mdx deleted file mode 100644 index 3e939654ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/0g-newton-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: 0G-Newton-Testnet - 0G-Testnet Blockchain Network -description: Explore 0G-Newton-Testnet, a blockchain network with chain ID 16600. Learn about its native currency, A0GI, and how to interact with the network. ---- - -# 0G-Newton-Testnet - -0G-Newton-Testnet is a blockchain network with chain ID 16600. - -## Network Details - -- **Chain ID**: 16600 -- **Chain Name**: 0G-Testnet -- **Short Name**: 0gai-testnet -- **Network ID**: 16600 -- **Currency**: - - **Name**: A0GI - - **Symbol**: A0GI - - **Decimals**: 18 - -## RPC URLs - -0G-Newton-Testnet can be accessed through the following RPC endpoints: - -- https://evmrpc-testnet.0g.ai -- https://cosmosrpc-testnet.0g.ai - -## 0G-Newton-Testnet Block Explorers - -- [0G Chain Explorer](https://chainscan-newton.0g.ai) - -## Additional Information - -- **Official Website**: https://0g.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## 0G-Newton-Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/0xhash-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/0xhash-testnet.mdx deleted file mode 100644 index df8b1e53be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/0xhash-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: 0xHash Testnet - HETH Blockchain Network -description: Explore 0xHash Testnet, a blockchain network with chain ID 77787778. Learn about its native currency, 0xHash, and how to interact with the network. ---- - -# 0xHash Testnet - -0xHash Testnet is a blockchain network with chain ID 77787778. - -## Network Details - -- **Chain ID**: 77787778 -- **Chain Name**: HETH -- **Short Name**: HETH -- **Network ID**: 77787778 -- **Currency**: - - **Name**: 0xHash - - **Symbol**: HETH - - **Decimals**: 18 - -## RPC URLs - -0xHash Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test.0xhash.io - -## 0xHash Testnet Block Explorers - -- [blockscout](https://test.0xhashscan.io) - -## Additional Information - -- **Official Website**: https://0xhash.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## 0xHash Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/0xtade.mdx b/docs/pages/solutions/chainlist/non-integrated/0xtade.mdx deleted file mode 100644 index 45e49b23e7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/0xtade.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 0XTade - 0XTade Chain Blockchain Network -description: Explore 0XTade, a blockchain network with chain ID 10248. Learn about its native currency, 0XT, and how to interact with the network. ---- - -# 0XTade - -0XTade is a blockchain network with chain ID 10248. - -## Network Details - -- **Chain ID**: 10248 -- **Chain Name**: 0XTade Chain -- **Short Name**: 0xt -- **Network ID**: 10248 -- **Currency**: - - **Name**: 0XT - - **Symbol**: 0XT - - **Decimals**: 18 - -## RPC URLs - -0XTade can be accessed through the following RPC endpoints: - -- https://node.0xtchain.com - -## 0XTade Block Explorers - -- [0xtrade Scan](https://www.0xtscan.com) - -## Additional Information - -- **Official Website**: https://www.0xtrade.finance/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/4goodnetwork.mdx b/docs/pages/solutions/chainlist/non-integrated/4goodnetwork.mdx deleted file mode 100644 index ecd38c0785..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/4goodnetwork.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 4GoodNetwork - 4GN Blockchain Network -description: Explore 4GoodNetwork, a blockchain network with chain ID 846000. Learn about its native currency, APTA, and how to interact with the network. ---- - -# 4GoodNetwork - -4GoodNetwork is a blockchain network with chain ID 846000. - -## Network Details - -- **Chain ID**: 846000 -- **Chain Name**: 4GN -- **Short Name**: bloqs4good -- **Network ID**: 846000 -- **Currency**: - - **Name**: APTA - - **Symbol**: APTA - - **Decimals**: 18 - -## RPC URLs - -4GoodNetwork can be accessed through the following RPC endpoints: - -- https://chain.deptofgood.com - -## 4GoodNetwork Block Explorers - - - -## Additional Information - -- **Official Website**: https://bloqs4good.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/5irechain-thunder.mdx b/docs/pages/solutions/chainlist/non-integrated/5irechain-thunder.mdx deleted file mode 100644 index 824072285d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/5irechain-thunder.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: 5ireChain Thunder - 5ireChain Testnet Blockchain Network -description: Explore 5ireChain Thunder, a blockchain network with chain ID 997. Learn about its native currency, 5ire Testnet Token, and how to interact with the network. ---- - -# 5ireChain Thunder - -5ireChain Thunder is a blockchain network with chain ID 997. - -## Network Details - -- **Chain ID**: 997 -- **Chain Name**: 5ireChain Testnet -- **Short Name**: T5ire -- **Network ID**: 997 -- **Currency**: - - **Name**: 5ire Testnet Token - - **Symbol**: T5IRE - - **Decimals**: 18 - -## RPC URLs - -5ireChain Thunder can be accessed through the following RPC endpoints: - -- https://rpc-testnet.5ire.network - -## 5ireChain Thunder Block Explorers - -- [5ireChain Explorer](https://explorer.5ire.network) - -## Additional Information - -- **Official Website**: https://5ire.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## 5ireChain Thunder Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/5irechain.mdx b/docs/pages/solutions/chainlist/non-integrated/5irechain.mdx deleted file mode 100644 index 696fa3bfa7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/5irechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: 5ireChain Mainnet - 5ireChain Blockchain Network -description: Explore 5ireChain Mainnet, a blockchain network with chain ID 995. Learn about its native currency, 5ire Token, and how to interact with the network. ---- - -# 5ireChain Mainnet - -5ireChain Mainnet is a blockchain network with chain ID 995. - -## Network Details - -- **Chain ID**: 995 -- **Chain Name**: 5ireChain -- **Short Name**: 5ire -- **Network ID**: 995 -- **Currency**: - - **Name**: 5ire Token - - **Symbol**: 5IRE - - **Decimals**: 18 - -## RPC URLs - -5ireChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.5ire.network - -## 5ireChain Mainnet Block Explorers - -- [5ireChain Explorer](https://5irescan.io) - -## Additional Information - -- **Official Website**: https://5ire.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/abey-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/abey-testnet.mdx deleted file mode 100644 index a69f563c13..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/abey-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ABEY Testnet - ABEY Blockchain Network -description: Explore ABEY Testnet, a blockchain network with chain ID 178. Learn about its native currency, ABEY, and how to interact with the network. ---- - -# ABEY Testnet - -ABEY Testnet is a blockchain network with chain ID 178. - -## Network Details - -- **Chain ID**: 178 -- **Chain Name**: ABEY -- **Short Name**: abeyt -- **Network ID**: 178 -- **Currency**: - - **Name**: ABEY - - **Symbol**: tABEY - - **Decimals**: 18 - -## RPC URLs - -ABEY Testnet can be accessed through the following RPC endpoints: - -- https://testrpc.abeychain.com - -## ABEY Testnet Block Explorers - -- [abeyscan-testnet](https://testnet.abeyscan.com) - -## Additional Information - -- **Official Website**: https://abey.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ABEY Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/abey.mdx b/docs/pages/solutions/chainlist/non-integrated/abey.mdx deleted file mode 100644 index e97a5817d8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/abey.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ABEY Mainnet - ABEY Blockchain Network -description: Explore ABEY Mainnet, a blockchain network with chain ID 179. Learn about its native currency, ABEY, and how to interact with the network. ---- - -# ABEY Mainnet - -ABEY Mainnet is a blockchain network with chain ID 179. - -## Network Details - -- **Chain ID**: 179 -- **Chain Name**: ABEY -- **Short Name**: abey -- **Network ID**: 179 -- **Currency**: - - **Name**: ABEY - - **Symbol**: ABEY - - **Decimals**: 18 - -## RPC URLs - -ABEY Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.abeychain.com - -## ABEY Mainnet Block Explorers - -- [abeyscan](https://abeyscan.com) - -## Additional Information - -- **Official Website**: https://abey.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/abstract-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/abstract-testnet.mdx deleted file mode 100644 index 24366f1d81..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/abstract-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Abstract Testnet - Abstract Testnet Blockchain Network -description: Explore Abstract Testnet, a blockchain network with chain ID 11124. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Abstract Testnet - -Abstract Testnet is a blockchain network with chain ID 11124. - -## Network Details - -- **Chain ID**: 11124 -- **Chain Name**: Abstract Testnet -- **Short Name**: Abstract -- **Network ID**: 11124 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Abstract Testnet can be accessed through the following RPC endpoints: - -- https://api.testnet.abs.xyz - -## Abstract Testnet Block Explorers - -- [Abstract Block Explorer](https://explorer.testnet.abs.xyz) - -## Additional Information - -- **Official Website**: https://abs.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Abstract Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/abyss-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/abyss-protocol.mdx deleted file mode 100644 index 80bcbe6651..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/abyss-protocol.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Abyss Protocol - Abyss Protocol Testnet Blockchain Network -description: Explore Abyss Protocol, a blockchain network with chain ID 229772. Learn about its native currency, AbyssETH, and how to interact with the network. ---- - -# Abyss Protocol - -Abyss Protocol is a blockchain network with chain ID 229772. - -## Network Details - -- **Chain ID**: 229772 -- **Chain Name**: Abyss Protocol Testnet -- **Short Name**: abyss -- **Network ID**: 229772 -- **Currency**: - - **Name**: AbyssETH - - **Symbol**: aETH - - **Decimals**: 18 - -## RPC URLs - -Abyss Protocol can be accessed through the following RPC endpoints: - -- https://testnet.rpc.abyssprotocol.ai/ - -## Abyss Protocol Block Explorers - -- [blockscout](https://testnet.abyssprotocol.ai) - -## Additional Information - -- **Official Website**: https://abyssprotocol.ai/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Abyss Protocol Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/acala-mandala-testnet-tc9.mdx b/docs/pages/solutions/chainlist/non-integrated/acala-mandala-testnet-tc9.mdx deleted file mode 100644 index 71062d36eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/acala-mandala-testnet-tc9.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Acala Mandala Testnet TC9 - mACA Blockchain Network -description: Explore Acala Mandala Testnet TC9, a blockchain network with chain ID 595. Learn about its native currency, Acala Mandala Token, and how to interact with the network. ---- - -# Acala Mandala Testnet TC9 - -Acala Mandala Testnet TC9 is a blockchain network with chain ID 595. - -## Network Details - -- **Chain ID**: 595 -- **Chain Name**: mACA -- **Short Name**: maca -- **Network ID**: 595 -- **Currency**: - - **Name**: Acala Mandala Token - - **Symbol**: mACA - - **Decimals**: 18 - -## RPC URLs - -Acala Mandala Testnet TC9 can be accessed through the following RPC endpoints: - -- https://eth-rpc-tc9.aca-staging.network -- wss://eth-rpc-tc9.aca-staging.network - -## Acala Mandala Testnet TC9 Block Explorers - -- [blockscout](https://blockscout.mandala.aca-staging.network) - -## Additional Information - -- **Official Website**: https://acala.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Acala Mandala Testnet TC9 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/acala-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/acala-network-testnet.mdx deleted file mode 100644 index d8be899d86..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/acala-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Acala Network Testnet - ACA Blockchain Network -description: Explore Acala Network Testnet, a blockchain network with chain ID 597. Learn about its native currency, Acala Token, and how to interact with the network. ---- - -# Acala Network Testnet - -Acala Network Testnet is a blockchain network with chain ID 597. - -## Network Details - -- **Chain ID**: 597 -- **Chain Name**: ACA -- **Short Name**: taca -- **Network ID**: 597 -- **Currency**: - - **Name**: Acala Token - - **Symbol**: ACA - - **Decimals**: 18 - -## RPC URLs - -Acala Network Testnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-acala-testnet.aca-staging.network -- wss://eth-rpc-acala-testnet.aca-staging.network - -## Acala Network Testnet Block Explorers - -- [blockscout](https://blockscout.acala-dev.aca-dev.network) - -## Additional Information - -- **Official Website**: https://acala.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Acala Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/acala-network.mdx b/docs/pages/solutions/chainlist/non-integrated/acala-network.mdx deleted file mode 100644 index eebb88773c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/acala-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Acala Network - ACA Blockchain Network -description: Explore Acala Network, a blockchain network with chain ID 787. Learn about its native currency, Acala Token, and how to interact with the network. ---- - -# Acala Network - -Acala Network is a blockchain network with chain ID 787. - -## Network Details - -- **Chain ID**: 787 -- **Chain Name**: ACA -- **Short Name**: aca -- **Network ID**: 787 -- **Currency**: - - **Name**: Acala Token - - **Symbol**: ACA - - **Decimals**: 18 - -## RPC URLs - -Acala Network can be accessed through the following RPC endpoints: - -- https://eth-rpc-acala.aca-api.network -- wss://eth-rpc-acala.aca-api.network - -## Acala Network Block Explorers - -- [blockscout](https://blockscout.acala.network) - -## Additional Information - -- **Official Website**: https://acala.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/adil-chain-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/adil-chain-v2.mdx deleted file mode 100644 index 7a16408f07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/adil-chain-v2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Adil Chain V2 Mainnet - ADIL Blockchain Network -description: Explore Adil Chain V2 Mainnet, a blockchain network with chain ID 7576. Learn about its native currency, ADIL, and how to interact with the network. ---- - -# Adil Chain V2 Mainnet - -Adil Chain V2 Mainnet is a blockchain network with chain ID 7576. - -## Network Details - -- **Chain ID**: 7576 -- **Chain Name**: ADIL -- **Short Name**: adil -- **Network ID**: 7576 -- **Currency**: - - **Name**: ADIL - - **Symbol**: ADIL - - **Decimals**: 18 - -## RPC URLs - -Adil Chain V2 Mainnet can be accessed through the following RPC endpoints: - -- https://adilchain-rpc.io - -## Adil Chain V2 Mainnet Block Explorers - -- [ADIL Mainnet Explorer](https://adilchain-scan.io) - -## Additional Information - -- **Official Website**: https://adilchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/adil-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/adil-devnet.mdx deleted file mode 100644 index 652bfb56b9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/adil-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ADIL Devnet - ADIL Blockchain Network -description: Explore ADIL Devnet, a blockchain network with chain ID 123456. Learn about its native currency, Devnet ADIL, and how to interact with the network. ---- - -# ADIL Devnet - -ADIL Devnet is a blockchain network with chain ID 123456. - -## Network Details - -- **Chain ID**: 123456 -- **Chain Name**: ADIL -- **Short Name**: dadil -- **Network ID**: 123456 -- **Currency**: - - **Name**: Devnet ADIL - - **Symbol**: ADIL - - **Decimals**: 18 - -## RPC URLs - -ADIL Devnet can be accessed through the following RPC endpoints: - -- https://devnet.adilchain-rpc.io - -## ADIL Devnet Block Explorers - -- [ADIL Devnet Explorer](https://devnet.adilchain-scan.io) - -## Additional Information - -- **Official Website**: https://adilchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/adil-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/adil-testnet.mdx deleted file mode 100644 index e986a393b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/adil-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ADIL Testnet - ADIL Blockchain Network -description: Explore ADIL Testnet, a blockchain network with chain ID 7575. Learn about its native currency, Testnet ADIL, and how to interact with the network. ---- - -# ADIL Testnet - -ADIL Testnet is a blockchain network with chain ID 7575. - -## Network Details - -- **Chain ID**: 7575 -- **Chain Name**: ADIL -- **Short Name**: tadil -- **Network ID**: 7575 -- **Currency**: - - **Name**: Testnet ADIL - - **Symbol**: ADIL - - **Decimals**: 18 - -## RPC URLs - -ADIL Testnet can be accessed through the following RPC endpoints: - -- https://testnet.adilchain-rpc.io - -## ADIL Testnet Block Explorers - -- [ADIL Testnet Explorer](https://testnet.adilchain-scan.io) - -## Additional Information - -- **Official Website**: https://adilchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ADIL Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/adiri.mdx b/docs/pages/solutions/chainlist/non-integrated/adiri.mdx deleted file mode 100644 index 34d1d95e5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/adiri.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Adiri - TEL Blockchain Network -description: Explore Adiri, a blockchain network with chain ID 2017. Learn about its native currency, Telcoin, and how to interact with the network. ---- - -# Adiri - -Adiri is a blockchain network with chain ID 2017. - -## Network Details - -- **Chain ID**: 2017 -- **Chain Name**: TEL -- **Short Name**: tel -- **Network ID**: 2017 -- **Currency**: - - **Name**: Telcoin - - **Symbol**: TEL - - **Decimals**: 18 - -## RPC URLs - -Adiri can be accessed through the following RPC endpoints: - -- https://rpc.telcoin.network -- https://adiri.tel -- https://node1.telcoin.network -- https://node2.telcoin.network -- https://node3.telcoin.network -- https://node4.telcoin.network - -## Adiri Block Explorers - -- [telscan](https://telscan.io) - -## Additional Information - -- **Official Website**: https://telcoin.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Adiri Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aerie-network.mdx b/docs/pages/solutions/chainlist/non-integrated/aerie-network.mdx deleted file mode 100644 index 9b1f937562..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aerie-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aerie Network - Aerie Blockchain Network -description: Explore Aerie Network, a blockchain network with chain ID 84886. Learn about its native currency, Aerie, and how to interact with the network. ---- - -# Aerie Network - -Aerie Network is a blockchain network with chain ID 84886. - -## Network Details - -- **Chain ID**: 84886 -- **Chain Name**: Aerie -- **Short Name**: Aerie -- **Network ID**: 84886 -- **Currency**: - - **Name**: Aerie - - **Symbol**: AER - - **Decimals**: 18 - -## RPC URLs - -Aerie Network can be accessed through the following RPC endpoints: - -- https://mainnet.aerielab.io - -## Aerie Network Block Explorers - -- [Aerie Explorer](https://explorer.aerielab.io) - -## Additional Information - -- **Official Website**: https://aerielab.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aerochain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aerochain-testnet.mdx deleted file mode 100644 index 2f4df751a3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aerochain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Aerochain Testnet - Aerochain Blockchain Network -description: Explore Aerochain Testnet, a blockchain network with chain ID 788. Learn about its native currency, Aerochain Testnet, and how to interact with the network. ---- - -# Aerochain Testnet - -Aerochain Testnet is a blockchain network with chain ID 788. - -## Network Details - -- **Chain ID**: 788 -- **Chain Name**: Aerochain -- **Short Name**: taero -- **Network ID**: 788 -- **Currency**: - - **Name**: Aerochain Testnet - - **Symbol**: TAero - - **Decimals**: 18 - -## RPC URLs - -Aerochain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.aerochain.id/ - -## Aerochain Testnet Block Explorers - -- [aeroscan](https://testnet.aeroscan.id) - -## Additional Information - -- **Official Website**: https://aerochaincoin.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aerochain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/agentlayer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/agentlayer-testnet.mdx deleted file mode 100644 index 8860ddf83c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/agentlayer-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AgentLayer Testnet - AgentLayer Blockchain Network -description: Explore AgentLayer Testnet, a blockchain network with chain ID 42072. Learn about its native currency, Agent, and how to interact with the network. ---- - -# AgentLayer Testnet - -AgentLayer Testnet is a blockchain network with chain ID 42072. - -## Network Details - -- **Chain ID**: 42072 -- **Chain Name**: AgentLayer -- **Short Name**: agent -- **Network ID**: 42072 -- **Currency**: - - **Name**: Agent - - **Symbol**: AGENT - - **Decimals**: 18 - -## RPC URLs - -AgentLayer Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.agentlayer.xyz - -## AgentLayer Testnet Block Explorers - -- [AgentLayer Testnet Explorer](https://testnet-explorer.agentlayer.xyz) - -## Additional Information - -- **Official Website**: https://agentlayer.xyz/home - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AgentLayer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/agung-network.mdx b/docs/pages/solutions/chainlist/non-integrated/agung-network.mdx deleted file mode 100644 index a77f997070..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/agung-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Agung Network - Agung Blockchain Network -description: Explore Agung Network, a blockchain network with chain ID 9990. Learn about its native currency, Agung, and how to interact with the network. ---- - -# Agung Network - -Agung Network is a blockchain network with chain ID 9990. - -## Network Details - -- **Chain ID**: 9990 -- **Chain Name**: Agung -- **Short Name**: AGNG -- **Network ID**: 9990 -- **Currency**: - - **Name**: Agung - - **Symbol**: AGNG - - **Decimals**: 18 - -## RPC URLs - -Agung Network can be accessed through the following RPC endpoints: - -- https://rpcpc1-qa.agung.peaq.network - -## Agung Network Block Explorers - -- [Polkadot.js](https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer) -- [Subscan](https://agung.subscan.io) - -## Additional Information - -- **Official Website**: https://www.peaq.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aia-testnet.mdx deleted file mode 100644 index 4384b42668..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AIA Testnet - AIA Blockchain Network -description: Explore AIA Testnet, a blockchain network with chain ID 1320. Learn about its native currency, AIA Testnet, and how to interact with the network. ---- - -# AIA Testnet - -AIA Testnet is a blockchain network with chain ID 1320. - -## Network Details - -- **Chain ID**: 1320 -- **Chain Name**: AIA -- **Short Name**: aiatestnet -- **Network ID**: 1320 -- **Currency**: - - **Name**: AIA Testnet - - **Symbol**: AIA - - **Decimals**: 18 - -## RPC URLs - -AIA Testnet can be accessed through the following RPC endpoints: - -- https://aia-dataseed1-testnet.aiachain.org - -## AIA Testnet Block Explorers - -- [AIA Chain Explorer Testnet](https://testnet.aiascan.com) - -## Additional Information - -- **Official Website**: https://aiachain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AIA Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aia.mdx b/docs/pages/solutions/chainlist/non-integrated/aia.mdx deleted file mode 100644 index 7a0197e407..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aia.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: AIA Mainnet - AIA Blockchain Network -description: Explore AIA Mainnet, a blockchain network with chain ID 1319. Learn about its native currency, AIA Mainnet, and how to interact with the network. ---- - -# AIA Mainnet - -AIA Mainnet is a blockchain network with chain ID 1319. - -## Network Details - -- **Chain ID**: 1319 -- **Chain Name**: AIA -- **Short Name**: aia -- **Network ID**: 1319 -- **Currency**: - - **Name**: AIA Mainnet - - **Symbol**: AIA - - **Decimals**: 18 - -## RPC URLs - -AIA Mainnet can be accessed through the following RPC endpoints: - -- https://aia-dataseed1.aiachain.org -- https://aia-dataseed2.aiachain.org -- https://aia-dataseed3.aiachain.org -- https://aia-dataseed4.aiachain.org - -## AIA Mainnet Block Explorers - -- [AIA Chain Explorer Mainnet](https://aiascan.com) - -## Additional Information - -- **Official Website**: https://aiachain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aie-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aie-testnet.mdx deleted file mode 100644 index dca70fe8b0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aie-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AIE Testnet - AIE Blockchain Network -description: Explore AIE Testnet, a blockchain network with chain ID 413413. Learn about its native currency, AIE, and how to interact with the network. ---- - -# AIE Testnet - -AIE Testnet is a blockchain network with chain ID 413413. - -## Network Details - -- **Chain ID**: 413413 -- **Chain Name**: AIE -- **Short Name**: aie -- **Network ID**: 413413 -- **Currency**: - - **Name**: AIE - - **Symbol**: AIE - - **Decimals**: 18 - -## RPC URLs - -AIE Testnet can be accessed through the following RPC endpoints: - -- https://rpc1-testnet.aiechain.io - -## AIE Testnet Block Explorers - -- [aiescan-testnet](https://testnet.aiescan.io) - -## Additional Information - -- **Official Website**: https://testnet.aiescan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AIE Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ailayer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ailayer-testnet.mdx deleted file mode 100644 index 870d128a56..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ailayer-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: AILayer Testnet - AILayer Blockchain Network -description: Explore AILayer Testnet, a blockchain network with chain ID 2648. Learn about its native currency, BTC, and how to interact with the network. ---- - -# AILayer Testnet - -AILayer Testnet is a blockchain network with chain ID 2648. - -## Network Details - -- **Chain ID**: 2648 -- **Chain Name**: AILayer -- **Short Name**: ailayer-testnet -- **Network ID**: 2648 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -AILayer Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.ailayer.xyz -- wss://testnet-rpc.ailayer.xyz - -## AILayer Testnet Block Explorers - -- [blockscout](https://testnet-explorer.ailayer.xyz) - -## Additional Information - -- **Official Website**: https://ailayer.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AILayer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ailayer.mdx b/docs/pages/solutions/chainlist/non-integrated/ailayer.mdx deleted file mode 100644 index 74bb500361..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ailayer.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: AILayer Mainnet - AILayer Blockchain Network -description: Explore AILayer Mainnet, a blockchain network with chain ID 2649. Learn about its native currency, BTC, and how to interact with the network. ---- - -# AILayer Mainnet - -AILayer Mainnet is a blockchain network with chain ID 2649. - -## Network Details - -- **Chain ID**: 2649 -- **Chain Name**: AILayer -- **Short Name**: ailayer-mainnet -- **Network ID**: 2649 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -AILayer Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.ailayer.xyz -- wss://mainnet-rpc.ailayer.xyz - -## AILayer Mainnet Block Explorers - -- [blockscout](https://mainnet-explorer.ailayer.xyz) - -## Additional Information - -- **Official Website**: https://ailayer.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aioz-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aioz-network-testnet.mdx deleted file mode 100644 index 616fd09f1c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aioz-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AIOZ Network Testnet - AIOZ Blockchain Network -description: Explore AIOZ Network Testnet, a blockchain network with chain ID 4102. Learn about its native currency, testAIOZ, and how to interact with the network. ---- - -# AIOZ Network Testnet - -AIOZ Network Testnet is a blockchain network with chain ID 4102. - -## Network Details - -- **Chain ID**: 4102 -- **Chain Name**: AIOZ -- **Short Name**: aioz-testnet -- **Network ID**: 4102 -- **Currency**: - - **Name**: testAIOZ - - **Symbol**: AIOZ - - **Decimals**: 18 - -## RPC URLs - -AIOZ Network Testnet can be accessed through the following RPC endpoints: - -- https://eth-ds.testnet.aioz.network - -## AIOZ Network Testnet Block Explorers - -- [AIOZ Network Testnet Explorer](https://testnet.explorer.aioz.network) - -## Additional Information - -- **Official Website**: https://aioz.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AIOZ Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aioz-network.mdx b/docs/pages/solutions/chainlist/non-integrated/aioz-network.mdx deleted file mode 100644 index e66b74b580..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aioz-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AIOZ Network - AIOZ Blockchain Network -description: Explore AIOZ Network, a blockchain network with chain ID 168. Learn about its native currency, AIOZ, and how to interact with the network. ---- - -# AIOZ Network - -AIOZ Network is a blockchain network with chain ID 168. - -## Network Details - -- **Chain ID**: 168 -- **Chain Name**: AIOZ -- **Short Name**: aioz -- **Network ID**: 168 -- **Currency**: - - **Name**: AIOZ - - **Symbol**: AIOZ - - **Decimals**: 18 - -## RPC URLs - -AIOZ Network can be accessed through the following RPC endpoints: - -- https://eth-dataseed.aioz.network - -## AIOZ Network Block Explorers - -- [AIOZ Network Explorer](https://explorer.aioz.network) - -## Additional Information - -- **Official Website**: https://aioz.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/airdao-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/airdao-testnet.mdx deleted file mode 100644 index e62b8ff378..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/airdao-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AirDAO Testnet - ambnet-test Blockchain Network -description: Explore AirDAO Testnet, a blockchain network with chain ID 22040. Learn about its native currency, Amber, and how to interact with the network. ---- - -# AirDAO Testnet - -AirDAO Testnet is a blockchain network with chain ID 22040. - -## Network Details - -- **Chain ID**: 22040 -- **Chain Name**: ambnet-test -- **Short Name**: airdao-test -- **Network ID**: 22040 -- **Currency**: - - **Name**: Amber - - **Symbol**: AMB - - **Decimals**: 18 - -## RPC URLs - -AirDAO Testnet can be accessed through the following RPC endpoints: - -- https://network.ambrosus-test.io - -## AirDAO Testnet Block Explorers - -- [AirDAO Network Explorer](https://testnet.airdao.io/explorer) - -## Additional Information - -- **Official Website**: https://testnet.airdao.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AirDAO Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/airdao.mdx b/docs/pages/solutions/chainlist/non-integrated/airdao.mdx deleted file mode 100644 index ee974bce5e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/airdao.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AirDAO Mainnet - ambnet Blockchain Network -description: Explore AirDAO Mainnet, a blockchain network with chain ID 16718. Learn about its native currency, Amber, and how to interact with the network. ---- - -# AirDAO Mainnet - -AirDAO Mainnet is a blockchain network with chain ID 16718. - -## Network Details - -- **Chain ID**: 16718 -- **Chain Name**: ambnet -- **Short Name**: airdao -- **Network ID**: 16718 -- **Currency**: - - **Name**: Amber - - **Symbol**: AMB - - **Decimals**: 18 - -## RPC URLs - -AirDAO Mainnet can be accessed through the following RPC endpoints: - -- https://network.ambrosus.io - -## AirDAO Mainnet Block Explorers - -- [AirDAO Network Explorer](https://airdao.io/explorer) - -## Additional Information - -- **Official Website**: https://airdao.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aiw3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aiw3-testnet.mdx deleted file mode 100644 index a22bd16df3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aiw3-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AIW3 Testnet - AIW3 Blockchain Network -description: Explore AIW3 Testnet, a blockchain network with chain ID 1956. Learn about its native currency, BTC, and how to interact with the network. ---- - -# AIW3 Testnet - -AIW3 Testnet is a blockchain network with chain ID 1956. - -## Network Details - -- **Chain ID**: 1956 -- **Chain Name**: AIW3 -- **Short Name**: AIW3-Testnet -- **Network ID**: 1956 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -AIW3 Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.aiw3.io/ - -## AIW3 Testnet Block Explorers - -- [aiw3 testnet scan](https://scan-testnet.aiw3.io) - -## Additional Information - -- **Official Website**: https://aiw3.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AIW3 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aiw3.mdx b/docs/pages/solutions/chainlist/non-integrated/aiw3.mdx deleted file mode 100644 index 17d79b3882..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aiw3.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AIW3 Mainnet - AIW3 Blockchain Network -description: Explore AIW3 Mainnet, a blockchain network with chain ID 2045. Learn about its native currency, BTC, and how to interact with the network. ---- - -# AIW3 Mainnet - -AIW3 Mainnet is a blockchain network with chain ID 2045. - -## Network Details - -- **Chain ID**: 2045 -- **Chain Name**: AIW3 -- **Short Name**: AIW3 -- **Network ID**: 2045 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -AIW3 Mainnet can be accessed through the following RPC endpoints: - - - -## AIW3 Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://aiw3.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/akroma.mdx b/docs/pages/solutions/chainlist/non-integrated/akroma.mdx deleted file mode 100644 index 460bc50714..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/akroma.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Akroma - AKA Blockchain Network -description: Explore Akroma, a blockchain network with chain ID 200625. Learn about its native currency, Akroma Ether, and how to interact with the network. ---- - -# Akroma - -Akroma is a blockchain network with chain ID 200625. - -## Network Details - -- **Chain ID**: 200625 -- **Chain Name**: AKA -- **Short Name**: aka -- **Network ID**: 200625 -- **Currency**: - - **Name**: Akroma Ether - - **Symbol**: AKA - - **Decimals**: 18 - -## RPC URLs - -Akroma can be accessed through the following RPC endpoints: - -- https://remote.akroma.io - -## Akroma Block Explorers - - - -## Additional Information - -- **Official Website**: https://akroma.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alaya-dev-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/alaya-dev-testnet.mdx deleted file mode 100644 index 36e89bec9c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alaya-dev-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Alaya Dev Testnet - Alaya Blockchain Network -description: Explore Alaya Dev Testnet, a blockchain network with chain ID 201030. Learn about its native currency, ATP, and how to interact with the network. ---- - -# Alaya Dev Testnet - -Alaya Dev Testnet is a blockchain network with chain ID 201030. - -## Network Details - -- **Chain ID**: 201030 -- **Chain Name**: Alaya -- **Short Name**: alayadev -- **Network ID**: 201030 -- **Currency**: - - **Name**: ATP - - **Symbol**: atp - - **Decimals**: 18 - -## RPC URLs - -Alaya Dev Testnet can be accessed through the following RPC endpoints: - -- https://devnetopenapi.alaya.network/rpc -- wss://devnetopenapi.alaya.network/ws - -## Alaya Dev Testnet Block Explorers - -- [alaya explorer](https://devnetscan.alaya.network) - -## Additional Information - -- **Official Website**: https://www.alaya.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Alaya Dev Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/alaya.mdx b/docs/pages/solutions/chainlist/non-integrated/alaya.mdx deleted file mode 100644 index abd431e315..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alaya.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Alaya Mainnet - Alaya Blockchain Network -description: Explore Alaya Mainnet, a blockchain network with chain ID 201018. Learn about its native currency, ATP, and how to interact with the network. ---- - -# Alaya Mainnet - -Alaya Mainnet is a blockchain network with chain ID 201018. - -## Network Details - -- **Chain ID**: 201018 -- **Chain Name**: Alaya -- **Short Name**: alaya -- **Network ID**: 201018 -- **Currency**: - - **Name**: ATP - - **Symbol**: atp - - **Decimals**: 18 - -## RPC URLs - -Alaya Mainnet can be accessed through the following RPC endpoints: - -- https://openapi.alaya.network/rpc -- wss://openapi.alaya.network/ws - -## Alaya Mainnet Block Explorers - -- [alaya explorer](https://scan.alaya.network) - -## Additional Information - -- **Official Website**: https://www.alaya.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aleph-zero-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/aleph-zero-evm.mdx deleted file mode 100644 index c9b2c8ac14..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aleph-zero-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aleph Zero EVM - ETHEREUM Blockchain Network -description: Explore Aleph Zero EVM, a blockchain network with chain ID 41455. Learn about its native currency, AZERO, and how to interact with the network. ---- - -# Aleph Zero EVM - -Aleph Zero EVM is a blockchain network with chain ID 41455. - -## Network Details - -- **Chain ID**: 41455 -- **Chain Name**: ETHEREUM -- **Short Name**: AZERO -- **Network ID**: 41455 -- **Currency**: - - **Name**: AZERO - - **Symbol**: AZERO - - **Decimals**: 18 - -## RPC URLs - -Aleph Zero EVM can be accessed through the following RPC endpoints: - - - -## Aleph Zero EVM Block Explorers - -- [Aleph Zero EVM Block Explorer](https://evm-explorer.alephzero.org/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aleph-zero-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aleph-zero-testnet.mdx deleted file mode 100644 index 28eacd3853..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aleph-zero-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Aleph Zero Testnet - Aleph Zero Testnet Blockchain Network -description: Explore Aleph Zero Testnet, a blockchain network with chain ID 2039. Learn about its native currency, TZERO, and how to interact with the network. ---- - -# Aleph Zero Testnet - -Aleph Zero Testnet is a blockchain network with chain ID 2039. - -## Network Details - -- **Chain ID**: 2039 -- **Chain Name**: Aleph Zero Testnet -- **Short Name**: aleph -- **Network ID**: 2039 -- **Currency**: - - **Name**: TZERO - - **Symbol**: TZERO - - **Decimals**: 18 - -## RPC URLs - -Aleph Zero Testnet can be accessed through the following RPC endpoints: - -- https://rpc.alephzero-testnet.gelato.digital -- wss://rpc.alephzero-testnet.gelato.digital - -## Aleph Zero Testnet Block Explorers - -- [Aleph Zero Testnet](https://test.azero.dev/#/explorer) - -## Additional Information - -- **Official Website**: https://testnet.alephzero.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aleph Zero Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/algen-layer2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/algen-layer2-testnet.mdx deleted file mode 100644 index 19936ef301..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/algen-layer2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Algen Layer2 Testnet - ALG L2 Blockchain Network -description: Explore Algen Layer2 Testnet, a blockchain network with chain ID 8922. Learn about its native currency, ALG, and how to interact with the network. ---- - -# Algen Layer2 Testnet - -Algen Layer2 Testnet is a blockchain network with chain ID 8922. - -## Network Details - -- **Chain ID**: 8922 -- **Chain Name**: ALG L2 -- **Short Name**: algl2Test -- **Network ID**: 8922 -- **Currency**: - - **Name**: ALG - - **Symbol**: ALG - - **Decimals**: 18 - -## RPC URLs - -Algen Layer2 Testnet can be accessed through the following RPC endpoints: - -- https://rpc.alg2-test.algen.network - -## Algen Layer2 Testnet Block Explorers - -- [algl2scan](https://scan.alg2-test.algen.network) - -## Additional Information - -- **Official Website**: https://www.algen.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Algen Layer2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/algen-layer2.mdx b/docs/pages/solutions/chainlist/non-integrated/algen-layer2.mdx deleted file mode 100644 index 9665e048f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/algen-layer2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Algen Layer2 - ALG L2 Blockchain Network -description: Explore Algen Layer2, a blockchain network with chain ID 8921. Learn about its native currency, ALG, and how to interact with the network. ---- - -# Algen Layer2 - -Algen Layer2 is a blockchain network with chain ID 8921. - -## Network Details - -- **Chain ID**: 8921 -- **Chain Name**: ALG L2 -- **Short Name**: algl2 -- **Network ID**: 8921 -- **Currency**: - - **Name**: ALG - - **Symbol**: ALG - - **Decimals**: 18 - -## RPC URLs - -Algen Layer2 can be accessed through the following RPC endpoints: - -- https://rpc.alg2.algen.network - -## Algen Layer2 Block Explorers - -- [algl2scan](https://scan.alg2.algen.network) - -## Additional Information - -- **Official Website**: https://www.algen.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/algen-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/algen-testnet.mdx deleted file mode 100644 index 9de9ecc9bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/algen-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Algen Testnet - ALG Blockchain Network -description: Explore Algen Testnet, a blockchain network with chain ID 8912. Learn about its native currency, ALG, and how to interact with the network. ---- - -# Algen Testnet - -Algen Testnet is a blockchain network with chain ID 8912. - -## Network Details - -- **Chain ID**: 8912 -- **Chain Name**: ALG -- **Short Name**: algTest -- **Network ID**: 8912 -- **Currency**: - - **Name**: ALG - - **Symbol**: ALG - - **Decimals**: 18 - -## RPC URLs - -Algen Testnet can be accessed through the following RPC endpoints: - -- https://rpc.test.algen.network - -## Algen Testnet Block Explorers - -- [algscan](https://scan.test.algen.network) - -## Additional Information - -- **Official Website**: https://www.algen.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Algen Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/algen.mdx b/docs/pages/solutions/chainlist/non-integrated/algen.mdx deleted file mode 100644 index 4a857645f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/algen.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Algen - ALG Blockchain Network -description: Explore Algen, a blockchain network with chain ID 8911. Learn about its native currency, ALG, and how to interact with the network. ---- - -# Algen - -Algen is a blockchain network with chain ID 8911. - -## Network Details - -- **Chain ID**: 8911 -- **Chain Name**: ALG -- **Short Name**: alg -- **Network ID**: 8911 -- **Currency**: - - **Name**: ALG - - **Symbol**: ALG - - **Decimals**: 18 - -## RPC URLs - -Algen can be accessed through the following RPC endpoints: - -- https://rpc.algen.network - -## Algen Block Explorers - -- [algscan](https://scan.algen.network) - -## Additional Information - -- **Official Website**: https://www.algen.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/algol.mdx b/docs/pages/solutions/chainlist/non-integrated/algol.mdx deleted file mode 100644 index 5aec56d588..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/algol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Algol - algol Blockchain Network -description: Explore Algol, a blockchain network with chain ID 2089. Learn about its native currency, Algol, and how to interact with the network. ---- - -# Algol - -Algol is a blockchain network with chain ID 2089. - -## Network Details - -- **Chain ID**: 2089 -- **Chain Name**: algol -- **Short Name**: algl -- **Network ID**: 2089 -- **Currency**: - - **Name**: Algol - - **Symbol**: ALGL - - **Decimals**: 18 - -## RPC URLs - -Algol can be accessed through the following RPC endpoints: - -- wss://fullnode.algol.cntrfg.com - -## Algol Block Explorers - - - -## Additional Information - -- **Official Website**: https://centrifuge.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alienx-hal-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/alienx-hal-testnet.mdx deleted file mode 100644 index 9745e91ed5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alienx-hal-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: ALIENX Hal Testnet - ALIENX Hal Blockchain Network -description: Explore ALIENX Hal Testnet, a blockchain network with chain ID 10241025. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# ALIENX Hal Testnet - -ALIENX Hal Testnet is a blockchain network with chain ID 10241025. - -## Network Details - -- **Chain ID**: 10241025 -- **Chain Name**: ALIENX Hal -- **Short Name**: ALIENXHal -- **Network ID**: 10241025 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -ALIENX Hal Testnet can be accessed through the following RPC endpoints: - -- https://hal-rpc.alienxchain.io/http -- https://hal.rpc.caldera.xyz/http - -## ALIENX Hal Testnet Block Explorers - -- [Hal Explorer](https://hal-explorer.alienxchain.io) - -## Additional Information - -- **Official Website**: https://alienxchain.io/home - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ALIENX Hal Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/alienx.mdx b/docs/pages/solutions/chainlist/non-integrated/alienx.mdx deleted file mode 100644 index ddf95488ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alienx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AlienX Mainnet - AlienX Mainnet Blockchain Network -description: Explore AlienX Mainnet, a blockchain network with chain ID 10241024. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# AlienX Mainnet - -AlienX Mainnet is a blockchain network with chain ID 10241024. - -## Network Details - -- **Chain ID**: 10241024 -- **Chain Name**: AlienX Mainnet -- **Short Name**: AlienX -- **Network ID**: 10241024 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -AlienX Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.alienxchain.io/http - -## AlienX Mainnet Block Explorers - -- [AlienXChain Explorer](https://explorer.alienxchain.io) - -## Additional Information - -- **Official Website**: https://alienxchain.io/home - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/all-about-healthy.mdx b/docs/pages/solutions/chainlist/non-integrated/all-about-healthy.mdx deleted file mode 100644 index eb74220811..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/all-about-healthy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: All About Healthy - AAH Blockchain Network -description: Explore All About Healthy, a blockchain network with chain ID 21133. Learn about its native currency, AAH, and how to interact with the network. ---- - -# All About Healthy - -All About Healthy is a blockchain network with chain ID 21133. - -## Network Details - -- **Chain ID**: 21133 -- **Chain Name**: AAH -- **Short Name**: aah -- **Network ID**: 21133 -- **Currency**: - - **Name**: AAH - - **Symbol**: AAH - - **Decimals**: 18 - -## RPC URLs - -All About Healthy can be accessed through the following RPC endpoints: - -- https://rpc.c4ex.net - -## All About Healthy Block Explorers - -- [AAH Blockscout](https://exp.c4ex.net) - -## Additional Information - -- **Official Website**: https://c4ex.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/all.mdx b/docs/pages/solutions/chainlist/non-integrated/all.mdx deleted file mode 100644 index d10cff7b71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/all.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ALL Mainnet - ALL Blockchain Network -description: Explore ALL Mainnet, a blockchain network with chain ID 651940. Learn about its native currency, ALL, and how to interact with the network. ---- - -# ALL Mainnet - -ALL Mainnet is a blockchain network with chain ID 651940. - -## Network Details - -- **Chain ID**: 651940 -- **Chain Name**: ALL -- **Short Name**: ALL -- **Network ID**: 651940 -- **Currency**: - - **Name**: ALL - - **Symbol**: ALL - - **Decimals**: 18 - -## RPC URLs - -ALL Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.alltra.global - -## ALL Mainnet Block Explorers - -- [Alltra SmartChain Explorer](https://alltra.global) - -## Additional Information - -- **Official Website**: https://alltra.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alleged-jade-loon.mdx b/docs/pages/solutions/chainlist/non-integrated/alleged-jade-loon.mdx deleted file mode 100644 index b759214488..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alleged-jade-loon.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: alleged-jade-loon - alleged-jade-loon Blockchain Network -description: Explore alleged-jade-loon, a blockchain network with chain ID 94061. Learn about its native currency, Ether, and how to interact with the network. ---- - -# alleged-jade-loon - -alleged-jade-loon is a blockchain network with chain ID 94061. - -## Network Details - -- **Chain ID**: 94061 -- **Chain Name**: alleged-jade-loon -- **Short Name**: alleged-jade-loon -- **Network ID**: 94061 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -alleged-jade-loon can be accessed through the following RPC endpoints: - -- https://rpc-alleged-jade-loon-fqlx1rs2zw.t.conduit.xyz - -## alleged-jade-loon Block Explorers - -- [alleged-jade-loon Explorer](https://explorer-alleged-jade-loon-fqlx1rs2zw.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/94061 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## alleged-jade-loon Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/alph-network.mdx b/docs/pages/solutions/chainlist/non-integrated/alph-network.mdx deleted file mode 100644 index 873b05907b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alph-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Alph Network - ALPH Blockchain Network -description: Explore Alph Network, a blockchain network with chain ID 8738. Learn about its native currency, Alph Network, and how to interact with the network. ---- - -# Alph Network - -Alph Network is a blockchain network with chain ID 8738. - -## Network Details - -- **Chain ID**: 8738 -- **Chain Name**: ALPH -- **Short Name**: alph -- **Network ID**: 8738 -- **Currency**: - - **Name**: Alph Network - - **Symbol**: ALPH - - **Decimals**: 18 - -## RPC URLs - -Alph Network can be accessed through the following RPC endpoints: - -- https://rpc.alph.network -- wss://rpc.alph.network - -## Alph Network Block Explorers - -- [alphscan](https://explorer.alph.network) - -## Additional Information - -- **Official Website**: https://alph.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alphabet.mdx b/docs/pages/solutions/chainlist/non-integrated/alphabet.mdx deleted file mode 100644 index 416e921c98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alphabet.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Alphabet Mainnet - Alphabet Network Blockchain Network -description: Explore Alphabet Mainnet, a blockchain network with chain ID 111222333444. Learn about its native currency, ALT, and how to interact with the network. ---- - -# Alphabet Mainnet - -Alphabet Mainnet is a blockchain network with chain ID 111222333444. - -## Network Details - -- **Chain ID**: 111222333444 -- **Chain Name**: Alphabet Network -- **Short Name**: alphabet -- **Network ID**: 111222333444 -- **Currency**: - - **Name**: ALT - - **Symbol**: ALT - - **Decimals**: 18 - -## RPC URLs - -Alphabet Mainnet can be accessed through the following RPC endpoints: - -- https://londonpublic.alphabetnetwork.org -- wss://londonpublic.alphabetnetwork.org/ws/ -- https://main-rpc.com -- wss://main-rpc.com/ws/ - -## Alphabet Mainnet Block Explorers - -- [Alphabet Explorer](https://scan.alphabetnetwork.org) - -## Additional Information - -- **Official Website**: https://alphabetnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/altair.mdx b/docs/pages/solutions/chainlist/non-integrated/altair.mdx deleted file mode 100644 index d3efe4b43e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/altair.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Altair - AIR Blockchain Network -description: Explore Altair, a blockchain network with chain ID 2088. Learn about its native currency, Altair, and how to interact with the network. ---- - -# Altair - -Altair is a blockchain network with chain ID 2088. - -## Network Details - -- **Chain ID**: 2088 -- **Chain Name**: AIR -- **Short Name**: air -- **Network ID**: 2088 -- **Currency**: - - **Name**: Altair - - **Symbol**: AIR - - **Decimals**: 18 - -## RPC URLs - -Altair can be accessed through the following RPC endpoints: - -- wss://fullnode.altair.centrifuge.io -- wss://altair.api.onfinality.io/public-ws - -## Altair Block Explorers - - - -## Additional Information - -- **Official Website**: https://centrifuge.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/altar-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/altar-testnet.mdx deleted file mode 100644 index 59f6d01cff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/altar-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Altar Testnet - Altar Blockchain Network -description: Explore Altar Testnet, a blockchain network with chain ID 4444444. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Altar Testnet - -Altar Testnet is a blockchain network with chain ID 4444444. - -## Network Details - -- **Chain ID**: 4444444 -- **Chain Name**: Altar -- **Short Name**: altarTestnet -- **Network ID**: 4444444 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Altar Testnet can be accessed through the following RPC endpoints: - -- https://altar-rpc.ceremonies.ai/ - -## Altar Testnet Block Explorers - -- [altar testnet explorer](https://altar-explorer.ceremonies.ai) - -## Additional Information - -- **Official Website**: https://ceremonies.gitbook.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Altar Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/altcoinchain.mdx b/docs/pages/solutions/chainlist/non-integrated/altcoinchain.mdx deleted file mode 100644 index a569aadb1e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/altcoinchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Altcoinchain - mainnet Blockchain Network -description: Explore Altcoinchain, a blockchain network with chain ID 2330. Learn about its native currency, Altcoin, and how to interact with the network. ---- - -# Altcoinchain - -Altcoinchain is a blockchain network with chain ID 2330. - -## Network Details - -- **Chain ID**: 2330 -- **Chain Name**: mainnet -- **Short Name**: alt -- **Network ID**: 2330 -- **Currency**: - - **Name**: Altcoin - - **Symbol**: ALT - - **Decimals**: 18 - -## RPC URLs - -Altcoinchain can be accessed through the following RPC endpoints: - -- https://rpc0.altcoinchain.org/rpc - -## Altcoinchain Block Explorers - -- [expedition](http://expedition.altcoinchain.org) - -## Additional Information - -- **Official Website**: https://altcoinchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alterium-l2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/alterium-l2-testnet.mdx deleted file mode 100644 index 0a72cbf5c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alterium-l2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Alterium L2 Testnet - ALT Blockchain Network -description: Explore Alterium L2 Testnet, a blockchain network with chain ID 420692. Learn about its native currency, Alterium ETH, and how to interact with the network. ---- - -# Alterium L2 Testnet - -Alterium L2 Testnet is a blockchain network with chain ID 420692. - -## Network Details - -- **Chain ID**: 420692 -- **Chain Name**: ALT -- **Short Name**: alterium -- **Network ID**: 420692 -- **Currency**: - - **Name**: Alterium ETH - - **Symbol**: AltETH - - **Decimals**: 18 - -## RPC URLs - -Alterium L2 Testnet can be accessed through the following RPC endpoints: - -- https://l2-testnet-rpc.altscan.org - -## Alterium L2 Testnet Block Explorers - -- [Alterium L2 Testnet Explorer](https://l2-testnet.altscan.org) - -## Additional Information - -- **Official Website**: https://alteriumprotocol.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Alterium L2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/altlayer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/altlayer-testnet.mdx deleted file mode 100644 index e34ec7ac63..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/altlayer-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AltLayer Testnet - ETH Blockchain Network -description: Explore AltLayer Testnet, a blockchain network with chain ID 9997. Learn about its native currency, Ether, and how to interact with the network. ---- - -# AltLayer Testnet - -AltLayer Testnet is a blockchain network with chain ID 9997. - -## Network Details - -- **Chain ID**: 9997 -- **Chain Name**: ETH -- **Short Name**: alt-testnet -- **Network ID**: 9997 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -AltLayer Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rollup-api.altlayer.io - -## AltLayer Testnet Block Explorers - -- [blockscout](https://testnet-rollup-explorer.altlayer.io) - -## Additional Information - -- **Official Website**: https://altlayer.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AltLayer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/altlayer-zero-gas-network.mdx b/docs/pages/solutions/chainlist/non-integrated/altlayer-zero-gas-network.mdx deleted file mode 100644 index d54402f63a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/altlayer-zero-gas-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AltLayer Zero Gas Network - ETH Blockchain Network -description: Explore AltLayer Zero Gas Network, a blockchain network with chain ID 4000003. Learn about its native currency, ZERO, and how to interact with the network. ---- - -# AltLayer Zero Gas Network - -AltLayer Zero Gas Network is a blockchain network with chain ID 4000003. - -## Network Details - -- **Chain ID**: 4000003 -- **Chain Name**: ETH -- **Short Name**: alt-zerogas -- **Network ID**: 4000003 -- **Currency**: - - **Name**: ZERO - - **Symbol**: ZERO - - **Decimals**: 18 - -## RPC URLs - -AltLayer Zero Gas Network can be accessed through the following RPC endpoints: - -- https://zero.alt.technology - -## AltLayer Zero Gas Network Block Explorers - -- [blockscout](https://zero-explorer.alt.technology) - -## Additional Information - -- **Official Website**: https://altlayer.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alveychain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/alveychain-testnet.mdx deleted file mode 100644 index e1e0558d65..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alveychain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AlveyChain Testnet - tALV Blockchain Network -description: Explore AlveyChain Testnet, a blockchain network with chain ID 25839. Learn about its native currency, AlveyCoin Testnet, and how to interact with the network. ---- - -# AlveyChain Testnet - -AlveyChain Testnet is a blockchain network with chain ID 25839. - -## Network Details - -- **Chain ID**: 25839 -- **Chain Name**: tALV -- **Short Name**: talv -- **Network ID**: 25839 -- **Currency**: - - **Name**: AlveyCoin Testnet - - **Symbol**: tALV - - **Decimals**: 18 - -## RPC URLs - -AlveyChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.alvey.io - -## AlveyChain Testnet Block Explorers - -- [AlveyScan Testnet](https://alveytestnet.com) - -## Additional Information - -- **Official Website**: https://alveychain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AlveyChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/alveychain.mdx b/docs/pages/solutions/chainlist/non-integrated/alveychain.mdx deleted file mode 100644 index d3d0623069..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alveychain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: AlveyChain Mainnet - ALV Blockchain Network -description: Explore AlveyChain Mainnet, a blockchain network with chain ID 3797. Learn about its native currency, AlveyCoin, and how to interact with the network. ---- - -# AlveyChain Mainnet - -AlveyChain Mainnet is a blockchain network with chain ID 3797. - -## Network Details - -- **Chain ID**: 3797 -- **Chain Name**: ALV -- **Short Name**: alv -- **Network ID**: 3797 -- **Currency**: - - **Name**: AlveyCoin - - **Symbol**: ALV - - **Decimals**: 18 - -## RPC URLs - -AlveyChain Mainnet can be accessed through the following RPC endpoints: - -- https://elves-core1.alvey.io -- https://elves-core2.alvey.io -- https://elves-core3.alvey.io - -## AlveyChain Mainnet Block Explorers - -- [AlveyScan](https://alveyscan.com) - -## Additional Information - -- **Official Website**: https://alveychain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/alyx-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/alyx-chain-testnet.mdx deleted file mode 100644 index aebd4afce7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alyx-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Alyx Chain Testnet - Alyx Chain Testnet Blockchain Network -description: Explore Alyx Chain Testnet, a blockchain network with chain ID 135. Learn about its native currency, Alyx Testnet Native Token, and how to interact with the network. ---- - -# Alyx Chain Testnet - -Alyx Chain Testnet is a blockchain network with chain ID 135. - -## Network Details - -- **Chain ID**: 135 -- **Chain Name**: Alyx Chain Testnet -- **Short Name**: AlyxTestnet -- **Network ID**: 135 -- **Currency**: - - **Name**: Alyx Testnet Native Token - - **Symbol**: ALYX - - **Decimals**: 18 - -## RPC URLs - -Alyx Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.alyxchain.com - -## Alyx Chain Testnet Block Explorers - -- [alyx testnet scan](https://testnet.alyxscan.com) - -## Additional Information - -- **Official Website**: https://www.alyxchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Alyx Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/alyx.mdx b/docs/pages/solutions/chainlist/non-integrated/alyx.mdx deleted file mode 100644 index a361322cee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/alyx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Alyx Mainnet - ALYX Blockchain Network -description: Explore Alyx Mainnet, a blockchain network with chain ID 1314. Learn about its native currency, Alyx Chain Native Token, and how to interact with the network. ---- - -# Alyx Mainnet - -Alyx Mainnet is a blockchain network with chain ID 1314. - -## Network Details - -- **Chain ID**: 1314 -- **Chain Name**: ALYX -- **Short Name**: alyx -- **Network ID**: 1314 -- **Currency**: - - **Name**: Alyx Chain Native Token - - **Symbol**: ALYX - - **Decimals**: 18 - -## RPC URLs - -Alyx Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.alyxchain.com - -## Alyx Mainnet Block Explorers - -- [alyxscan](https://www.alyxscan.com) - -## Additional Information - -- **Official Website**: https://www.alyxchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/amana-mixnet.mdx b/docs/pages/solutions/chainlist/non-integrated/amana-mixnet.mdx deleted file mode 100644 index 1f184bf4e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amana-mixnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Amana Mixnet - MEER Blockchain Network -description: Explore Amana Mixnet, a blockchain network with chain ID 81342. Learn about its native currency, Amana Mixnet, and how to interact with the network. ---- - -# Amana Mixnet - -Amana Mixnet is a blockchain network with chain ID 81342. - -## Network Details - -- **Chain ID**: 81342 -- **Chain Name**: MEER -- **Short Name**: amanamix -- **Network ID**: 81342 -- **Currency**: - - **Name**: Amana Mixnet - - **Symbol**: MEER-M - - **Decimals**: 18 - -## RPC URLs - -Amana Mixnet can be accessed through the following RPC endpoints: - - - -## Amana Mixnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/amana-privnet.mdx b/docs/pages/solutions/chainlist/non-integrated/amana-privnet.mdx deleted file mode 100644 index c14dfc5a74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amana-privnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Amana Privnet - MEER Blockchain Network -description: Explore Amana Privnet, a blockchain network with chain ID 81343. Learn about its native currency, Amana Privnet, and how to interact with the network. ---- - -# Amana Privnet - -Amana Privnet is a blockchain network with chain ID 81343. - -## Network Details - -- **Chain ID**: 81343 -- **Chain Name**: MEER -- **Short Name**: amanapriv -- **Network ID**: 81343 -- **Currency**: - - **Name**: Amana Privnet - - **Symbol**: MEER-P - - **Decimals**: 18 - -## RPC URLs - -Amana Privnet can be accessed through the following RPC endpoints: - - - -## Amana Privnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/amana-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/amana-testnet.mdx deleted file mode 100644 index 3a0c621d3b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amana-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Amana Testnet - MEER Blockchain Network -description: Explore Amana Testnet, a blockchain network with chain ID 81341. Learn about its native currency, Amana Testnet, and how to interact with the network. ---- - -# Amana Testnet - -Amana Testnet is a blockchain network with chain ID 81341. - -## Network Details - -- **Chain ID**: 81341 -- **Chain Name**: MEER -- **Short Name**: amanatest -- **Network ID**: 81341 -- **Currency**: - - **Name**: Amana Testnet - - **Symbol**: MEER-T - - **Decimals**: 18 - -## RPC URLs - -Amana Testnet can be accessed through the following RPC endpoints: - - - -## Amana Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Amana Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/amana.mdx b/docs/pages/solutions/chainlist/non-integrated/amana.mdx deleted file mode 100644 index 24ead184aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amana.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Amana - MEER Blockchain Network -description: Explore Amana, a blockchain network with chain ID 8134. Learn about its native currency, Amana Mainnet, and how to interact with the network. ---- - -# Amana - -Amana is a blockchain network with chain ID 8134. - -## Network Details - -- **Chain ID**: 8134 -- **Chain Name**: MEER -- **Short Name**: amana -- **Network ID**: 8134 -- **Currency**: - - **Name**: Amana Mainnet - - **Symbol**: MEER - - **Decimals**: 18 - -## RPC URLs - -Amana can be accessed through the following RPC endpoints: - - - -## Amana Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ambros-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ambros-chain.mdx deleted file mode 100644 index 728525920f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ambros-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ambros Chain Mainnet - ambroschain Blockchain Network -description: Explore Ambros Chain Mainnet, a blockchain network with chain ID 880. Learn about its native currency, AMBROS, and how to interact with the network. ---- - -# Ambros Chain Mainnet - -Ambros Chain Mainnet is a blockchain network with chain ID 880. - -## Network Details - -- **Chain ID**: 880 -- **Chain Name**: ambroschain -- **Short Name**: ambros -- **Network ID**: 880 -- **Currency**: - - **Name**: AMBROS - - **Symbol**: AMBROS - - **Decimals**: 18 - -## RPC URLs - -Ambros Chain Mainnet can be accessed through the following RPC endpoints: - -- https://api.ambros.network - -## Ambros Chain Mainnet Block Explorers - -- [Ambros Chain Explorer](https://ambrosscan.com) - -## Additional Information - -- **Official Website**: https://ambros.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/amchain.mdx b/docs/pages/solutions/chainlist/non-integrated/amchain.mdx deleted file mode 100644 index 1f949a8357..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AmChain - AmChain Blockchain Network -description: Explore AmChain, a blockchain network with chain ID 999999. Learn about its native currency, AMC, and how to interact with the network. ---- - -# AmChain - -AmChain is a blockchain network with chain ID 999999. - -## Network Details - -- **Chain ID**: 999999 -- **Chain Name**: AmChain -- **Short Name**: AMC -- **Network ID**: 999999 -- **Currency**: - - **Name**: AMC - - **Symbol**: AMC - - **Decimals**: 18 - -## RPC URLs - -AmChain can be accessed through the following RPC endpoints: - -- https://node1.amchain.net - -## AmChain Block Explorers - -- [AMCAmChain explorer](https://explorer.amchain.net) - -## Additional Information - -- **Official Website**: https://hewe.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ame-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ame-chain.mdx deleted file mode 100644 index 75046055f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ame-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AME Chain Mainnet - AME Blockchain Network -description: Explore AME Chain Mainnet, a blockchain network with chain ID 180. Learn about its native currency, AME, and how to interact with the network. ---- - -# AME Chain Mainnet - -AME Chain Mainnet is a blockchain network with chain ID 180. - -## Network Details - -- **Chain ID**: 180 -- **Chain Name**: AME -- **Short Name**: ame -- **Network ID**: 180 -- **Currency**: - - **Name**: AME - - **Symbol**: AME - - **Decimals**: 18 - -## RPC URLs - -AME Chain Mainnet can be accessed through the following RPC endpoints: - -- https://node1.amechain.io/ - -## AME Chain Mainnet Block Explorers - -- [AME Scan](https://amescan.io) - -## Additional Information - -- **Official Website**: https://amechain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/american-information-exchange.mdx b/docs/pages/solutions/chainlist/non-integrated/american-information-exchange.mdx deleted file mode 100644 index 90cb1a86dd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/american-information-exchange.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: American Information Exchange - AMIX Blockchain Network -description: Explore American Information Exchange, a blockchain network with chain ID 69854. Learn about its native currency, Ether, and how to interact with the network. ---- - -# American Information Exchange - -American Information Exchange is a blockchain network with chain ID 69854. - -## Network Details - -- **Chain ID**: 69854 -- **Chain Name**: AMIX -- **Short Name**: AMIX -- **Network ID**: 69854 -- **Currency**: - - **Name**: Ether - - **Symbol**: Eth - - **Decimals**: 18 - -## RPC URLs - -American Information Exchange can be accessed through the following RPC endpoints: - -- https://rpc-american-information-exchange-w1amy5wv8p.t.conduit.xyz - -## American Information Exchange Block Explorers - -- [AMIX Explorer](https://explorer-american-information-exchange-w1amy5wv8p.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## American Information Exchange Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/amplify-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/amplify-subnet.mdx deleted file mode 100644 index 0b16d4ddd6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amplify-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Amplify Subnet - AMPLIFY Blockchain Network -description: Explore Amplify Subnet, a blockchain network with chain ID 78430. Learn about its native currency, AMP, and how to interact with the network. ---- - -# Amplify Subnet - -Amplify Subnet is a blockchain network with chain ID 78430. - -## Network Details - -- **Chain ID**: 78430 -- **Chain Name**: AMPLIFY -- **Short Name**: amplify -- **Network ID**: 78430 -- **Currency**: - - **Name**: AMP - - **Symbol**: AMP - - **Decimals**: 18 - -## RPC URLs - -Amplify Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/amplify/testnet/rpc - -## Amplify Subnet Block Explorers - -- [AMPLIFY Explorer](https://subnets-test.avax.network/amplify) - -## Additional Information - -- **Official Website**: https://www.avax.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Amplify Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/amstar-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/amstar-testnet.mdx deleted file mode 100644 index 6bf9b91514..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amstar-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AmStar Testnet - AmStar Blockchain Network -description: Explore AmStar Testnet, a blockchain network with chain ID 1138. Learn about its native currency, SINSO, and how to interact with the network. ---- - -# AmStar Testnet - -AmStar Testnet is a blockchain network with chain ID 1138. - -## Network Details - -- **Chain ID**: 1138 -- **Chain Name**: AmStar -- **Short Name**: ASARt -- **Network ID**: 1138 -- **Currency**: - - **Name**: SINSO - - **Symbol**: SINSO - - **Decimals**: 18 - -## RPC URLs - -AmStar Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.amstarscan.com - -## AmStar Testnet Block Explorers - -- [amstarscan-testnet](https://testnet.amstarscan.com) - -## Additional Information - -- **Official Website**: https://sinso.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AmStar Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/amstar.mdx b/docs/pages/solutions/chainlist/non-integrated/amstar.mdx deleted file mode 100644 index 7cee64e9d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/amstar.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AmStar Mainnet - AmStar Blockchain Network -description: Explore AmStar Mainnet, a blockchain network with chain ID 1388. Learn about its native currency, SINSO, and how to interact with the network. ---- - -# AmStar Mainnet - -AmStar Mainnet is a blockchain network with chain ID 1388. - -## Network Details - -- **Chain ID**: 1388 -- **Chain Name**: AmStar -- **Short Name**: ASAR -- **Network ID**: 1388 -- **Currency**: - - **Name**: SINSO - - **Symbol**: SINSO - - **Decimals**: 18 - -## RPC URLs - -AmStar Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.amstarscan.com - -## AmStar Mainnet Block Explorers - -- [amstarscan](https://mainnet.amstarscan.com) - -## Additional Information - -- **Official Website**: https://sinso.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet-(deprecated).mdx b/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet-(deprecated).mdx deleted file mode 100644 index 202517a8e7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet-(deprecated).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ancient8 Testnet (deprecated) - Ancient8 Blockchain Network -description: Explore Ancient8 Testnet (deprecated), a blockchain network with chain ID 2863311531. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ancient8 Testnet (deprecated) - -Ancient8 Testnet (deprecated) is a blockchain network with chain ID 2863311531. - -## Network Details - -- **Chain ID**: 2863311531 -- **Chain Name**: Ancient8 -- **Short Name**: a8old -- **Network ID**: 2863311531 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ancient8 Testnet (deprecated) can be accessed through the following RPC endpoints: - -- https://rpc-testnet.ancient8.gg - -## Ancient8 Testnet (deprecated) Block Explorers - -- [a8scan-testnet](https://testnet.a8scan.io) - -## Additional Information - -- **Official Website**: https://ancient8.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ancient8 Testnet (deprecated) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet.mdx deleted file mode 100644 index e36af4f9df..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ancient8-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ancient8 Testnet - Ancient8 Blockchain Network -description: Explore Ancient8 Testnet, a blockchain network with chain ID 28122024. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ancient8 Testnet - -Ancient8 Testnet is a blockchain network with chain ID 28122024. - -## Network Details - -- **Chain ID**: 28122024 -- **Chain Name**: Ancient8 -- **Short Name**: a8 -- **Network ID**: 28122024 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ancient8 Testnet can be accessed through the following RPC endpoints: - -- https://rpcv2-testnet.ancient8.gg - -## Ancient8 Testnet Block Explorers - -- [scan-testnet](https://scanv2-testnet.ancient8.gg) - -## Additional Information - -- **Official Website**: https://ancient8.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ancient8 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ancient8.mdx b/docs/pages/solutions/chainlist/non-integrated/ancient8.mdx deleted file mode 100644 index f2aba6a6dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ancient8.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ancient8 - Ancient8 Blockchain Network -description: Explore Ancient8, a blockchain network with chain ID 888888888. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ancient8 - -Ancient8 is a blockchain network with chain ID 888888888. - -## Network Details - -- **Chain ID**: 888888888 -- **Chain Name**: Ancient8 -- **Short Name**: ancient8 -- **Network ID**: 888888888 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ancient8 can be accessed through the following RPC endpoints: - -- https://rpc.ancient8.gg - -## Ancient8 Block Explorers - -- [Ancient8 Explorer](https://scan.ancient8.gg) - -## Additional Information - -- **Official Website**: https://ancient8.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/anduschain.mdx b/docs/pages/solutions/chainlist/non-integrated/anduschain.mdx deleted file mode 100644 index 141c6b24fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/anduschain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Anduschain Mainnet - anduschain Blockchain Network -description: Explore Anduschain Mainnet, a blockchain network with chain ID 14288640. Learn about its native currency, DAON, and how to interact with the network. ---- - -# Anduschain Mainnet - -Anduschain Mainnet is a blockchain network with chain ID 14288640. - -## Network Details - -- **Chain ID**: 14288640 -- **Chain Name**: anduschain -- **Short Name**: anduschain-mainnet -- **Network ID**: 14288640 -- **Currency**: - - **Name**: DAON - - **Symbol**: DEB - - **Decimals**: 18 - -## RPC URLs - -Anduschain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.anduschain.io/rpc -- wss://rpc.anduschain.io/ws - -## Anduschain Mainnet Block Explorers - -- [anduschain explorer](https://explorer.anduschain.io) - -## Additional Information - -- **Official Website**: https://anduschain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/animechain-testnet-6900.mdx b/docs/pages/solutions/chainlist/non-integrated/animechain-testnet-6900.mdx deleted file mode 100644 index 9a4f672754..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/animechain-testnet-6900.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: animechain-testnet - animechain-testnet Blockchain Network -description: Explore animechain-testnet, a blockchain network with chain ID 6900. Learn about its native currency, Animecoin, and how to interact with the network. ---- - -# animechain-testnet - -animechain-testnet is a blockchain network with chain ID 6900. - -## Network Details - -- **Chain ID**: 6900 -- **Chain Name**: animechain-testnet -- **Short Name**: animechain-testnet -- **Network ID**: 6900 -- **Currency**: - - **Name**: Animecoin - - **Symbol**: ANIME - - **Decimals**: 18 - -## RPC URLs - -animechain-testnet can be accessed through the following RPC endpoints: - -- https://rpc-animechain-testnet-i8yja6a1a0.t.conduit.xyz - -## animechain-testnet Block Explorers - -- [animechain-testnet Explorer](https://explorer-animechain-testnet-i8yja6a1a0.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/6900 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## animechain-testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/animechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/animechain-testnet.mdx deleted file mode 100644 index ca458b0865..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/animechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Animechain Testnet - Animechain Blockchain Network -description: Explore Animechain Testnet, a blockchain network with chain ID 2162. Learn about its native currency, Coin, and how to interact with the network. ---- - -# Animechain Testnet - -Animechain Testnet is a blockchain network with chain ID 2162. - -## Network Details - -- **Chain ID**: 2162 -- **Chain Name**: Animechain -- **Short Name**: animechaint -- **Network ID**: 2162 -- **Currency**: - - **Name**: Coin - - **Symbol**: COIN - - **Decimals**: 18 - -## RPC URLs - -Animechain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.kanda.animechain.ai - -## Animechain Testnet Block Explorers - -- [blockscout](https://explorer.kanda.animechain.ai) - -## Additional Information - -- **Official Website**: https://animechain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Animechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/antofy-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/antofy-testnet.mdx deleted file mode 100644 index 13dcc70417..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/antofy-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Antofy Testnet - ABN Blockchain Network -description: Explore Antofy Testnet, a blockchain network with chain ID 23006. Learn about its native currency, Antofy, and how to interact with the network. ---- - -# Antofy Testnet - -Antofy Testnet is a blockchain network with chain ID 23006. - -## Network Details - -- **Chain ID**: 23006 -- **Chain Name**: ABN -- **Short Name**: ABNt -- **Network ID**: 23006 -- **Currency**: - - **Name**: Antofy - - **Symbol**: ABN - - **Decimals**: 18 - -## RPC URLs - -Antofy Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.antofy.io - -## Antofy Testnet Block Explorers - -- [Antofy Testnet](https://test.antofyscan.com) - -## Additional Information - -- **Official Website**: https://antofy.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Antofy Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/antofy.mdx b/docs/pages/solutions/chainlist/non-integrated/antofy.mdx deleted file mode 100644 index f4f423cf49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/antofy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Antofy Mainnet - ABN Blockchain Network -description: Explore Antofy Mainnet, a blockchain network with chain ID 2202. Learn about its native currency, Antofy, and how to interact with the network. ---- - -# Antofy Mainnet - -Antofy Mainnet is a blockchain network with chain ID 2202. - -## Network Details - -- **Chain ID**: 2202 -- **Chain Name**: ABN -- **Short Name**: ABNm -- **Network ID**: 2202 -- **Currency**: - - **Name**: Antofy - - **Symbol**: ABN - - **Decimals**: 18 - -## RPC URLs - -Antofy Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.antofy.io - -## Antofy Mainnet Block Explorers - -- [Antofy Mainnet](https://antofyscan.com) - -## Additional Information - -- **Official Website**: https://antofy.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/anytype-evm-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/anytype-evm-chain.mdx deleted file mode 100644 index 503ae7bdef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/anytype-evm-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Anytype EVM Chain - ETH Blockchain Network -description: Explore Anytype EVM Chain, a blockchain network with chain ID 1701. Learn about its native currency, ANY, and how to interact with the network. ---- - -# Anytype EVM Chain - -Anytype EVM Chain is a blockchain network with chain ID 1701. - -## Network Details - -- **Chain ID**: 1701 -- **Chain Name**: ETH -- **Short Name**: AnytypeChain -- **Network ID**: 1701 -- **Currency**: - - **Name**: ANY - - **Symbol**: ANY - - **Decimals**: 18 - -## RPC URLs - -Anytype EVM Chain can be accessed through the following RPC endpoints: - -- https://geth.anytype.io - -## Anytype EVM Chain Block Explorers - -- [Anytype Explorer](https://explorer.anytype.io) - -## Additional Information - -- **Official Website**: https://evm.anytype.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/apex-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/apex-testnet.mdx deleted file mode 100644 index d35d0821c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/apex-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: APEX Testnet - ETH Blockchain Network -description: Explore APEX Testnet, a blockchain network with chain ID 3993. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# APEX Testnet - -APEX Testnet is a blockchain network with chain ID 3993. - -## Network Details - -- **Chain ID**: 3993 -- **Chain Name**: ETH -- **Short Name**: apexsep -- **Network ID**: 3993 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -APEX Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.apexlayer.xyz - -## APEX Testnet Block Explorers - -- [blockscout](https://exp-testnet.apexlayer.xyz) - -## Additional Information - -- **Official Website**: https://docs.apexlayer.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## APEX Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/apex.mdx b/docs/pages/solutions/chainlist/non-integrated/apex.mdx deleted file mode 100644 index 3de1971977..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/apex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: APEX - ETH Blockchain Network -description: Explore APEX, a blockchain network with chain ID 2662. Learn about its native currency, Ether, and how to interact with the network. ---- - -# APEX - -APEX is a blockchain network with chain ID 2662. - -## Network Details - -- **Chain ID**: 2662 -- **Chain Name**: ETH -- **Short Name**: apexmainnet -- **Network ID**: 2662 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -APEX can be accessed through the following RPC endpoints: - - - -## APEX Block Explorers - - - -## Additional Information - -- **Official Website**: https://apexlayer.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/apiary.mdx b/docs/pages/solutions/chainlist/non-integrated/apiary.mdx deleted file mode 100644 index 07b9865628..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/apiary.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Apiary - Avalanche Blockchain Network -description: Explore Apiary, a blockchain network with chain ID 86162. Learn about its native currency, Apiary Token, and how to interact with the network. ---- - -# Apiary - -Apiary is a blockchain network with chain ID 86162. - -## Network Details - -- **Chain ID**: 86162 -- **Chain Name**: Avalanche -- **Short Name**: Apiary -- **Network ID**: 86162 -- **Currency**: - - **Name**: Apiary Token - - **Symbol**: APIARY - - **Decimals**: 18 - -## RPC URLs - -Apiary can be accessed through the following RPC endpoints: - -- https://testnet-apiary-yfd1b.avax-test.network/ext/bc/cfGi1UzcKyVJuJki7dY495hKCXSH9wuyvV1EsD5CT63FLDu3f/rpc?token=0d7db5569e966aa69a6546107e69278f45a53068a5227fa48ba8485ffe629568 - -## Apiary Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Apiary Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/apps-test-123.mdx b/docs/pages/solutions/chainlist/non-integrated/apps-test-123.mdx deleted file mode 100644 index 377eca9838..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/apps-test-123.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: apps-test-123 - apps-test-123 Blockchain Network -description: Explore apps-test-123, a blockchain network with chain ID 22019. Learn about its native currency, Ether, and how to interact with the network. ---- - -# apps-test-123 - -apps-test-123 is a blockchain network with chain ID 22019. - -## Network Details - -- **Chain ID**: 22019 -- **Chain Name**: apps-test-123 -- **Short Name**: apps-test-123 -- **Network ID**: 22019 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -apps-test-123 can be accessed through the following RPC endpoints: - -- https://rpc-apps-test-123-7f7bjqu1x9.t.conduit.xyz - -## apps-test-123 Block Explorers - -- [apps-test-123 Explorer](https://explorer-apps-test-123-7f7bjqu1x9.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/22019 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## apps-test-123 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/apps-test.mdx b/docs/pages/solutions/chainlist/non-integrated/apps-test.mdx deleted file mode 100644 index 98c544be83..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/apps-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: apps-test - apps-test Blockchain Network -description: Explore apps-test, a blockchain network with chain ID 30846. Learn about its native currency, Ether, and how to interact with the network. ---- - -# apps-test - -apps-test is a blockchain network with chain ID 30846. - -## Network Details - -- **Chain ID**: 30846 -- **Chain Name**: apps-test -- **Short Name**: apps-test -- **Network ID**: 30846 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -apps-test can be accessed through the following RPC endpoints: - -- https://rpc-apps-test-881il6sw1a.t.conduit.xyz - -## apps-test Block Explorers - -- [apps-test Explorer](https://explorer-apps-test-881il6sw1a.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/30846 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## apps-test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aquachain.mdx b/docs/pages/solutions/chainlist/non-integrated/aquachain.mdx deleted file mode 100644 index 01f3dc61c2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aquachain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Aquachain - AQUA Blockchain Network -description: Explore Aquachain, a blockchain network with chain ID 61717561. Learn about its native currency, Aquachain Ether, and how to interact with the network. ---- - -# Aquachain - -Aquachain is a blockchain network with chain ID 61717561. - -## Network Details - -- **Chain ID**: 61717561 -- **Chain Name**: AQUA -- **Short Name**: aqua -- **Network ID**: 61717561 -- **Currency**: - - **Name**: Aquachain Ether - - **Symbol**: AQUA - - **Decimals**: 18 - -## RPC URLs - -Aquachain can be accessed through the following RPC endpoints: - -- https://c.onical.org -- https://tx.aquacha.in/api - -## Aquachain Block Explorers - - - -## Additional Information - -- **Official Website**: https://aquachain.github.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/arbitrum-blueberry.mdx b/docs/pages/solutions/chainlist/non-integrated/arbitrum-blueberry.mdx deleted file mode 100644 index 1286deb842..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arbitrum-blueberry.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Arbitrum Blueberry - ETH Blockchain Network -description: Explore Arbitrum Blueberry, a blockchain network with chain ID 88153591557. Learn about its native currency, GelatoCGT, and how to interact with the network. ---- - -# Arbitrum Blueberry - -Arbitrum Blueberry is a blockchain network with chain ID 88153591557. - -## Network Details - -- **Chain ID**: 88153591557 -- **Chain Name**: ETH -- **Short Name**: arb-blueberry -- **Network ID**: 88153591557 -- **Currency**: - - **Name**: GelatoCGT - - **Symbol**: CGT - - **Decimals**: 18 - -## RPC URLs - -Arbitrum Blueberry can be accessed through the following RPC endpoints: - -- https://rpc.arb-blueberry.gelato.digital -- wss://ws.arb-blueberry.gelato.digital - -## Arbitrum Blueberry Block Explorers - -- [blockscout](https://arb-blueberry.gelatoscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/arb-blueberry - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arbitrum Blueberry Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arbitrum-goerli.mdx b/docs/pages/solutions/chainlist/non-integrated/arbitrum-goerli.mdx deleted file mode 100644 index 867ac90c72..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arbitrum-goerli.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Arbitrum Goerli - ETH Blockchain Network -description: Explore Arbitrum Goerli, a blockchain network with chain ID 421613. Learn about its native currency, Arbitrum Goerli Ether, and how to interact with the network. ---- - -# Arbitrum Goerli - -Arbitrum Goerli is a blockchain network with chain ID 421613. - -## Network Details - -- **Chain ID**: 421613 -- **Chain Name**: ETH -- **Short Name**: arb-goerli -- **Network ID**: 421613 -- **Currency**: - - **Name**: Arbitrum Goerli Ether - - **Symbol**: AGOR - - **Decimals**: 18 - -## RPC URLs - -Arbitrum Goerli can be accessed through the following RPC endpoints: - -- https://goerli-rollup.arbitrum.io/rpc -- https://arbitrum-goerli.publicnode.com -- wss://arbitrum-goerli.publicnode.com - -## Arbitrum Goerli Block Explorers - -- [Arbitrum Goerli Arbiscan](https://goerli.arbiscan.io) - -## Additional Information - -- **Official Website**: https://arbitrum.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arbitrum Goerli Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arbitrum-on-xdai.mdx b/docs/pages/solutions/chainlist/non-integrated/arbitrum-on-xdai.mdx deleted file mode 100644 index 9254e47241..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arbitrum-on-xdai.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Arbitrum on xDai - AOX Blockchain Network -description: Explore Arbitrum on xDai, a blockchain network with chain ID 200. Learn about its native currency, xDAI, and how to interact with the network. ---- - -# Arbitrum on xDai - -Arbitrum on xDai is a blockchain network with chain ID 200. - -## Network Details - -- **Chain ID**: 200 -- **Chain Name**: AOX -- **Short Name**: aox -- **Network ID**: 200 -- **Currency**: - - **Name**: xDAI - - **Symbol**: xDAI - - **Decimals**: 18 - -## RPC URLs - -Arbitrum on xDai can be accessed through the following RPC endpoints: - -- https://arbitrum.xdaichain.com/ - -## Arbitrum on xDai Block Explorers - -- [blockscout](https://blockscout.com/xdai/arbitrum) - -## Additional Information - -- **Official Website**: https://xdaichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/arbitrum-rinkeby.mdx b/docs/pages/solutions/chainlist/non-integrated/arbitrum-rinkeby.mdx deleted file mode 100644 index 07a72e220c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arbitrum-rinkeby.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Arbitrum Rinkeby - ETH Blockchain Network -description: Explore Arbitrum Rinkeby, a blockchain network with chain ID 421611. Learn about its native currency, Arbitrum Rinkeby Ether, and how to interact with the network. ---- - -# Arbitrum Rinkeby - -Arbitrum Rinkeby is a blockchain network with chain ID 421611. - -## Network Details - -- **Chain ID**: 421611 -- **Chain Name**: ETH -- **Short Name**: arb-rinkeby -- **Network ID**: 421611 -- **Currency**: - - **Name**: Arbitrum Rinkeby Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Arbitrum Rinkeby can be accessed through the following RPC endpoints: - -- https://rinkeby.arbitrum.io/rpc - -## Arbitrum Rinkeby Block Explorers - -- [arbiscan-testnet](https://testnet.arbiscan.io) -- [arbitrum-rinkeby](https://rinkeby-explorer.arbitrum.io) - -## Additional Information - -- **Official Website**: https://arbitrum.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arbitrum Rinkeby Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/arc-testnet.mdx deleted file mode 100644 index 8fd157d72f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ARC Testnet - ARC Blockchain Network -description: Explore ARC Testnet, a blockchain network with chain ID 1244. Learn about its native currency, ARC, and how to interact with the network. ---- - -# ARC Testnet - -ARC Testnet is a blockchain network with chain ID 1244. - -## Network Details - -- **Chain ID**: 1244 -- **Chain Name**: ARC -- **Short Name**: TARC -- **Network ID**: 1244 -- **Currency**: - - **Name**: ARC - - **Symbol**: ARC - - **Decimals**: 18 - -## RPC URLs - -ARC Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test-1.archiechain.io - -## ARC Testnet Block Explorers - -- [archiescan](https://testnet.archiescan.io) - -## Additional Information - -- **Official Website**: https://archiechain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ARC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arc.mdx b/docs/pages/solutions/chainlist/non-integrated/arc.mdx deleted file mode 100644 index d1feb10c68..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ARC Mainnet - ARC Blockchain Network -description: Explore ARC Mainnet, a blockchain network with chain ID 1243. Learn about its native currency, ARC, and how to interact with the network. ---- - -# ARC Mainnet - -ARC Mainnet is a blockchain network with chain ID 1243. - -## Network Details - -- **Chain ID**: 1243 -- **Chain Name**: ARC -- **Short Name**: ARC -- **Network ID**: 1243 -- **Currency**: - - **Name**: ARC - - **Symbol**: ARC - - **Decimals**: 18 - -## RPC URLs - -ARC Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-main-1.archiechain.io - -## ARC Mainnet Block Explorers - -- [archiescan](https://app.archiescan.io) - -## Additional Information - -- **Official Website**: https://archiechain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/arcology-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/arcology-testnet.mdx deleted file mode 100644 index 1ab216e92c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arcology-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arcology Testnet - Arcology Blockchain Network -description: Explore Arcology Testnet, a blockchain network with chain ID 118. Learn about its native currency, Arcology Coin, and how to interact with the network. ---- - -# Arcology Testnet - -Arcology Testnet is a blockchain network with chain ID 118. - -## Network Details - -- **Chain ID**: 118 -- **Chain Name**: Arcology -- **Short Name**: arcology -- **Network ID**: 118 -- **Currency**: - - **Name**: Arcology Coin - - **Symbol**: Acol - - **Decimals**: 18 - -## RPC URLs - -Arcology Testnet can be accessed through the following RPC endpoints: - -- https://testnet.arcology.network/rpc - -## Arcology Testnet Block Explorers - -- [arcology](https://testnet.arcology.network/explorer) - -## Additional Information - -- **Official Website**: https://arcology.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arcology Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arcturus-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/arcturus-chain-testnet.mdx deleted file mode 100644 index ee8826b80d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arcturus-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arcturus Chain Testnet - ARCTURUS Blockchain Network -description: Explore Arcturus Chain Testnet, a blockchain network with chain ID 5616. Learn about its native currency, Test Arct, and how to interact with the network. ---- - -# Arcturus Chain Testnet - -Arcturus Chain Testnet is a blockchain network with chain ID 5616. - -## Network Details - -- **Chain ID**: 5616 -- **Chain Name**: ARCTURUS -- **Short Name**: ARCT -- **Network ID**: 5616 -- **Currency**: - - **Name**: Test Arct - - **Symbol**: tARCT - - **Decimals**: 18 - -## RPC URLs - -Arcturus Chain Testnet can be accessed through the following RPC endpoints: - -- http://185.99.196.3:8545 - -## Arcturus Chain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://arcturuschain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arcturus Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arcturus-testneet.mdx b/docs/pages/solutions/chainlist/non-integrated/arcturus-testneet.mdx deleted file mode 100644 index d6ac3828a3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arcturus-testneet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arcturus Testneet - Arcturus Blockchain Network -description: Explore Arcturus Testneet, a blockchain network with chain ID 5615. Learn about its native currency, tARC, and how to interact with the network. ---- - -# Arcturus Testneet - -Arcturus Testneet is a blockchain network with chain ID 5615. - -## Network Details - -- **Chain ID**: 5615 -- **Chain Name**: Arcturus -- **Short Name**: arcturus-testnet -- **Network ID**: 5615 -- **Currency**: - - **Name**: tARC - - **Symbol**: tARC - - **Decimals**: 18 - -## RPC URLs - -Arcturus Testneet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.arcturuschain.io/ - -## Arcturus Testneet Block Explorers - -- [explorer-arcturus-testnet](https://testnet.arcscan.net) - -## Additional Information - -- **Official Website**: https://arcturuschain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arcturus Testneet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ardenium-athena.mdx b/docs/pages/solutions/chainlist/non-integrated/ardenium-athena.mdx deleted file mode 100644 index c901152e10..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ardenium-athena.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ARDENIUM Athena - ATHENA Blockchain Network -description: Explore ARDENIUM Athena, a blockchain network with chain ID 7895. Learn about its native currency, ARD, and how to interact with the network. ---- - -# ARDENIUM Athena - -ARDENIUM Athena is a blockchain network with chain ID 7895. - -## Network Details - -- **Chain ID**: 7895 -- **Chain Name**: ATHENA -- **Short Name**: ard -- **Network ID**: 7895 -- **Currency**: - - **Name**: ARD - - **Symbol**: tARD - - **Decimals**: 18 - -## RPC URLs - -ARDENIUM Athena can be accessed through the following RPC endpoints: - -- https://rpc-athena.ardescan.com/ - -## ARDENIUM Athena Block Explorers - -- [ARDENIUM Athena Explorer](https://testnet.ardscan.com) - -## Additional Information - -- **Official Website**: https://ardenium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ARDENIUM Athena Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arena-z-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/arena-z-testnet.mdx deleted file mode 100644 index 97fd1ab8ea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arena-z-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arena-Z-Testnet - Sepolia Blockchain Network -description: Explore Arena-Z-Testnet, a blockchain network with chain ID 9897. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Arena-Z-Testnet - -Arena-Z-Testnet is a blockchain network with chain ID 9897. - -## Network Details - -- **Chain ID**: 9897 -- **Chain Name**: Sepolia -- **Short Name**: ETH -- **Network ID**: 9897 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Arena-Z-Testnet can be accessed through the following RPC endpoints: - -- https://rpc.arena-z.t.raas.gelato.cloud - -## Arena-Z-Testnet Block Explorers - -- [Arena-Z-Testnet explorer](https://arena-z.blockscout.com/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arena-Z-Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/areon-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/areon-network-testnet.mdx deleted file mode 100644 index eb852dc6da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/areon-network-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Areon Network Testnet - Areon Blockchain Network -description: Explore Areon Network Testnet, a blockchain network with chain ID 462. Learn about its native currency, Areon, and how to interact with the network. ---- - -# Areon Network Testnet - -Areon Network Testnet is a blockchain network with chain ID 462. - -## Network Details - -- **Chain ID**: 462 -- **Chain Name**: Areon -- **Short Name**: tarea -- **Network ID**: 462 -- **Currency**: - - **Name**: Areon - - **Symbol**: TAREA - - **Decimals**: 18 - -## RPC URLs - -Areon Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.areon.network -- https://testnet-rpc2.areon.network -- https://testnet-rpc3.areon.network -- https://testnet-rpc4.areon.network -- https://testnet-rpc5.areon.network - -## Areon Network Testnet Block Explorers - -- [AreonScan](https://areonscan.com) - -## Additional Information - -- **Official Website**: https://areon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Areon Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/areon-network.mdx b/docs/pages/solutions/chainlist/non-integrated/areon-network.mdx deleted file mode 100644 index 75077f6be2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/areon-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Areon Network Mainnet - Areon Blockchain Network -description: Explore Areon Network Mainnet, a blockchain network with chain ID 463. Learn about its native currency, Areon, and how to interact with the network. ---- - -# Areon Network Mainnet - -Areon Network Mainnet is a blockchain network with chain ID 463. - -## Network Details - -- **Chain ID**: 463 -- **Chain Name**: Areon -- **Short Name**: area -- **Network ID**: 463 -- **Currency**: - - **Name**: Areon - - **Symbol**: AREA - - **Decimals**: 18 - -## RPC URLs - -Areon Network Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.areon.network -- https://mainnet-rpc2.areon.network -- https://mainnet-rpc3.areon.network -- https://mainnet-rpc4.areon.network -- https://mainnet-rpc5.areon.network - -## Areon Network Mainnet Block Explorers - -- [AreonScan](https://areonscan.com) - -## Additional Information - -- **Official Website**: https://areon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/arevia.mdx b/docs/pages/solutions/chainlist/non-integrated/arevia.mdx deleted file mode 100644 index 102212b7ed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arevia.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Arevia - Arevia Blockchain Network -description: Explore Arevia, a blockchain network with chain ID 2309. Learn about its native currency, Arev, and how to interact with the network. ---- - -# Arevia - -Arevia is a blockchain network with chain ID 2309. - -## Network Details - -- **Chain ID**: 2309 -- **Chain Name**: Arevia -- **Short Name**: arevia -- **Network ID**: 2309 -- **Currency**: - - **Name**: Arev - - **Symbol**: ARÉV - - **Decimals**: 18 - -## RPC URLs - -Arevia can be accessed through the following RPC endpoints: - - - -## Arevia Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain-testnet.mdx deleted file mode 100644 index e322ba9d58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Armonia Eva Chain Testnet - Wall-e Blockchain Network -description: Explore Armonia Eva Chain Testnet, a blockchain network with chain ID 161. Learn about its native currency, Armonia Multichain Native Token, and how to interact with the network. ---- - -# Armonia Eva Chain Testnet - -Armonia Eva Chain Testnet is a blockchain network with chain ID 161. - -## Network Details - -- **Chain ID**: 161 -- **Chain Name**: Wall-e -- **Short Name**: wall-e -- **Network ID**: 161 -- **Currency**: - - **Name**: Armonia Multichain Native Token - - **Symbol**: AMAX - - **Decimals**: 18 - -## RPC URLs - -Armonia Eva Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.evascan.io/api/eth-rpc/ - -## Armonia Eva Chain Testnet Block Explorers - -- [blockscout - evascan](https://testnet.evascan.io) - -## Additional Information - -- **Official Website**: https://amax.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Armonia Eva Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain.mdx deleted file mode 100644 index 7998720fff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/armonia-eva-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Armonia Eva Chain Mainnet - Eva Blockchain Network -description: Explore Armonia Eva Chain Mainnet, a blockchain network with chain ID 160. Learn about its native currency, Armonia Multichain Native Token, and how to interact with the network. ---- - -# Armonia Eva Chain Mainnet - -Armonia Eva Chain Mainnet is a blockchain network with chain ID 160. - -## Network Details - -- **Chain ID**: 160 -- **Chain Name**: Eva -- **Short Name**: eva -- **Network ID**: 160 -- **Currency**: - - **Name**: Armonia Multichain Native Token - - **Symbol**: AMAX - - **Decimals**: 18 - -## RPC URLs - -Armonia Eva Chain Mainnet can be accessed through the following RPC endpoints: - -- https://evascan.io/api/eth-rpc/ - -## Armonia Eva Chain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://amax.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/artela-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/artela-testnet.mdx deleted file mode 100644 index c6618dbff8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/artela-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Artela Testnet - Artela Blockchain Network -description: Explore Artela Testnet, a blockchain network with chain ID 11822. Learn about its native currency, ART, and how to interact with the network. ---- - -# Artela Testnet - -Artela Testnet is a blockchain network with chain ID 11822. - -## Network Details - -- **Chain ID**: 11822 -- **Chain Name**: Artela -- **Short Name**: Artela -- **Network ID**: 11822 -- **Currency**: - - **Name**: ART - - **Symbol**: ART - - **Decimals**: 18 - -## RPC URLs - -Artela Testnet can be accessed through the following RPC endpoints: - -- https://betanet-rpc1.artela.network - -## Artela Testnet Block Explorers - -- [ArtelaScan](https://betanet-scan.artela.network) - -## Additional Information - -- **Official Website**: https://artela.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Artela Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arthera-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/arthera-testnet.mdx deleted file mode 100644 index 6beef4cc4e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arthera-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Arthera Testnet - AA Blockchain Network -description: Explore Arthera Testnet, a blockchain network with chain ID 10243. Learn about its native currency, Arthera, and how to interact with the network. ---- - -# Arthera Testnet - -Arthera Testnet is a blockchain network with chain ID 10243. - -## Network Details - -- **Chain ID**: 10243 -- **Chain Name**: AA -- **Short Name**: aat -- **Network ID**: 10243 -- **Currency**: - - **Name**: Arthera - - **Symbol**: AA - - **Decimals**: 18 - -## RPC URLs - -Arthera Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test.arthera.net - -## Arthera Testnet Block Explorers - -- [blockscout](https://explorer-test.arthera.net) - -## Additional Information - -- **Official Website**: https://docs.arthera.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Arthera Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arthera.mdx b/docs/pages/solutions/chainlist/non-integrated/arthera.mdx deleted file mode 100644 index c095a4b47f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arthera.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Arthera Mainnet - AA Blockchain Network -description: Explore Arthera Mainnet, a blockchain network with chain ID 10242. Learn about its native currency, Arthera, and how to interact with the network. ---- - -# Arthera Mainnet - -Arthera Mainnet is a blockchain network with chain ID 10242. - -## Network Details - -- **Chain ID**: 10242 -- **Chain Name**: AA -- **Short Name**: aa -- **Network ID**: 10242 -- **Currency**: - - **Name**: Arthera - - **Symbol**: AA - - **Decimals**: 18 - -## RPC URLs - -Arthera Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.arthera.net - -## Arthera Mainnet Block Explorers - -- [blockscout](https://explorer.arthera.net) - -## Additional Information - -- **Official Website**: https://docs.arthera.net/build/developing-sc/using-hardhat - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/artis-sigma1.mdx b/docs/pages/solutions/chainlist/non-integrated/artis-sigma1.mdx deleted file mode 100644 index 33d2eda08d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/artis-sigma1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ARTIS sigma1 - ARTIS Blockchain Network -description: Explore ARTIS sigma1, a blockchain network with chain ID 246529. Learn about its native currency, ARTIS sigma1 Ether, and how to interact with the network. ---- - -# ARTIS sigma1 - -ARTIS sigma1 is a blockchain network with chain ID 246529. - -## Network Details - -- **Chain ID**: 246529 -- **Chain Name**: ARTIS -- **Short Name**: ats -- **Network ID**: 246529 -- **Currency**: - - **Name**: ARTIS sigma1 Ether - - **Symbol**: ATS - - **Decimals**: 18 - -## RPC URLs - -ARTIS sigma1 can be accessed through the following RPC endpoints: - -- https://rpc.sigma1.artis.network - -## ARTIS sigma1 Block Explorers - - - -## Additional Information - -- **Official Website**: https://artis.eco - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/artis-testnet-tau1.mdx b/docs/pages/solutions/chainlist/non-integrated/artis-testnet-tau1.mdx deleted file mode 100644 index 095baf6c8e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/artis-testnet-tau1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ARTIS Testnet tau1 - ARTIS Blockchain Network -description: Explore ARTIS Testnet tau1, a blockchain network with chain ID 246785. Learn about its native currency, ARTIS tau1 Ether, and how to interact with the network. ---- - -# ARTIS Testnet tau1 - -ARTIS Testnet tau1 is a blockchain network with chain ID 246785. - -## Network Details - -- **Chain ID**: 246785 -- **Chain Name**: ARTIS -- **Short Name**: atstau -- **Network ID**: 246785 -- **Currency**: - - **Name**: ARTIS tau1 Ether - - **Symbol**: tATS - - **Decimals**: 18 - -## RPC URLs - -ARTIS Testnet tau1 can be accessed through the following RPC endpoints: - -- https://rpc.tau1.artis.network - -## ARTIS Testnet tau1 Block Explorers - - - -## Additional Information - -- **Official Website**: https://artis.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ARTIS Testnet tau1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/artistic-jade-fowl.mdx b/docs/pages/solutions/chainlist/non-integrated/artistic-jade-fowl.mdx deleted file mode 100644 index ff068a9267..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/artistic-jade-fowl.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: artistic-jade-fowl - Avalanche Blockchain Network -description: Explore artistic-jade-fowl, a blockchain network with chain ID 203023. Learn about its native currency, artistic-jade-fowl Token, and how to interact with the network. ---- - -# artistic-jade-fowl - -artistic-jade-fowl is a blockchain network with chain ID 203023. - -## Network Details - -- **Chain ID**: 203023 -- **Chain Name**: Avalanche -- **Short Name**: artistic-jade-fowl -- **Network ID**: 203023 -- **Currency**: - - **Name**: artistic-jade-fowl Token - - **Symbol**: MND - - **Decimals**: 18 - -## RPC URLs - -artistic-jade-fowl can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## artistic-jade-fowl Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## artistic-jade-fowl Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/arzio-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/arzio-chain.mdx deleted file mode 100644 index 898d7c2279..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/arzio-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ARZIO Chain - ARZIO Blockchain Network -description: Explore ARZIO Chain, a blockchain network with chain ID 456. Learn about its native currency, ARZIO, and how to interact with the network. ---- - -# ARZIO Chain - -ARZIO Chain is a blockchain network with chain ID 456. - -## Network Details - -- **Chain ID**: 456 -- **Chain Name**: ARZIO -- **Short Name**: arzio -- **Network ID**: 456 -- **Currency**: - - **Name**: ARZIO - - **Symbol**: AZO - - **Decimals**: 18 - -## RPC URLs - -ARZIO Chain can be accessed through the following RPC endpoints: - -- https://chain-rpc.arzio.co - -## ARZIO Chain Block Explorers - -- [ARZIO Scan](https://scan.arzio.co) - -## Additional Information - -- **Official Website**: https://chain.arzio.co - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/asfadsfsadf1123123.mdx b/docs/pages/solutions/chainlist/non-integrated/asfadsfsadf1123123.mdx deleted file mode 100644 index 14cecb5a75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/asfadsfsadf1123123.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: asfadsfsadf1123123 - asfadsfsadf1123123 Blockchain Network -description: Explore asfadsfsadf1123123, a blockchain network with chain ID 56771. Learn about its native currency, Ether, and how to interact with the network. ---- - -# asfadsfsadf1123123 - -asfadsfsadf1123123 is a blockchain network with chain ID 56771. - -## Network Details - -- **Chain ID**: 56771 -- **Chain Name**: asfadsfsadf1123123 -- **Short Name**: asfadsfsadf1123123 -- **Network ID**: 56771 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -asfadsfsadf1123123 can be accessed through the following RPC endpoints: - -- https://rpc-asfadsfsadf1123123-y4usd9pche.t.conduit.xyz - -## asfadsfsadf1123123 Block Explorers - -- [asfadsfsadf1123123 Explorer](https://explorer-asfadsfsadf1123123-y4usd9pche.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/56771 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## asfadsfsadf1123123 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/assetchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/assetchain-testnet.mdx deleted file mode 100644 index a610849d56..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/assetchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: AssetChain Testnet - RWA Blockchain Network -description: Explore AssetChain Testnet, a blockchain network with chain ID 42421. Learn about its native currency, Real World Asset, and how to interact with the network. ---- - -# AssetChain Testnet - -AssetChain Testnet is a blockchain network with chain ID 42421. - -## Network Details - -- **Chain ID**: 42421 -- **Chain Name**: RWA -- **Short Name**: rwa -- **Network ID**: 42421 -- **Currency**: - - **Name**: Real World Asset - - **Symbol**: RWA - - **Decimals**: 18 - -## RPC URLs - -AssetChain Testnet can be accessed through the following RPC endpoints: - -- https://enugu-rpc.assetchain.org - -## AssetChain Testnet Block Explorers - -- [Asset Chain Testnet Explorer](https://scan-testnet.assetchain.org) - -## Additional Information - -- **Official Website**: https://docs.assetchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## AssetChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/astar.mdx b/docs/pages/solutions/chainlist/non-integrated/astar.mdx deleted file mode 100644 index b858019da0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/astar.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Astar - ASTR Blockchain Network -description: Explore Astar, a blockchain network with chain ID 592. Learn about its native currency, Astar, and how to interact with the network. ---- - -# Astar - -Astar is a blockchain network with chain ID 592. - -## Network Details - -- **Chain ID**: 592 -- **Chain Name**: ASTR -- **Short Name**: astr -- **Network ID**: 592 -- **Currency**: - - **Name**: Astar - - **Symbol**: ASTR - - **Decimals**: 18 - -## RPC URLs - -Astar can be accessed through the following RPC endpoints: - -- https://rpc.astar.network:8545 - -## Astar Block Explorers - -- [blockscout](https://blockscout.com/astar) -- [subscan](https://astar.subscan.io) - -## Additional Information - -- **Official Website**: https://astar.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/astra-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/astra-testnet.mdx deleted file mode 100644 index 1a4bcb2b3c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/astra-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Astra Testnet - Astra Blockchain Network -description: Explore Astra Testnet, a blockchain network with chain ID 11115. Learn about its native currency, test-Astra, and how to interact with the network. ---- - -# Astra Testnet - -Astra Testnet is a blockchain network with chain ID 11115. - -## Network Details - -- **Chain ID**: 11115 -- **Chain Name**: Astra -- **Short Name**: astra-testnet -- **Network ID**: 11115 -- **Currency**: - - **Name**: test-Astra - - **Symbol**: tASA - - **Decimals**: 18 - -## RPC URLs - -Astra Testnet can be accessed through the following RPC endpoints: - -- https://rpc.astranaut.dev - -## Astra Testnet Block Explorers - -- [Astra EVM Explorer](https://explorer.astranaut.dev) -- [Astra PingPub Explorer](https://ping.astranaut.dev/astra) - -## Additional Information - -- **Official Website**: https://astranaut.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Astra Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/astra.mdx b/docs/pages/solutions/chainlist/non-integrated/astra.mdx deleted file mode 100644 index d4cacabc1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/astra.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Astra - Astra Blockchain Network -description: Explore Astra, a blockchain network with chain ID 11110. Learn about its native currency, Astra, and how to interact with the network. ---- - -# Astra - -Astra is a blockchain network with chain ID 11110. - -## Network Details - -- **Chain ID**: 11110 -- **Chain Name**: Astra -- **Short Name**: astra -- **Network ID**: 11110 -- **Currency**: - - **Name**: Astra - - **Symbol**: ASA - - **Decimals**: 18 - -## RPC URLs - -Astra can be accessed through the following RPC endpoints: - -- https://rpc.astranaut.io -- https://rpc1.astranaut.io - -## Astra Block Explorers - -- [Astra EVM Explorer (Blockscout)](https://explorer.astranaut.io) -- [Astra PingPub Explorer](https://ping.astranaut.io/astra) - -## Additional Information - -- **Official Website**: https://astranaut.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/astria-evm-dusknet.mdx b/docs/pages/solutions/chainlist/non-integrated/astria-evm-dusknet.mdx deleted file mode 100644 index 454afb3fa0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/astria-evm-dusknet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Astria EVM Dusknet - RIA Blockchain Network -description: Explore Astria EVM Dusknet, a blockchain network with chain ID 912559. Learn about its native currency, RIA, and how to interact with the network. ---- - -# Astria EVM Dusknet - -Astria EVM Dusknet is a blockchain network with chain ID 912559. - -## Network Details - -- **Chain ID**: 912559 -- **Chain Name**: RIA -- **Short Name**: ria-dev -- **Network ID**: 912559 -- **Currency**: - - **Name**: RIA - - **Symbol**: RIA - - **Decimals**: 18 - -## RPC URLs - -Astria EVM Dusknet can be accessed through the following RPC endpoints: - -- https://rpc.evm.dusk-3.devnet.astria.org - -## Astria EVM Dusknet Block Explorers - -- [Astria EVM Dusknet Explorer](https://explorer.evm.dusk-3.devnet.astria.org) - -## Additional Information - -- **Official Website**: https://docs.astria.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/atelier.mdx b/docs/pages/solutions/chainlist/non-integrated/atelier.mdx deleted file mode 100644 index 1fdd183c97..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/atelier.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Atelier - ALTR Blockchain Network -description: Explore Atelier, a blockchain network with chain ID 1971. Learn about its native currency, ATLR, and how to interact with the network. ---- - -# Atelier - -Atelier is a blockchain network with chain ID 1971. - -## Network Details - -- **Chain ID**: 1971 -- **Chain Name**: ALTR -- **Short Name**: atlr -- **Network ID**: 1971 -- **Currency**: - - **Name**: ATLR - - **Symbol**: ATLR - - **Decimals**: 18 - -## RPC URLs - -Atelier can be accessed through the following RPC endpoints: - -- https://1971.network/atlr -- wss://1971.network/atlr - -## Atelier Block Explorers - - - -## Additional Information - -- **Official Website**: https://1971.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Atelier Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aternos.mdx b/docs/pages/solutions/chainlist/non-integrated/aternos.mdx deleted file mode 100644 index 869e17a524..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aternos.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aternos - Aternos Blockchain Network -description: Explore Aternos, a blockchain network with chain ID 12020. Learn about its native currency, Aternos, and how to interact with the network. ---- - -# Aternos - -Aternos is a blockchain network with chain ID 12020. - -## Network Details - -- **Chain ID**: 12020 -- **Chain Name**: Aternos -- **Short Name**: ATR -- **Network ID**: 12020 -- **Currency**: - - **Name**: Aternos - - **Symbol**: ATR - - **Decimals**: 18 - -## RPC URLs - -Aternos can be accessed through the following RPC endpoints: - -- https://rpc.aternoschain.com - -## Aternos Block Explorers - -- [blockscout](https://explorer.aternoschain.com) - -## Additional Information - -- **Official Website**: https://aternoschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/atheios.mdx b/docs/pages/solutions/chainlist/non-integrated/atheios.mdx deleted file mode 100644 index 89a003d6fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/atheios.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Atheios - ATH Blockchain Network -description: Explore Atheios, a blockchain network with chain ID 1620. Learn about its native currency, Atheios Ether, and how to interact with the network. ---- - -# Atheios - -Atheios is a blockchain network with chain ID 1620. - -## Network Details - -- **Chain ID**: 1620 -- **Chain Name**: ATH -- **Short Name**: ath -- **Network ID**: 1620 -- **Currency**: - - **Name**: Atheios Ether - - **Symbol**: ATH - - **Decimals**: 18 - -## RPC URLs - -Atheios can be accessed through the following RPC endpoints: - -- https://rpc.atheios.org/ - -## Atheios Block Explorers - - - -## Additional Information - -- **Official Website**: https://atheios.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/athereum.mdx b/docs/pages/solutions/chainlist/non-integrated/athereum.mdx deleted file mode 100644 index f7c7597d55..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/athereum.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Athereum - ATH Blockchain Network -description: Explore Athereum, a blockchain network with chain ID 43110. Learn about its native currency, Athereum Ether, and how to interact with the network. ---- - -# Athereum - -Athereum is a blockchain network with chain ID 43110. - -## Network Details - -- **Chain ID**: 43110 -- **Chain Name**: ATH -- **Short Name**: avaeth -- **Network ID**: 43110 -- **Currency**: - - **Name**: Athereum Ether - - **Symbol**: ATH - - **Decimals**: 18 - -## RPC URLs - -Athereum can be accessed through the following RPC endpoints: - -- https://ava.network:21015/ext/evm/rpc - -## Athereum Block Explorers - - - -## Additional Information - -- **Official Website**: https://athereum.ava.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/atlas.mdx b/docs/pages/solutions/chainlist/non-integrated/atlas.mdx deleted file mode 100644 index 28ce2c6e03..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/atlas.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Atlas - ATLAS Blockchain Network -description: Explore Atlas, a blockchain network with chain ID 622463. Learn about its native currency, TON, and how to interact with the network. ---- - -# Atlas - -Atlas is a blockchain network with chain ID 622463. - -## Network Details - -- **Chain ID**: 622463 -- **Chain Name**: ATLAS -- **Short Name**: atlas-testnet -- **Network ID**: 622463 -- **Currency**: - - **Name**: TON - - **Symbol**: TON - - **Decimals**: 18 - -## RPC URLs - -Atlas can be accessed through the following RPC endpoints: - -- https://rpc.testnet.atl.network - -## Atlas Block Explorers - -- [Atlas Testnet Scan](https://explorer.testnet.atl.network) - -## Additional Information - -- **Official Website**: https://atl.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Atlas Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/atleta-olympia.mdx b/docs/pages/solutions/chainlist/non-integrated/atleta-olympia.mdx deleted file mode 100644 index 25f0c5882d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/atleta-olympia.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Atleta Olympia - Atleta Blockchain Network -description: Explore Atleta Olympia, a blockchain network with chain ID 2340. Learn about its native currency, Atla, and how to interact with the network. ---- - -# Atleta Olympia - -Atleta Olympia is a blockchain network with chain ID 2340. - -## Network Details - -- **Chain ID**: 2340 -- **Chain Name**: Atleta -- **Short Name**: atla -- **Network ID**: 2340 -- **Currency**: - - **Name**: Atla - - **Symbol**: ATLA - - **Decimals**: 18 - -## RPC URLs - -Atleta Olympia can be accessed through the following RPC endpoints: - -- wss://testnet-rpc.atleta.network:9944 -- https://testnet-rpc.atleta.network:9944 -- https://testnet-rpc.atleta.network - -## Atleta Olympia Block Explorers - -- [Atleta Olympia Explorer](https://blockscout.atleta.network) -- [Atleta Olympia Polka Explorer](https://polkadot-explorer.atleta.network/#/explorer) - -## Additional Information - -- **Official Website**: https://atleta.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Atleta Olympia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/atoshi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/atoshi-testnet.mdx deleted file mode 100644 index ea042fcfc0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/atoshi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Atoshi Testnet - ATOSHI Blockchain Network -description: Explore Atoshi Testnet, a blockchain network with chain ID 167. Learn about its native currency, ATOSHI, and how to interact with the network. ---- - -# Atoshi Testnet - -Atoshi Testnet is a blockchain network with chain ID 167. - -## Network Details - -- **Chain ID**: 167 -- **Chain Name**: ATOSHI -- **Short Name**: atoshi -- **Network ID**: 167 -- **Currency**: - - **Name**: ATOSHI - - **Symbol**: ATOS - - **Decimals**: 18 - -## RPC URLs - -Atoshi Testnet can be accessed through the following RPC endpoints: - -- https://node.atoshi.io/ - -## Atoshi Testnet Block Explorers - -- [atoshiscan](https://scan.atoverse.info) - -## Additional Information - -- **Official Website**: https://atoshi.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Atoshi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aura-euphoria-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aura-euphoria-testnet.mdx deleted file mode 100644 index 73f30a70cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aura-euphoria-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Aura Euphoria Testnet - Aura Blockchain Network -description: Explore Aura Euphoria Testnet, a blockchain network with chain ID 6321. Learn about its native currency, test-EAura, and how to interact with the network. ---- - -# Aura Euphoria Testnet - -Aura Euphoria Testnet is a blockchain network with chain ID 6321. - -## Network Details - -- **Chain ID**: 6321 -- **Chain Name**: Aura -- **Short Name**: eaura -- **Network ID**: 6321 -- **Currency**: - - **Name**: test-EAura - - **Symbol**: eAura - - **Decimals**: 18 - -## RPC URLs - -Aura Euphoria Testnet can be accessed through the following RPC endpoints: - -- https://jsonrpc.euphoria.aura.network - -## Aura Euphoria Testnet Block Explorers - -- [Aurascan Explorer](https://euphoria.aurascan.io) - -## Additional Information - -- **Official Website**: https://aura.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aura Euphoria Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aura.mdx b/docs/pages/solutions/chainlist/non-integrated/aura.mdx deleted file mode 100644 index eb73844987..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aura.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aura Mainnet - Aura Blockchain Network -description: Explore Aura Mainnet, a blockchain network with chain ID 6322. Learn about its native currency, Aura, and how to interact with the network. ---- - -# Aura Mainnet - -Aura Mainnet is a blockchain network with chain ID 6322. - -## Network Details - -- **Chain ID**: 6322 -- **Chain Name**: Aura -- **Short Name**: aura -- **Network ID**: 6322 -- **Currency**: - - **Name**: Aura - - **Symbol**: AURA - - **Decimals**: 18 - -## RPC URLs - -Aura Mainnet can be accessed through the following RPC endpoints: - -- https://jsonrpc.aura.network - -## Aura Mainnet Block Explorers - -- [Aurascan Explorer](https://aurascan.io) - -## Additional Information - -- **Official Website**: https://aura.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aurora-18869.mdx b/docs/pages/solutions/chainlist/non-integrated/aurora-18869.mdx deleted file mode 100644 index 88af4a9e33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aurora-18869.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Aurora - Avalanche Blockchain Network -description: Explore Aurora, a blockchain network with chain ID 18869. Learn about its native currency, Aurora Token, and how to interact with the network. ---- - -# Aurora - -Aurora is a blockchain network with chain ID 18869. - -## Network Details - -- **Chain ID**: 18869 -- **Chain Name**: Avalanche -- **Short Name**: Aurora -- **Network ID**: 18869 -- **Currency**: - - **Name**: Aurora Token - - **Symbol**: AUR - - **Decimals**: 18 - -## RPC URLs - -Aurora can be accessed through the following RPC endpoints: - -- https://testnet-aurora-f9dd2.avax-test.network/ext/bc/mqCbnw6WqHKW44qbikvQVxLpkhBdXhGefvSvxEqjsRqHcL3GA/rpc?token=8faca12c63a9f3235717709a7a7e4f2ab0bf868ae31bffcfeeee3ae44fc244b6 - -## Aurora Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aurora Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aurora-betanet.mdx b/docs/pages/solutions/chainlist/non-integrated/aurora-betanet.mdx deleted file mode 100644 index 1e7819314c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aurora-betanet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aurora Betanet - NEAR Blockchain Network -description: Explore Aurora Betanet, a blockchain network with chain ID 1313161556. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Aurora Betanet - -Aurora Betanet is a blockchain network with chain ID 1313161556. - -## Network Details - -- **Chain ID**: 1313161556 -- **Chain Name**: NEAR -- **Short Name**: aurora-betanet -- **Network ID**: 1313161556 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Aurora Betanet can be accessed through the following RPC endpoints: - - - -## Aurora Betanet Block Explorers - - - -## Additional Information - -- **Official Website**: https://aurora.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/aurora-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aurora-testnet.mdx deleted file mode 100644 index cfcde447c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aurora-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Aurora Testnet - NEAR Blockchain Network -description: Explore Aurora Testnet, a blockchain network with chain ID 1313161555. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Aurora Testnet - -Aurora Testnet is a blockchain network with chain ID 1313161555. - -## Network Details - -- **Chain ID**: 1313161555 -- **Chain Name**: NEAR -- **Short Name**: aurora-testnet -- **Network ID**: 1313161555 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Aurora Testnet can be accessed through the following RPC endpoints: - -- https://testnet.aurora.dev/ -- https://aurora-testnet.drpc.org -- wss://aurora-testnet.drpc.org - -## Aurora Testnet Block Explorers - -- [aurorascan.dev](https://testnet.aurorascan.dev) - -## Additional Information - -- **Official Website**: https://aurora.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aurora Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aurora.mdx b/docs/pages/solutions/chainlist/non-integrated/aurora.mdx deleted file mode 100644 index bdb334ecdb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aurora.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Aurora Mainnet - NEAR Blockchain Network -description: Explore Aurora Mainnet, a blockchain network with chain ID 1313161554. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Aurora Mainnet - -Aurora Mainnet is a blockchain network with chain ID 1313161554. - -## Network Details - -- **Chain ID**: 1313161554 -- **Chain Name**: NEAR -- **Short Name**: aurora -- **Network ID**: 1313161554 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Aurora Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.aurora.dev -- https://aurora.drpc.org -- wss://aurora.drpc.org - -## Aurora Mainnet Block Explorers - -- [aurorascan.dev](https://aurorascan.dev) - -## Additional Information - -- **Official Website**: https://aurora.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/auroria-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/auroria-testnet.mdx deleted file mode 100644 index 68b312f7a4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/auroria-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Auroria Testnet - Auroria Blockchain Network -description: Explore Auroria Testnet, a blockchain network with chain ID 205205. Learn about its native currency, Auroria Stratis, and how to interact with the network. ---- - -# Auroria Testnet - -Auroria Testnet is a blockchain network with chain ID 205205. - -## Network Details - -- **Chain ID**: 205205 -- **Chain Name**: Auroria -- **Short Name**: auroria -- **Network ID**: 205205 -- **Currency**: - - **Name**: Auroria Stratis - - **Symbol**: tSTRAX - - **Decimals**: 18 - -## RPC URLs - -Auroria Testnet can be accessed through the following RPC endpoints: - -- https://auroria.rpc.stratisevm.com - -## Auroria Testnet Block Explorers - -- [Auroria Testnet Explorer](https://auroria.explorer.stratisevm.com) - -## Additional Information - -- **Official Website**: https://www.stratisplatform.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Auroria Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autobahn-network.mdx b/docs/pages/solutions/chainlist/non-integrated/autobahn-network.mdx deleted file mode 100644 index cf26207e18..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autobahn-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Autobahn Network - TXL Blockchain Network -description: Explore Autobahn Network, a blockchain network with chain ID 45000. Learn about its native currency, TXL, and how to interact with the network. ---- - -# Autobahn Network - -Autobahn Network is a blockchain network with chain ID 45000. - -## Network Details - -- **Chain ID**: 45000 -- **Chain Name**: TXL -- **Short Name**: AutobahnNetwork -- **Network ID**: 45000 -- **Currency**: - - **Name**: TXL - - **Symbol**: TXL - - **Decimals**: 18 - -## RPC URLs - -Autobahn Network can be accessed through the following RPC endpoints: - -- https://rpc.autobahn.network - -## Autobahn Network Block Explorers - -- [autobahn explorer](https://explorer.autobahn.network) - -## Additional Information - -- **Official Website**: https://autobahn.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/automata-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/automata-testnet.mdx deleted file mode 100644 index 8d9370fd0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/automata-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Automata Testnet - Automata Testnet Blockchain Network -description: Explore Automata Testnet, a blockchain network with chain ID 1398243. Learn about its native currency, ATA, and how to interact with the network. ---- - -# Automata Testnet - -Automata Testnet is a blockchain network with chain ID 1398243. - -## Network Details - -- **Chain ID**: 1398243 -- **Chain Name**: Automata Testnet -- **Short Name**: automatatest -- **Network ID**: 1398243 -- **Currency**: - - **Name**: ATA - - **Symbol**: ATA - - **Decimals**: 18 - -## RPC URLs - -Automata Testnet can be accessed through the following RPC endpoints: - -- https://automata-testnet.alt.technology - -## Automata Testnet Block Explorers - -- [Automata Testnet Explorer](https://automata-testnet-explorer.alt.technology) - -## Additional Information - -- **Official Website**: https://ata.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Automata Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/automata.mdx b/docs/pages/solutions/chainlist/non-integrated/automata.mdx deleted file mode 100644 index c3db4fe671..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/automata.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Automata Mainnet - Automata Mainnet Blockchain Network -description: Explore Automata Mainnet, a blockchain network with chain ID 65536. Learn about its native currency, ATA, and how to interact with the network. ---- - -# Automata Mainnet - -Automata Mainnet is a blockchain network with chain ID 65536. - -## Network Details - -- **Chain ID**: 65536 -- **Chain Name**: Automata Mainnet -- **Short Name**: automatamainnet -- **Network ID**: 65536 -- **Currency**: - - **Name**: ATA - - **Symbol**: ATA - - **Decimals**: 18 - -## RPC URLs - -Automata Mainnet can be accessed through the following RPC endpoints: - - - -## Automata Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ata.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(barada)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(barada)-testnet.mdx deleted file mode 100644 index a85adbc68b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(barada)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Bakerloo (Barada) Testnet - AUT Blockchain Network -description: Explore Autonity Bakerloo (Barada) Testnet, a blockchain network with chain ID 65010001. Learn about its native currency, Bakerloo Auton, and how to interact with the network. ---- - -# Autonity Bakerloo (Barada) Testnet - -Autonity Bakerloo (Barada) Testnet is a blockchain network with chain ID 65010001. - -## Network Details - -- **Chain ID**: 65010001 -- **Chain Name**: AUT -- **Short Name**: bakerloo-01 -- **Network ID**: 65010001 -- **Currency**: - - **Name**: Bakerloo Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Bakerloo (Barada) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Bakerloo (Barada) Testnet Block Explorers - -- [autonity-blockscout](https://bakerloo.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Bakerloo (Barada) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(sumida)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(sumida)-testnet.mdx deleted file mode 100644 index f300aa1f32..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(sumida)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Bakerloo (Sumida) Testnet - AUT Blockchain Network -description: Explore Autonity Bakerloo (Sumida) Testnet, a blockchain network with chain ID 65010002. Learn about its native currency, Bakerloo Auton, and how to interact with the network. ---- - -# Autonity Bakerloo (Sumida) Testnet - -Autonity Bakerloo (Sumida) Testnet is a blockchain network with chain ID 65010002. - -## Network Details - -- **Chain ID**: 65010002 -- **Chain Name**: AUT -- **Short Name**: bakerloo-02 -- **Network ID**: 65010002 -- **Currency**: - - **Name**: Bakerloo Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Bakerloo (Sumida) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Bakerloo (Sumida) Testnet Block Explorers - -- [autonity-blockscout](https://bakerloo.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Bakerloo (Sumida) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(thames)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(thames)-testnet.mdx deleted file mode 100644 index 819e4995cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(thames)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Bakerloo (Thames) Testnet - AUT Blockchain Network -description: Explore Autonity Bakerloo (Thames) Testnet, a blockchain network with chain ID 65010000. Learn about its native currency, Bakerloo Auton, and how to interact with the network. ---- - -# Autonity Bakerloo (Thames) Testnet - -Autonity Bakerloo (Thames) Testnet is a blockchain network with chain ID 65010000. - -## Network Details - -- **Chain ID**: 65010000 -- **Chain Name**: AUT -- **Short Name**: bakerloo-0 -- **Network ID**: 65010000 -- **Currency**: - - **Name**: Bakerloo Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Bakerloo (Thames) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Bakerloo (Thames) Testnet Block Explorers - -- [autonity-blockscout](https://bakerloo.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Bakerloo (Thames) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(yamuna)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(yamuna)-testnet.mdx deleted file mode 100644 index e1e3d2efee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-bakerloo-(yamuna)-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Autonity Bakerloo (Yamuna) Testnet - AUT Blockchain Network -description: Explore Autonity Bakerloo (Yamuna) Testnet, a blockchain network with chain ID 65010003. Learn about its native currency, Bakerloo Auton, and how to interact with the network. ---- - -# Autonity Bakerloo (Yamuna) Testnet - -Autonity Bakerloo (Yamuna) Testnet is a blockchain network with chain ID 65010003. - -## Network Details - -- **Chain ID**: 65010003 -- **Chain Name**: AUT -- **Short Name**: bakerloo-03 -- **Network ID**: 65010003 -- **Currency**: - - **Name**: Bakerloo Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Bakerloo (Yamuna) Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.bakerloo.autonity.org/ -- wss://rpc1.bakerloo.autonity.org/ws/ - -## Autonity Bakerloo (Yamuna) Testnet Block Explorers - -- [autonity-blockscout](https://bakerloo.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Bakerloo (Yamuna) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(barada)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(barada)-testnet.mdx deleted file mode 100644 index bdb89334f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(barada)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Piccadilly (Barada) Testnet - AUT Blockchain Network -description: Explore Autonity Piccadilly (Barada) Testnet, a blockchain network with chain ID 65100001. Learn about its native currency, Piccadilly Auton, and how to interact with the network. ---- - -# Autonity Piccadilly (Barada) Testnet - -Autonity Piccadilly (Barada) Testnet is a blockchain network with chain ID 65100001. - -## Network Details - -- **Chain ID**: 65100001 -- **Chain Name**: AUT -- **Short Name**: piccadilly-01 -- **Network ID**: 65100001 -- **Currency**: - - **Name**: Piccadilly Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Piccadilly (Barada) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Piccadilly (Barada) Testnet Block Explorers - -- [autonity-blockscout](https://piccadilly.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Piccadilly (Barada) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(sumida)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(sumida)-testnet.mdx deleted file mode 100644 index 60d3026efb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(sumida)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Piccadilly (Sumida) Testnet - AUT Blockchain Network -description: Explore Autonity Piccadilly (Sumida) Testnet, a blockchain network with chain ID 65100002. Learn about its native currency, Piccadilly Auton, and how to interact with the network. ---- - -# Autonity Piccadilly (Sumida) Testnet - -Autonity Piccadilly (Sumida) Testnet is a blockchain network with chain ID 65100002. - -## Network Details - -- **Chain ID**: 65100002 -- **Chain Name**: AUT -- **Short Name**: piccadilly-02 -- **Network ID**: 65100002 -- **Currency**: - - **Name**: Piccadilly Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Piccadilly (Sumida) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Piccadilly (Sumida) Testnet Block Explorers - -- [autonity-blockscout](https://piccadilly.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Piccadilly (Sumida) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(thames)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(thames)-testnet.mdx deleted file mode 100644 index 68fbbde0b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(thames)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonity Piccadilly (Thames) Testnet - AUT Blockchain Network -description: Explore Autonity Piccadilly (Thames) Testnet, a blockchain network with chain ID 65100000. Learn about its native currency, Piccadilly Auton, and how to interact with the network. ---- - -# Autonity Piccadilly (Thames) Testnet - -Autonity Piccadilly (Thames) Testnet is a blockchain network with chain ID 65100000. - -## Network Details - -- **Chain ID**: 65100000 -- **Chain Name**: AUT -- **Short Name**: piccadilly-0 -- **Network ID**: 65100000 -- **Currency**: - - **Name**: Piccadilly Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Piccadilly (Thames) Testnet can be accessed through the following RPC endpoints: - - - -## Autonity Piccadilly (Thames) Testnet Block Explorers - -- [autonity-blockscout](https://piccadilly.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Piccadilly (Thames) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(yamuna)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(yamuna)-testnet.mdx deleted file mode 100644 index 88fc722b2d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonity-piccadilly-(yamuna)-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Autonity Piccadilly (Yamuna) Testnet - AUT Blockchain Network -description: Explore Autonity Piccadilly (Yamuna) Testnet, a blockchain network with chain ID 65100003. Learn about its native currency, Piccadilly Auton, and how to interact with the network. ---- - -# Autonity Piccadilly (Yamuna) Testnet - -Autonity Piccadilly (Yamuna) Testnet is a blockchain network with chain ID 65100003. - -## Network Details - -- **Chain ID**: 65100003 -- **Chain Name**: AUT -- **Short Name**: piccadilly-03 -- **Network ID**: 65100003 -- **Currency**: - - **Name**: Piccadilly Auton - - **Symbol**: ATN - - **Decimals**: 18 - -## RPC URLs - -Autonity Piccadilly (Yamuna) Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.piccadilly.autonity.org/ -- wss://rpc1.piccadilly.autonity.org/ws/ - -## Autonity Piccadilly (Yamuna) Testnet Block Explorers - -- [autonity-blockscout](https://piccadilly.autonity.org) - -## Additional Information - -- **Official Website**: https://autonity.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonity Piccadilly (Yamuna) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/autonomys-testnet-nova-domain.mdx b/docs/pages/solutions/chainlist/non-integrated/autonomys-testnet-nova-domain.mdx deleted file mode 100644 index a511b08332..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/autonomys-testnet-nova-domain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Autonomys Testnet Nova Domain - TATC Blockchain Network -description: Explore Autonomys Testnet Nova Domain, a blockchain network with chain ID 490000. Learn about its native currency, Test Auto Coin, and how to interact with the network. ---- - -# Autonomys Testnet Nova Domain - -Autonomys Testnet Nova Domain is a blockchain network with chain ID 490000. - -## Network Details - -- **Chain ID**: 490000 -- **Chain Name**: TATC -- **Short Name**: ATN -- **Network ID**: 490000 -- **Currency**: - - **Name**: Test Auto Coin - - **Symbol**: TATC - - **Decimals**: 18 - -## RPC URLs - -Autonomys Testnet Nova Domain can be accessed through the following RPC endpoints: - -- https://nova-0.gemini-3h.subspace.network/ws - -## Autonomys Testnet Nova Domain Block Explorers - -- [astral](https://nova.subspace.network) - -## Additional Information - -- **Official Website**: https://www.autonomys.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Autonomys Testnet Nova Domain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/auxilium-network.mdx b/docs/pages/solutions/chainlist/non-integrated/auxilium-network.mdx deleted file mode 100644 index ebc9f37ef8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/auxilium-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Auxilium Network Mainnet - AUX Blockchain Network -description: Explore Auxilium Network Mainnet, a blockchain network with chain ID 28945486. Learn about its native currency, Auxilium coin, and how to interact with the network. ---- - -# Auxilium Network Mainnet - -Auxilium Network Mainnet is a blockchain network with chain ID 28945486. - -## Network Details - -- **Chain ID**: 28945486 -- **Chain Name**: AUX -- **Short Name**: auxi -- **Network ID**: 28945486 -- **Currency**: - - **Name**: Auxilium coin - - **Symbol**: AUX - - **Decimals**: 18 - -## RPC URLs - -Auxilium Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.auxilium.global - -## Auxilium Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://auxilium.global - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ava-privacy-solutions.mdx b/docs/pages/solutions/chainlist/non-integrated/ava-privacy-solutions.mdx deleted file mode 100644 index 3ef0962abd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ava-privacy-solutions.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ava privacy solutions - Avalanche Blockchain Network -description: Explore ava privacy solutions, a blockchain network with chain ID 86225. Learn about its native currency, ava privacy solutions Token, and how to interact with the network. ---- - -# ava privacy solutions - -ava privacy solutions is a blockchain network with chain ID 86225. - -## Network Details - -- **Chain ID**: 86225 -- **Chain Name**: Avalanche -- **Short Name**: ava privacy solutions -- **Network ID**: 86225 -- **Currency**: - - **Name**: ava privacy solutions Token - - **Symbol**: APS - - **Decimals**: 18 - -## RPC URLs - -ava privacy solutions can be accessed through the following RPC endpoints: - -- https://testnet-avaprivacy-d7360.avax-test.network/ext/bc/oWGrJRSSqrR4EozHy36aJbQcVRc5kCGHm2DzvuWVFVpKq3Q3R/rpc?token=8023bf037deaad0a0fa472760da4fc9e7d66efcf343038d09871bfbd54bcd725 - -## ava privacy solutions Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ava privacy solutions Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/avaland-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/avaland-testnet.mdx deleted file mode 100644 index c3748711a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/avaland-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Avaland Testnet - Avalanche Blockchain Network -description: Explore Avaland Testnet, a blockchain network with chain ID 47157. Learn about its native currency, Avaland Testnet Token, and how to interact with the network. ---- - -# Avaland Testnet - -Avaland Testnet is a blockchain network with chain ID 47157. - -## Network Details - -- **Chain ID**: 47157 -- **Chain Name**: Avalanche -- **Short Name**: Avaland Testnet -- **Network ID**: 47157 -- **Currency**: - - **Name**: Avaland Testnet Token - - **Symbol**: AVA - - **Decimals**: 18 - -## RPC URLs - -Avaland Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/avalandtes/testnet/rpc - -## Avaland Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Avaland Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/avenium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/avenium-testnet.mdx deleted file mode 100644 index 03d76f6d38..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/avenium-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Avenium Testnet - AVE Blockchain Network -description: Explore Avenium Testnet, a blockchain network with chain ID 8886. Learn about its native currency, Ave Native Token, and how to interact with the network. ---- - -# Avenium Testnet - -Avenium Testnet is a blockchain network with chain ID 8886. - -## Network Details - -- **Chain ID**: 8886 -- **Chain Name**: AVE -- **Short Name**: tave -- **Network ID**: 8886 -- **Currency**: - - **Name**: Ave Native Token - - **Symbol**: tAVE - - **Decimals**: 18 - -## RPC URLs - -Avenium Testnet can be accessed through the following RPC endpoints: - -- https://eu-testnet.avenium.io/ -- https://connect-testnet.avenium.io - -## Avenium Testnet Block Explorers - -- [Avenium Explorer Testnet](https://testnet.avescan.net) - -## Additional Information - -- **Official Website**: https://avenium.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Avenium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aves-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/aves-testnet.mdx deleted file mode 100644 index 3b3a57d735..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aves-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Aves Testnet - AVST Blockchain Network -description: Explore Aves Testnet, a blockchain network with chain ID 333331. Learn about its native currency, AvesT, and how to interact with the network. ---- - -# Aves Testnet - -Aves Testnet is a blockchain network with chain ID 333331. - -## Network Details - -- **Chain ID**: 333331 -- **Chain Name**: AVST -- **Short Name**: avst -- **Network ID**: 333331 -- **Currency**: - - **Name**: AvesT - - **Symbol**: AVST - - **Decimals**: 18 - -## RPC URLs - -Aves Testnet can be accessed through the following RPC endpoints: - -- https://test.rpc.avescoin.io - -## Aves Testnet Block Explorers - -- [avescan](https://testnet.avescoin.io) - -## Additional Information - -- **Official Website**: https://ethereum.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Aves Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/aves.mdx b/docs/pages/solutions/chainlist/non-integrated/aves.mdx deleted file mode 100644 index 139788b209..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/aves.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Aves Mainnet - AVS Blockchain Network -description: Explore Aves Mainnet, a blockchain network with chain ID 33333. Learn about its native currency, Aves, and how to interact with the network. ---- - -# Aves Mainnet - -Aves Mainnet is a blockchain network with chain ID 33333. - -## Network Details - -- **Chain ID**: 33333 -- **Chain Name**: AVS -- **Short Name**: avs -- **Network ID**: 33333 -- **Currency**: - - **Name**: Aves - - **Symbol**: AVS - - **Decimals**: 18 - -## RPC URLs - -Aves Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.avescoin.io - -## Aves Mainnet Block Explorers - -- [avescan](https://avescan.io) - -## Additional Information - -- **Official Website**: https://avescoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/avocado.mdx b/docs/pages/solutions/chainlist/non-integrated/avocado.mdx deleted file mode 100644 index f2755c26bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/avocado.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Avocado - Avocado Blockchain Network -description: Explore Avocado, a blockchain network with chain ID 634. Learn about its native currency, USDC, and how to interact with the network. ---- - -# Avocado - -Avocado is a blockchain network with chain ID 634. - -## Network Details - -- **Chain ID**: 634 -- **Chain Name**: Avocado -- **Short Name**: avocado -- **Network ID**: 634 -- **Currency**: - - **Name**: USDC - - **Symbol**: USDC - - **Decimals**: 18 - -## RPC URLs - -Avocado can be accessed through the following RPC endpoints: - -- https://rpc.avocado.instadapp.io - -## Avocado Block Explorers - -- [avoscan](https://avoscan.co) - -## Additional Information - -- **Official Website**: https://avocado.instadapp.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/axelchain-dev-net.mdx b/docs/pages/solutions/chainlist/non-integrated/axelchain-dev-net.mdx deleted file mode 100644 index d3d2a3ff00..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/axelchain-dev-net.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: AxelChain Dev-Net - AXEL Blockchain Network -description: Explore AxelChain Dev-Net, a blockchain network with chain ID 61800. Learn about its native currency, Axelium, and how to interact with the network. ---- - -# AxelChain Dev-Net - -AxelChain Dev-Net is a blockchain network with chain ID 61800. - -## Network Details - -- **Chain ID**: 61800 -- **Chain Name**: AXEL -- **Short Name**: aium-dev -- **Network ID**: 61800 -- **Currency**: - - **Name**: Axelium - - **Symbol**: AIUM - - **Decimals**: 18 - -## RPC URLs - -AxelChain Dev-Net can be accessed through the following RPC endpoints: - -- https://aium-rpc-dev.viacube.com - -## AxelChain Dev-Net Block Explorers - -- [AxelChain Dev-Net Explorer](https://devexplorer2.viacube.com) - -## Additional Information - -- **Official Website**: https://www.axel.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/azra-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/azra-testnet.mdx deleted file mode 100644 index 54cf9f6be9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/azra-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Azra Testnet - Azra Testnet Blockchain Network -description: Explore Azra Testnet, a blockchain network with chain ID 5106. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Azra Testnet - -Azra Testnet is a blockchain network with chain ID 5106. - -## Network Details - -- **Chain ID**: 5106 -- **Chain Name**: Azra Testnet -- **Short Name**: azra-testnet -- **Network ID**: 5106 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Azra Testnet can be accessed through the following RPC endpoints: - -- https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz - -## Azra Testnet Block Explorers - -- [blockscout](https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://azragames.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Azra Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/b2-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/b2-hub-testnet.mdx deleted file mode 100644 index 6e52b89ed8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/b2-hub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: B2 Hub Testnet - BSQ Blockchain Network -description: Explore B2 Hub Testnet, a blockchain network with chain ID 1113. Learn about its native currency, BSquared Token, and how to interact with the network. ---- - -# B2 Hub Testnet - -B2 Hub Testnet is a blockchain network with chain ID 1113. - -## Network Details - -- **Chain ID**: 1113 -- **Chain Name**: BSQ -- **Short Name**: B2Hub-testnet -- **Network ID**: 1113 -- **Currency**: - - **Name**: BSquared Token - - **Symbol**: B2 - - **Decimals**: 18 - -## RPC URLs - -B2 Hub Testnet can be accessed through the following RPC endpoints: - -- https://testnet-hub-rpc.bsquared.network - -## B2 Hub Testnet Block Explorers - -- [B2 Hub Habitat Testnet Explorer](https://testnet-hub-explorer.bsquared.network) - -## Additional Information - -- **Official Website**: https://www.bsquared.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## B2 Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/b2-hub.mdx b/docs/pages/solutions/chainlist/non-integrated/b2-hub.mdx deleted file mode 100644 index dad666c774..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/b2-hub.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: B2 Hub Mainnet - B2 Blockchain Network -description: Explore B2 Hub Mainnet, a blockchain network with chain ID 213. Learn about its native currency, BSquared Token, and how to interact with the network. ---- - -# B2 Hub Mainnet - -B2 Hub Mainnet is a blockchain network with chain ID 213. - -## Network Details - -- **Chain ID**: 213 -- **Chain Name**: B2 -- **Short Name**: B2Hub-mainnet -- **Network ID**: 213 -- **Currency**: - - **Name**: BSquared Token - - **Symbol**: B2 - - **Decimals**: 18 - -## RPC URLs - -B2 Hub Mainnet can be accessed through the following RPC endpoints: - -- https://hub-rpc.bsquared.network - -## B2 Hub Mainnet Block Explorers - -- [B2 Hub Mainnet Explorer](https://hub-explorer.bsquared.network) - -## Additional Information - -- **Official Website**: https://www.bsquared.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/b2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/b2-testnet.mdx deleted file mode 100644 index 9fb2fdcbd2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/b2-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: B2 Testnet - Habitat Blockchain Network -description: Explore B2 Testnet, a blockchain network with chain ID 1123. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# B2 Testnet - -B2 Testnet is a blockchain network with chain ID 1123. - -## Network Details - -- **Chain ID**: 1123 -- **Chain Name**: Habitat -- **Short Name**: B2-testnet -- **Network ID**: 1123 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -B2 Testnet can be accessed through the following RPC endpoints: - -- https://b2-testnet.alt.technology -- https://rpc.ankr.com/b2_testnet -- https://testnet-rpc.bsquared.network - -## B2 Testnet Block Explorers - -- [blockscout](https://testnet-explorer.bsquared.network) - -## Additional Information - -- **Official Website**: https://www.bsquared.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## B2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/b2.mdx b/docs/pages/solutions/chainlist/non-integrated/b2.mdx deleted file mode 100644 index cf29f7bf74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/b2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: B2 Mainnet - B2 Blockchain Network -description: Explore B2 Mainnet, a blockchain network with chain ID 223. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# B2 Mainnet - -B2 Mainnet is a blockchain network with chain ID 223. - -## Network Details - -- **Chain ID**: 223 -- **Chain Name**: B2 -- **Short Name**: B2-mainnet -- **Network ID**: 223 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -B2 Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.b2-rpc.com -- https://rpc.bsquared.network -- https://b2-mainnet.alt.technology -- https://b2-mainnet-public.s.chainbase.com -- https://rpc.ankr.com/b2 - -## B2 Mainnet Block Explorers - -- [blockscout](https://explorer.bsquared.network) - -## Additional Information - -- **Official Website**: https://www.bsquared.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/backstop-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/backstop-testnet.mdx deleted file mode 100644 index ba5f295eed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/backstop-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Backstop Testnet - backstopTestnet Blockchain Network -description: Explore Backstop Testnet, a blockchain network with chain ID 88558801. Learn about its native currency, Backstop Testnet 1, and how to interact with the network. ---- - -# Backstop Testnet - -Backstop Testnet is a blockchain network with chain ID 88558801. - -## Network Details - -- **Chain ID**: 88558801 -- **Chain Name**: backstopTestnet -- **Short Name**: backstop-testnet -- **Network ID**: 88558801 -- **Currency**: - - **Name**: Backstop Testnet 1 - - **Symbol**: ZBS - - **Decimals**: 18 - -## RPC URLs - -Backstop Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rpc.backstop.technology - -## Backstop Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://backstop.technology/testnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Backstop Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bahamut-ocean.mdx b/docs/pages/solutions/chainlist/non-integrated/bahamut-ocean.mdx deleted file mode 100644 index 2475210e44..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bahamut-ocean.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bahamut ocean - Bahamut Blockchain Network -description: Explore Bahamut ocean, a blockchain network with chain ID 4058. Learn about its native currency, FTN, and how to interact with the network. ---- - -# Bahamut ocean - -Bahamut ocean is a blockchain network with chain ID 4058. - -## Network Details - -- **Chain ID**: 4058 -- **Chain Name**: Bahamut -- **Short Name**: ocean -- **Network ID**: 4058 -- **Currency**: - - **Name**: FTN - - **Symbol**: FTN - - **Decimals**: 18 - -## RPC URLs - -Bahamut ocean can be accessed through the following RPC endpoints: - -- https://rpc1.ocean.bahamutchain.com - -## Bahamut ocean Block Explorers - -- [blockscout](https://ocean.ftnscan.com) - -## Additional Information - -- **Official Website**: https://bahamut.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bahamut.mdx b/docs/pages/solutions/chainlist/non-integrated/bahamut.mdx deleted file mode 100644 index 9c8355f765..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bahamut.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bahamut - Bahamut Blockchain Network -description: Explore Bahamut, a blockchain network with chain ID 5165. Learn about its native currency, FTN, and how to interact with the network. ---- - -# Bahamut - -Bahamut is a blockchain network with chain ID 5165. - -## Network Details - -- **Chain ID**: 5165 -- **Chain Name**: Bahamut -- **Short Name**: ftn -- **Network ID**: 5165 -- **Currency**: - - **Name**: FTN - - **Symbol**: FTN - - **Decimals**: 18 - -## RPC URLs - -Bahamut can be accessed through the following RPC endpoints: - -- 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 - -## Bahamut Block Explorers - -- [blockscout](https://ftnscan.com) - -## Additional Information - -- **Official Website**: https://bahamut.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bandai-namco-research-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/bandai-namco-research-verse.mdx deleted file mode 100644 index a8def3388a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bandai-namco-research-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bandai Namco Research Verse Mainnet - Bandai Namco Research Verse Blockchain Network -description: Explore Bandai Namco Research Verse Mainnet, a blockchain network with chain ID 876. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Bandai Namco Research Verse Mainnet - -Bandai Namco Research Verse Mainnet is a blockchain network with chain ID 876. - -## Network Details - -- **Chain ID**: 876 -- **Chain Name**: Bandai Namco Research Verse -- **Short Name**: BNKEN -- **Network ID**: 876 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Bandai Namco Research Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.main.oasvrs.bnken.net - -## Bandai Namco Research Verse Mainnet Block Explorers - -- [Bandai Namco Research Verse Explorer](https://explorer.main.oasvrs.bnken.net) - -## Additional Information - -- **Official Website**: https://www.bandainamco-mirai.com/en/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/base-goerli-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/base-goerli-testnet.mdx deleted file mode 100644 index c2d773330a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/base-goerli-testnet.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Base Goerli Testnet - ETH Blockchain Network -description: Explore Base Goerli Testnet, a blockchain network with chain ID 84531. Learn about its native currency, Goerli Ether, and how to interact with the network. ---- - -# Base Goerli Testnet - -Base Goerli Testnet is a blockchain network with chain ID 84531. - -## Network Details - -- **Chain ID**: 84531 -- **Chain Name**: ETH -- **Short Name**: basegor -- **Network ID**: 84531 -- **Currency**: - - **Name**: Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Base Goerli Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Base Goerli Testnet Block Explorers - -- [basescan](https://goerli.basescan.org) -- [basescout](https://base-goerli.blockscout.com) -- [dexguru](https://base-goerli.dex.guru) - -## Additional Information - -- **Official Website**: https://base.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Base Goerli Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/beagle-messaging-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/beagle-messaging-chain.mdx deleted file mode 100644 index 10bdd22d94..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beagle-messaging-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Beagle Messaging Chain - BMC Blockchain Network -description: Explore Beagle Messaging Chain, a blockchain network with chain ID 1515. Learn about its native currency, Beagle, and how to interact with the network. ---- - -# Beagle Messaging Chain - -Beagle Messaging Chain is a blockchain network with chain ID 1515. - -## Network Details - -- **Chain ID**: 1515 -- **Chain Name**: BMC -- **Short Name**: beagle -- **Network ID**: 1515 -- **Currency**: - - **Name**: Beagle - - **Symbol**: BG - - **Decimals**: 18 - -## RPC URLs - -Beagle Messaging Chain can be accessed through the following RPC endpoints: - -- https://beagle.chat/eth - -## Beagle Messaging Chain Block Explorers - -- [Beagle Messaging Chain Explorer](https://eth.beagle.chat) - -## Additional Information - -- **Official Website**: https://beagle.chat/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/beam-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/beam-testnet.mdx deleted file mode 100644 index 7c9b8164eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beam-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Beam Testnet - BEAM Blockchain Network -description: Explore Beam Testnet, a blockchain network with chain ID 13337. Learn about its native currency, Beam, and how to interact with the network. ---- - -# Beam Testnet - -Beam Testnet is a blockchain network with chain ID 13337. - -## Network Details - -- **Chain ID**: 13337 -- **Chain Name**: BEAM -- **Short Name**: beam-testnet -- **Network ID**: 13337 -- **Currency**: - - **Name**: Beam - - **Symbol**: BEAM - - **Decimals**: 18 - -## RPC URLs - -Beam Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Beam Testnet Block Explorers - -- [Beam Explorer](https://subnets-test.avax.network/beam) - -## Additional Information - -- **Official Website**: https://www.onbeam.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Beam Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/beam.mdx b/docs/pages/solutions/chainlist/non-integrated/beam.mdx deleted file mode 100644 index ba82a8edba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beam.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Beam - BEAM Blockchain Network -description: Explore Beam, a blockchain network with chain ID 4337. Learn about its native currency, Beam, and how to interact with the network. ---- - -# Beam - -Beam is a blockchain network with chain ID 4337. - -## Network Details - -- **Chain ID**: 4337 -- **Chain Name**: BEAM -- **Short Name**: beam -- **Network ID**: 4337 -- **Currency**: - - **Name**: Beam - - **Symbol**: BEAM - - **Decimals**: 18 - -## RPC URLs - -Beam can be accessed through the following RPC endpoints: - -- https://build.onbeam.com/rpc -- wss://build.onbeam.com/ws -- https://subnets.avax.network/beam/mainnet/rpc -- wss://subnets.avax.network/beam/mainnet/ws - -## Beam Block Explorers - -- [Beam Explorer](https://subnets.avax.network/beam) - -## Additional Information - -- **Official Website**: https://www.onbeam.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/beaneco-smartchain.mdx b/docs/pages/solutions/chainlist/non-integrated/beaneco-smartchain.mdx deleted file mode 100644 index e04674f38d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beaneco-smartchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BeanEco SmartChain - BESC Blockchain Network -description: Explore BeanEco SmartChain, a blockchain network with chain ID 535037. Learn about its native currency, BeanEco SmartChain, and how to interact with the network. ---- - -# BeanEco SmartChain - -BeanEco SmartChain is a blockchain network with chain ID 535037. - -## Network Details - -- **Chain ID**: 535037 -- **Chain Name**: BESC -- **Short Name**: BESC -- **Network ID**: 535037 -- **Currency**: - - **Name**: BeanEco SmartChain - - **Symbol**: BESC - - **Decimals**: 18 - -## RPC URLs - -BeanEco SmartChain can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.bescscan.io - -## BeanEco SmartChain Block Explorers - -- [bescscan](https://Bescscan.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bear-network-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bear-network-chain-testnet.mdx deleted file mode 100644 index b68a9ba98c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bear-network-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bear Network Chain Testnet - BRNKCTEST Blockchain Network -description: Explore Bear Network Chain Testnet, a blockchain network with chain ID 751230. Learn about its native currency, Bear Network Chain Testnet Token, and how to interact with the network. ---- - -# Bear Network Chain Testnet - -Bear Network Chain Testnet is a blockchain network with chain ID 751230. - -## Network Details - -- **Chain ID**: 751230 -- **Chain Name**: BRNKCTEST -- **Short Name**: BRNKCTEST -- **Network ID**: 751230 -- **Currency**: - - **Name**: Bear Network Chain Testnet Token - - **Symbol**: tBRNKC - - **Decimals**: 18 - -## RPC URLs - -Bear Network Chain Testnet can be accessed through the following RPC endpoints: - -- https://brnkc-test.bearnetwork.net - -## Bear Network Chain Testnet Block Explorers - -- [brnktestscan](https://brnktest-scan.bearnetwork.net) - -## Additional Information - -- **Official Website**: https://bearnetwork.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bear Network Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bear-network-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bear-network-chain.mdx deleted file mode 100644 index d01f54c8f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bear-network-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bear Network Chain Mainnet - BRNKC Blockchain Network -description: Explore Bear Network Chain Mainnet, a blockchain network with chain ID 641230. Learn about its native currency, Bear Network Chain Native Token, and how to interact with the network. ---- - -# Bear Network Chain Mainnet - -Bear Network Chain Mainnet is a blockchain network with chain ID 641230. - -## Network Details - -- **Chain ID**: 641230 -- **Chain Name**: BRNKC -- **Short Name**: BRNKC -- **Network ID**: 641230 -- **Currency**: - - **Name**: Bear Network Chain Native Token - - **Symbol**: BRNKC - - **Decimals**: 18 - -## RPC URLs - -Bear Network Chain Mainnet can be accessed through the following RPC endpoints: - -- https://brnkc-mainnet.bearnetwork.net -- https://brnkc-mainnet1.bearnetwork.net - -## Bear Network Chain Mainnet Block Explorers - -- [brnkscan](https://brnkscan.bearnetwork.net) - -## Additional Information - -- **Official Website**: https://bearnetwork.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/beone-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/beone-chain.mdx deleted file mode 100644 index 3d793186cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beone-chain.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: BeOne Chain Mainnet - BOC Blockchain Network -description: Explore BeOne Chain Mainnet, a blockchain network with chain ID 818. Learn about its native currency, BeOne Chain Mainnet, and how to interact with the network. ---- - -# BeOne Chain Mainnet - -BeOne Chain Mainnet is a blockchain network with chain ID 818. - -## Network Details - -- **Chain ID**: 818 -- **Chain Name**: BOC -- **Short Name**: BOC -- **Network ID**: 818 -- **Currency**: - - **Name**: BeOne Chain Mainnet - - **Symbol**: BOC - - **Decimals**: 18 - -## RPC URLs - -BeOne Chain Mainnet can be accessed through the following RPC endpoints: - -- https://dataseed1.beonechain.com -- https://dataseed2.beonechain.com -- https://dataseed-us1.beonechain.com -- https://dataseed-us2.beonechain.com -- https://dataseed-uk1.beonechain.com -- https://dataseed-uk2.beonechain.com - -## BeOne Chain Mainnet Block Explorers - -- [BeOne Chain Mainnet](https://beonescan.com) - -## Additional Information - -- **Official Website**: https://beonechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/berachain-artio.mdx b/docs/pages/solutions/chainlist/non-integrated/berachain-artio.mdx deleted file mode 100644 index cadb385d75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/berachain-artio.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Berachain Artio - Berachain Artio Blockchain Network -description: Explore Berachain Artio, a blockchain network with chain ID 80085. Learn about its native currency, BERA Token, and how to interact with the network. ---- - -# Berachain Artio - -Berachain Artio is a blockchain network with chain ID 80085. - -## Network Details - -- **Chain ID**: 80085 -- **Chain Name**: Berachain Artio -- **Short Name**: berachainArtio -- **Network ID**: 80085 -- **Currency**: - - **Name**: BERA Token - - **Symbol**: BERA - - **Decimals**: 18 - -## RPC URLs - -Berachain Artio can be accessed through the following RPC endpoints: - -- https://artio.rpc.berachain.com -- https://rpc.ankr.com/berachain_testnet - -## Berachain Artio Block Explorers - -- [Beratrail](https://artio.beratrail.io) - -## Additional Information - -- **Official Website**: https://www.berachain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Berachain Artio Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/berachain-bartio.mdx b/docs/pages/solutions/chainlist/non-integrated/berachain-bartio.mdx deleted file mode 100644 index d10680fa4e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/berachain-bartio.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Berachain bArtio - Berachain bArtio Blockchain Network -description: Explore Berachain bArtio, a blockchain network with chain ID 80084. Learn about its native currency, BERA Token, and how to interact with the network. ---- - -# Berachain bArtio - -Berachain bArtio is a blockchain network with chain ID 80084. - -## Network Details - -- **Chain ID**: 80084 -- **Chain Name**: Berachain bArtio -- **Short Name**: berachainbArtio -- **Network ID**: 80084 -- **Currency**: - - **Name**: BERA Token - - **Symbol**: BERA - - **Decimals**: 18 - -## RPC URLs - -Berachain bArtio can be accessed through the following RPC endpoints: - -- https://bartio.rpc.berachain.com -- https://bera-testnet.nodeinfra.com -- https://bartio.rpc.b-harvest.io - -## Berachain bArtio Block Explorers - -- [Beratrail](https://bartio.beratrail.io) - -## Additional Information - -- **Official Website**: https://www.berachain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Berachain bArtio Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/beresheet-bereevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/beresheet-bereevm-testnet.mdx deleted file mode 100644 index 232dfe7167..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beresheet-bereevm-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Beresheet BereEVM Testnet - EDG Blockchain Network -description: Explore Beresheet BereEVM Testnet, a blockchain network with chain ID 2022. Learn about its native currency, Testnet EDG, and how to interact with the network. ---- - -# Beresheet BereEVM Testnet - -Beresheet BereEVM Testnet is a blockchain network with chain ID 2022. - -## Network Details - -- **Chain ID**: 2022 -- **Chain Name**: EDG -- **Short Name**: edgt -- **Network ID**: 2022 -- **Currency**: - - **Name**: Testnet EDG - - **Symbol**: tEDG - - **Decimals**: 18 - -## RPC URLs - -Beresheet BereEVM Testnet can be accessed through the following RPC endpoints: - -- https://beresheet-evm.jelliedowl.net -- wss://beresheet.jelliedowl.net - -## Beresheet BereEVM Testnet Block Explorers - -- [Edgscan by Bharathcoorg](https://testnet.edgscan.live) - -## Additional Information - -- **Official Website**: https://edgeware.io/build - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Beresheet BereEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/berylbit.mdx b/docs/pages/solutions/chainlist/non-integrated/berylbit.mdx deleted file mode 100644 index 69c3f83fae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/berylbit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BerylBit Mainnet - BRB Blockchain Network -description: Explore BerylBit Mainnet, a blockchain network with chain ID 9012. Learn about its native currency, BerylBit Chain Native Token, and how to interact with the network. ---- - -# BerylBit Mainnet - -BerylBit Mainnet is a blockchain network with chain ID 9012. - -## Network Details - -- **Chain ID**: 9012 -- **Chain Name**: BRB -- **Short Name**: brb -- **Network ID**: 9012 -- **Currency**: - - **Name**: BerylBit Chain Native Token - - **Symbol**: BRB - - **Decimals**: 18 - -## RPC URLs - -BerylBit Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.berylbit.io - -## BerylBit Mainnet Block Explorers - -- [berylbit-explorer](https://explorer.berylbit.io) - -## Additional Information - -- **Official Website**: https://www.beryl-bit.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/beverly-hills.mdx b/docs/pages/solutions/chainlist/non-integrated/beverly-hills.mdx deleted file mode 100644 index 88b98ccfee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beverly-hills.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Beverly Hills - ETH Blockchain Network -description: Explore Beverly Hills, a blockchain network with chain ID 90210. Learn about its native currency, Beverly Hills Testnet Ether, and how to interact with the network. ---- - -# Beverly Hills - -Beverly Hills is a blockchain network with chain ID 90210. - -## Network Details - -- **Chain ID**: 90210 -- **Chain Name**: ETH -- **Short Name**: bvhl -- **Network ID**: 90210 -- **Currency**: - - **Name**: Beverly Hills Testnet Ether - - **Symbol**: BVE - - **Decimals**: 18 - -## RPC URLs - -Beverly Hills can be accessed through the following RPC endpoints: - -- https://rpc.beverlyhills.ethdevops.io:8545 - -## Beverly Hills Block Explorers - -- [Beverly Hills explorer](https://explorer.beverlyhills.ethdevops.io) - -## Additional Information - -- **Official Website**: https://beverlyhills.ethdevops.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Beverly Hills Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bevm-canary.mdx b/docs/pages/solutions/chainlist/non-integrated/bevm-canary.mdx deleted file mode 100644 index 9a5c3af3f3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bevm-canary.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BEVM Canary - ChainX Blockchain Network -description: Explore BEVM Canary, a blockchain network with chain ID 1501. Learn about its native currency, BTC, and how to interact with the network. ---- - -# BEVM Canary - -BEVM Canary is a blockchain network with chain ID 1501. - -## Network Details - -- **Chain ID**: 1501 -- **Chain Name**: ChainX -- **Short Name**: chainx -- **Network ID**: 1501 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -BEVM Canary can be accessed through the following RPC endpoints: - -- https://rpc-canary-1.bevm.io/ -- https://rpc-canary-2.bevm.io/ - -## BEVM Canary Block Explorers - -- [bevm canary scan](https://scan-canary.bevm.io) - -## Additional Information - -- **Official Website**: https://chainx.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bevm-testnet.mdx deleted file mode 100644 index 93bbacf4fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bevm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BEVM Testnet - BEVM Blockchain Network -description: Explore BEVM Testnet, a blockchain network with chain ID 11503. Learn about its native currency, BTC, and how to interact with the network. ---- - -# BEVM Testnet - -BEVM Testnet is a blockchain network with chain ID 11503. - -## Network Details - -- **Chain ID**: 11503 -- **Chain Name**: BEVM -- **Short Name**: bevm-test -- **Network ID**: 11503 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -BEVM Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bevm.io/ - -## BEVM Testnet Block Explorers - -- [bevm testnet scan](https://scan-testnet.bevm.io) - -## Additional Information - -- **Official Website**: https://bevm.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bevm.mdx b/docs/pages/solutions/chainlist/non-integrated/bevm.mdx deleted file mode 100644 index 232763e5f8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bevm.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BEVM Mainnet - BEVM Blockchain Network -description: Explore BEVM Mainnet, a blockchain network with chain ID 11501. Learn about its native currency, BTC, and how to interact with the network. ---- - -# BEVM Mainnet - -BEVM Mainnet is a blockchain network with chain ID 11501. - -## Network Details - -- **Chain ID**: 11501 -- **Chain Name**: BEVM -- **Short Name**: bevm -- **Network ID**: 11501 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -BEVM Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet-1.bevm.io/ -- https://rpc-mainnet-2.bevm.io/ - -## BEVM Mainnet Block Explorers - -- [bevm mainnet scan](https://scan-mainnet.bevm.io) - -## Additional Information - -- **Official Website**: https://bevm.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/beyond-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/beyond-sepolia.mdx deleted file mode 100644 index 7baee94777..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beyond-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Beyond Sepolia - ETH Blockchain Network -description: Explore Beyond Sepolia, a blockchain network with chain ID 22985. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Beyond Sepolia - -Beyond Sepolia is a blockchain network with chain ID 22985. - -## Network Details - -- **Chain ID**: 22985 -- **Chain Name**: ETH -- **Short Name**: beyond-sepolia -- **Network ID**: 22985 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Beyond Sepolia can be accessed through the following RPC endpoints: - -- https://rpc-beyond-sepolia-3wng1zu3j3.t.conduit.xyz - -## Beyond Sepolia Block Explorers - -- [beyond-sepolia-3wng1zu3j3 explorer](https://explorerl2new-beyond-sepolia-3wng1zu3j3.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Beyond Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/beyondchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/beyondchain-testnet.mdx deleted file mode 100644 index 093f03f60e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/beyondchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BeyondChain Testnet - BEYOND Blockchain Network -description: Explore BeyondChain Testnet, a blockchain network with chain ID 59185. Learn about its native currency, BEYOND, and how to interact with the network. ---- - -# BeyondChain Testnet - -BeyondChain Testnet is a blockchain network with chain ID 59185. - -## Network Details - -- **Chain ID**: 59185 -- **Chain Name**: BEYOND -- **Short Name**: beyond-indigo-playground-xz87sjgmaj -- **Network ID**: 59185 -- **Currency**: - - **Name**: BEYOND - - **Symbol**: BEYOND - - **Decimals**: 18 - -## RPC URLs - -BeyondChain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-beyond-indigo-playground-xz87sjgmaj.t.conduit.xyz - -## BeyondChain Testnet Block Explorers - -- [Beyond](https://explorerl2new-beyond-indigo-playground-xz87sjgmaj.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BeyondChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bg-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bg-testnet.mdx deleted file mode 100644 index 3fd14bae4e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bg-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: bg-testnet - Avalanche Blockchain Network -description: Explore bg-testnet, a blockchain network with chain ID 28029. Learn about its native currency, bg-testnet Token, and how to interact with the network. ---- - -# bg-testnet - -bg-testnet is a blockchain network with chain ID 28029. - -## Network Details - -- **Chain ID**: 28029 -- **Chain Name**: Avalanche -- **Short Name**: bg-testnet -- **Network ID**: 28029 -- **Currency**: - - **Name**: bg-testnet Token - - **Symbol**: BLOCK - - **Decimals**: 18 - -## RPC URLs - -bg-testnet can be accessed through the following RPC endpoints: - -- https://testnet-bgtestnet-f985c.avax-test.network/ext/bc/2pY6nfj3GKvCr5pt77bH78TpomGak5RBut9NdrRBcC63QoWRvV/rpc?token=6c909ebd27b14e4a6f8032fdb3363e6f61309ee4043da92db68eb3268dc0b7d0 - -## bg-testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## bg-testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bifrost-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bifrost-testnet.mdx deleted file mode 100644 index 1ac0e1621c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bifrost-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bifrost Testnet - BFC Blockchain Network -description: Explore Bifrost Testnet, a blockchain network with chain ID 49088. Learn about its native currency, Bifrost, and how to interact with the network. ---- - -# Bifrost Testnet - -Bifrost Testnet is a blockchain network with chain ID 49088. - -## Network Details - -- **Chain ID**: 49088 -- **Chain Name**: BFC -- **Short Name**: tbfc -- **Network ID**: 49088 -- **Currency**: - - **Name**: Bifrost - - **Symbol**: BFC - - **Decimals**: 18 - -## RPC URLs - -Bifrost Testnet can be accessed through the following RPC endpoints: - -- https://public-01.testnet.bifrostnetwork.com/rpc -- https://public-02.testnet.bifrostnetwork.com/rpc - -## Bifrost Testnet Block Explorers - -- [explorer-thebifrost](https://explorer.testnet.bifrostnetwork.com) - -## Additional Information - -- **Official Website**: https://bifrostnetwork.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bifrost Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bifrost.mdx b/docs/pages/solutions/chainlist/non-integrated/bifrost.mdx deleted file mode 100644 index cea3b951b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bifrost.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bifrost Mainnet - BFC Blockchain Network -description: Explore Bifrost Mainnet, a blockchain network with chain ID 3068. Learn about its native currency, Bifrost, and how to interact with the network. ---- - -# Bifrost Mainnet - -Bifrost Mainnet is a blockchain network with chain ID 3068. - -## Network Details - -- **Chain ID**: 3068 -- **Chain Name**: BFC -- **Short Name**: bfc -- **Network ID**: 3068 -- **Currency**: - - **Name**: Bifrost - - **Symbol**: BFC - - **Decimals**: 18 - -## RPC URLs - -Bifrost Mainnet can be accessed through the following RPC endpoints: - -- https://public-01.mainnet.bifrostnetwork.com/rpc -- https://public-02.mainnet.bifrostnetwork.com/rpc - -## Bifrost Mainnet Block Explorers - -- [explorer-thebifrost](https://explorer.mainnet.bifrostnetwork.com) - -## Additional Information - -- **Official Website**: https://bifrostnetwork.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bigshortbets-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bigshortbets-testnet.mdx deleted file mode 100644 index 7bcb5936bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bigshortbets-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: BigShortBets Testnet - BIGSB Testnet Blockchain Network -description: Explore BigShortBets Testnet, a blockchain network with chain ID 2136. Learn about its native currency, Dolarz, and how to interact with the network. ---- - -# BigShortBets Testnet - -BigShortBets Testnet is a blockchain network with chain ID 2136. - -## Network Details - -- **Chain ID**: 2136 -- **Chain Name**: BIGSB Testnet -- **Short Name**: bigsb_testnet -- **Network ID**: 2136 -- **Currency**: - - **Name**: Dolarz - - **Symbol**: Dolarz - - **Decimals**: 18 - -## RPC URLs - -BigShortBets Testnet can be accessed through the following RPC endpoints: - -- https://test-market.bigsb.network -- wss://test-market.bigsb.network - -## BigShortBets Testnet Block Explorers - -- [Polkadot.js](https://polkadot.js.org/apps/?rpc=wss://test-market.bigsb.network#/explorer) - -## Additional Information - -- **Official Website**: https://bigshortbets.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BigShortBets Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bigshortbets.mdx b/docs/pages/solutions/chainlist/non-integrated/bigshortbets.mdx deleted file mode 100644 index 9a5419d1a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bigshortbets.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BigShortBets - BIGSB Blockchain Network -description: Explore BigShortBets, a blockchain network with chain ID 2137. Learn about its native currency, USD Coin, and how to interact with the network. ---- - -# BigShortBets - -BigShortBets is a blockchain network with chain ID 2137. - -## Network Details - -- **Chain ID**: 2137 -- **Chain Name**: BIGSB -- **Short Name**: bigsb -- **Network ID**: 2137 -- **Currency**: - - **Name**: USD Coin - - **Symbol**: USDC - - **Decimals**: 18 - -## RPC URLs - -BigShortBets can be accessed through the following RPC endpoints: - -- https://market.bigsb.io -- wss://market.bigsb.io - -## BigShortBets Block Explorers - - - -## Additional Information - -- **Official Website**: https://bigshortbets.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/binary-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/binary-sepolia.mdx deleted file mode 100644 index 1281dd8ffd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/binary-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Binary Sepolia - The Binary Holdings Blockchain Network -description: Explore Binary Sepolia, a blockchain network with chain ID 625. Learn about its native currency, Test BNRY, and how to interact with the network. ---- - -# Binary Sepolia - -Binary Sepolia is a blockchain network with chain ID 625. - -## Network Details - -- **Chain ID**: 625 -- **Chain Name**: The Binary Holdings -- **Short Name**: thebinaryholdings-sepolia -- **Network ID**: 625 -- **Currency**: - - **Name**: Test BNRY - - **Symbol**: BNRY - - **Decimals**: 18 - -## RPC URLs - -Binary Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.testnet.thebinaryholdings.com - -## Binary Sepolia Block Explorers - -- [Tracehawk](https://explorer.sepolia.thebinaryholdings.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Binary Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/binary.mdx b/docs/pages/solutions/chainlist/non-integrated/binary.mdx deleted file mode 100644 index ab934ae37b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/binary.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Binary Mainnet - The Binary Holdings Blockchain Network -description: Explore Binary Mainnet, a blockchain network with chain ID 624. Learn about its native currency, Binary Token, and how to interact with the network. ---- - -# Binary Mainnet - -Binary Mainnet is a blockchain network with chain ID 624. - -## Network Details - -- **Chain ID**: 624 -- **Chain Name**: The Binary Holdings -- **Short Name**: thebinaryholdings-mainnet -- **Network ID**: 624 -- **Currency**: - - **Name**: Binary Token - - **Symbol**: BNRY - - **Decimals**: 18 - -## RPC URLs - -Binary Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.zero.thebinaryholdings.com - -## Binary Mainnet Block Explorers - -- [Tracehawk](https://explorer.thebinaryholdings.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/binarychain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/binarychain-testnet.mdx deleted file mode 100644 index 2fa4cd2333..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/binarychain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BinaryChain Testnet - BinaryChain Blockchain Network -description: Explore BinaryChain Testnet, a blockchain network with chain ID 9876. Learn about its native currency, BINARY, and how to interact with the network. ---- - -# BinaryChain Testnet - -BinaryChain Testnet is a blockchain network with chain ID 9876. - -## Network Details - -- **Chain ID**: 9876 -- **Chain Name**: BinaryChain -- **Short Name**: binarytestnet -- **Network ID**: 9876 -- **Currency**: - - **Name**: BINARY - - **Symbol**: BNRY - - **Decimals**: 18 - -## RPC URLs - -BinaryChain Testnet can be accessed through the following RPC endpoints: - -- https://rpctestnet.binarychain.org - -## BinaryChain Testnet Block Explorers - -- [BinaryChain Testnet Explorer](https://explorer.testnet.binarychain.org) - -## Additional Information - -- **Official Website**: https://binarychain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BinaryChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitchain.mdx b/docs/pages/solutions/chainlist/non-integrated/bitchain.mdx deleted file mode 100644 index 79a14a1dbc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitchain Mainnet - Bit Blockchain Network -description: Explore Bitchain Mainnet, a blockchain network with chain ID 198. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# Bitchain Mainnet - -Bitchain Mainnet is a blockchain network with chain ID 198. - -## Network Details - -- **Chain ID**: 198 -- **Chain Name**: Bit -- **Short Name**: bit -- **Network ID**: 198 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Bitchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.bitchain.biz/ - -## Bitchain Mainnet Block Explorers - -- [Bitchain Scan](https://explorer.bitchain.biz) - -## Additional Information - -- **Official Website**: https://www.bitchain.biz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitcichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitcichain-testnet.mdx deleted file mode 100644 index 9e881bd62c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitcichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bitcichain Testnet - TBITCI Blockchain Network -description: Explore Bitcichain Testnet, a blockchain network with chain ID 1908. Learn about its native currency, Test Bitci, and how to interact with the network. ---- - -# Bitcichain Testnet - -Bitcichain Testnet is a blockchain network with chain ID 1908. - -## Network Details - -- **Chain ID**: 1908 -- **Chain Name**: TBITCI -- **Short Name**: tbitci -- **Network ID**: 1908 -- **Currency**: - - **Name**: Test Bitci - - **Symbol**: TBITCI - - **Decimals**: 18 - -## RPC URLs - -Bitcichain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bitcichain.com - -## Bitcichain Testnet Block Explorers - -- [Bitci Explorer Testnet](https://testnet.bitciexplorer.com) - -## Additional Information - -- **Official Website**: https://www.bitcichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitcichain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitcichain.mdx b/docs/pages/solutions/chainlist/non-integrated/bitcichain.mdx deleted file mode 100644 index cd2f899d63..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitcichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitcichain Mainnet - BITCI Blockchain Network -description: Explore Bitcichain Mainnet, a blockchain network with chain ID 1907. Learn about its native currency, Bitci, and how to interact with the network. ---- - -# Bitcichain Mainnet - -Bitcichain Mainnet is a blockchain network with chain ID 1907. - -## Network Details - -- **Chain ID**: 1907 -- **Chain Name**: BITCI -- **Short Name**: bitci -- **Network ID**: 1907 -- **Currency**: - - **Name**: Bitci - - **Symbol**: BITCI - - **Decimals**: 18 - -## RPC URLs - -Bitcichain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.bitci.com - -## Bitcichain Mainnet Block Explorers - -- [Bitci Explorer](https://bitciexplorer.com) - -## Additional Information - -- **Official Website**: https://www.bitcichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitcoin-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bitcoin-chain.mdx deleted file mode 100644 index 519fb65bb0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitcoin-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitcoin Chain - BTC Blockchain Network -description: Explore Bitcoin Chain, a blockchain network with chain ID 8086. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# Bitcoin Chain - -Bitcoin Chain is a blockchain network with chain ID 8086. - -## Network Details - -- **Chain ID**: 8086 -- **Chain Name**: BTC -- **Short Name**: Bitcoin -- **Network ID**: 8086 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Bitcoin Chain can be accessed through the following RPC endpoints: - -- https://rpc.biteth.org - -## Bitcoin Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://biteth.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitcoin-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/bitcoin-evm.mdx deleted file mode 100644 index fe2737f58b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitcoin-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitcoin EVM - Bitcoin EVM Blockchain Network -description: Explore Bitcoin EVM, a blockchain network with chain ID 2203. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# Bitcoin EVM - -Bitcoin EVM is a blockchain network with chain ID 2203. - -## Network Details - -- **Chain ID**: 2203 -- **Chain Name**: Bitcoin EVM -- **Short Name**: BTC -- **Network ID**: 2203 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Bitcoin EVM can be accessed through the following RPC endpoints: - -- https://connect.bitcoinevm.com - -## Bitcoin EVM Block Explorers - -- [Explorer](https://explorer.bitcoinevm.com) - -## Additional Information - -- **Official Website**: https://bitcoinevm.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitcoin-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitcoin-protocol-testnet.mdx deleted file mode 100644 index dde0bae758..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitcoin-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bitcoin Protocol Testnet - BTCP Testnet Blockchain Network -description: Explore Bitcoin Protocol Testnet, a blockchain network with chain ID 1227. Learn about its native currency, BTC Protocol, and how to interact with the network. ---- - -# Bitcoin Protocol Testnet - -Bitcoin Protocol Testnet is a blockchain network with chain ID 1227. - -## Network Details - -- **Chain ID**: 1227 -- **Chain Name**: BTCP Testnet -- **Short Name**: BTCP -- **Network ID**: 1227 -- **Currency**: - - **Name**: BTC Protocol - - **Symbol**: BTCP - - **Decimals**: 18 - -## RPC URLs - -Bitcoin Protocol Testnet can be accessed through the following RPC endpoints: - -- https://testnet-chain.btcprotocol.io/ - -## Bitcoin Protocol Testnet Block Explorers - -- [BTCP explorer](https://explorer.btcprotocol.io) - -## Additional Information - -- **Official Website**: https://btcprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitcoin Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitfinity-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitfinity-network-testnet.mdx deleted file mode 100644 index f8d5b56431..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitfinity-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bitfinity Network Testnet - BFT Blockchain Network -description: Explore Bitfinity Network Testnet, a blockchain network with chain ID 355113. Learn about its native currency, Bitfinity Token, and how to interact with the network. ---- - -# Bitfinity Network Testnet - -Bitfinity Network Testnet is a blockchain network with chain ID 355113. - -## Network Details - -- **Chain ID**: 355113 -- **Chain Name**: BFT -- **Short Name**: bitfinity-testnet -- **Network ID**: 355113 -- **Currency**: - - **Name**: Bitfinity Token - - **Symbol**: BFT - - **Decimals**: 18 - -## RPC URLs - -Bitfinity Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bitfinity.network - -## Bitfinity Network Testnet Block Explorers - -- [Bitfinity Testnet Block Explorer](https://explorer.testnet.bitfinity.network) -- [Bitfinity Testnet Block Explorer](https://bitfinity-test.dex.guru) - -## Additional Information - -- **Official Website**: https://bitfinity.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitfinity Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitfinity-network.mdx b/docs/pages/solutions/chainlist/non-integrated/bitfinity-network.mdx deleted file mode 100644 index 6faea20d77..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitfinity-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitfinity Network Mainnet - BFT Blockchain Network -description: Explore Bitfinity Network Mainnet, a blockchain network with chain ID 355110. Learn about its native currency, Bitfinity Token, and how to interact with the network. ---- - -# Bitfinity Network Mainnet - -Bitfinity Network Mainnet is a blockchain network with chain ID 355110. - -## Network Details - -- **Chain ID**: 355110 -- **Chain Name**: BFT -- **Short Name**: bitfinity-mainnet -- **Network ID**: 355110 -- **Currency**: - - **Name**: Bitfinity Token - - **Symbol**: BFT - - **Decimals**: 18 - -## RPC URLs - -Bitfinity Network Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.bitfinity.network - -## Bitfinity Network Mainnet Block Explorers - -- [Bitfinity Mainnet Block Explorer](https://explorer.mainnet.bitfinity.network) - -## Additional Information - -- **Official Website**: https://bitfinity.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitgert.mdx b/docs/pages/solutions/chainlist/non-integrated/bitgert.mdx deleted file mode 100644 index 4d7db0c03e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitgert.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Bitgert Mainnet - Brise Blockchain Network -description: Explore Bitgert Mainnet, a blockchain network with chain ID 32520. Learn about its native currency, Bitrise Token, and how to interact with the network. ---- - -# Bitgert Mainnet - -Bitgert Mainnet is a blockchain network with chain ID 32520. - -## Network Details - -- **Chain ID**: 32520 -- **Chain Name**: Brise -- **Short Name**: Brise -- **Network ID**: 32520 -- **Currency**: - - **Name**: Bitrise Token - - **Symbol**: Brise - - **Decimals**: 18 - -## RPC URLs - -Bitgert Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.icecreamswap.com -- https://mainnet-rpc.brisescan.com -- https://chainrpc.com -- https://serverrpc.com - -## Bitgert Mainnet Block Explorers - -- [Brise Scan](https://brisescan.com) - -## Additional Information - -- **Official Website**: https://bitgert.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitica-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bitica-chain.mdx deleted file mode 100644 index a4bbe270a5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitica-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitica Chain Mainnet - BDCC Blockchain Network -description: Explore Bitica Chain Mainnet, a blockchain network with chain ID 188710. Learn about its native currency, Bitica Coin, and how to interact with the network. ---- - -# Bitica Chain Mainnet - -Bitica Chain Mainnet is a blockchain network with chain ID 188710. - -## Network Details - -- **Chain ID**: 188710 -- **Chain Name**: BDCC -- **Short Name**: bdcc -- **Network ID**: 188710 -- **Currency**: - - **Name**: Bitica Coin - - **Symbol**: BDCC - - **Decimals**: 18 - -## RPC URLs - -Bitica Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.biticablockchain.com/ - -## Bitica Chain Mainnet Block Explorers - -- [Bitica DPOS Blockchain Explorer](https://biticablockchain.com) - -## Additional Information - -- **Official Website**: https://biticablockchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitindi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitindi-testnet.mdx deleted file mode 100644 index 591b51401c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitindi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bitindi Testnet - BNI Blockchain Network -description: Explore Bitindi Testnet, a blockchain network with chain ID 4096. Learn about its native currency, BNI, and how to interact with the network. ---- - -# Bitindi Testnet - -Bitindi Testnet is a blockchain network with chain ID 4096. - -## Network Details - -- **Chain ID**: 4096 -- **Chain Name**: BNI -- **Short Name**: BNIt -- **Network ID**: 4096 -- **Currency**: - - **Name**: BNI - - **Symbol**: $BNI - - **Decimals**: 18 - -## RPC URLs - -Bitindi Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.bitindi.org - -## Bitindi Testnet Block Explorers - -- [Bitindi](https://testnet.bitindiscan.com) - -## Additional Information - -- **Official Website**: https://bitindi.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitindi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitindi.mdx b/docs/pages/solutions/chainlist/non-integrated/bitindi.mdx deleted file mode 100644 index 804b00cc1b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitindi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bitindi Mainnet - BNI Blockchain Network -description: Explore Bitindi Mainnet, a blockchain network with chain ID 4099. Learn about its native currency, BNI, and how to interact with the network. ---- - -# Bitindi Mainnet - -Bitindi Mainnet is a blockchain network with chain ID 4099. - -## Network Details - -- **Chain ID**: 4099 -- **Chain Name**: BNI -- **Short Name**: BNIm -- **Network ID**: 4099 -- **Currency**: - - **Name**: BNI - - **Symbol**: $BNI - - **Decimals**: 18 - -## RPC URLs - -Bitindi Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.bitindi.org - -## Bitindi Mainnet Block Explorers - -- [Bitindi](https://bitindiscan.com) - -## Additional Information - -- **Official Website**: https://bitindi.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitkub-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitkub-chain-testnet.mdx deleted file mode 100644 index f78d0178a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitkub-chain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bitkub Chain Testnet - BKC Blockchain Network -description: Explore Bitkub Chain Testnet, a blockchain network with chain ID 25925. Learn about its native currency, Bitkub Coin, and how to interact with the network. ---- - -# Bitkub Chain Testnet - -Bitkub Chain Testnet is a blockchain network with chain ID 25925. - -## Network Details - -- **Chain ID**: 25925 -- **Chain Name**: BKC -- **Short Name**: bkct -- **Network ID**: 25925 -- **Currency**: - - **Name**: Bitkub Coin - - **Symbol**: tKUB - - **Decimals**: 18 - -## RPC URLs - -Bitkub Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.bitkubchain.io -- wss://wss-testnet.bitkubchain.io - -## Bitkub Chain Testnet Block Explorers - -- [bkcscan-testnet](https://testnet.bkcscan.com) - -## Additional Information - -- **Official Website**: https://www.bitkubchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitkub Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitkub-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bitkub-chain.mdx deleted file mode 100644 index 2c4d85cac9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitkub-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bitkub Chain - BKC Blockchain Network -description: Explore Bitkub Chain, a blockchain network with chain ID 96. Learn about its native currency, Bitkub Coin, and how to interact with the network. ---- - -# Bitkub Chain - -Bitkub Chain is a blockchain network with chain ID 96. - -## Network Details - -- **Chain ID**: 96 -- **Chain Name**: BKC -- **Short Name**: bkc -- **Network ID**: 96 -- **Currency**: - - **Name**: Bitkub Coin - - **Symbol**: KUB - - **Decimals**: 18 - -## RPC URLs - -Bitkub Chain can be accessed through the following RPC endpoints: - -- https://rpc.bitkubchain.io -- wss://wss.bitkubchain.io - -## Bitkub Chain Block Explorers - -- [Bitkub Chain Explorer](https://bkcscan.com) - -## Additional Information - -- **Official Website**: https://www.bitkubchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitlayer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitlayer-testnet.mdx deleted file mode 100644 index 2c0fe0b6d2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitlayer-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Bitlayer Testnet - Bitlayer Blockchain Network -description: Explore Bitlayer Testnet, a blockchain network with chain ID 200810. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Bitlayer Testnet - -Bitlayer Testnet is a blockchain network with chain ID 200810. - -## Network Details - -- **Chain ID**: 200810 -- **Chain Name**: Bitlayer -- **Short Name**: btrt -- **Network ID**: 200810 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Bitlayer Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Bitlayer Testnet Block Explorers - -- [bitlayer testnet scan](https://testnet.btrscan.com) - -## Additional Information - -- **Official Website**: https://docs.bitlayer.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitlayer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitlayer.mdx b/docs/pages/solutions/chainlist/non-integrated/bitlayer.mdx deleted file mode 100644 index 7f68b6fa68..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitlayer.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bitlayer Mainnet - Bitlayer Blockchain Network -description: Explore Bitlayer Mainnet, a blockchain network with chain ID 200901. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Bitlayer Mainnet - -Bitlayer Mainnet is a blockchain network with chain ID 200901. - -## Network Details - -- **Chain ID**: 200901 -- **Chain Name**: Bitlayer -- **Short Name**: btr -- **Network ID**: 200901 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Bitlayer Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.bitlayer.org -- https://rpc.bitlayer-rpc.com -- https://rpc.ankr.com/bitlayer -- https://rpc-bitlayer.rockx.com -- wss://ws.bitlayer.org -- wss://ws.bitlayer-rpc.com - -## Bitlayer Mainnet Block Explorers - -- [bitlayer mainnet scan](https://www.btrscan.com) - -## Additional Information - -- **Official Website**: https://docs.bitlayer.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitnet.mdx deleted file mode 100644 index 90c0ef5711..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitnet.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bitnet - BTN Blockchain Network -description: Explore Bitnet, a blockchain network with chain ID 210. Learn about its native currency, Bitnet, and how to interact with the network. ---- - -# Bitnet - -Bitnet is a blockchain network with chain ID 210. - -## Network Details - -- **Chain ID**: 210 -- **Chain Name**: BTN -- **Short Name**: BTN -- **Network ID**: 210 -- **Currency**: - - **Name**: Bitnet - - **Symbol**: BTN - - **Decimals**: 18 - -## RPC URLs - -Bitnet can be accessed through the following RPC endpoints: - -- https://rpc.bitnet.money -- https://rpc.btnscan.com - -## Bitnet Block Explorers - -- [Bitnet Explorer](https://btnscan.com) - -## Additional Information - -- **Official Website**: https://bitnet.money - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitrock-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bitrock-testnet.mdx deleted file mode 100644 index 33feadb867..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitrock-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bitrock Testnet - Bitrock Blockchain Network -description: Explore Bitrock Testnet, a blockchain network with chain ID 7771. Learn about its native currency, BITROCK, and how to interact with the network. ---- - -# Bitrock Testnet - -Bitrock Testnet is a blockchain network with chain ID 7771. - -## Network Details - -- **Chain ID**: 7771 -- **Chain Name**: Bitrock -- **Short Name**: tbitrock -- **Network ID**: 7771 -- **Currency**: - - **Name**: BITROCK - - **Symbol**: BROCK - - **Decimals**: 18 - -## RPC URLs - -Bitrock Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bit-rock.io - -## Bitrock Testnet Block Explorers - -- [Bitrock Testnet Explorer](https://testnetscan.bit-rock.io) - -## Additional Information - -- **Official Website**: https://bit-rock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bitrock Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bitrock.mdx b/docs/pages/solutions/chainlist/non-integrated/bitrock.mdx deleted file mode 100644 index f0ddeedc6a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bitrock.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bitrock Mainnet - Bitrock Blockchain Network -description: Explore Bitrock Mainnet, a blockchain network with chain ID 7171. Learn about its native currency, BITROCK, and how to interact with the network. ---- - -# Bitrock Mainnet - -Bitrock Mainnet is a blockchain network with chain ID 7171. - -## Network Details - -- **Chain ID**: 7171 -- **Chain Name**: Bitrock -- **Short Name**: bitrock -- **Network ID**: 7171 -- **Currency**: - - **Name**: BITROCK - - **Symbol**: BROCK - - **Decimals**: 18 - -## RPC URLs - -Bitrock Mainnet can be accessed through the following RPC endpoints: - -- https://connect.bit-rock.io -- https://brockrpc.io - -## Bitrock Mainnet Block Explorers - -- [Bitrock Explorer](https://explorer.bit-rock.io) - -## Additional Information - -- **Official Website**: https://bit-rock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bittex.mdx b/docs/pages/solutions/chainlist/non-integrated/bittex.mdx deleted file mode 100644 index 513a1e0b48..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bittex.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Bittex Mainnet - BTX Blockchain Network -description: Explore Bittex Mainnet, a blockchain network with chain ID 3690. Learn about its native currency, Bittex, and how to interact with the network. ---- - -# Bittex Mainnet - -Bittex Mainnet is a blockchain network with chain ID 3690. - -## Network Details - -- **Chain ID**: 3690 -- **Chain Name**: BTX -- **Short Name**: btx -- **Network ID**: 3690 -- **Currency**: - - **Name**: Bittex - - **Symbol**: BTX - - **Decimals**: 18 - -## RPC URLs - -Bittex Mainnet can be accessed through the following RPC endpoints: - -- https://rpc1.bittexscan.info -- https://rpc2.bittexscan.info - -## Bittex Mainnet Block Explorers - -- [bittexscan](https://bittexscan.com) - -## Additional Information - -- **Official Website**: https://bittexscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain-testnet.mdx deleted file mode 100644 index 213571f95a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BitTorrent Chain Testnet - BTTC Blockchain Network -description: Explore BitTorrent Chain Testnet, a blockchain network with chain ID 1028. Learn about its native currency, BitTorrent, and how to interact with the network. ---- - -# BitTorrent Chain Testnet - -BitTorrent Chain Testnet is a blockchain network with chain ID 1028. - -## Network Details - -- **Chain ID**: 1028 -- **Chain Name**: BTTC -- **Short Name**: tbtt -- **Network ID**: 1028 -- **Currency**: - - **Name**: BitTorrent - - **Symbol**: BTT - - **Decimals**: 18 - -## RPC URLs - -BitTorrent Chain Testnet can be accessed through the following RPC endpoints: - -- https://testrpc.bittorrentchain.io/ - -## BitTorrent Chain Testnet Block Explorers - -- [testbttcscan](https://testscan.bittorrentchain.io) - -## Additional Information - -- **Official Website**: https://bittorrentchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BitTorrent Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain.mdx deleted file mode 100644 index 48d8ef3450..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bittorrent-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: BitTorrent Chain Mainnet - BTTC Blockchain Network -description: Explore BitTorrent Chain Mainnet, a blockchain network with chain ID 199. Learn about its native currency, BitTorrent, and how to interact with the network. ---- - -# BitTorrent Chain Mainnet - -BitTorrent Chain Mainnet is a blockchain network with chain ID 199. - -## Network Details - -- **Chain ID**: 199 -- **Chain Name**: BTTC -- **Short Name**: BTT -- **Network ID**: 199 -- **Currency**: - - **Name**: BitTorrent - - **Symbol**: BTT - - **Decimals**: 18 - -## RPC URLs - -BitTorrent Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.bt.io -- https://bittorrent.drpc.org -- wss://bittorrent.drpc.org - -## BitTorrent Chain Mainnet Block Explorers - -- [BitTorrent Chain Explorer](https://bttcscan.com) - -## Additional Information - -- **Official Website**: https://bt.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bityuan.mdx b/docs/pages/solutions/chainlist/non-integrated/bityuan.mdx deleted file mode 100644 index e05bd9fcb0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bityuan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BitYuan Mainnet - BTY Blockchain Network -description: Explore BitYuan Mainnet, a blockchain network with chain ID 2999. Learn about its native currency, BTY, and how to interact with the network. ---- - -# BitYuan Mainnet - -BitYuan Mainnet is a blockchain network with chain ID 2999. - -## Network Details - -- **Chain ID**: 2999 -- **Chain Name**: BTY -- **Short Name**: bty -- **Network ID**: 2999 -- **Currency**: - - **Name**: BTY - - **Symbol**: BTY - - **Decimals**: 18 - -## RPC URLs - -BitYuan Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.bityuan.com/eth - -## BitYuan Mainnet Block Explorers - -- [BitYuan Block Chain Explorer](https://mainnet.bityuan.com) - -## Additional Information - -- **Official Website**: https://www.bityuan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/biz-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/biz-smart-chain-testnet.mdx deleted file mode 100644 index 57bbcf26ed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/biz-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BIZ Smart Chain Testnet - BIZT Testnet Blockchain Network -description: Explore BIZ Smart Chain Testnet, a blockchain network with chain ID 808080. Learn about its native currency, tBIZT, and how to interact with the network. ---- - -# BIZ Smart Chain Testnet - -BIZ Smart Chain Testnet is a blockchain network with chain ID 808080. - -## Network Details - -- **Chain ID**: 808080 -- **Chain Name**: BIZT Testnet -- **Short Name**: bizt-testnet -- **Network ID**: 808080 -- **Currency**: - - **Name**: tBIZT - - **Symbol**: tBIZT - - **Decimals**: 18 - -## RPC URLs - -BIZ Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.bizex.io/ - -## BIZ Smart Chain Testnet Block Explorers - -- [BIZ Smart Chain Testnet Explorer](https://testnet.btscan.io) - -## Additional Information - -- **Official Website**: https://www.biztoken.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BIZ Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network-testnet.mdx deleted file mode 100644 index df52b31939..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BlackFort Exchange Network Testnet - TBXN Blockchain Network -description: Explore BlackFort Exchange Network Testnet, a blockchain network with chain ID 4777. Learn about its native currency, BlackFort Testnet Token, and how to interact with the network. ---- - -# BlackFort Exchange Network Testnet - -BlackFort Exchange Network Testnet is a blockchain network with chain ID 4777. - -## Network Details - -- **Chain ID**: 4777 -- **Chain Name**: TBXN -- **Short Name**: TBXN -- **Network ID**: 4777 -- **Currency**: - - **Name**: BlackFort Testnet Token - - **Symbol**: TBXN - - **Decimals**: 18 - -## RPC URLs - -BlackFort Exchange Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet.blackfort.network/rpc - -## BlackFort Exchange Network Testnet Block Explorers - -- [blockscout](https://testnet-explorer.blackfort.network) - -## Additional Information - -- **Official Website**: https://blackfort.exchange - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BlackFort Exchange Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network.mdx b/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network.mdx deleted file mode 100644 index c16465c386..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blackfort-exchange-network.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: BlackFort Exchange Network - BXN Blockchain Network -description: Explore BlackFort Exchange Network, a blockchain network with chain ID 4999. Learn about its native currency, BlackFort Token, and how to interact with the network. ---- - -# BlackFort Exchange Network - -BlackFort Exchange Network is a blockchain network with chain ID 4999. - -## Network Details - -- **Chain ID**: 4999 -- **Chain Name**: BXN -- **Short Name**: BXN -- **Network ID**: 4999 -- **Currency**: - - **Name**: BlackFort Token - - **Symbol**: BXN - - **Decimals**: 18 - -## RPC URLs - -BlackFort Exchange Network can be accessed through the following RPC endpoints: - -- https://mainnet.blackfort.network/rpc -- https://mainnet-1.blackfort.network/rpc -- https://mainnet-2.blackfort.network/rpc -- https://mainnet-3.blackfort.network/rpc - -## BlackFort Exchange Network Block Explorers - -- [blockscout](https://explorer.blackfort.network) - -## Additional Information - -- **Official Website**: https://blackfort.exchange - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blast-81457.mdx b/docs/pages/solutions/chainlist/non-integrated/blast-81457.mdx deleted file mode 100644 index e77c12bf0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blast-81457.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Blast - ETH Blockchain Network -description: Explore Blast, a blockchain network with chain ID 81457. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Blast - -Blast is a blockchain network with chain ID 81457. - -## Network Details - -- **Chain ID**: 81457 -- **Chain Name**: ETH -- **Short Name**: blastmainnet -- **Network ID**: 81457 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Blast can be accessed through the following RPC endpoints: - -- 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 - -## Blast Block Explorers - -- [Blastscan](https://blastscan.io) -- [Blast Explorer](https://blastexplorer.io) - -## Additional Information - -- **Official Website**: https://blast.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blast-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blast-testnet.mdx deleted file mode 100644 index 24ebbab0ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blast-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Blast Testnet - ETH Blockchain Network -description: Explore Blast Testnet, a blockchain network with chain ID 23888. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Blast Testnet - -Blast Testnet is a blockchain network with chain ID 23888. - -## Network Details - -- **Chain ID**: 23888 -- **Chain Name**: ETH -- **Short Name**: blastT -- **Network ID**: 23888 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Blast Testnet can be accessed through the following RPC endpoints: - -- http://testnet-rpc.blastblockchain.com - -## Blast Testnet Block Explorers - -- [Blast Testnet](http://testnet-explorer.blastblockchain.com) - -## Additional Information - -- **Official Website**: https://docs.blastblockchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Blast Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blg-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blg-testnet.mdx deleted file mode 100644 index d01d8a03b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blg-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BLG Testnet - BLG Blockchain Network -description: Explore BLG Testnet, a blockchain network with chain ID 12321. Learn about its native currency, Blg, and how to interact with the network. ---- - -# BLG Testnet - -BLG Testnet is a blockchain network with chain ID 12321. - -## Network Details - -- **Chain ID**: 12321 -- **Chain Name**: BLG -- **Short Name**: blgchain -- **Network ID**: 12321 -- **Currency**: - - **Name**: Blg - - **Symbol**: BLG - - **Decimals**: 18 - -## RPC URLs - -BLG Testnet can be accessed through the following RPC endpoints: - -- https://rpc.blgchain.com - -## BLG Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://blgchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BLG Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blitz-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blitz-subnet.mdx deleted file mode 100644 index 4bd455fe46..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blitz-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Blitz Subnet - BLITZ Blockchain Network -description: Explore Blitz Subnet, a blockchain network with chain ID 1343. Learn about its native currency, BLITZ GAS, and how to interact with the network. ---- - -# Blitz Subnet - -Blitz Subnet is a blockchain network with chain ID 1343. - -## Network Details - -- **Chain ID**: 1343 -- **Chain Name**: BLITZ -- **Short Name**: blitz -- **Network ID**: 1343 -- **Currency**: - - **Name**: BLITZ GAS - - **Symbol**: BGAS - - **Decimals**: 18 - -## RPC URLs - -Blitz Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/blitz/testnet/rpc - -## Blitz Subnet Block Explorers - -- [BLITZ Explorer](https://subnets-test.avax.network/blitz) - -## Additional Information - -- **Official Website**: https://blitz.gg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Blitz Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockchain-genesis.mdx b/docs/pages/solutions/chainlist/non-integrated/blockchain-genesis.mdx deleted file mode 100644 index dea600c797..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockchain-genesis.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Blockchain Genesis Mainnet - GEN Blockchain Network -description: Explore Blockchain Genesis Mainnet, a blockchain network with chain ID 10101. Learn about its native currency, GEN, and how to interact with the network. ---- - -# Blockchain Genesis Mainnet - -Blockchain Genesis Mainnet is a blockchain network with chain ID 10101. - -## Network Details - -- **Chain ID**: 10101 -- **Chain Name**: GEN -- **Short Name**: GEN -- **Network ID**: 10101 -- **Currency**: - - **Name**: GEN - - **Symbol**: GEN - - **Decimals**: 18 - -## RPC URLs - -Blockchain Genesis Mainnet can be accessed through the following RPC endpoints: - -- https://eu.mainnet.xixoio.com -- https://us.mainnet.xixoio.com -- https://asia.mainnet.xixoio.com - -## Blockchain Genesis Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.xixoio.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockchain-station-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blockchain-station-testnet.mdx deleted file mode 100644 index 0869350e50..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockchain-station-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: BlockChain Station Testnet - BCS Blockchain Network -description: Explore BlockChain Station Testnet, a blockchain network with chain ID 708. Learn about its native currency, BCS Testnet Token, and how to interact with the network. ---- - -# BlockChain Station Testnet - -BlockChain Station Testnet is a blockchain network with chain ID 708. - -## Network Details - -- **Chain ID**: 708 -- **Chain Name**: BCS -- **Short Name**: tbcs -- **Network ID**: 708 -- **Currency**: - - **Name**: BCS Testnet Token - - **Symbol**: tBCS - - **Decimals**: 18 - -## RPC URLs - -BlockChain Station Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.bcsdev.io -- wss://rpc-ws-testnet.bcsdev.io - -## BlockChain Station Testnet Block Explorers - -- [BlockChain Station Explorer](https://testnet.bcsdev.io) - -## Additional Information - -- **Official Website**: https://blockchainstation.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BlockChain Station Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockchain-station.mdx b/docs/pages/solutions/chainlist/non-integrated/blockchain-station.mdx deleted file mode 100644 index 16910cfdac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockchain-station.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BlockChain Station Mainnet - BCS Blockchain Network -description: Explore BlockChain Station Mainnet, a blockchain network with chain ID 707. Learn about its native currency, BCS Token, and how to interact with the network. ---- - -# BlockChain Station Mainnet - -BlockChain Station Mainnet is a blockchain network with chain ID 707. - -## Network Details - -- **Chain ID**: 707 -- **Chain Name**: BCS -- **Short Name**: bcs -- **Network ID**: 707 -- **Currency**: - - **Name**: BCS Token - - **Symbol**: BCS - - **Decimals**: 18 - -## RPC URLs - -BlockChain Station Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.bcsdev.io -- wss://rpc-ws-mainnet.bcsdev.io - -## BlockChain Station Mainnet Block Explorers - -- [BlockChain Station Explorer](https://explorer.bcsdev.io) - -## Additional Information - -- **Official Website**: https://blockchainstation.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockex.mdx b/docs/pages/solutions/chainlist/non-integrated/blockex.mdx deleted file mode 100644 index de13418b2e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BlockEx Mainnet - BlockEx Blockchain Network -description: Explore BlockEx Mainnet, a blockchain network with chain ID 221. Learn about its native currency, BlockEx, and how to interact with the network. ---- - -# BlockEx Mainnet - -BlockEx Mainnet is a blockchain network with chain ID 221. - -## Network Details - -- **Chain ID**: 221 -- **Chain Name**: BlockEx -- **Short Name**: BlockEx -- **Network ID**: 221 -- **Currency**: - - **Name**: BlockEx - - **Symbol**: XBE - - **Decimals**: 18 - -## RPC URLs - -BlockEx Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.blockex.biz - -## BlockEx Mainnet Block Explorers - -- [BlockEx Scan](http://explorer.blockex.biz) - -## Additional Information - -- **Official Website**: https://blockex.biz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockton-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/blockton-blockchain.mdx deleted file mode 100644 index bbfa700dd0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockton-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Blockton Blockchain - Blockton Blockchain Blockchain Network -description: Explore Blockton Blockchain, a blockchain network with chain ID 8272. Learn about its native currency, BLOCKTON, and how to interact with the network. ---- - -# Blockton Blockchain - -Blockton Blockchain is a blockchain network with chain ID 8272. - -## Network Details - -- **Chain ID**: 8272 -- **Chain Name**: Blockton Blockchain -- **Short Name**: BTON -- **Network ID**: 8272 -- **Currency**: - - **Name**: BLOCKTON - - **Symbol**: BTON - - **Decimals**: 18 - -## RPC URLs - -Blockton Blockchain can be accessed through the following RPC endpoints: - -- https://rpc.blocktonscan.com/ - -## Blockton Blockchain Block Explorers - -- [Blockton Explorer](https://blocktonscan.com) - -## Additional Information - -- **Official Website**: https://blocktoncoin.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockx-atlantis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blockx-atlantis-testnet.mdx deleted file mode 100644 index bbf1888e58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockx-atlantis-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: BlockX Atlantis Testnet - blockx Blockchain Network -description: Explore BlockX Atlantis Testnet, a blockchain network with chain ID 19077. Learn about its native currency, BCX, and how to interact with the network. ---- - -# BlockX Atlantis Testnet - -BlockX Atlantis Testnet is a blockchain network with chain ID 19077. - -## Network Details - -- **Chain ID**: 19077 -- **Chain Name**: blockx -- **Short Name**: tbcx -- **Network ID**: 19077 -- **Currency**: - - **Name**: BCX - - **Symbol**: BCX - - **Decimals**: 18 - -## RPC URLs - -BlockX Atlantis Testnet can be accessed through the following RPC endpoints: - -- https://atlantis-web3.blockxnet.com - -## BlockX Atlantis Testnet Block Explorers - -- [BlockX EVM Explorer (Blockscout)](https://testnet-explorer.blockxnet.com) -- [BlockX Cosmos Explorer (Ping)](https://ping.blockxnet.com/blockx-atlantis-testnet) - -## Additional Information - -- **Official Website**: https://www.blockxnet.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BlockX Atlantis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blockx.mdx b/docs/pages/solutions/chainlist/non-integrated/blockx.mdx deleted file mode 100644 index 088d042fcf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blockx.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BlockX Mainnet - blockx Blockchain Network -description: Explore BlockX Mainnet, a blockchain network with chain ID 19191. Learn about its native currency, BCX, and how to interact with the network. ---- - -# BlockX Mainnet - -BlockX Mainnet is a blockchain network with chain ID 19191. - -## Network Details - -- **Chain ID**: 19191 -- **Chain Name**: blockx -- **Short Name**: bcx -- **Network ID**: 19191 -- **Currency**: - - **Name**: BCX - - **Symbol**: BCX - - **Decimals**: 18 - -## RPC URLs - -BlockX Mainnet can be accessed through the following RPC endpoints: - -- https://web3.blockxnet.com - -## BlockX Mainnet Block Explorers - -- [BlockX EVM Explorer (Blockscout)](https://explorer.blockxnet.com) -- [BlockX Cosmos Explorer (Ping)](https://ping.blockxnet.com/blockx) - -## Additional Information - -- **Official Website**: https://www.blockxnet.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blocx.mdx b/docs/pages/solutions/chainlist/non-integrated/blocx.mdx deleted file mode 100644 index 92a2a7d917..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blocx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BlocX Mainnet - BLX Blockchain Network -description: Explore BlocX Mainnet, a blockchain network with chain ID 879151. Learn about its native currency, BlocX, and how to interact with the network. ---- - -# BlocX Mainnet - -BlocX Mainnet is a blockchain network with chain ID 879151. - -## Network Details - -- **Chain ID**: 879151 -- **Chain Name**: BLX -- **Short Name**: blx -- **Network ID**: 879151 -- **Currency**: - - **Name**: BlocX - - **Symbol**: BLX - - **Decimals**: 18 - -## RPC URLs - -BlocX Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.blxscan.com/ - -## BlocX Mainnet Block Explorers - -- [BlocX Mainnet Explorer](https://explorer.blxscan.com) - -## Additional Information - -- **Official Website**: https://www.blocxchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bloom-genesis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bloom-genesis-testnet.mdx deleted file mode 100644 index eea4c9589f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bloom-genesis-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bloom Genesis Testnet - Bloom Blockchain Network -description: Explore Bloom Genesis Testnet, a blockchain network with chain ID 323213. Learn about its native currency, Bloom, and how to interact with the network. ---- - -# Bloom Genesis Testnet - -Bloom Genesis Testnet is a blockchain network with chain ID 323213. - -## Network Details - -- **Chain ID**: 323213 -- **Chain Name**: Bloom -- **Short Name**: BGBC-Testnet -- **Network ID**: 323213 -- **Currency**: - - **Name**: Bloom - - **Symbol**: BGBC - - **Decimals**: 18 - -## RPC URLs - -Bloom Genesis Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.bloomgenesis.com - -## Bloom Genesis Testnet Block Explorers - -- [Bloom Genesis Testnet](https://testnet.bloomgenesis.com) - -## Additional Information - -- **Official Website**: https://www.bloomgenesis.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bloom Genesis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bloom-genesis.mdx b/docs/pages/solutions/chainlist/non-integrated/bloom-genesis.mdx deleted file mode 100644 index 729b0d5147..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bloom-genesis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bloom Genesis Mainnet - Bloom Blockchain Network -description: Explore Bloom Genesis Mainnet, a blockchain network with chain ID 333313. Learn about its native currency, Bloom, and how to interact with the network. ---- - -# Bloom Genesis Mainnet - -Bloom Genesis Mainnet is a blockchain network with chain ID 333313. - -## Network Details - -- **Chain ID**: 333313 -- **Chain Name**: Bloom -- **Short Name**: BGBC -- **Network ID**: 333313 -- **Currency**: - - **Name**: Bloom - - **Symbol**: BGBC - - **Decimals**: 18 - -## RPC URLs - -Bloom Genesis Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.bloomgenesis.com - -## Bloom Genesis Mainnet Block Explorers - -- [Bloom Genesis Mainnet](https://explorer.bloomgenesis.com) - -## Additional Information - -- **Official Website**: https://www.bloomgenesis.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bloxberg.mdx b/docs/pages/solutions/chainlist/non-integrated/bloxberg.mdx deleted file mode 100644 index b695086d18..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bloxberg.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: bloxberg - bloxberg Blockchain Network -description: Explore bloxberg, a blockchain network with chain ID 8995. Learn about its native currency, BERG, and how to interact with the network. ---- - -# bloxberg - -bloxberg is a blockchain network with chain ID 8995. - -## Network Details - -- **Chain ID**: 8995 -- **Chain Name**: bloxberg -- **Short Name**: berg -- **Network ID**: 8995 -- **Currency**: - - **Name**: BERG - - **Symbol**: U+25B3 - - **Decimals**: 18 - -## RPC URLs - -bloxberg can be accessed through the following RPC endpoints: - -- https://core.bloxberg.org - -## bloxberg Block Explorers - - - -## Additional Information - -- **Official Website**: https://bloxberg.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blucrates.mdx b/docs/pages/solutions/chainlist/non-integrated/blucrates.mdx deleted file mode 100644 index f7ba67c21c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blucrates.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Blucrates - BLU Blockchain Network -description: Explore Blucrates, a blockchain network with chain ID 727. Learn about its native currency, Blucrates, and how to interact with the network. ---- - -# Blucrates - -Blucrates is a blockchain network with chain ID 727. - -## Network Details - -- **Chain ID**: 727 -- **Chain Name**: BLU -- **Short Name**: blu -- **Network ID**: 727 -- **Currency**: - - **Name**: Blucrates - - **Symbol**: BLU - - **Decimals**: 18 - -## RPC URLs - -Blucrates can be accessed through the following RPC endpoints: - -- https://data.bluchain.pro - -## Blucrates Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.blucrates.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/blxq-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/blxq-testnet.mdx deleted file mode 100644 index b03938432b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blxq-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BLXq Testnet - BLXQ Blockchain Network -description: Explore BLXq Testnet, a blockchain network with chain ID 1107. Learn about its native currency, BLXQ, and how to interact with the network. ---- - -# BLXq Testnet - -BLXq Testnet is a blockchain network with chain ID 1107. - -## Network Details - -- **Chain ID**: 1107 -- **Chain Name**: BLXQ -- **Short Name**: tblxq -- **Network ID**: 1107 -- **Currency**: - - **Name**: BLXQ - - **Symbol**: BLXQ - - **Decimals**: 18 - -## RPC URLs - -BLXq Testnet can be accessed through the following RPC endpoints: - -- https://testnetq1.blx.org - -## BLXq Testnet Block Explorers - -- [BLXq Explorer](https://explorer.blx.org) - -## Additional Information - -- **Official Website**: https://blx.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BLXq Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/blxq.mdx b/docs/pages/solutions/chainlist/non-integrated/blxq.mdx deleted file mode 100644 index 7fe0f8ffdc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/blxq.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BLXq Mainnet - BLXQ Blockchain Network -description: Explore BLXq Mainnet, a blockchain network with chain ID 1108. Learn about its native currency, BLXQ, and how to interact with the network. ---- - -# BLXq Mainnet - -BLXq Mainnet is a blockchain network with chain ID 1108. - -## Network Details - -- **Chain ID**: 1108 -- **Chain Name**: BLXQ -- **Short Name**: blxq -- **Network ID**: 1108 -- **Currency**: - - **Name**: BLXQ - - **Symbol**: BLXQ - - **Decimals**: 18 - -## RPC URLs - -BLXq Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.blxq.org - -## BLXq Mainnet Block Explorers - -- [BLXq Explorer](https://explorer.blxq.org) - -## Additional Information - -- **Official Website**: https://blx.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bmc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bmc-testnet.mdx deleted file mode 100644 index 75fb9bc06a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bmc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BMC Testnet - BMC Blockchain Network -description: Explore BMC Testnet, a blockchain network with chain ID 189. Learn about its native currency, BTM, and how to interact with the network. ---- - -# BMC Testnet - -BMC Testnet is a blockchain network with chain ID 189. - -## Network Details - -- **Chain ID**: 189 -- **Chain Name**: BMC -- **Short Name**: BMCT -- **Network ID**: 189 -- **Currency**: - - **Name**: BTM - - **Symbol**: BTM - - **Decimals**: 18 - -## RPC URLs - -BMC Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bmcchain.com - -## BMC Testnet Block Explorers - -- [Blockmeta](https://bmctestnet.blockmeta.com) - -## Additional Information - -- **Official Website**: https://bmc.bytom.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BMC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bmc.mdx b/docs/pages/solutions/chainlist/non-integrated/bmc.mdx deleted file mode 100644 index 1eb269a527..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bmc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BMC Mainnet - BMC Blockchain Network -description: Explore BMC Mainnet, a blockchain network with chain ID 188. Learn about its native currency, BTM, and how to interact with the network. ---- - -# BMC Mainnet - -BMC Mainnet is a blockchain network with chain ID 188. - -## Network Details - -- **Chain ID**: 188 -- **Chain Name**: BMC -- **Short Name**: BMC -- **Network ID**: 188 -- **Currency**: - - **Name**: BTM - - **Symbol**: BTM - - **Decimals**: 18 - -## RPC URLs - -BMC Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.bmcchain.com/ - -## BMC Mainnet Block Explorers - -- [Blockmeta](https://bmc.blockmeta.com) - -## Additional Information - -- **Official Website**: https://bmc.bytom.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boat.mdx b/docs/pages/solutions/chainlist/non-integrated/boat.mdx deleted file mode 100644 index 20dd2e29b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boat.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BOAT Mainnet - BOAT Blockchain Network -description: Explore BOAT Mainnet, a blockchain network with chain ID 8047. Learn about its native currency, Best Of All Time Token, and how to interact with the network. ---- - -# BOAT Mainnet - -BOAT Mainnet is a blockchain network with chain ID 8047. - -## Network Details - -- **Chain ID**: 8047 -- **Chain Name**: BOAT -- **Short Name**: boat -- **Network ID**: 8047 -- **Currency**: - - **Name**: Best Of All Time Token - - **Symbol**: BOAT - - **Decimals**: 18 - -## RPC URLs - -BOAT Mainnet can be accessed through the following RPC endpoints: - -- https://rpc0.come.boat/ - -## BOAT Mainnet Block Explorers - -- [BOAT Mainnet Explorer](https://scan.come.boats) - -## Additional Information - -- **Official Website**: https://come.boats - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bob-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/bob-sepolia.mdx deleted file mode 100644 index 52a1bed82d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bob-sepolia.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BOB Sepolia - ETH Blockchain Network -description: Explore BOB Sepolia, a blockchain network with chain ID 808813. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# BOB Sepolia - -BOB Sepolia is a blockchain network with chain ID 808813. - -## Network Details - -- **Chain ID**: 808813 -- **Chain Name**: ETH -- **Short Name**: bob-sepolia -- **Network ID**: 808813 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -BOB Sepolia can be accessed through the following RPC endpoints: - -- https://bob-sepolia.rpc.gobob.xyz -- wss://bob-sepolia.rpc.gobob.xyz - -## BOB Sepolia Block Explorers - -- [bobscout](https://bob-sepolia.explorer.gobob.xyz) - -## Additional Information - -- **Official Website**: https://gobob.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bob.mdx b/docs/pages/solutions/chainlist/non-integrated/bob.mdx deleted file mode 100644 index fce17441da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bob.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: BOB - ETH Blockchain Network -description: Explore BOB, a blockchain network with chain ID 60808. Learn about its native currency, Ether, and how to interact with the network. ---- - -# BOB - -BOB is a blockchain network with chain ID 60808. - -## Network Details - -- **Chain ID**: 60808 -- **Chain Name**: ETH -- **Short Name**: bob -- **Network ID**: 60808 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -BOB can be accessed through the following RPC endpoints: - -- https://rpc.gobob.xyz -- wss://rpc.gobob.xyz -- https://bob-mainnet.public.blastapi.io -- wss://bob-mainnet.public.blastapi.io - -## BOB Block Explorers - -- [bobscout](https://explorer.gobob.xyz) - -## Additional Information - -- **Official Website**: https://gobob.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-avax.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-avax.mdx deleted file mode 100644 index 07db03d5f9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-avax.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Boba Avax - Boba Avax Blockchain Network -description: Explore Boba Avax, a blockchain network with chain ID 43288. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Boba Avax - -Boba Avax is a blockchain network with chain ID 43288. - -## Network Details - -- **Chain ID**: 43288 -- **Chain Name**: Boba Avax -- **Short Name**: bobaavax -- **Network ID**: 43288 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Boba Avax can be accessed through the following RPC endpoints: - -- https://avax.boba.network -- wss://wss.avax.boba.network -- https://replica.avax.boba.network -- wss://replica-wss.avax.boba.network - -## Boba Avax Block Explorers - -- [Boba Avax Explorer](https://blockexplorer.avax.boba.network) - -## Additional Information - -- **Official Website**: https://docs.boba.network/for-developers/network-avalanche - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-bnb-old.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-bnb-old.mdx deleted file mode 100644 index c8e170d245..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-bnb-old.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Boba BNB Mainnet Old - Boba BNB Mainnet Blockchain Network -description: Explore Boba BNB Mainnet Old, a blockchain network with chain ID 97288. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Boba BNB Mainnet Old - -Boba BNB Mainnet Old is a blockchain network with chain ID 97288. - -## Network Details - -- **Chain ID**: 97288 -- **Chain Name**: Boba BNB Mainnet -- **Short Name**: BobaBnbOld -- **Network ID**: 97288 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Boba BNB Mainnet Old can be accessed through the following RPC endpoints: - - - -## Boba BNB Mainnet Old Block Explorers - -- [Boba BNB block explorer](https://blockexplorer.bnb.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-bnb-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-bnb-testnet.mdx deleted file mode 100644 index a2f4498d58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-bnb-testnet.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Boba BNB Testnet - Boba BNB Testnet Blockchain Network -description: Explore Boba BNB Testnet, a blockchain network with chain ID 9728. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Boba BNB Testnet - -Boba BNB Testnet is a blockchain network with chain ID 9728. - -## Network Details - -- **Chain ID**: 9728 -- **Chain Name**: Boba BNB Testnet -- **Short Name**: BobaBnbTestnet -- **Network ID**: 9728 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Boba BNB Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Boba BNB Testnet Block Explorers - -- [Boba BNB Testnet block explorer](https://testnet.bobascan.com) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Boba BNB Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-bnb.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-bnb.mdx deleted file mode 100644 index 1ed0c18ade..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-bnb.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Boba BNB Mainnet - Boba BNB Mainnet Blockchain Network -description: Explore Boba BNB Mainnet, a blockchain network with chain ID 56288. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Boba BNB Mainnet - -Boba BNB Mainnet is a blockchain network with chain ID 56288. - -## Network Details - -- **Chain ID**: 56288 -- **Chain Name**: Boba BNB Mainnet -- **Short Name**: BobaBnb -- **Network ID**: 56288 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Boba BNB Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Boba BNB Mainnet Block Explorers - -- [Boba BNB block explorer](https://bobascan.com) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-network-goerli-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-network-goerli-testnet.mdx deleted file mode 100644 index de4a095f4a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-network-goerli-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Boba Network Goerli Testnet - ETH Blockchain Network -description: Explore Boba Network Goerli Testnet, a blockchain network with chain ID 2888. Learn about its native currency, Goerli Ether, and how to interact with the network. ---- - -# Boba Network Goerli Testnet - -Boba Network Goerli Testnet is a blockchain network with chain ID 2888. - -## Network Details - -- **Chain ID**: 2888 -- **Chain Name**: ETH -- **Short Name**: BobaGoerli -- **Network ID**: 2888 -- **Currency**: - - **Name**: Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Boba Network Goerli Testnet can be accessed through the following RPC endpoints: - -- https://goerli.boba.network/ -- wss://wss.goerli.boba.network/ - -## Boba Network Goerli Testnet Block Explorers - -- [Blockscout](https://testnet.bobascan.com) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Boba Network Goerli Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-network-rinkeby-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-network-rinkeby-testnet.mdx deleted file mode 100644 index 8e28ee406a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-network-rinkeby-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Boba Network Rinkeby Testnet - ETH Blockchain Network -description: Explore Boba Network Rinkeby Testnet, a blockchain network with chain ID 28. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Boba Network Rinkeby Testnet - -Boba Network Rinkeby Testnet is a blockchain network with chain ID 28. - -## Network Details - -- **Chain ID**: 28 -- **Chain Name**: ETH -- **Short Name**: BobaRinkeby -- **Network ID**: 28 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Boba Network Rinkeby Testnet can be accessed through the following RPC endpoints: - -- https://rinkeby.boba.network/ - -## Boba Network Rinkeby Testnet Block Explorers - -- [Blockscout](https://blockexplorer.rinkeby.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Boba Network Rinkeby Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-network.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-network.mdx deleted file mode 100644 index ada95775d7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-network.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Boba Network - ETH Blockchain Network -description: Explore Boba Network, a blockchain network with chain ID 288. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Boba Network - -Boba Network is a blockchain network with chain ID 288. - -## Network Details - -- **Chain ID**: 288 -- **Chain Name**: ETH -- **Short Name**: Boba -- **Network ID**: 288 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Boba Network can be accessed through the following RPC endpoints: - -- 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 - -## Boba Network Block Explorers - -- [Bobascan](https://bobascan.com) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boba-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/boba-sepolia.mdx deleted file mode 100644 index 09b1d998ff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boba-sepolia.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Boba Sepolia - ETH Blockchain Network -description: Explore Boba Sepolia, a blockchain network with chain ID 28882. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Boba Sepolia - -Boba Sepolia is a blockchain network with chain ID 28882. - -## Network Details - -- **Chain ID**: 28882 -- **Chain Name**: ETH -- **Short Name**: BobaSepolia -- **Network ID**: 28882 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Boba Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia.boba.network -- https://boba-sepolia.gateway.tenderly.co -- https://gateway.tenderly.co/public/boba-sepolia -- wss://boba-sepolia.gateway.tenderly.co/ -- wss://gateway.tenderly.co/public/boba-sepolia - -## Boba Sepolia Block Explorers - -- [Bobascan](https://testnet.bobascan.com) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Boba Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bobabase-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bobabase-testnet.mdx deleted file mode 100644 index 0250d942ac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bobabase-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Bobabase Testnet - Bobabase Testnet Blockchain Network -description: Explore Bobabase Testnet, a blockchain network with chain ID 1297. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Bobabase Testnet - -Bobabase Testnet is a blockchain network with chain ID 1297. - -## Network Details - -- **Chain ID**: 1297 -- **Chain Name**: Bobabase Testnet -- **Short Name**: Bobabase -- **Network ID**: 1297 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Bobabase Testnet can be accessed through the following RPC endpoints: - -- https://bobabase.boba.network -- wss://wss.bobabase.boba.network -- https://replica.bobabase.boba.network -- wss://replica-wss.bobabase.boba.network - -## Bobabase Testnet Block Explorers - -- [Bobabase block explorer](https://blockexplorer.bobabase.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bobabase Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bobabeam.mdx b/docs/pages/solutions/chainlist/non-integrated/bobabeam.mdx deleted file mode 100644 index eee9c75d69..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bobabeam.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Bobabeam - Bobabeam Blockchain Network -description: Explore Bobabeam, a blockchain network with chain ID 1294. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Bobabeam - -Bobabeam is a blockchain network with chain ID 1294. - -## Network Details - -- **Chain ID**: 1294 -- **Chain Name**: Bobabeam -- **Short Name**: Bobabeam -- **Network ID**: 1294 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Bobabeam can be accessed through the following RPC endpoints: - -- https://bobabeam.boba.network -- wss://wss.bobabeam.boba.network -- https://replica.bobabeam.boba.network -- wss://replica-wss.bobabeam.boba.network - -## Bobabeam Block Explorers - -- [Bobabeam block explorer](https://blockexplorer.bobabeam.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bobafuji-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bobafuji-testnet.mdx deleted file mode 100644 index 023ae52aa6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bobafuji-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Bobafuji Testnet - Bobafuji Testnet Blockchain Network -description: Explore Bobafuji Testnet, a blockchain network with chain ID 4328. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Bobafuji Testnet - -Bobafuji Testnet is a blockchain network with chain ID 4328. - -## Network Details - -- **Chain ID**: 4328 -- **Chain Name**: Bobafuji Testnet -- **Short Name**: BobaFujiTestnet -- **Network ID**: 4328 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Bobafuji Testnet can be accessed through the following RPC endpoints: - -- https://testnet.avax.boba.network -- wss://wss.testnet.avax.boba.network -- https://replica.testnet.avax.boba.network - -## Bobafuji Testnet Block Explorers - -- [Bobafuji Testnet block explorer](https://blockexplorer.testnet.avax.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bobafuji Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bobaopera-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bobaopera-testnet.mdx deleted file mode 100644 index bada80c1cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bobaopera-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Bobaopera Testnet - Bobaopera Testnet Blockchain Network -description: Explore Bobaopera Testnet, a blockchain network with chain ID 4051. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Bobaopera Testnet - -Bobaopera Testnet is a blockchain network with chain ID 4051. - -## Network Details - -- **Chain ID**: 4051 -- **Chain Name**: Bobaopera Testnet -- **Short Name**: BobaoperaTestnet -- **Network ID**: 4051 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Bobaopera Testnet can be accessed through the following RPC endpoints: - -- https://testnet.bobaopera.boba.network -- wss://wss.testnet.bobaopera.boba.network -- https://replica.testnet.bobaopera.boba.network -- wss://replica-wss.testnet.bobaopera.boba.network - -## Bobaopera Testnet Block Explorers - -- [Bobaopera Testnet block explorer](https://blockexplorer.testnet.bobaopera.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bobaopera Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bobaopera.mdx b/docs/pages/solutions/chainlist/non-integrated/bobaopera.mdx deleted file mode 100644 index 433ca933f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bobaopera.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Bobaopera - Bobaopera Blockchain Network -description: Explore Bobaopera, a blockchain network with chain ID 301. Learn about its native currency, Boba Token, and how to interact with the network. ---- - -# Bobaopera - -Bobaopera is a blockchain network with chain ID 301. - -## Network Details - -- **Chain ID**: 301 -- **Chain Name**: Bobaopera -- **Short Name**: Bobaopera -- **Network ID**: 301 -- **Currency**: - - **Name**: Boba Token - - **Symbol**: BOBA - - **Decimals**: 18 - -## RPC URLs - -Bobaopera can be accessed through the following RPC endpoints: - -- https://bobaopera.boba.network -- wss://wss.bobaopera.boba.network -- https://replica.bobaopera.boba.network -- wss://replica-wss.bobaopera.boba.network - -## Bobaopera Block Explorers - -- [Bobaopera block explorer](https://blockexplorer.bobaopera.boba.network) - -## Additional Information - -- **Official Website**: https://boba.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bomb-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bomb-chain-testnet.mdx deleted file mode 100644 index f984da9e96..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bomb-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BOMB Chain Testnet - BOMB Blockchain Network -description: Explore BOMB Chain Testnet, a blockchain network with chain ID 2399. Learn about its native currency, BOMB Token, and how to interact with the network. ---- - -# BOMB Chain Testnet - -BOMB Chain Testnet is a blockchain network with chain ID 2399. - -## Network Details - -- **Chain ID**: 2399 -- **Chain Name**: BOMB -- **Short Name**: bombt -- **Network ID**: 2399 -- **Currency**: - - **Name**: BOMB Token - - **Symbol**: tBOMB - - **Decimals**: 18 - -## RPC URLs - -BOMB Chain Testnet can be accessed through the following RPC endpoints: - -- https://bombchain-testnet.ankr.com/bas_full_rpc_1 - -## BOMB Chain Testnet Block Explorers - -- [bombscan-testnet](https://explorer.bombchain-testnet.ankr.com) - -## Additional Information - -- **Official Website**: https://www.bombmoney.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BOMB Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bomb-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bomb-chain.mdx deleted file mode 100644 index 85e362ba47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bomb-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BOMB Chain - BOMB Blockchain Network -description: Explore BOMB Chain, a blockchain network with chain ID 2300. Learn about its native currency, BOMB Token, and how to interact with the network. ---- - -# BOMB Chain - -BOMB Chain is a blockchain network with chain ID 2300. - -## Network Details - -- **Chain ID**: 2300 -- **Chain Name**: BOMB -- **Short Name**: bomb -- **Network ID**: 2300 -- **Currency**: - - **Name**: BOMB Token - - **Symbol**: BOMB - - **Decimals**: 18 - -## RPC URLs - -BOMB Chain can be accessed through the following RPC endpoints: - -- https://rpc.bombchain.com - -## BOMB Chain Block Explorers - -- [bombscan](https://bombscan.com) - -## Additional Information - -- **Official Website**: https://www.bombchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bon-network.mdx b/docs/pages/solutions/chainlist/non-integrated/bon-network.mdx deleted file mode 100644 index e29080d906..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bon-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BON Network - BON Blockchain Network -description: Explore BON Network, a blockchain network with chain ID 1898. Learn about its native currency, BOYACoin, and how to interact with the network. ---- - -# BON Network - -BON Network is a blockchain network with chain ID 1898. - -## Network Details - -- **Chain ID**: 1898 -- **Chain Name**: BON -- **Short Name**: boya -- **Network ID**: 1898 -- **Currency**: - - **Name**: BOYACoin - - **Symbol**: BOY - - **Decimals**: 18 - -## RPC URLs - -BON Network can be accessed through the following RPC endpoints: - -- http://rpc.boyanet.org:8545 -- ws://rpc.boyanet.org:8546 - -## BON Network Block Explorers - -- [explorer](https://explorer.boyanet.org:4001) - -## Additional Information - -- **Official Website**: https://boyanet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/borachain.mdx b/docs/pages/solutions/chainlist/non-integrated/borachain.mdx deleted file mode 100644 index de7536f4b7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/borachain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BORAchain mainnet - BORA Blockchain Network -description: Explore BORAchain mainnet, a blockchain network with chain ID 77001. Learn about its native currency, BORA, and how to interact with the network. ---- - -# BORAchain mainnet - -BORAchain mainnet is a blockchain network with chain ID 77001. - -## Network Details - -- **Chain ID**: 77001 -- **Chain Name**: BORA -- **Short Name**: BORAchain -- **Network ID**: 77001 -- **Currency**: - - **Name**: BORA - - **Symbol**: BORA - - **Decimals**: 18 - -## RPC URLs - -BORAchain mainnet can be accessed through the following RPC endpoints: - -- https://public-node.api.boraportal.com/bora/mainnet -- https://public-node.api.boraportal.io/bora/mainnet - -## BORAchain mainnet Block Explorers - -- [BORAchainscope](https://scope.boraportal.com) - -## Additional Information - -- **Official Website**: https://www.boraportal.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/borne-testnet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/borne-testnet-testnet.mdx deleted file mode 100644 index 7f29fa4d37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/borne-testnet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Borne Testnet Testnet - Avalanche Blockchain Network -description: Explore Borne Testnet Testnet, a blockchain network with chain ID 95549. Learn about its native currency, Borne Testnet Testnet Token, and how to interact with the network. ---- - -# Borne Testnet Testnet - -Borne Testnet Testnet is a blockchain network with chain ID 95549. - -## Network Details - -- **Chain ID**: 95549 -- **Chain Name**: Avalanche -- **Short Name**: Borne Testnet Testnet -- **Network ID**: 95549 -- **Currency**: - - **Name**: Borne Testnet Testnet Token - - **Symbol**: BORNE - - **Decimals**: 18 - -## RPC URLs - -Borne Testnet Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/borne/testnet/rpc - -## Borne Testnet Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Borne Testnet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/borne.mdx b/docs/pages/solutions/chainlist/non-integrated/borne.mdx deleted file mode 100644 index 985ff57031..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/borne.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Borne - Avalanche Blockchain Network -description: Explore Borne, a blockchain network with chain ID 55239. Learn about its native currency, Borne Token, and how to interact with the network. ---- - -# Borne - -Borne is a blockchain network with chain ID 55239. - -## Network Details - -- **Chain ID**: 55239 -- **Chain Name**: Avalanche -- **Short Name**: Borne -- **Network ID**: 55239 -- **Currency**: - - **Name**: Borne Token - - **Symbol**: BORNE - - **Decimals**: 18 - -## RPC URLs - -Borne can be accessed through the following RPC endpoints: - -- https://testnet-bornefdn-w00dd.avax-test.network/ext/bc/28ACsxrnCZoTyUGTgrHxeht4WugDsW9jwdADNFDSBZivaVMxS6/rpc?token=6228963b69d441e8881b5db9611f41e1aec0c0bb0b4b979a7dc6926d2743c18c - -## Borne Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Borne Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bosagora.mdx b/docs/pages/solutions/chainlist/non-integrated/bosagora.mdx deleted file mode 100644 index e3ee143b41..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bosagora.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BOSagora Mainnet - ETH Blockchain Network -description: Explore BOSagora Mainnet, a blockchain network with chain ID 2151. Learn about its native currency, BOSAGORA, and how to interact with the network. ---- - -# BOSagora Mainnet - -BOSagora Mainnet is a blockchain network with chain ID 2151. - -## Network Details - -- **Chain ID**: 2151 -- **Chain Name**: ETH -- **Short Name**: boa -- **Network ID**: 2151 -- **Currency**: - - **Name**: BOSAGORA - - **Symbol**: BOA - - **Decimals**: 18 - -## RPC URLs - -BOSagora Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.bosagora.org -- https://rpc.bosagora.org - -## BOSagora Mainnet Block Explorers - -- [BOASCAN](https://boascan.io) - -## Additional Information - -- **Official Website**: https://docs.bosagora.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/botanix-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/botanix-testnet.mdx deleted file mode 100644 index 140cf3d928..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/botanix-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Botanix Testnet - BOTANIX Blockchain Network -description: Explore Botanix Testnet, a blockchain network with chain ID 3636. Learn about its native currency, Botanix, and how to interact with the network. ---- - -# Botanix Testnet - -Botanix Testnet is a blockchain network with chain ID 3636. - -## Network Details - -- **Chain ID**: 3636 -- **Chain Name**: BOTANIX -- **Short Name**: BTNX -- **Network ID**: 3636 -- **Currency**: - - **Name**: Botanix - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Botanix Testnet can be accessed through the following RPC endpoints: - -- https://node.botanixlabs.dev - -## Botanix Testnet Block Explorers - -- [3xpl](https://3xpl.com/botanix) -- [Blockscout](https://blockscout.botanixlabs.dev) - -## Additional Information - -- **Official Website**: https://botanixlabs.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Botanix Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/botanix.mdx b/docs/pages/solutions/chainlist/non-integrated/botanix.mdx deleted file mode 100644 index ef36e5f18e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/botanix.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Botanix Mainnet - BTC Blockchain Network -description: Explore Botanix Mainnet, a blockchain network with chain ID 3637. Learn about its native currency, Botanix, and how to interact with the network. ---- - -# Botanix Mainnet - -Botanix Mainnet is a blockchain network with chain ID 3637. - -## Network Details - -- **Chain ID**: 3637 -- **Chain Name**: BTC -- **Short Name**: BTCm -- **Network ID**: 3637 -- **Currency**: - - **Name**: Botanix - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Botanix Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.btxtestchain.com - -## Botanix Mainnet Block Explorers - -- [Botanix](https://btxtestchain.com) - -## Additional Information - -- **Official Website**: https://btxtestchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Botanix Mainnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bouncebit-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bouncebit-testnet.mdx deleted file mode 100644 index 848e3bc75d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bouncebit-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: BounceBit Testnet - BounceBit Blockchain Network -description: Explore BounceBit Testnet, a blockchain network with chain ID 6000. Learn about its native currency, BounceBit, and how to interact with the network. ---- - -# BounceBit Testnet - -BounceBit Testnet is a blockchain network with chain ID 6000. - -## Network Details - -- **Chain ID**: 6000 -- **Chain Name**: BounceBit -- **Short Name**: bouncebit-testnet -- **Network ID**: 6000 -- **Currency**: - - **Name**: BounceBit - - **Symbol**: BB - - **Decimals**: 18 - -## RPC URLs - -BounceBit Testnet can be accessed through the following RPC endpoints: - -- https://fullnode-testnet.bouncebitapi.com/ - -## BounceBit Testnet Block Explorers - -- [BBScan Testnet Explorer](https://bbscan.io) - -## Additional Information - -- **Official Website**: https://bouncebit.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## BounceBit Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bouncebit.mdx b/docs/pages/solutions/chainlist/non-integrated/bouncebit.mdx deleted file mode 100644 index 2cc8f3d20e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bouncebit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BounceBit Mainnet - BounceBit Blockchain Network -description: Explore BounceBit Mainnet, a blockchain network with chain ID 6001. Learn about its native currency, BounceBit, and how to interact with the network. ---- - -# BounceBit Mainnet - -BounceBit Mainnet is a blockchain network with chain ID 6001. - -## Network Details - -- **Chain ID**: 6001 -- **Chain Name**: BounceBit -- **Short Name**: bouncebit-mainnet -- **Network ID**: 6001 -- **Currency**: - - **Name**: BounceBit - - **Symbol**: BB - - **Decimals**: 18 - -## RPC URLs - -BounceBit Mainnet can be accessed through the following RPC endpoints: - -- https://fullnode-mainnet.bouncebitapi.com/ - -## BounceBit Mainnet Block Explorers - -- [BBScan Mainnet Explorer](https://bbscan.io) - -## Additional Information - -- **Official Website**: https://bouncebit.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/boyaa.mdx b/docs/pages/solutions/chainlist/non-integrated/boyaa.mdx deleted file mode 100644 index 8674871543..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/boyaa.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Boyaa Mainnet - BYC Blockchain Network -description: Explore Boyaa Mainnet, a blockchain network with chain ID 434. Learn about its native currency, Boyaa mainnet native coin, and how to interact with the network. ---- - -# Boyaa Mainnet - -Boyaa Mainnet is a blockchain network with chain ID 434. - -## Network Details - -- **Chain ID**: 434 -- **Chain Name**: BYC -- **Short Name**: BYC -- **Network ID**: 434 -- **Currency**: - - **Name**: Boyaa mainnet native coin - - **Symbol**: BYC - - **Decimals**: 18 - -## RPC URLs - -Boyaa Mainnet can be accessed through the following RPC endpoints: - -- https://evm-rpc.mainnet.boyaa.network - -## Boyaa Mainnet Block Explorers - -- [Boyaa explorer](https://explorer.mainnet.boyaa.network) - -## Additional Information - -- **Official Website**: https://boyaa.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bpx-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/bpx-blockchain.mdx deleted file mode 100644 index fb90e1aaa7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bpx-blockchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BPX Blockchain - BPX Blockchain Network -description: Explore BPX Blockchain, a blockchain network with chain ID 279. Learn about its native currency, BPX, and how to interact with the network. ---- - -# BPX Blockchain - -BPX Blockchain is a blockchain network with chain ID 279. - -## Network Details - -- **Chain ID**: 279 -- **Chain Name**: BPX -- **Short Name**: bpx -- **Network ID**: 279 -- **Currency**: - - **Name**: BPX - - **Symbol**: BPX - - **Decimals**: 18 - -## RPC URLs - -BPX Blockchain can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.bpxchain.cc -- https://bpx-dataseed.infinex.cc - -## BPX Blockchain Block Explorers - - - -## Additional Information - -- **Official Website**: https://bpxchain.cc - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/brainy-lavender-elephant.mdx b/docs/pages/solutions/chainlist/non-integrated/brainy-lavender-elephant.mdx deleted file mode 100644 index 66248eb6b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/brainy-lavender-elephant.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: brainy-lavender-elephant - Avalanche Blockchain Network -description: Explore brainy-lavender-elephant, a blockchain network with chain ID 490902. Learn about its native currency, brainy-lavender-elephant Token, and how to interact with the network. ---- - -# brainy-lavender-elephant - -brainy-lavender-elephant is a blockchain network with chain ID 490902. - -## Network Details - -- **Chain ID**: 490902 -- **Chain Name**: Avalanche -- **Short Name**: brainy-lavender-elephant -- **Network ID**: 490902 -- **Currency**: - - **Name**: brainy-lavender-elephant Token - - **Symbol**: YID - - **Decimals**: 18 - -## RPC URLs - -brainy-lavender-elephant can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## brainy-lavender-elephant Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## brainy-lavender-elephant Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/brc-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/brc-chain.mdx deleted file mode 100644 index 8e830ecaec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/brc-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BRC Chain Mainnet - BRC Blockchain Network -description: Explore BRC Chain Mainnet, a blockchain network with chain ID 12123. Learn about its native currency, BRC Chain mainnet native token, and how to interact with the network. ---- - -# BRC Chain Mainnet - -BRC Chain Mainnet is a blockchain network with chain ID 12123. - -## Network Details - -- **Chain ID**: 12123 -- **Chain Name**: BRC -- **Short Name**: BRC -- **Network ID**: 12123 -- **Currency**: - - **Name**: BRC Chain mainnet native token - - **Symbol**: BRC - - **Decimals**: 18 - -## RPC URLs - -BRC Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.brcchain.io - -## BRC Chain Mainnet Block Explorers - -- [BRC Chain Explorer](https://scan.brcchain.io) - -## Additional Information - -- **Official Website**: https://bridge.brcchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/brochain.mdx b/docs/pages/solutions/chainlist/non-integrated/brochain.mdx deleted file mode 100644 index 52b2cdf747..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/brochain.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: BROChain Mainnet - BRO Blockchain Network -description: Explore BROChain Mainnet, a blockchain network with chain ID 108801. Learn about its native currency, Brother, and how to interact with the network. ---- - -# BROChain Mainnet - -BROChain Mainnet is a blockchain network with chain ID 108801. - -## Network Details - -- **Chain ID**: 108801 -- **Chain Name**: BRO -- **Short Name**: bro -- **Network ID**: 108801 -- **Currency**: - - **Name**: Brother - - **Symbol**: BRO - - **Decimals**: 18 - -## RPC URLs - -BROChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.brochain.org -- http://rpc.brochain.org -- https://rpc.brochain.org/mainnet -- http://rpc.brochain.org/mainnet - -## BROChain Mainnet Block Explorers - -- [BROChain Explorer](https://explorer.brochain.org) - -## Additional Information - -- **Official Website**: https://brochain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bronos-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bronos-testnet.mdx deleted file mode 100644 index 3b23f41452..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bronos-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bronos Testnet - Bronos Blockchain Network -description: Explore Bronos Testnet, a blockchain network with chain ID 1038. Learn about its native currency, tBRO, and how to interact with the network. ---- - -# Bronos Testnet - -Bronos Testnet is a blockchain network with chain ID 1038. - -## Network Details - -- **Chain ID**: 1038 -- **Chain Name**: Bronos -- **Short Name**: bronos-testnet -- **Network ID**: 1038 -- **Currency**: - - **Name**: tBRO - - **Symbol**: tBRO - - **Decimals**: 18 - -## RPC URLs - -Bronos Testnet can be accessed through the following RPC endpoints: - -- https://evm-testnet.bronos.org - -## Bronos Testnet Block Explorers - -- [Bronos Testnet Explorer](https://tbroscan.bronos.org) - -## Additional Information - -- **Official Website**: https://bronos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bronos Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bronos.mdx b/docs/pages/solutions/chainlist/non-integrated/bronos.mdx deleted file mode 100644 index 4f2baae4f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bronos.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bronos Mainnet - Bronos Blockchain Network -description: Explore Bronos Mainnet, a blockchain network with chain ID 1039. Learn about its native currency, BRO, and how to interact with the network. ---- - -# Bronos Mainnet - -Bronos Mainnet is a blockchain network with chain ID 1039. - -## Network Details - -- **Chain ID**: 1039 -- **Chain Name**: Bronos -- **Short Name**: bronos-mainnet -- **Network ID**: 1039 -- **Currency**: - - **Name**: BRO - - **Symbol**: BRO - - **Decimals**: 18 - -## RPC URLs - -Bronos Mainnet can be accessed through the following RPC endpoints: - - - -## Bronos Mainnet Block Explorers - -- [Bronos Explorer](https://broscan.bronos.org) - -## Additional Information - -- **Official Website**: https://bronos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bsl.mdx b/docs/pages/solutions/chainlist/non-integrated/bsl.mdx deleted file mode 100644 index 54748013dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bsl.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: BSL Mainnet - BSL Blockchain Network -description: Explore BSL Mainnet, a blockchain network with chain ID 21912. Learn about its native currency, Origin NFT, and how to interact with the network. ---- - -# BSL Mainnet - -BSL Mainnet is a blockchain network with chain ID 21912. - -## Network Details - -- **Chain ID**: 21912 -- **Chain Name**: BSL -- **Short Name**: onf -- **Network ID**: 21912 -- **Currency**: - - **Name**: Origin NFT - - **Symbol**: ONF - - **Decimals**: 18 - -## RPC URLs - -BSL Mainnet can be accessed through the following RPC endpoints: - -- http://rpc-mainnet.nftruth.io:8545 -- ws://rpc-mainnet.nftruth.io:8645 - -## BSL Mainnet Block Explorers - -- [BSL Mainnet Explorer](https://scan.nftruth.io) - -## Additional Information - -- **Official Website**: https://bsquarelab.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bst-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bst-chain.mdx deleted file mode 100644 index 33947ea921..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bst-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BST Chain - BSTC Blockchain Network -description: Explore BST Chain, a blockchain network with chain ID 7007. Learn about its native currency, BST Chain, and how to interact with the network. ---- - -# BST Chain - -BST Chain is a blockchain network with chain ID 7007. - -## Network Details - -- **Chain ID**: 7007 -- **Chain Name**: BSTC -- **Short Name**: BSTC -- **Network ID**: 7007 -- **Currency**: - - **Name**: BST Chain - - **Symbol**: BSTC - - **Decimals**: 18 - -## RPC URLs - -BST Chain can be accessed through the following RPC endpoints: - -- https://rpc.bstchain.io/ - -## BST Chain Block Explorers - -- [blockscout](https://bstscan.com) - -## Additional Information - -- **Official Website**: https://bstchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/btachain.mdx b/docs/pages/solutions/chainlist/non-integrated/btachain.mdx deleted file mode 100644 index 0ecdb6c329..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/btachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Btachain - btachain Blockchain Network -description: Explore Btachain, a blockchain network with chain ID 1657. Learn about its native currency, Bitcoin Asset, and how to interact with the network. ---- - -# Btachain - -Btachain is a blockchain network with chain ID 1657. - -## Network Details - -- **Chain ID**: 1657 -- **Chain Name**: btachain -- **Short Name**: bta -- **Network ID**: 1657 -- **Currency**: - - **Name**: Bitcoin Asset - - **Symbol**: BTA - - **Decimals**: 18 - -## RPC URLs - -Btachain can be accessed through the following RPC endpoints: - -- https://dataseed1.btachain.com/ - -## Btachain Block Explorers - - - -## Additional Information - -- **Official Website**: https://bitcoinasset.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/btc20-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/btc20-smart-chain.mdx deleted file mode 100644 index 8eafcfd789..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/btc20-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BTC20 Smart Chain - BTC20 Blockchain Network -description: Explore BTC20 Smart Chain, a blockchain network with chain ID 963. Learn about its native currency, BTCC, and how to interact with the network. ---- - -# BTC20 Smart Chain - -BTC20 Smart Chain is a blockchain network with chain ID 963. - -## Network Details - -- **Chain ID**: 963 -- **Chain Name**: BTC20 -- **Short Name**: btc20 -- **Network ID**: 963 -- **Currency**: - - **Name**: BTCC - - **Symbol**: BTCC - - **Decimals**: 18 - -## RPC URLs - -BTC20 Smart Chain can be accessed through the following RPC endpoints: - -- https://rpc.bitcoincode.technology/ - -## BTC20 Smart Chain Block Explorers - -- [blockscout](https://scan.bitcoincode.technology) - -## Additional Information - -- **Official Website**: https://bitcoincode.technology - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/btcix-network.mdx b/docs/pages/solutions/chainlist/non-integrated/btcix-network.mdx deleted file mode 100644 index b262970228..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/btcix-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BTCIX Network - BTCIX Blockchain Network -description: Explore BTCIX Network, a blockchain network with chain ID 19845. Learn about its native currency, BTCIX Network, and how to interact with the network. ---- - -# BTCIX Network - -BTCIX Network is a blockchain network with chain ID 19845. - -## Network Details - -- **Chain ID**: 19845 -- **Chain Name**: BTCIX -- **Short Name**: btcix -- **Network ID**: 19845 -- **Currency**: - - **Name**: BTCIX Network - - **Symbol**: BTCIX - - **Decimals**: 18 - -## RPC URLs - -BTCIX Network can be accessed through the following RPC endpoints: - -- https://seed.btcix.org/rpc - -## BTCIX Network Block Explorers - -- [BTCIXScan](https://btcixscan.com) - -## Additional Information - -- **Official Website**: https://bitcolojix.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/bubs-testnet-2125031.mdx b/docs/pages/solutions/chainlist/non-integrated/bubs-testnet-2125031.mdx deleted file mode 100644 index 320d78456d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bubs-testnet-2125031.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Bubs Testnet - Optimism Blockchain Network -description: Explore Bubs Testnet, a blockchain network with chain ID 2125031. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Bubs Testnet - -Bubs Testnet is a blockchain network with chain ID 2125031. - -## Network Details - -- **Chain ID**: 2125031 -- **Chain Name**: Optimism -- **Short Name**: Bubs -- **Network ID**: 2125031 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Bubs Testnet can be accessed through the following RPC endpoints: - -- https://bubs-sepolia.rpc.caldera.xyz/http -- wss://bubs-sepolia.rpc.caldera.xyz/ws - -## Bubs Testnet Block Explorers - -- [Bubs Sepolia Explorer](https://bubs-sepolia.explorer.caldera.xyz/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bubs Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bubs-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bubs-testnet.mdx deleted file mode 100644 index bf5deebcd0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bubs-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bubs Testnet - gETH Blockchain Network -description: Explore Bubs Testnet, a blockchain network with chain ID 1582. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Bubs Testnet - -Bubs Testnet is a blockchain network with chain ID 1582. - -## Network Details - -- **Chain ID**: 1582 -- **Chain Name**: gETH -- **Short Name**: Bubs -- **Network ID**: 1582 -- **Currency**: - - **Name**: Ether - - **Symbol**: gETH - - **Decimals**: 18 - -## RPC URLs - -Bubs Testnet can be accessed through the following RPC endpoints: - - - -## Bubs Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bubs Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bulletin-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/bulletin-subnet.mdx deleted file mode 100644 index 78ce24f1a6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bulletin-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Bulletin Subnet - BULLETIN Blockchain Network -description: Explore Bulletin Subnet, a blockchain network with chain ID 78431. Learn about its native currency, BLT, and how to interact with the network. ---- - -# Bulletin Subnet - -Bulletin Subnet is a blockchain network with chain ID 78431. - -## Network Details - -- **Chain ID**: 78431 -- **Chain Name**: BULLETIN -- **Short Name**: bulletin -- **Network ID**: 78431 -- **Currency**: - - **Name**: BLT - - **Symbol**: BLT - - **Decimals**: 18 - -## RPC URLs - -Bulletin Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/bulletin/testnet/rpc - -## Bulletin Subnet Block Explorers - -- [BULLETIN Explorer](https://subnets-test.avax.network/bulletin) - -## Additional Information - -- **Official Website**: https://www.avax.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Bulletin Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/bullions-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/bullions-smart-chain.mdx deleted file mode 100644 index 11fb892038..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/bullions-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Bullions Smart Chain - Bullions Blockchain Network -description: Explore Bullions Smart Chain, a blockchain network with chain ID 8732. Learn about its native currency, Bullions, and how to interact with the network. ---- - -# Bullions Smart Chain - -Bullions Smart Chain is a blockchain network with chain ID 8732. - -## Network Details - -- **Chain ID**: 8732 -- **Chain Name**: Bullions -- **Short Name**: bln -- **Network ID**: 8732 -- **Currency**: - - **Name**: Bullions - - **Symbol**: BLN - - **Decimals**: 18 - -## RPC URLs - -Bullions Smart Chain can be accessed through the following RPC endpoints: - -- https://rpc.bullionsx.org - -## Bullions Smart Chain Block Explorers - -- [Bullionscan](https://bullionscan.org) - -## Additional Information - -- **Official Website**: https://www.bullionsx.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/c4ei.mdx b/docs/pages/solutions/chainlist/non-integrated/c4ei.mdx deleted file mode 100644 index a341aaab47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/c4ei.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: C4EI - C4EI Blockchain Network -description: Explore C4EI, a blockchain network with chain ID 21004. Learn about its native currency, C4EI, and how to interact with the network. ---- - -# C4EI - -C4EI is a blockchain network with chain ID 21004. - -## Network Details - -- **Chain ID**: 21004 -- **Chain Name**: C4EI -- **Short Name**: c4ei -- **Network ID**: 21004 -- **Currency**: - - **Name**: C4EI - - **Symbol**: C4EI - - **Decimals**: 18 - -## RPC URLs - -C4EI can be accessed through the following RPC endpoints: - -- https://rpc.c4ei.net - -## C4EI Block Explorers - -- [C4EI sirato](https://exp.c4ei.net) - -## Additional Information - -- **Official Website**: https://c4ei.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/caga-crypto-ankara-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/caga-crypto-ankara-testnet.mdx deleted file mode 100644 index 7e993f7d0d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/caga-crypto-ankara-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: CAGA crypto Ankara testnet - Ankara Blockchain Network -description: Explore CAGA crypto Ankara testnet, a blockchain network with chain ID 72778. Learn about its native currency, Caga, and how to interact with the network. ---- - -# CAGA crypto Ankara testnet - -CAGA crypto Ankara testnet is a blockchain network with chain ID 72778. - -## Network Details - -- **Chain ID**: 72778 -- **Chain Name**: Ankara -- **Short Name**: caga -- **Network ID**: 72778 -- **Currency**: - - **Name**: Caga - - **Symbol**: CAGA - - **Decimals**: 18 - -## RPC URLs - -CAGA crypto Ankara testnet can be accessed through the following RPC endpoints: - -- https://www.ankara-cagacrypto.com -- wss://wss.ankara-cagacrypto.com - -## CAGA crypto Ankara testnet Block Explorers - -- [ankara](https://explorer.ankara-cagacrypto.com) - -## Additional Information - -- **Official Website**: https://www.cagacrypto.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CAGA crypto Ankara testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/callisto-testnet-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/callisto-testnet-deprecated.mdx deleted file mode 100644 index d13feb9fc6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/callisto-testnet-deprecated.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Callisto Testnet Deprecated - CLO Blockchain Network -description: Explore Callisto Testnet Deprecated, a blockchain network with chain ID 821. Learn about its native currency, Callisto Testnet Ether, and how to interact with the network. ---- - -# Callisto Testnet Deprecated - -Callisto Testnet Deprecated is a blockchain network with chain ID 821. - -## Network Details - -- **Chain ID**: 821 -- **Chain Name**: CLO -- **Short Name**: tclo -- **Network ID**: 821 -- **Currency**: - - **Name**: Callisto Testnet Ether - - **Symbol**: TCLO - - **Decimals**: 18 - -## RPC URLs - -Callisto Testnet Deprecated can be accessed through the following RPC endpoints: - - - -## Callisto Testnet Deprecated Block Explorers - - - -## Additional Information - -- **Official Website**: https://callisto.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Callisto Testnet Deprecated Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/callisto-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/callisto-testnet.mdx deleted file mode 100644 index 6a90c84434..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/callisto-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Callisto Testnet - CLO Blockchain Network -description: Explore Callisto Testnet, a blockchain network with chain ID 20729. Learn about its native currency, Callisto, and how to interact with the network. ---- - -# Callisto Testnet - -Callisto Testnet is a blockchain network with chain ID 20729. - -## Network Details - -- **Chain ID**: 20729 -- **Chain Name**: CLO -- **Short Name**: CLOTestnet -- **Network ID**: 20729 -- **Currency**: - - **Name**: Callisto - - **Symbol**: CLO - - **Decimals**: 18 - -## RPC URLs - -Callisto Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.callisto.network/ - -## Callisto Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://callisto.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Callisto Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/callisto.mdx b/docs/pages/solutions/chainlist/non-integrated/callisto.mdx deleted file mode 100644 index 8a31e6182f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/callisto.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Callisto Mainnet - CLO Blockchain Network -description: Explore Callisto Mainnet, a blockchain network with chain ID 820. Learn about its native currency, Callisto, and how to interact with the network. ---- - -# Callisto Mainnet - -Callisto Mainnet is a blockchain network with chain ID 820. - -## Network Details - -- **Chain ID**: 820 -- **Chain Name**: CLO -- **Short Name**: clo -- **Network ID**: 820 -- **Currency**: - - **Name**: Callisto - - **Symbol**: CLO - - **Decimals**: 18 - -## RPC URLs - -Callisto Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.callisto.network/ - -## Callisto Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://callisto.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/camdl-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/camdl-testnet.mdx deleted file mode 100644 index b8f2981fca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camdl-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CamDL Testnet - CADL Blockchain Network -description: Explore CamDL Testnet, a blockchain network with chain ID 395. Learn about its native currency, CADL, and how to interact with the network. ---- - -# CamDL Testnet - -CamDL Testnet is a blockchain network with chain ID 395. - -## Network Details - -- **Chain ID**: 395 -- **Chain Name**: CADL -- **Short Name**: camdl-testnet -- **Network ID**: 395 -- **Currency**: - - **Name**: CADL - - **Symbol**: CADL - - **Decimals**: 18 - -## RPC URLs - -CamDL Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.testnet.camdl.gov.kh/ - -## CamDL Testnet Block Explorers - -- [CamDL Testnet Explorer](https://explorer.testnet.camdl.gov.kh) - -## Additional Information - -- **Official Website**: https://camdl.gov.kh/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CamDL Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/camdl.mdx b/docs/pages/solutions/chainlist/non-integrated/camdl.mdx deleted file mode 100644 index 9df637782a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camdl.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CamDL Mainnet - CADL Blockchain Network -description: Explore CamDL Mainnet, a blockchain network with chain ID 95. Learn about its native currency, CADL, and how to interact with the network. ---- - -# CamDL Mainnet - -CamDL Mainnet is a blockchain network with chain ID 95. - -## Network Details - -- **Chain ID**: 95 -- **Chain Name**: CADL -- **Short Name**: camdl -- **Network ID**: 95 -- **Currency**: - - **Name**: CADL - - **Symbol**: CADL - - **Decimals**: 18 - -## RPC URLs - -CamDL Mainnet can be accessed through the following RPC endpoints: - -- https://rpc1.camdl.gov.kh/ - -## CamDL Mainnet Block Explorers - -- [CamDL Block Explorer](https://explorer.camdl.gov.kh) - -## Additional Information - -- **Official Website**: https://camdl.gov.kh/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/camelark.mdx b/docs/pages/solutions/chainlist/non-integrated/camelark.mdx deleted file mode 100644 index 23847c7793..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camelark.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Camelark Mainnet - ETHW Blockchain Network -description: Explore Camelark Mainnet, a blockchain network with chain ID 20001. Learn about its native currency, EthereumPoW, and how to interact with the network. ---- - -# Camelark Mainnet - -Camelark Mainnet is a blockchain network with chain ID 20001. - -## Network Details - -- **Chain ID**: 20001 -- **Chain Name**: ETHW -- **Short Name**: Camelark -- **Network ID**: 20001 -- **Currency**: - - **Name**: EthereumPoW - - **Symbol**: ETHW - - **Decimals**: 18 - -## RPC URLs - -Camelark Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-http-rpc.camelark.com - -## Camelark Mainnet Block Explorers - -- [CamelarkScan](https://scan.camelark.com) - -## Additional Information - -- **Official Website**: https://www.camelark.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/camino-c-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/camino-c-chain.mdx deleted file mode 100644 index e63636fac3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camino-c-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Camino C-Chain - CAM Blockchain Network -description: Explore Camino C-Chain, a blockchain network with chain ID 500. Learn about its native currency, Camino, and how to interact with the network. ---- - -# Camino C-Chain - -Camino C-Chain is a blockchain network with chain ID 500. - -## Network Details - -- **Chain ID**: 500 -- **Chain Name**: CAM -- **Short Name**: Camino -- **Network ID**: 500 -- **Currency**: - - **Name**: Camino - - **Symbol**: CAM - - **Decimals**: 18 - -## RPC URLs - -Camino C-Chain can be accessed through the following RPC endpoints: - -- https://api.camino.network/ext/bc/C/rpc - -## Camino C-Chain Block Explorers - -- [blockexplorer](https://suite.camino.network/explorer) - -## Additional Information - -- **Official Website**: https://camino.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/camp-network-testnet-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/camp-network-testnet-v2.mdx deleted file mode 100644 index ce272f867f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camp-network-testnet-v2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Camp Network Testnet V2 - Camp Network Testnet V2 Blockchain Network -description: Explore Camp Network Testnet V2, a blockchain network with chain ID 325000. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Camp Network Testnet V2 - -Camp Network Testnet V2 is a blockchain network with chain ID 325000. - -## Network Details - -- **Chain ID**: 325000 -- **Chain Name**: Camp Network Testnet V2 -- **Short Name**: Camp Testnet v2 -- **Network ID**: 325000 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Camp Network Testnet V2 can be accessed through the following RPC endpoints: - -- https://rpc.camp-network-testnet.gelato.digital - -## Camp Network Testnet V2 Block Explorers - -- [Camp Network Testnet explorer](https://camp-network-testnet.blockscout.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Camp Network Testnet V2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/camp-network.mdx b/docs/pages/solutions/chainlist/non-integrated/camp-network.mdx deleted file mode 100644 index b94b2fa5c2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/camp-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Camp Testnet - ETH Blockchain Network -description: Explore Camp Testnet, a blockchain network with chain ID 90354. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# Camp Testnet - -Camp Testnet is a blockchain network with chain ID 90354. - -## Network Details - -- **Chain ID**: 90354 -- **Chain Name**: ETH -- **Short Name**: camp -- **Network ID**: 90354 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Camp Testnet can be accessed through the following RPC endpoints: - -- https://rpc-camp-network-4xje7wy105.t.conduit.xyz - -## Camp Testnet Block Explorers - -- [blockscout](https://explorerl2new-camp-network-4xje7wy105.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://campaign-1.gitbook.io/camp-technical-docså - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Camp Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/candle.mdx b/docs/pages/solutions/chainlist/non-integrated/candle.mdx deleted file mode 100644 index 61fcf55382..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/candle.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Candle - Candle Blockchain Network -description: Explore Candle, a blockchain network with chain ID 534. Learn about its native currency, CANDLE, and how to interact with the network. ---- - -# Candle - -Candle is a blockchain network with chain ID 534. - -## Network Details - -- **Chain ID**: 534 -- **Chain Name**: Candle -- **Short Name**: CNDL -- **Network ID**: 534 -- **Currency**: - - **Name**: CANDLE - - **Symbol**: CNDL - - **Decimals**: 18 - -## RPC URLs - -Candle can be accessed through the following RPC endpoints: - -- https://candle-rpc.com/ -- https://rpc.cndlchain.com - -## Candle Block Explorers - -- [candleexplorer](https://candleexplorer.com) - -## Additional Information - -- **Official Website**: https://candlelabs.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/canto-tesnet.mdx b/docs/pages/solutions/chainlist/non-integrated/canto-tesnet.mdx deleted file mode 100644 index 4bf44d0225..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/canto-tesnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Canto Tesnet - Canto Blockchain Network -description: Explore Canto Tesnet, a blockchain network with chain ID 7701. Learn about its native currency, Testnet Canto, and how to interact with the network. ---- - -# Canto Tesnet - -Canto Tesnet is a blockchain network with chain ID 7701. - -## Network Details - -- **Chain ID**: 7701 -- **Chain Name**: Canto -- **Short Name**: TestnetCanto -- **Network ID**: 7701 -- **Currency**: - - **Name**: Testnet Canto - - **Symbol**: CANTO - - **Decimals**: 18 - -## RPC URLs - -Canto Tesnet can be accessed through the following RPC endpoints: - -- https://testnet-archive.plexnode.wtf - -## Canto Tesnet Block Explorers - -- [Canto Testnet EVM Explorer (Blockscout)](https://testnet.tuber.build) -- [dexguru](https://canto-test.dex.guru) - -## Additional Information - -- **Official Website**: https://canto.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Canto Tesnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/canto-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/canto-testnet.mdx deleted file mode 100644 index f4f6aa69be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/canto-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Canto Testnet - Canto Tesnet Blockchain Network -description: Explore Canto Testnet, a blockchain network with chain ID 740. Learn about its native currency, Canto, and how to interact with the network. ---- - -# Canto Testnet - -Canto Testnet is a blockchain network with chain ID 740. - -## Network Details - -- **Chain ID**: 740 -- **Chain Name**: Canto Tesnet -- **Short Name**: tcanto -- **Network ID**: 740 -- **Currency**: - - **Name**: Canto - - **Symbol**: CANTO - - **Decimals**: 18 - -## RPC URLs - -Canto Testnet can be accessed through the following RPC endpoints: - -- https://eth.plexnode.wtf/ - -## Canto Testnet Block Explorers - -- [Canto Tesnet Explorer (Neobase)](https://testnet-explorer.canto.neobase.one) - -## Additional Information - -- **Official Website**: https://canto.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Canto Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/canto.mdx b/docs/pages/solutions/chainlist/non-integrated/canto.mdx deleted file mode 100644 index c2e372ff0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/canto.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Canto - Canto Blockchain Network -description: Explore Canto, a blockchain network with chain ID 7700. Learn about its native currency, Canto, and how to interact with the network. ---- - -# Canto - -Canto is a blockchain network with chain ID 7700. - -## Network Details - -- **Chain ID**: 7700 -- **Chain Name**: Canto -- **Short Name**: canto -- **Network ID**: 7700 -- **Currency**: - - **Name**: Canto - - **Symbol**: CANTO - - **Decimals**: 18 - -## RPC URLs - -Canto can be accessed through the following RPC endpoints: - -- https://canto.slingshot.finance -- https://canto-rpc.ansybl.io -- https://mainnode.plexnode.org:8545 -- https://canto.gravitychain.io/ - -## Canto Block Explorers - -- [Canto Explorer (OKLink)](https://www.oklink.com/canto) -- [Canto EVM Explorer (Blockscout)](https://tuber.build) -- [dexguru](https://canto.dex.guru) - -## Additional Information - -- **Official Website**: https://canto.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/canxium.mdx b/docs/pages/solutions/chainlist/non-integrated/canxium.mdx deleted file mode 100644 index 5d2f0a19b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/canxium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Canxium Mainnet - CAU Blockchain Network -description: Explore Canxium Mainnet, a blockchain network with chain ID 3003. Learn about its native currency, Canxium, and how to interact with the network. ---- - -# Canxium Mainnet - -Canxium Mainnet is a blockchain network with chain ID 3003. - -## Network Details - -- **Chain ID**: 3003 -- **Chain Name**: CAU -- **Short Name**: cau -- **Network ID**: 3003 -- **Currency**: - - **Name**: Canxium - - **Symbol**: CAU - - **Decimals**: 18 - -## RPC URLs - -Canxium Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.canxium.org - -## Canxium Mainnet Block Explorers - -- [canxium explorer](https://explorer.canxium.org) - -## Additional Information - -- **Official Website**: https://canxium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/carbon-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/carbon-evm-testnet.mdx deleted file mode 100644 index d0df1e426d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/carbon-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Carbon EVM Testnet - Carbon Blockchain Network -description: Explore Carbon EVM Testnet, a blockchain network with chain ID 9792. Learn about its native currency, swth, and how to interact with the network. ---- - -# Carbon EVM Testnet - -Carbon EVM Testnet is a blockchain network with chain ID 9792. - -## Network Details - -- **Chain ID**: 9792 -- **Chain Name**: Carbon -- **Short Name**: carbon-testnet -- **Network ID**: 9792 -- **Currency**: - - **Name**: swth - - **Symbol**: SWTH - - **Decimals**: 18 - -## RPC URLs - -Carbon EVM Testnet can be accessed through the following RPC endpoints: - -- https://test-evm-api.carbon.network/ - -## Carbon EVM Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://carbon.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Carbon EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/carbon-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/carbon-evm.mdx deleted file mode 100644 index c9f882bdc3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/carbon-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Carbon EVM - Carbon Blockchain Network -description: Explore Carbon EVM, a blockchain network with chain ID 9790. Learn about its native currency, swth, and how to interact with the network. ---- - -# Carbon EVM - -Carbon EVM is a blockchain network with chain ID 9790. - -## Network Details - -- **Chain ID**: 9790 -- **Chain Name**: Carbon -- **Short Name**: carbon -- **Network ID**: 9790 -- **Currency**: - - **Name**: swth - - **Symbol**: SWTH - - **Decimals**: 18 - -## RPC URLs - -Carbon EVM can be accessed through the following RPC endpoints: - -- https://evm-api.carbon.network/ - -## Carbon EVM Block Explorers - - - -## Additional Information - -- **Official Website**: https://carbon.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/carbonium-testnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/carbonium-testnet-network.mdx deleted file mode 100644 index ff7102515d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/carbonium-testnet-network.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Carbonium Testnet Network - CBR Blockchain Network -description: Explore Carbonium Testnet Network, a blockchain network with chain ID 4040. Learn about its native currency, Carbonium, and how to interact with the network. ---- - -# Carbonium Testnet Network - -Carbonium Testnet Network is a blockchain network with chain ID 4040. - -## Network Details - -- **Chain ID**: 4040 -- **Chain Name**: CBR -- **Short Name**: tcbr -- **Network ID**: 4040 -- **Currency**: - - **Name**: Carbonium - - **Symbol**: tCBR - - **Decimals**: 18 - -## RPC URLs - -Carbonium Testnet Network can be accessed through the following RPC endpoints: - -- https://rpc-dev.carbonium.network/ -- https://server-testnet.carbonium.network - -## Carbonium Testnet Network Block Explorers - -- [Carbonium Network tesnet Explorer](https://testnet.carboniumscan.com) - -## Additional Information - -- **Official Website**: https://carbonium.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Carbonium Testnet Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cascadia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cascadia-testnet.mdx deleted file mode 100644 index 25c69fddfe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cascadia-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Cascadia Testnet - Cascadia Blockchain Network -description: Explore Cascadia Testnet, a blockchain network with chain ID 6102. Learn about its native currency, CC, and how to interact with the network. ---- - -# Cascadia Testnet - -Cascadia Testnet is a blockchain network with chain ID 6102. - -## Network Details - -- **Chain ID**: 6102 -- **Chain Name**: Cascadia -- **Short Name**: cascadia -- **Network ID**: 6102 -- **Currency**: - - **Name**: CC - - **Symbol**: tCC - - **Decimals**: 18 - -## RPC URLs - -Cascadia Testnet can be accessed through the following RPC endpoints: - -- https://testnet.cascadia.foundation - -## Cascadia Testnet Block Explorers - -- [Cascadia EVM Explorer](https://explorer.cascadia.foundation) -- [Cascadia Cosmos Explorer](https://validator.cascadia.foundation) - -## Additional Information - -- **Official Website**: https://www.cascadia.foundation - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cascadia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/catalyst.mdx b/docs/pages/solutions/chainlist/non-integrated/catalyst.mdx deleted file mode 100644 index af01d3c731..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/catalyst.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Catalyst - CFG Blockchain Network -description: Explore Catalyst, a blockchain network with chain ID 2032. Learn about its native currency, Catalyst CFG, and how to interact with the network. ---- - -# Catalyst - -Catalyst is a blockchain network with chain ID 2032. - -## Network Details - -- **Chain ID**: 2032 -- **Chain Name**: CFG -- **Short Name**: ncfg -- **Network ID**: 2032 -- **Currency**: - - **Name**: Catalyst CFG - - **Symbol**: NCFG - - **Decimals**: 18 - -## RPC URLs - -Catalyst can be accessed through the following RPC endpoints: - -- wss://fullnode.catalyst.cntrfg.com - -## Catalyst Block Explorers - - - -## Additional Information - -- **Official Website**: https://centrifuge.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/catecoin-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/catecoin-chain.mdx deleted file mode 100644 index 4fd010a8cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/catecoin-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Catecoin Chain Mainnet - Catechain Blockchain Network -description: Explore Catecoin Chain Mainnet, a blockchain network with chain ID 1618. Learn about its native currency, Catecoin, and how to interact with the network. ---- - -# Catecoin Chain Mainnet - -Catecoin Chain Mainnet is a blockchain network with chain ID 1618. - -## Network Details - -- **Chain ID**: 1618 -- **Chain Name**: Catechain -- **Short Name**: cate -- **Network ID**: 1618 -- **Currency**: - - **Name**: Catecoin - - **Symbol**: CATE - - **Decimals**: 18 - -## RPC URLs - -Catecoin Chain Mainnet can be accessed through the following RPC endpoints: - -- https://send.catechain.com - -## Catecoin Chain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://catechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/celo-alfajores-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/celo-alfajores-testnet.mdx deleted file mode 100644 index 481f90fea5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/celo-alfajores-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Celo Dango Testnet - CELO Blockchain Network -description: Explore Celo Dango Testnet, a blockchain network with chain ID 44787. Learn about its native currency, CELO, and how to interact with the network. ---- - -# Celo Dango Testnet - -Celo Dango Testnet is a blockchain network with chain ID 44787. - -## Network Details - -- **Chain ID**: 44787 -- **Chain Name**: CELO -- **Short Name**: Dango -- **Network ID**: 44787 -- **Currency**: - - **Name**: CELO - - **Symbol**: CELO - - **Decimals**: 18 - -## RPC URLs - -Celo Dango Testnet can be accessed through the following RPC endpoints: - - - -## Celo Dango Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.celo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Celo Dango Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/celo-baklava-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/celo-baklava-testnet.mdx deleted file mode 100644 index 3577d1b93d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/celo-baklava-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Celo Baklava Testnet - CELO Blockchain Network -description: Explore Celo Baklava Testnet, a blockchain network with chain ID 62320. Learn about its native currency, CELO, and how to interact with the network. ---- - -# Celo Baklava Testnet - -Celo Baklava Testnet is a blockchain network with chain ID 62320. - -## Network Details - -- **Chain ID**: 62320 -- **Chain Name**: CELO -- **Short Name**: BKLV -- **Network ID**: 62320 -- **Currency**: - - **Name**: CELO - - **Symbol**: CELO - - **Decimals**: 18 - -## RPC URLs - -Celo Baklava Testnet can be accessed through the following RPC endpoints: - -- https://baklava-forno.celo-testnet.org - -## Celo Baklava Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.celo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Celo Baklava Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/celo.mdx b/docs/pages/solutions/chainlist/non-integrated/celo.mdx deleted file mode 100644 index b4f72819de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/celo.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Celo Mainnet - CELO Blockchain Network -description: Explore Celo Mainnet, a blockchain network with chain ID 42220. Learn about its native currency, CELO, and how to interact with the network. ---- - -# Celo Mainnet - -Celo Mainnet is a blockchain network with chain ID 42220. - -## Network Details - -- **Chain ID**: 42220 -- **Chain Name**: CELO -- **Short Name**: celo -- **Network ID**: 42220 -- **Currency**: - - **Name**: CELO - - **Symbol**: CELO - - **Decimals**: 18 - -## RPC URLs - -Celo Mainnet can be accessed through the following RPC endpoints: - -- https://forno.celo.org -- wss://forno.celo.org/ws - -## Celo Mainnet Block Explorers - -- [blockscout](https://explorer.celo.org) -- [Celoscan](https://celoscan.io) - -## Additional Information - -- **Official Website**: https://docs.celo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cennznet-azalea.mdx b/docs/pages/solutions/chainlist/non-integrated/cennznet-azalea.mdx deleted file mode 100644 index 78329230a3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cennznet-azalea.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CENNZnet Azalea - CENNZnet Blockchain Network -description: Explore CENNZnet Azalea, a blockchain network with chain ID 21337. Learn about its native currency, CPAY, and how to interact with the network. ---- - -# CENNZnet Azalea - -CENNZnet Azalea is a blockchain network with chain ID 21337. - -## Network Details - -- **Chain ID**: 21337 -- **Chain Name**: CENNZnet -- **Short Name**: cennz-a -- **Network ID**: 21337 -- **Currency**: - - **Name**: CPAY - - **Symbol**: CPAY - - **Decimals**: 18 - -## RPC URLs - -CENNZnet Azalea can be accessed through the following RPC endpoints: - -- https://cennznet.unfrastructure.io/public - -## CENNZnet Azalea Block Explorers - -- [UNcover](https://uncoverexplorer.com) - -## Additional Information - -- **Official Website**: https://cennz.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cennznet-nikau.mdx b/docs/pages/solutions/chainlist/non-integrated/cennznet-nikau.mdx deleted file mode 100644 index 7e9f66fc6e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cennznet-nikau.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CENNZnet Nikau - CENNZnet Blockchain Network -description: Explore CENNZnet Nikau, a blockchain network with chain ID 3001. Learn about its native currency, CPAY, and how to interact with the network. ---- - -# CENNZnet Nikau - -CENNZnet Nikau is a blockchain network with chain ID 3001. - -## Network Details - -- **Chain ID**: 3001 -- **Chain Name**: CENNZnet -- **Short Name**: cennz-n -- **Network ID**: 3001 -- **Currency**: - - **Name**: CPAY - - **Symbol**: CPAY - - **Decimals**: 18 - -## RPC URLs - -CENNZnet Nikau can be accessed through the following RPC endpoints: - -- https://nikau.centrality.me/public - -## CENNZnet Nikau Block Explorers - -- [UNcover](https://www.uncoverexplorer.com/?network=Nikau) - -## Additional Information - -- **Official Website**: https://cennz.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cennznet-rata.mdx b/docs/pages/solutions/chainlist/non-integrated/cennznet-rata.mdx deleted file mode 100644 index ed7ab4148f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cennznet-rata.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CENNZnet Rata - CENNZnet Blockchain Network -description: Explore CENNZnet Rata, a blockchain network with chain ID 3000. Learn about its native currency, CPAY, and how to interact with the network. ---- - -# CENNZnet Rata - -CENNZnet Rata is a blockchain network with chain ID 3000. - -## Network Details - -- **Chain ID**: 3000 -- **Chain Name**: CENNZnet -- **Short Name**: cennz-r -- **Network ID**: 3000 -- **Currency**: - - **Name**: CPAY - - **Symbol**: CPAY - - **Decimals**: 18 - -## RPC URLs - -CENNZnet Rata can be accessed through the following RPC endpoints: - - - -## CENNZnet Rata Block Explorers - - - -## Additional Information - -- **Official Website**: https://cennz.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/centrifuge.mdx b/docs/pages/solutions/chainlist/non-integrated/centrifuge.mdx deleted file mode 100644 index faca322f8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/centrifuge.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Centrifuge - CFG Blockchain Network -description: Explore Centrifuge, a blockchain network with chain ID 2031. Learn about its native currency, Centrifuge, and how to interact with the network. ---- - -# Centrifuge - -Centrifuge is a blockchain network with chain ID 2031. - -## Network Details - -- **Chain ID**: 2031 -- **Chain Name**: CFG -- **Short Name**: cfg -- **Network ID**: 2031 -- **Currency**: - - **Name**: Centrifuge - - **Symbol**: CFG - - **Decimals**: 18 - -## RPC URLs - -Centrifuge can be accessed through the following RPC endpoints: - -- https://fullnode.centrifuge.io -- wss://fullnode.centrifuge.io -- https://centrifuge-parachain.api.onfinality.io/public -- wss://centrifuge-parachain.api.onfinality.io/public-ws -- https://centrifuge-rpc.dwellir.com -- wss://centrifuge-rpc.dwellir.com -- https://rpc-centrifuge.luckyfriday.io -- wss://rpc-centrifuge.luckyfriday.io - -## Centrifuge Block Explorers - -- [subscan](https://centrifuge.subscan.io) - -## Additional Information - -- **Official Website**: https://centrifuge.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cerium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cerium-testnet.mdx deleted file mode 100644 index 192a8a1551..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cerium-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cerium Testnet - CAU Blockchain Network -description: Explore Cerium Testnet, a blockchain network with chain ID 30103. Learn about its native currency, Canxium, and how to interact with the network. ---- - -# Cerium Testnet - -Cerium Testnet is a blockchain network with chain ID 30103. - -## Network Details - -- **Chain ID**: 30103 -- **Chain Name**: CAU -- **Short Name**: ceri -- **Network ID**: 30103 -- **Currency**: - - **Name**: Canxium - - **Symbol**: CAU - - **Decimals**: 18 - -## RPC URLs - -Cerium Testnet can be accessed through the following RPC endpoints: - -- https://cerium-rpc.canxium.net - -## Cerium Testnet Block Explorers - -- [canxium explorer](https://cerium-explorer.canxium.net) - -## Additional Information - -- **Official Website**: https://canxium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cerium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/chain-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/chain-verse.mdx deleted file mode 100644 index 514f7ea158..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chain-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Chain Verse Mainnet - CVERSE Blockchain Network -description: Explore Chain Verse Mainnet, a blockchain network with chain ID 5555. Learn about its native currency, Oasys, and how to interact with the network. ---- - -# Chain Verse Mainnet - -Chain Verse Mainnet is a blockchain network with chain ID 5555. - -## Network Details - -- **Chain ID**: 5555 -- **Chain Name**: CVERSE -- **Short Name**: cverse -- **Network ID**: 5555 -- **Currency**: - - **Name**: Oasys - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Chain Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.chainverse.info - -## Chain Verse Mainnet Block Explorers - -- [Chain Verse Explorer](https://explorer.chainverse.info) - -## Additional Information - -- **Official Website**: https://chainverse.info - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/chakra-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/chakra-testnet.mdx deleted file mode 100644 index 8f10650e1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chakra-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chakra Testnet - Chakra Testnet Blockchain Network -description: Explore Chakra Testnet, a blockchain network with chain ID 8545. Learn about its native currency, Chakra, and how to interact with the network. ---- - -# Chakra Testnet - -Chakra Testnet is a blockchain network with chain ID 8545. - -## Network Details - -- **Chain ID**: 8545 -- **Chain Name**: Chakra Testnet -- **Short Name**: ChakraTN -- **Network ID**: 8545 -- **Currency**: - - **Name**: Chakra - - **Symbol**: CKR - - **Decimals**: 18 - -## RPC URLs - -Chakra Testnet can be accessed through the following RPC endpoints: - -- https://rpcv1-dn-1.chakrachain.io/ - -## Chakra Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chakra Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/chaos-(skale-testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/chaos-(skale-testnet).mdx deleted file mode 100644 index f6669dddcf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chaos-(skale-testnet).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chaos (SKALE Testnet) - staging-fast-active-bellatrix Blockchain Network -description: Explore Chaos (SKALE Testnet), a blockchain network with chain ID 1351057110. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# Chaos (SKALE Testnet) - -Chaos (SKALE Testnet) is a blockchain network with chain ID 1351057110. - -## Network Details - -- **Chain ID**: 1351057110 -- **Chain Name**: staging-fast-active-bellatrix -- **Short Name**: chaos-tenet -- **Network ID**: 1351057110 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -Chaos (SKALE Testnet) can be accessed through the following RPC endpoints: - -- https://staging-v3.skalenodes.com/v1/staging-fast-active-bellatrix - -## Chaos (SKALE Testnet) Block Explorers - -- [Blockscout](https://staging-fast-active-bellatrix.explorer.staging-v3.skalenodes.com) - -## Additional Information - -- **Official Website**: https://docs.skale.network/develop/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chaos (SKALE Testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/charmverse-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/charmverse-testnet.mdx deleted file mode 100644 index d0728b0fec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/charmverse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Charmverse Testnet - Charmverse Testnet Blockchain Network -description: Explore Charmverse Testnet, a blockchain network with chain ID 5104. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Charmverse Testnet - -Charmverse Testnet is a blockchain network with chain ID 5104. - -## Network Details - -- **Chain ID**: 5104 -- **Chain Name**: Charmverse Testnet -- **Short Name**: charmverse-testnet -- **Network ID**: 5104 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Charmverse Testnet can be accessed through the following RPC endpoints: - -- https://rpc-charmverse-testnet-g6blnaebes.t.conduit.xyz - -## Charmverse Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://charmverse.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Charmverse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cheapeth.mdx b/docs/pages/solutions/chainlist/non-integrated/cheapeth.mdx deleted file mode 100644 index be94362fee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cheapeth.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: cheapETH - cheapETH Blockchain Network -description: Explore cheapETH, a blockchain network with chain ID 777. Learn about its native currency, cTH, and how to interact with the network. ---- - -# cheapETH - -cheapETH is a blockchain network with chain ID 777. - -## Network Details - -- **Chain ID**: 777 -- **Chain Name**: cheapETH -- **Short Name**: cth -- **Network ID**: 777 -- **Currency**: - - **Name**: cTH - - **Symbol**: cTH - - **Decimals**: 18 - -## RPC URLs - -cheapETH can be accessed through the following RPC endpoints: - -- https://node.cheapeth.org/rpc - -## cheapETH Block Explorers - - - -## Additional Information - -- **Official Website**: https://cheapeth.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/checkdot-blockchain-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/checkdot-blockchain-devnet.mdx deleted file mode 100644 index 716c0db52c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/checkdot-blockchain-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CheckDot Blockchain Devnet - CDT Blockchain Blockchain Network -description: Explore CheckDot Blockchain Devnet, a blockchain network with chain ID 831. Learn about its native currency, CDT, and how to interact with the network. ---- - -# CheckDot Blockchain Devnet - -CheckDot Blockchain Devnet is a blockchain network with chain ID 831. - -## Network Details - -- **Chain ID**: 831 -- **Chain Name**: CDT Blockchain -- **Short Name**: cdt -- **Network ID**: 831 -- **Currency**: - - **Name**: CDT - - **Symbol**: CDT - - **Decimals**: 18 - -## RPC URLs - -CheckDot Blockchain Devnet can be accessed through the following RPC endpoints: - -- https://devnet.checkdot.io - -## CheckDot Blockchain Devnet Block Explorers - -- [CDT Explorer](https://explorer.checkdot.io) - -## Additional Information - -- **Official Website**: https://checkdot.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/chennai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/chennai-testnet.mdx deleted file mode 100644 index da075f2be6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chennai-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chennai Testnet - Avalanche Blockchain Network -description: Explore Chennai Testnet, a blockchain network with chain ID 111223. Learn about its native currency, Chennai Testnet Token, and how to interact with the network. ---- - -# Chennai Testnet - -Chennai Testnet is a blockchain network with chain ID 111223. - -## Network Details - -- **Chain ID**: 111223 -- **Chain Name**: Avalanche -- **Short Name**: Chennai Testnet -- **Network ID**: 111223 -- **Currency**: - - **Name**: Chennai Testnet Token - - **Symbol**: ZOD - - **Decimals**: 18 - -## RPC URLs - -Chennai Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/chennai/testnet/rpc - -## Chennai Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chennai Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/chiliz-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/chiliz-chain.mdx deleted file mode 100644 index dcaa21434f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chiliz-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Chiliz Chain - CC2 Blockchain Network -description: Explore Chiliz Chain, a blockchain network with chain ID 88888. Learn about its native currency, Chiliz, and how to interact with the network. ---- - -# Chiliz Chain - -Chiliz Chain is a blockchain network with chain ID 88888. - -## Network Details - -- **Chain ID**: 88888 -- **Chain Name**: CC2 -- **Short Name**: cc2 -- **Network ID**: 88888 -- **Currency**: - - **Name**: Chiliz - - **Symbol**: CHZ - - **Decimals**: 18 - -## RPC URLs - -Chiliz Chain can be accessed through the following RPC endpoints: - -- https://rpc.ankr.com/chiliz -- https://rpc.chiliz.com - -## Chiliz Chain Block Explorers - -- [cc2scan](https://scan.chiliz.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/chiliz-scoville-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/chiliz-scoville-testnet.mdx deleted file mode 100644 index ca0df3e459..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chiliz-scoville-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chiliz Scoville Testnet - CHZ Blockchain Network -description: Explore Chiliz Scoville Testnet, a blockchain network with chain ID 88880. Learn about its native currency, Chiliz, and how to interact with the network. ---- - -# Chiliz Scoville Testnet - -Chiliz Scoville Testnet is a blockchain network with chain ID 88880. - -## Network Details - -- **Chain ID**: 88880 -- **Chain Name**: CHZ -- **Short Name**: chz -- **Network ID**: 88880 -- **Currency**: - - **Name**: Chiliz - - **Symbol**: CHZ - - **Decimals**: 18 - -## RPC URLs - -Chiliz Scoville Testnet can be accessed through the following RPC endpoints: - -- https://scoville-rpc.chiliz.com - -## Chiliz Scoville Testnet Block Explorers - -- [scoville-explorer](https://scoville-explorer.chiliz.com) - -## Additional Information - -- **Official Website**: https://www.chiliz.com/en/chain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chiliz Scoville Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/chips-network.mdx b/docs/pages/solutions/chainlist/non-integrated/chips-network.mdx deleted file mode 100644 index 7cefcda78b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chips-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Chips Network - CHIPS Blockchain Network -description: Explore Chips Network, a blockchain network with chain ID 2882. Learn about its native currency, IOTA, and how to interact with the network. ---- - -# Chips Network - -Chips Network is a blockchain network with chain ID 2882. - -## Network Details - -- **Chain ID**: 2882 -- **Chain Name**: CHIPS -- **Short Name**: chips -- **Network ID**: 2882 -- **Currency**: - - **Name**: IOTA - - **Symbol**: IOTA - - **Decimals**: 18 - -## RPC URLs - -Chips Network can be accessed through the following RPC endpoints: - -- https://node.chips.ooo/wasp/api/v1/chains/iota1pp3d3mnap3ufmgqnjsnw344sqmf5svjh26y2khnmc89sv6788y3r207a8fn/evm - -## Chips Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.chips.ooo - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/chronicle---lit-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/chronicle---lit-protocol-testnet.mdx deleted file mode 100644 index 80fa683931..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chronicle---lit-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chronicle - Lit Protocol Testnet - LPC Blockchain Network -description: Explore Chronicle - Lit Protocol Testnet, a blockchain network with chain ID 175177. Learn about its native currency, Test LIT, and how to interact with the network. ---- - -# Chronicle - Lit Protocol Testnet - -Chronicle - Lit Protocol Testnet is a blockchain network with chain ID 175177. - -## Network Details - -- **Chain ID**: 175177 -- **Chain Name**: LPC -- **Short Name**: lpc -- **Network ID**: 175177 -- **Currency**: - - **Name**: Test LIT - - **Symbol**: tstLIT - - **Decimals**: 18 - -## RPC URLs - -Chronicle - Lit Protocol Testnet can be accessed through the following RPC endpoints: - -- https://chain-rpc.litprotocol.com/http - -## Chronicle - Lit Protocol Testnet Block Explorers - -- [Lit Chronicle Explorer](https://chain.litprotocol.com) - -## Additional Information - -- **Official Website**: https://developer.litprotocol.com/v3/network/rollup - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chronicle - Lit Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/chronicle-yellowstone---lit-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/chronicle-yellowstone---lit-protocol-testnet.mdx deleted file mode 100644 index 8936861465..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/chronicle-yellowstone---lit-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chronicle Yellowstone - Lit Protocol Testnet - LPY Blockchain Network -description: Explore Chronicle Yellowstone - Lit Protocol Testnet, a blockchain network with chain ID 175188. Learn about its native currency, Test LPX, and how to interact with the network. ---- - -# Chronicle Yellowstone - Lit Protocol Testnet - -Chronicle Yellowstone - Lit Protocol Testnet is a blockchain network with chain ID 175188. - -## Network Details - -- **Chain ID**: 175188 -- **Chain Name**: LPY -- **Short Name**: lpy -- **Network ID**: 175188 -- **Currency**: - - **Name**: Test LPX - - **Symbol**: tstLPX - - **Decimals**: 18 - -## RPC URLs - -Chronicle Yellowstone - Lit Protocol Testnet can be accessed through the following RPC endpoints: - -- https://yellowstone-rpc.litprotocol.com - -## Chronicle Yellowstone - Lit Protocol Testnet Block Explorers - -- [Lit Chronicle Yellowstone Explorer](https://yellowstone-explorer.litprotocol.com) - -## Additional Information - -- **Official Website**: https://litprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chronicle Yellowstone - Lit Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cic-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cic-chain-testnet.mdx deleted file mode 100644 index ccdb88bef4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cic-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CIC Chain Testnet - CICT Blockchain Network -description: Explore CIC Chain Testnet, a blockchain network with chain ID 1252. Learn about its native currency, Crazy Internet Coin, and how to interact with the network. ---- - -# CIC Chain Testnet - -CIC Chain Testnet is a blockchain network with chain ID 1252. - -## Network Details - -- **Chain ID**: 1252 -- **Chain Name**: CICT -- **Short Name**: CICT -- **Network ID**: 1252 -- **Currency**: - - **Name**: Crazy Internet Coin - - **Symbol**: CICT - - **Decimals**: 18 - -## RPC URLs - -CIC Chain Testnet can be accessed through the following RPC endpoints: - -- https://testapi.cicscan.com - -## CIC Chain Testnet Block Explorers - -- [CICscan](https://testnet.cicscan.com) - -## Additional Information - -- **Official Website**: https://www.cicchain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CIC Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cic-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/cic-chain.mdx deleted file mode 100644 index 497bb61087..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cic-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CIC Chain Mainnet - CIC Blockchain Network -description: Explore CIC Chain Mainnet, a blockchain network with chain ID 1353. Learn about its native currency, Crazy Internet Coin, and how to interact with the network. ---- - -# CIC Chain Mainnet - -CIC Chain Mainnet is a blockchain network with chain ID 1353. - -## Network Details - -- **Chain ID**: 1353 -- **Chain Name**: CIC -- **Short Name**: CIC -- **Network ID**: 1353 -- **Currency**: - - **Name**: Crazy Internet Coin - - **Symbol**: CIC - - **Decimals**: 18 - -## RPC URLs - -CIC Chain Mainnet can be accessed through the following RPC endpoints: - -- https://xapi.cicscan.com - -## CIC Chain Mainnet Block Explorers - -- [CICscan](https://cicscan.com) - -## Additional Information - -- **Official Website**: https://www.cicchain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cipherem-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cipherem-testnet.mdx deleted file mode 100644 index d8dbe5382d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cipherem-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cipherem Testnet - Cipherem Blockchain Network -description: Explore Cipherem Testnet, a blockchain network with chain ID 292003. Learn about its native currency, CIP, and how to interact with the network. ---- - -# Cipherem Testnet - -Cipherem Testnet is a blockchain network with chain ID 292003. - -## Network Details - -- **Chain ID**: 292003 -- **Chain Name**: Cipherem -- **Short Name**: CIP -- **Network ID**: 292003 -- **Currency**: - - **Name**: CIP - - **Symbol**: CIP - - **Decimals**: 18 - -## RPC URLs - -Cipherem Testnet can be accessed through the following RPC endpoints: - -- https://testnet.cipherem.com - -## Cipherem Testnet Block Explorers - -- [Cipherscan Testnet Explorer](https://cipherscan.net) - -## Additional Information - -- **Official Website**: https://www.cipherem.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cipherem Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/citrea-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/citrea-devnet.mdx deleted file mode 100644 index c9f83ff5f9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/citrea-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Citrea Devnet - Citrea Blockchain Network -description: Explore Citrea Devnet, a blockchain network with chain ID 62298. Learn about its native currency, Citrea BTC, and how to interact with the network. ---- - -# Citrea Devnet - -Citrea Devnet is a blockchain network with chain ID 62298. - -## Network Details - -- **Chain ID**: 62298 -- **Chain Name**: Citrea -- **Short Name**: citrea-devnet -- **Network ID**: 62298 -- **Currency**: - - **Name**: Citrea BTC - - **Symbol**: cBTC - - **Decimals**: 18 - -## RPC URLs - -Citrea Devnet can be accessed through the following RPC endpoints: - -- https://rpc.devnet.citrea.xyz - -## Citrea Devnet Block Explorers - -- [Citrea Devnet Explorer](https://explorer.devnet.citrea.xyz) - -## Additional Information - -- **Official Website**: https://citrea.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/clever-green-frog.mdx b/docs/pages/solutions/chainlist/non-integrated/clever-green-frog.mdx deleted file mode 100644 index ff9d2d7c9b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/clever-green-frog.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: clever-green-frog - Avalanche Blockchain Network -description: Explore clever-green-frog, a blockchain network with chain ID 210121. Learn about its native currency, clever-green-frog Token, and how to interact with the network. ---- - -# clever-green-frog - -clever-green-frog is a blockchain network with chain ID 210121. - -## Network Details - -- **Chain ID**: 210121 -- **Chain Name**: Avalanche -- **Short Name**: clever-green-frog -- **Network ID**: 210121 -- **Currency**: - - **Name**: clever-green-frog Token - - **Symbol**: QAZ - - **Decimals**: 18 - -## RPC URLs - -clever-green-frog can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## clever-green-frog Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## clever-green-frog Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cloudtx-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cloudtx-testnet.mdx deleted file mode 100644 index 6564488f56..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cloudtx-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CloudTx Testnet - CloudTx Blockchain Network -description: Explore CloudTx Testnet, a blockchain network with chain ID 31224. Learn about its native currency, CloudTx, and how to interact with the network. ---- - -# CloudTx Testnet - -CloudTx Testnet is a blockchain network with chain ID 31224. - -## Network Details - -- **Chain ID**: 31224 -- **Chain Name**: CloudTx -- **Short Name**: CLD -- **Network ID**: 31224 -- **Currency**: - - **Name**: CloudTx - - **Symbol**: CLD - - **Decimals**: 18 - -## RPC URLs - -CloudTx Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.cloudtx.finance - -## CloudTx Testnet Block Explorers - -- [cloudtxexplorer](https://explorer.cloudtx.finance) - -## Additional Information - -- **Official Website**: https://cloudtx.finance/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CloudTx Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cloudtx.mdx b/docs/pages/solutions/chainlist/non-integrated/cloudtx.mdx deleted file mode 100644 index 561acc0736..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cloudtx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CloudTx Mainnet - CLD Blockchain Network -description: Explore CloudTx Mainnet, a blockchain network with chain ID 31223. Learn about its native currency, CloudTx, and how to interact with the network. ---- - -# CloudTx Mainnet - -CloudTx Mainnet is a blockchain network with chain ID 31223. - -## Network Details - -- **Chain ID**: 31223 -- **Chain Name**: CLD -- **Short Name**: CLDTX -- **Network ID**: 31223 -- **Currency**: - - **Name**: CloudTx - - **Symbol**: CLD - - **Decimals**: 18 - -## RPC URLs - -CloudTx Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.cloudtx.finance - -## CloudTx Mainnet Block Explorers - -- [cloudtxscan](https://scan.cloudtx.finance) - -## Additional Information - -- **Official Website**: https://cloudtx.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cloudverse-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cloudverse-subnet.mdx deleted file mode 100644 index 186b215c01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cloudverse-subnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cloudverse Subnet - CLOUDVERSE Blockchain Network -description: Explore Cloudverse Subnet, a blockchain network with chain ID 33210. Learn about its native currency, XCLOUD, and how to interact with the network. ---- - -# Cloudverse Subnet - -Cloudverse Subnet is a blockchain network with chain ID 33210. - -## Network Details - -- **Chain ID**: 33210 -- **Chain Name**: CLOUDVERSE -- **Short Name**: cloudverse -- **Network ID**: 33210 -- **Currency**: - - **Name**: XCLOUD - - **Symbol**: XCLOUD - - **Decimals**: 18 - -## RPC URLs - -Cloudverse Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/cloudverse/mainnet/rpc - -## Cloudverse Subnet Block Explorers - -- [CLOUDVERSE Explorer](https://subnets.avax.network/cloudverse) - -## Additional Information - -- **Official Website**: https://muadao.build/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cloudwalk-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cloudwalk-testnet.mdx deleted file mode 100644 index 5b9858a2f6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cloudwalk-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CloudWalk Testnet - CloudWalk Testnet Blockchain Network -description: Explore CloudWalk Testnet, a blockchain network with chain ID 2008. Learn about its native currency, CloudWalk Native Token, and how to interact with the network. ---- - -# CloudWalk Testnet - -CloudWalk Testnet is a blockchain network with chain ID 2008. - -## Network Details - -- **Chain ID**: 2008 -- **Chain Name**: CloudWalk Testnet -- **Short Name**: cloudwalk_testnet -- **Network ID**: 2008 -- **Currency**: - - **Name**: CloudWalk Native Token - - **Symbol**: CWN - - **Decimals**: 18 - -## RPC URLs - -CloudWalk Testnet can be accessed through the following RPC endpoints: - - - -## CloudWalk Testnet Block Explorers - -- [CloudWalk Testnet Explorer](https://explorer.testnet.cloudwalk.io) - -## Additional Information - -- **Official Website**: https://cloudwalk.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CloudWalk Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cloudwalk.mdx b/docs/pages/solutions/chainlist/non-integrated/cloudwalk.mdx deleted file mode 100644 index 4127720c83..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cloudwalk.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CloudWalk Mainnet - CloudWalk Mainnet Blockchain Network -description: Explore CloudWalk Mainnet, a blockchain network with chain ID 2009. Learn about its native currency, CloudWalk Native Token, and how to interact with the network. ---- - -# CloudWalk Mainnet - -CloudWalk Mainnet is a blockchain network with chain ID 2009. - -## Network Details - -- **Chain ID**: 2009 -- **Chain Name**: CloudWalk Mainnet -- **Short Name**: cloudwalk_mainnet -- **Network ID**: 2009 -- **Currency**: - - **Name**: CloudWalk Native Token - - **Symbol**: CWN - - **Decimals**: 18 - -## RPC URLs - -CloudWalk Mainnet can be accessed through the following RPC endpoints: - - - -## CloudWalk Mainnet Block Explorers - -- [CloudWalk Mainnet Explorer](https://explorer.mainnet.cloudwalk.io) - -## Additional Information - -- **Official Website**: https://cloudwalk.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/clover-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/clover-testnet.mdx deleted file mode 100644 index cf03a0094f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/clover-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Clover Testnet - Clover Blockchain Network -description: Explore Clover Testnet, a blockchain network with chain ID 1023. Learn about its native currency, Clover, and how to interact with the network. ---- - -# Clover Testnet - -Clover Testnet is a blockchain network with chain ID 1023. - -## Network Details - -- **Chain ID**: 1023 -- **Chain Name**: Clover -- **Short Name**: tclv -- **Network ID**: 1023 -- **Currency**: - - **Name**: Clover - - **Symbol**: CLV - - **Decimals**: 18 - -## RPC URLs - -Clover Testnet can be accessed through the following RPC endpoints: - - - -## Clover Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://clover.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Clover Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/clubmos.mdx b/docs/pages/solutions/chainlist/non-integrated/clubmos.mdx deleted file mode 100644 index 67102601d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/clubmos.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ClubMos Mainnet - MOS Blockchain Network -description: Explore ClubMos Mainnet, a blockchain network with chain ID 1188. Learn about its native currency, ClubMos, and how to interact with the network. ---- - -# ClubMos Mainnet - -ClubMos Mainnet is a blockchain network with chain ID 1188. - -## Network Details - -- **Chain ID**: 1188 -- **Chain Name**: MOS -- **Short Name**: MOS -- **Network ID**: 1188 -- **Currency**: - - **Name**: ClubMos - - **Symbol**: MOS - - **Decimals**: 18 - -## RPC URLs - -ClubMos Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.mosscan.com - -## ClubMos Mainnet Block Explorers - -- [mosscan](https://www.mosscan.com) - -## Additional Information - -- **Official Website**: https://www.mosscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/clv-parachain.mdx b/docs/pages/solutions/chainlist/non-integrated/clv-parachain.mdx deleted file mode 100644 index 4b1a22503c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/clv-parachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CLV Parachain - CLV Blockchain Network -description: Explore CLV Parachain, a blockchain network with chain ID 1024. Learn about its native currency, CLV, and how to interact with the network. ---- - -# CLV Parachain - -CLV Parachain is a blockchain network with chain ID 1024. - -## Network Details - -- **Chain ID**: 1024 -- **Chain Name**: CLV -- **Short Name**: clv -- **Network ID**: 1024 -- **Currency**: - - **Name**: CLV - - **Symbol**: CLV - - **Decimals**: 18 - -## RPC URLs - -CLV Parachain can be accessed through the following RPC endpoints: - -- https://api-para.clover.finance - -## CLV Parachain Block Explorers - - - -## Additional Information - -- **Official Website**: https://clv.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cmdao-bbq-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/cmdao-bbq-chain.mdx deleted file mode 100644 index d0ede48fda..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cmdao-bbq-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CMDAO BBQ Chain - Underchain 1 Blockchain Network -description: Explore CMDAO BBQ Chain, a blockchain network with chain ID 190. Learn about its native currency, CommuDAO, and how to interact with the network. ---- - -# CMDAO BBQ Chain - -CMDAO BBQ Chain is a blockchain network with chain ID 190. - -## Network Details - -- **Chain ID**: 190 -- **Chain Name**: Underchain 1 -- **Short Name**: cmdao-bbq-chain -- **Network ID**: 190 -- **Currency**: - - **Name**: CommuDAO - - **Symbol**: CMD - - **Decimals**: 18 - -## RPC URLs - -CMDAO BBQ Chain can be accessed through the following RPC endpoints: - -- https://bbqchain-rpc.commudao.xyz - -## CMDAO BBQ Chain Block Explorers - -- [bbqchain-explorer](https://bbqchain-exp.commudao.xyz) - -## Additional Information - -- **Official Website**: https://commudao.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cmp-.mdx b/docs/pages/solutions/chainlist/non-integrated/cmp-.mdx deleted file mode 100644 index 12b9b5edcd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cmp-.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: CMP-Mainnet - CMP Blockchain Network -description: Explore CMP-Mainnet, a blockchain network with chain ID 256256. Learn about its native currency, Caduceus Token, and how to interact with the network. ---- - -# CMP-Mainnet - -CMP-Mainnet is a blockchain network with chain ID 256256. - -## Network Details - -- **Chain ID**: 256256 -- **Chain Name**: CMP -- **Short Name**: cmp-mainnet -- **Network ID**: 256256 -- **Currency**: - - **Name**: Caduceus Token - - **Symbol**: CMP - - **Decimals**: 18 - -## RPC URLs - -CMP-Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.block.caduceus.foundation -- wss://mainnet.block.caduceus.foundation - -## CMP-Mainnet Block Explorers - -- [Mainnet Scan](https://mainnet.scan.caduceus.foundation) - -## Additional Information - -- **Official Website**: https://caduceus.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cmp-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cmp-testnet.mdx deleted file mode 100644 index c6101ee7ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cmp-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: CMP-Testnet - CMP Blockchain Network -description: Explore CMP-Testnet, a blockchain network with chain ID 512512. Learn about its native currency, Caduceus Testnet Token, and how to interact with the network. ---- - -# CMP-Testnet - -CMP-Testnet is a blockchain network with chain ID 512512. - -## Network Details - -- **Chain ID**: 512512 -- **Chain Name**: CMP -- **Short Name**: cmp -- **Network ID**: 512512 -- **Currency**: - - **Name**: Caduceus Testnet Token - - **Symbol**: CMP - - **Decimals**: 18 - -## RPC URLs - -CMP-Testnet can be accessed through the following RPC endpoints: - -- https://galaxy.block.caduceus.foundation -- wss://galaxy.block.caduceus.foundation - -## CMP-Testnet Block Explorers - -- [Galaxy Scan](https://galaxy.scan.caduceus.foundation) - -## Additional Information - -- **Official Website**: https://caduceus.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CMP-Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/codefin.mdx b/docs/pages/solutions/chainlist/non-integrated/codefin.mdx deleted file mode 100644 index 0cebe2ab8c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/codefin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Codefin Mainnet - COF Blockchain Network -description: Explore Codefin Mainnet, a blockchain network with chain ID 9223. Learn about its native currency, Codefin, and how to interact with the network. ---- - -# Codefin Mainnet - -Codefin Mainnet is a blockchain network with chain ID 9223. - -## Network Details - -- **Chain ID**: 9223 -- **Chain Name**: COF -- **Short Name**: COF -- **Network ID**: 9223 -- **Currency**: - - **Name**: Codefin - - **Symbol**: COF - - **Decimals**: 18 - -## RPC URLs - -Codefin Mainnet can be accessed through the following RPC endpoints: - -- https://chain-rpc.codefin.pro - -## Codefin Mainnet Block Explorers - -- [Codefin Net Explorer](https://explorer.codefin.pro) - -## Additional Information - -- **Official Website**: https://network.codefin.pro - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cohan's-testnet-1.mdx b/docs/pages/solutions/chainlist/non-integrated/cohan's-testnet-1.mdx deleted file mode 100644 index 11269ead33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cohan's-testnet-1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cohan's Testnet 1 - Avalanche Blockchain Network -description: Explore Cohan's Testnet 1, a blockchain network with chain ID 2828. Learn about its native currency, Cohan's Testnet 1 Token, and how to interact with the network. ---- - -# Cohan's Testnet 1 - -Cohan's Testnet 1 is a blockchain network with chain ID 2828. - -## Network Details - -- **Chain ID**: 2828 -- **Chain Name**: Avalanche -- **Short Name**: Cohan's Testnet 1 -- **Network ID**: 2828 -- **Currency**: - - **Name**: Cohan's Testnet 1 Token - - **Symbol**: FQC - - **Decimals**: 18 - -## RPC URLs - -Cohan's Testnet 1 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/a6eec829-2c08-4264-b0d7-6d393997e9a6 - -## Cohan's Testnet 1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cohan's Testnet 1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cohan-test.mdx b/docs/pages/solutions/chainlist/non-integrated/cohan-test.mdx deleted file mode 100644 index e22e74c5c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cohan-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cohan Test - Avalanche Blockchain Network -description: Explore Cohan Test, a blockchain network with chain ID 57522. Learn about its native currency, Cohan Test Token, and how to interact with the network. ---- - -# Cohan Test - -Cohan Test is a blockchain network with chain ID 57522. - -## Network Details - -- **Chain ID**: 57522 -- **Chain Name**: Avalanche -- **Short Name**: Cohan Test -- **Network ID**: 57522 -- **Currency**: - - **Name**: Cohan Test Token - - **Symbol**: NYU - - **Decimals**: 18 - -## RPC URLs - -Cohan Test can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/fc395ee3-9e2d-45ea-951a-233b4f3e367d - -## Cohan Test Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cohan Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cohan-test3.mdx b/docs/pages/solutions/chainlist/non-integrated/cohan-test3.mdx deleted file mode 100644 index c403458a8e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cohan-test3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cohan test3 - Avalanche Blockchain Network -description: Explore Cohan test3, a blockchain network with chain ID 70466. Learn about its native currency, Cohan test3 Token, and how to interact with the network. ---- - -# Cohan test3 - -Cohan test3 is a blockchain network with chain ID 70466. - -## Network Details - -- **Chain ID**: 70466 -- **Chain Name**: Avalanche -- **Short Name**: Cohan test3 -- **Network ID**: 70466 -- **Currency**: - - **Name**: Cohan test3 Token - - **Symbol**: HYN - - **Decimals**: 18 - -## RPC URLs - -Cohan test3 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f44b72ee-0574-44d2-a10b-363a74964145 - -## Cohan test3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cohan test3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cohan-yolo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cohan-yolo-testnet.mdx deleted file mode 100644 index d81b241474..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cohan-yolo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cohan Yolo Testnet - Avalanche Blockchain Network -description: Explore Cohan Yolo Testnet, a blockchain network with chain ID 36695. Learn about its native currency, Cohan Yolo Testnet Token, and how to interact with the network. ---- - -# Cohan Yolo Testnet - -Cohan Yolo Testnet is a blockchain network with chain ID 36695. - -## Network Details - -- **Chain ID**: 36695 -- **Chain Name**: Avalanche -- **Short Name**: Cohan Yolo Testnet -- **Network ID**: 36695 -- **Currency**: - - **Name**: Cohan Yolo Testnet Token - - **Symbol**: KYI - - **Decimals**: 18 - -## RPC URLs - -Cohan Yolo Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c033f73a-70ff-463d-b121-81b9542e11a1 - -## Cohan Yolo Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cohan Yolo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/coinbit.mdx b/docs/pages/solutions/chainlist/non-integrated/coinbit.mdx deleted file mode 100644 index 0d677f26c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coinbit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Coinbit Mainnet - Coinbit Blockchain Network -description: Explore Coinbit Mainnet, a blockchain network with chain ID 112. Learn about its native currency, Gas IDR, and how to interact with the network. ---- - -# Coinbit Mainnet - -Coinbit Mainnet is a blockchain network with chain ID 112. - -## Network Details - -- **Chain ID**: 112 -- **Chain Name**: Coinbit -- **Short Name**: coinbit -- **Network ID**: 112 -- **Currency**: - - **Name**: Gas IDR - - **Symbol**: GIDR - - **Decimals**: 18 - -## RPC URLs - -Coinbit Mainnet can be accessed through the following RPC endpoints: - -- https://coinbit-rpc-mainnet.chain.sbcrypto.app - -## Coinbit Mainnet Block Explorers - -- [blockscout](https://coinbit-explorer.chain.sbcrypto.app) - -## Additional Information - -- **Official Website**: https://crypto.stockbit.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain-testnet.mdx deleted file mode 100644 index 54f7a3784f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CoinEx Smart Chain Testnet - CSC Blockchain Network -description: Explore CoinEx Smart Chain Testnet, a blockchain network with chain ID 53. Learn about its native currency, CoinEx Chain Test Native Token, and how to interact with the network. ---- - -# CoinEx Smart Chain Testnet - -CoinEx Smart Chain Testnet is a blockchain network with chain ID 53. - -## Network Details - -- **Chain ID**: 53 -- **Chain Name**: CSC -- **Short Name**: tcet -- **Network ID**: 53 -- **Currency**: - - **Name**: CoinEx Chain Test Native Token - - **Symbol**: cett - - **Decimals**: 18 - -## RPC URLs - -CoinEx Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.coinex.net/ - -## CoinEx Smart Chain Testnet Block Explorers - -- [coinexscan](https://testnet.coinex.net) - -## Additional Information - -- **Official Website**: https://www.coinex.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CoinEx Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain.mdx deleted file mode 100644 index 1abb4d0d01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coinex-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CoinEx Smart Chain Mainnet - CSC Blockchain Network -description: Explore CoinEx Smart Chain Mainnet, a blockchain network with chain ID 52. Learn about its native currency, CoinEx Chain Native Token, and how to interact with the network. ---- - -# CoinEx Smart Chain Mainnet - -CoinEx Smart Chain Mainnet is a blockchain network with chain ID 52. - -## Network Details - -- **Chain ID**: 52 -- **Chain Name**: CSC -- **Short Name**: cet -- **Network ID**: 52 -- **Currency**: - - **Name**: CoinEx Chain Native Token - - **Symbol**: cet - - **Decimals**: 18 - -## RPC URLs - -CoinEx Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.coinex.net - -## CoinEx Smart Chain Mainnet Block Explorers - -- [coinexscan](https://www.coinex.net) - -## Additional Information - -- **Official Website**: https://www.coinex.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/coinsec-network.mdx b/docs/pages/solutions/chainlist/non-integrated/coinsec-network.mdx deleted file mode 100644 index 0e2e918342..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coinsec-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: COINSEC Network - coinsecnetwork Blockchain Network -description: Explore COINSEC Network, a blockchain network with chain ID 57451. Learn about its native currency, COINSEC, and how to interact with the network. ---- - -# COINSEC Network - -COINSEC Network is a blockchain network with chain ID 57451. - -## Network Details - -- **Chain ID**: 57451 -- **Chain Name**: coinsecnetwork -- **Short Name**: coinsecnetwork -- **Network ID**: 57451 -- **Currency**: - - **Name**: COINSEC - - **Symbol**: SEC - - **Decimals**: 18 - -## RPC URLs - -COINSEC Network can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.coinsec.network - -## COINSEC Network Block Explorers - -- [coinsecnetwork](https://explorer.coinsec.network) - -## Additional Information - -- **Official Website**: https://explorer.coinsec.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/columbus-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/columbus-test-network.mdx deleted file mode 100644 index e4de29a852..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/columbus-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Columbus Test Network - CAM Blockchain Network -description: Explore Columbus Test Network, a blockchain network with chain ID 501. Learn about its native currency, Camino, and how to interact with the network. ---- - -# Columbus Test Network - -Columbus Test Network is a blockchain network with chain ID 501. - -## Network Details - -- **Chain ID**: 501 -- **Chain Name**: CAM -- **Short Name**: Columbus -- **Network ID**: 501 -- **Currency**: - - **Name**: Camino - - **Symbol**: CAM - - **Decimals**: 18 - -## RPC URLs - -Columbus Test Network can be accessed through the following RPC endpoints: - -- https://columbus.camino.network/ext/bc/C/rpc - -## Columbus Test Network Block Explorers - -- [blockexplorer](https://suite.camino.network/explorer) - -## Additional Information - -- **Official Website**: https://camino.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Columbus Test Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/combo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/combo-testnet.mdx deleted file mode 100644 index 3f1f39528a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/combo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Combo Testnet - Combo Blockchain Network -description: Explore Combo Testnet, a blockchain network with chain ID 91715. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# Combo Testnet - -Combo Testnet is a blockchain network with chain ID 91715. - -## Network Details - -- **Chain ID**: 91715 -- **Chain Name**: Combo -- **Short Name**: combo-testnet -- **Network ID**: 91715 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: tcBNB - - **Decimals**: 18 - -## RPC URLs - -Combo Testnet can be accessed through the following RPC endpoints: - -- https://test-rpc.combonetwork.io - -## Combo Testnet Block Explorers - -- [combotrace explorer](https://combotrace-testnet.nodereal.io) - -## Additional Information - -- **Official Website**: https://combonetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Combo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/combo.mdx b/docs/pages/solutions/chainlist/non-integrated/combo.mdx deleted file mode 100644 index abe5d60242..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/combo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Combo Mainnet - Combo Blockchain Network -description: Explore Combo Mainnet, a blockchain network with chain ID 9980. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# Combo Mainnet - -Combo Mainnet is a blockchain network with chain ID 9980. - -## Network Details - -- **Chain ID**: 9980 -- **Chain Name**: Combo -- **Short Name**: combo-mainnet -- **Network ID**: 9980 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: BNB - - **Decimals**: 18 - -## RPC URLs - -Combo Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.combonetwork.io - -## Combo Mainnet Block Explorers - -- [combotrace explorer](https://combotrace.nodereal.io) - -## Additional Information - -- **Official Website**: https://combonetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/compverse.mdx b/docs/pages/solutions/chainlist/non-integrated/compverse.mdx deleted file mode 100644 index 1c205ab120..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/compverse.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Compverse Mainnet - CPV Blockchain Network -description: Explore Compverse Mainnet, a blockchain network with chain ID 6779. Learn about its native currency, compverse, and how to interact with the network. ---- - -# Compverse Mainnet - -Compverse Mainnet is a blockchain network with chain ID 6779. - -## Network Details - -- **Chain ID**: 6779 -- **Chain Name**: CPV -- **Short Name**: compverse -- **Network ID**: 6779 -- **Currency**: - - **Name**: compverse - - **Symbol**: CPV - - **Decimals**: 18 - -## RPC URLs - -Compverse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.compverse.io/ -- https://rpc-useast1.compverse.io/ - -## Compverse Mainnet Block Explorers - -- [cpvscan](https://scan.compverse.io) - -## Additional Information - -- **Official Website**: https://compverse.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/condor-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/condor-test-network.mdx deleted file mode 100644 index 1913a2803a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/condor-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Condor Test Network - CONDOR Blockchain Network -description: Explore Condor Test Network, a blockchain network with chain ID 188881. Learn about its native currency, Condor Native Token, and how to interact with the network. ---- - -# Condor Test Network - -Condor Test Network is a blockchain network with chain ID 188881. - -## Network Details - -- **Chain ID**: 188881 -- **Chain Name**: CONDOR -- **Short Name**: condor -- **Network ID**: 188881 -- **Currency**: - - **Name**: Condor Native Token - - **Symbol**: CONDOR - - **Decimals**: 18 - -## RPC URLs - -Condor Test Network can be accessed through the following RPC endpoints: - -- https://testnet.condor.systems/rpc - -## Condor Test Network Block Explorers - -- [CondorScan](https://explorer.condor.systems) - -## Additional Information - -- **Official Website**: https://condor.systems - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Condor Test Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/condrieu.mdx b/docs/pages/solutions/chainlist/non-integrated/condrieu.mdx deleted file mode 100644 index 3860b30471..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/condrieu.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Condrieu - ETH Blockchain Network -description: Explore Condrieu, a blockchain network with chain ID 69420. Learn about its native currency, Condrieu Testnet Ether, and how to interact with the network. ---- - -# Condrieu - -Condrieu is a blockchain network with chain ID 69420. - -## Network Details - -- **Chain ID**: 69420 -- **Chain Name**: ETH -- **Short Name**: cndr -- **Network ID**: 69420 -- **Currency**: - - **Name**: Condrieu Testnet Ether - - **Symbol**: CTE - - **Decimals**: 18 - -## RPC URLs - -Condrieu can be accessed through the following RPC endpoints: - -- https://rpc.condrieu.ethdevops.io:8545 - -## Condrieu Block Explorers - -- [Condrieu explorer](https://explorer.condrieu.ethdevops.io) - -## Additional Information - -- **Official Website**: https://condrieu.ethdevops.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Condrieu Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/conduit-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/conduit-subnet.mdx deleted file mode 100644 index 6e260a1029..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/conduit-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Conduit Subnet - CONDUIT Blockchain Network -description: Explore Conduit Subnet, a blockchain network with chain ID 78432. Learn about its native currency, CON, and how to interact with the network. ---- - -# Conduit Subnet - -Conduit Subnet is a blockchain network with chain ID 78432. - -## Network Details - -- **Chain ID**: 78432 -- **Chain Name**: CONDUIT -- **Short Name**: conduit -- **Network ID**: 78432 -- **Currency**: - - **Name**: CON - - **Symbol**: CON - - **Decimals**: 18 - -## RPC URLs - -Conduit Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/conduit/testnet/rpc - -## Conduit Subnet Block Explorers - -- [CONDUIT Explorer](https://subnets-test.avax.network/conduit) - -## Additional Information - -- **Official Website**: https://www.avax.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Conduit Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/conet-holesky.mdx b/docs/pages/solutions/chainlist/non-integrated/conet-holesky.mdx deleted file mode 100644 index f9cfc4c5d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/conet-holesky.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CONET Holesky - CONET Holesky Blockchain Network -description: Explore CONET Holesky, a blockchain network with chain ID 224433. Learn about its native currency, CONET Holesky, and how to interact with the network. ---- - -# CONET Holesky - -CONET Holesky is a blockchain network with chain ID 224433. - -## Network Details - -- **Chain ID**: 224433 -- **Chain Name**: CONET Holesky -- **Short Name**: conet-holesky -- **Network ID**: 224433 -- **Currency**: - - **Name**: CONET Holesky - - **Symbol**: CONET - - **Decimals**: 18 - -## RPC URLs - -CONET Holesky can be accessed through the following RPC endpoints: - -- https://rpc.conet.network - -## CONET Holesky Block Explorers - -- [CONET Holesky Scan](https://scan.conet.network) - -## Additional Information - -- **Official Website**: https://conet.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/conet-sebolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/conet-sebolia-testnet.mdx deleted file mode 100644 index 0951f53b5c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/conet-sebolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CONET Sebolia Testnet - CONET Blockchain Network -description: Explore CONET Sebolia Testnet, a blockchain network with chain ID 224422. Learn about its native currency, CONET Sebolia, and how to interact with the network. ---- - -# CONET Sebolia Testnet - -CONET Sebolia Testnet is a blockchain network with chain ID 224422. - -## Network Details - -- **Chain ID**: 224422 -- **Chain Name**: CONET -- **Short Name**: conet-sebolia -- **Network ID**: 224422 -- **Currency**: - - **Name**: CONET Sebolia - - **Symbol**: CONET - - **Decimals**: 18 - -## RPC URLs - -CONET Sebolia Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.conet.network - -## CONET Sebolia Testnet Block Explorers - -- [CONET Scan](https://scan.conet.network) - -## Additional Information - -- **Official Website**: https://conet.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CONET Sebolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/conflux-espace-(testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/conflux-espace-(testnet).mdx deleted file mode 100644 index efeadb9c15..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/conflux-espace-(testnet).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Conflux eSpace (Testnet) - Conflux Blockchain Network -description: Explore Conflux eSpace (Testnet), a blockchain network with chain ID 71. Learn about its native currency, CFX, and how to interact with the network. ---- - -# Conflux eSpace (Testnet) - -Conflux eSpace (Testnet) is a blockchain network with chain ID 71. - -## Network Details - -- **Chain ID**: 71 -- **Chain Name**: Conflux -- **Short Name**: cfxtest -- **Network ID**: 71 -- **Currency**: - - **Name**: CFX - - **Symbol**: CFX - - **Decimals**: 18 - -## RPC URLs - -Conflux eSpace (Testnet) can be accessed through the following RPC endpoints: - -- https://evmtestnet.confluxrpc.com - -## Conflux eSpace (Testnet) Block Explorers - -- [Conflux Scan](https://evmtestnet.confluxscan.net) - -## Additional Information - -- **Official Website**: https://confluxnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Conflux eSpace (Testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/conflux-espace.mdx b/docs/pages/solutions/chainlist/non-integrated/conflux-espace.mdx deleted file mode 100644 index 73b50952ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/conflux-espace.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Conflux eSpace - Conflux Blockchain Network -description: Explore Conflux eSpace, a blockchain network with chain ID 1030. Learn about its native currency, CFX, and how to interact with the network. ---- - -# Conflux eSpace - -Conflux eSpace is a blockchain network with chain ID 1030. - -## Network Details - -- **Chain ID**: 1030 -- **Chain Name**: Conflux -- **Short Name**: cfx -- **Network ID**: 1030 -- **Currency**: - - **Name**: CFX - - **Symbol**: CFX - - **Decimals**: 18 - -## RPC URLs - -Conflux eSpace can be accessed through the following RPC endpoints: - -- https://evm.confluxrpc.com - -## Conflux eSpace Block Explorers - -- [Conflux Scan](https://evm.confluxscan.net) - -## Additional Information - -- **Official Website**: https://confluxnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/connectormanager-robin.mdx b/docs/pages/solutions/chainlist/non-integrated/connectormanager-robin.mdx deleted file mode 100644 index a986d58ef9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/connectormanager-robin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ConnectorManager Robin - Rangers Blockchain Network -description: Explore ConnectorManager Robin, a blockchain network with chain ID 38401. Learn about its native currency, Rangers Protocol Gas, and how to interact with the network. ---- - -# ConnectorManager Robin - -ConnectorManager Robin is a blockchain network with chain ID 38401. - -## Network Details - -- **Chain ID**: 38401 -- **Chain Name**: Rangers -- **Short Name**: ttrpg -- **Network ID**: 38401 -- **Currency**: - - **Name**: Rangers Protocol Gas - - **Symbol**: ttRPG - - **Decimals**: 18 - -## RPC URLs - -ConnectorManager Robin can be accessed through the following RPC endpoints: - -- https://robin-cm.rangersprotocol.com/api/jsonrpc - -## ConnectorManager Robin Block Explorers - -- [rangersscan-robin](https://robin-rangersscan.rangersprotocol.com) - -## Additional Information - -- **Official Website**: https://rangersprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/connectormanager.mdx b/docs/pages/solutions/chainlist/non-integrated/connectormanager.mdx deleted file mode 100644 index c4794f93ef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/connectormanager.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ConnectorManager - Rangers Blockchain Network -description: Explore ConnectorManager, a blockchain network with chain ID 38400. Learn about its native currency, Rangers Protocol Gas, and how to interact with the network. ---- - -# ConnectorManager - -ConnectorManager is a blockchain network with chain ID 38400. - -## Network Details - -- **Chain ID**: 38400 -- **Chain Name**: Rangers -- **Short Name**: cmrpg -- **Network ID**: 38400 -- **Currency**: - - **Name**: Rangers Protocol Gas - - **Symbol**: cmRPG - - **Decimals**: 18 - -## RPC URLs - -ConnectorManager can be accessed through the following RPC endpoints: - -- https://cm.rangersprotocol.com/api/jsonrpc - -## ConnectorManager Block Explorers - -- [rangersscan](https://scan.rangersprotocol.com) - -## Additional Information - -- **Official Website**: https://rangersprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/connext-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/connext-sepolia.mdx deleted file mode 100644 index 730642512b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/connext-sepolia.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Connext Sepolia - Connext Sepolia Blockchain Network -description: Explore Connext Sepolia, a blockchain network with chain ID 6398. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Connext Sepolia - -Connext Sepolia is a blockchain network with chain ID 6398. - -## Network Details - -- **Chain ID**: 6398 -- **Chain Name**: Connext Sepolia -- **Short Name**: connext-sepolia -- **Network ID**: 6398 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Connext Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.connext-sepolia.gelato.digital/ - -## Connext Sepolia Block Explorers - -- [Connext Sepolia](https://connext-sepolia.blockscout.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/consta-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/consta-testnet.mdx deleted file mode 100644 index 79a9782efe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/consta-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Consta Testnet - tCNT Blockchain Network -description: Explore Consta Testnet, a blockchain network with chain ID 371. Learn about its native currency, tCNT, and how to interact with the network. ---- - -# Consta Testnet - -Consta Testnet is a blockchain network with chain ID 371. - -## Network Details - -- **Chain ID**: 371 -- **Chain Name**: tCNT -- **Short Name**: tCNT -- **Network ID**: 371 -- **Currency**: - - **Name**: tCNT - - **Symbol**: tCNT - - **Decimals**: 18 - -## RPC URLs - -Consta Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.theconsta.com - -## Consta Testnet Block Explorers - -- [blockscout](https://explorer-testnet.theconsta.com) - -## Additional Information - -- **Official Website**: http://theconsta.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Consta Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/coordinape-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/coordinape-testnet.mdx deleted file mode 100644 index fe293f285a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coordinape-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Coordinape Testnet - Coordinape Testnet Blockchain Network -description: Explore Coordinape Testnet, a blockchain network with chain ID 5103. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Coordinape Testnet - -Coordinape Testnet is a blockchain network with chain ID 5103. - -## Network Details - -- **Chain ID**: 5103 -- **Chain Name**: Coordinape Testnet -- **Short Name**: coordinape-testnet -- **Network ID**: 5103 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Coordinape Testnet can be accessed through the following RPC endpoints: - -- https://rpc-coordinape-testnet-vs9se3oc4v.t.conduit.xyz - -## Coordinape Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://coordinape.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Coordinape Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/coqnet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/coqnet-testnet.mdx deleted file mode 100644 index ea896b2efc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coqnet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Coqnet Testnet - Avalanche Blockchain Network -description: Explore Coqnet Testnet, a blockchain network with chain ID 10255. Learn about its native currency, Coqnet Testnet Token, and how to interact with the network. ---- - -# Coqnet Testnet - -Coqnet Testnet is a blockchain network with chain ID 10255. - -## Network Details - -- **Chain ID**: 10255 -- **Chain Name**: Avalanche -- **Short Name**: Coqnet Testnet -- **Network ID**: 10255 -- **Currency**: - - **Name**: Coqnet Testnet Token - - **Symbol**: COQ - - **Decimals**: 18 - -## RPC URLs - -Coqnet Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/coqnet/testnet/rpc - -## Coqnet Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Coqnet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/core-blockchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/core-blockchain-testnet.mdx deleted file mode 100644 index 085e6a2242..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/core-blockchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Core Blockchain Testnet - Core Blockchain Network -description: Explore Core Blockchain Testnet, a blockchain network with chain ID 1115. Learn about its native currency, Core Blockchain Testnet Native Token, and how to interact with the network. ---- - -# Core Blockchain Testnet - -Core Blockchain Testnet is a blockchain network with chain ID 1115. - -## Network Details - -- **Chain ID**: 1115 -- **Chain Name**: Core -- **Short Name**: tcore -- **Network ID**: 1115 -- **Currency**: - - **Name**: Core Blockchain Testnet Native Token - - **Symbol**: tCORE - - **Decimals**: 18 - -## RPC URLs - -Core Blockchain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.test.btcs.network/ - -## Core Blockchain Testnet Block Explorers - -- [Core Scan Testnet](https://scan.test.btcs.network) - -## Additional Information - -- **Official Website**: https://www.coredao.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Core Blockchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/core-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/core-blockchain.mdx deleted file mode 100644 index 35b7c12719..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/core-blockchain.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Core Blockchain Mainnet - Core Blockchain Network -description: Explore Core Blockchain Mainnet, a blockchain network with chain ID 1116. Learn about its native currency, Core Blockchain Native Token, and how to interact with the network. ---- - -# Core Blockchain Mainnet - -Core Blockchain Mainnet is a blockchain network with chain ID 1116. - -## Network Details - -- **Chain ID**: 1116 -- **Chain Name**: Core -- **Short Name**: core -- **Network ID**: 1116 -- **Currency**: - - **Name**: Core Blockchain Native Token - - **Symbol**: CORE - - **Decimals**: 18 - -## RPC URLs - -Core Blockchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.coredao.org/ -- https://rpc-core.icecreamswap.com -- https://core.drpc.org -- wss://core.drpc.org - -## Core Blockchain Mainnet Block Explorers - -- [Core Scan](https://scan.coredao.org) - -## Additional Information - -- **Official Website**: https://www.coredao.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cosmic-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/cosmic-chain.mdx deleted file mode 100644 index 00623d12d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cosmic-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cosmic Chain - COSMIC Blockchain Network -description: Explore Cosmic Chain, a blockchain network with chain ID 67588. Learn about its native currency, Cosmic Chain, and how to interact with the network. ---- - -# Cosmic Chain - -Cosmic Chain is a blockchain network with chain ID 67588. - -## Network Details - -- **Chain ID**: 67588 -- **Chain Name**: COSMIC -- **Short Name**: Cosmic -- **Network ID**: 67588 -- **Currency**: - - **Name**: Cosmic Chain - - **Symbol**: COSMIC - - **Decimals**: 18 - -## RPC URLs - -Cosmic Chain can be accessed through the following RPC endpoints: - -- http://testnet.cosmicchain.site:3344 - -## Cosmic Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://cosmicchain.site - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cosmic Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cosvm.mdx b/docs/pages/solutions/chainlist/non-integrated/cosvm.mdx deleted file mode 100644 index 95b6f67269..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cosvm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cosvm Mainnet - CVM Blockchain Network -description: Explore Cosvm Mainnet, a blockchain network with chain ID 323. Learn about its native currency, Cosvm, and how to interact with the network. ---- - -# Cosvm Mainnet - -Cosvm Mainnet is a blockchain network with chain ID 323. - -## Network Details - -- **Chain ID**: 323 -- **Chain Name**: CVM -- **Short Name**: cvm -- **Network ID**: 323 -- **Currency**: - - **Name**: Cosvm - - **Symbol**: CVM - - **Decimals**: 18 - -## RPC URLs - -Cosvm Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.cosvm.net - -## Cosvm Mainnet Block Explorers - -- [Blockscout](https://explorer.cosvm.net) - -## Additional Information - -- **Official Website**: https://cosvm.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/coti-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/coti-devnet.mdx deleted file mode 100644 index 59a244dcdd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/coti-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: COTI Devnet - COTI Blockchain Network -description: Explore COTI Devnet, a blockchain network with chain ID 13068200. Learn about its native currency, COTI2, and how to interact with the network. ---- - -# COTI Devnet - -COTI Devnet is a blockchain network with chain ID 13068200. - -## Network Details - -- **Chain ID**: 13068200 -- **Chain Name**: COTI -- **Short Name**: coti-devnet -- **Network ID**: 13068200 -- **Currency**: - - **Name**: COTI2 - - **Symbol**: COTI2 - - **Decimals**: 18 - -## RPC URLs - -COTI Devnet can be accessed through the following RPC endpoints: - -- https://devnet.coti.io/rpc - -## COTI Devnet Block Explorers - -- [coti devnet explorer](https://explorer-devnet.coti.io) - -## Additional Information - -- **Official Website**: https://coti.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/crab-network.mdx b/docs/pages/solutions/chainlist/non-integrated/crab-network.mdx deleted file mode 100644 index 29365157bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crab-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Crab Network - crab Blockchain Network -description: Explore Crab Network, a blockchain network with chain ID 44. Learn about its native currency, Crab Network Native Token, and how to interact with the network. ---- - -# Crab Network - -Crab Network is a blockchain network with chain ID 44. - -## Network Details - -- **Chain ID**: 44 -- **Chain Name**: crab -- **Short Name**: crab -- **Network ID**: 44 -- **Currency**: - - **Name**: Crab Network Native Token - - **Symbol**: CRAB - - **Decimals**: 18 - -## RPC URLs - -Crab Network can be accessed through the following RPC endpoints: - -- https://crab-rpc.darwinia.network -- https://crab-rpc.dcdao.box - -## Crab Network Block Explorers - -- [blockscout](https://crab-scan.darwinia.network) - -## Additional Information - -- **Official Website**: https://crab.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cratd2c-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cratd2c-testnet.mdx deleted file mode 100644 index 3a14a3b8d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cratd2c-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: CratD2C Testnet - CRATD2C Blockchain Network -description: Explore CratD2C Testnet, a blockchain network with chain ID 65349. Learn about its native currency, CRATD2C, and how to interact with the network. ---- - -# CratD2C Testnet - -CratD2C Testnet is a blockchain network with chain ID 65349. - -## Network Details - -- **Chain ID**: 65349 -- **Chain Name**: CRATD2C -- **Short Name**: cratd2c-testnet -- **Network ID**: 65349 -- **Currency**: - - **Name**: CRATD2C - - **Symbol**: CRAT - - **Decimals**: 18 - -## RPC URLs - -CratD2C Testnet can be accessed through the following RPC endpoints: - -- https://cratd2c-testnet-node1.cratd2csmartchain.io/ -- https://cratd2c-testnet-node2.cratd2csmartchain.io/ - -## CratD2C Testnet Block Explorers - -- [Blockscout](https://explorer-testnet.cratd2csmartchain.io) - -## Additional Information - -- **Official Website**: https://cratd2csmartchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CratD2C Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/crawshaw-network.mdx b/docs/pages/solutions/chainlist/non-integrated/crawshaw-network.mdx deleted file mode 100644 index dbf0476ea3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crawshaw-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: crawshaw-network - crawshaw-network Blockchain Network -description: Explore crawshaw-network, a blockchain network with chain ID 88834. Learn about its native currency, Ether, and how to interact with the network. ---- - -# crawshaw-network - -crawshaw-network is a blockchain network with chain ID 88834. - -## Network Details - -- **Chain ID**: 88834 -- **Chain Name**: crawshaw-network -- **Short Name**: crawshaw-network -- **Network ID**: 88834 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -crawshaw-network can be accessed through the following RPC endpoints: - -- https://rpc-crawshaw-network-anb7fzhujy.t.conduit.xyz - -## crawshaw-network Block Explorers - -- [crawshaw-network Explorer](https://explorer-crawshaw-network-anb7fzhujy.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/88834 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## crawshaw-network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/creator.mdx b/docs/pages/solutions/chainlist/non-integrated/creator.mdx deleted file mode 100644 index b02c50c527..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/creator.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Creator - Creator Blockchain Network -description: Explore Creator, a blockchain network with chain ID 66665. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Creator - -Creator is a blockchain network with chain ID 66665. - -## Network Details - -- **Chain ID**: 66665 -- **Chain Name**: Creator -- **Short Name**: Creator -- **Network ID**: 66665 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Creator can be accessed through the following RPC endpoints: - -- https://rpc.creatorchain.io - -## Creator Block Explorers - -- [Creator Explorer](https://explorer.creatorchain.io) - -## Additional Information - -- **Official Website**: https://thirdweb.com/66665 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Creator Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain-13308.mdx b/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain-13308.mdx deleted file mode 100644 index bf7f02400f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain-13308.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Credit Smart Chain - CREDIT Blockchain Network -description: Explore Credit Smart Chain, a blockchain network with chain ID 13308. Learn about its native currency, Credit, and how to interact with the network. ---- - -# Credit Smart Chain - -Credit Smart Chain is a blockchain network with chain ID 13308. - -## Network Details - -- **Chain ID**: 13308 -- **Chain Name**: CREDIT -- **Short Name**: Credit -- **Network ID**: 13308 -- **Currency**: - - **Name**: Credit - - **Symbol**: CREDIT - - **Decimals**: 18 - -## RPC URLs - -Credit Smart Chain can be accessed through the following RPC endpoints: - -- https://rpc.creditsmartchain.com - -## Credit Smart Chain Block Explorers - -- [Creditscan](https://scan.creditsmartchain.com) - -## Additional Information - -- **Official Website**: https://creditsmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain.mdx deleted file mode 100644 index 15b689b954..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/credit-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Credit Smart Chain Mainnet - CREDIT Blockchain Network -description: Explore Credit Smart Chain Mainnet, a blockchain network with chain ID 4400. Learn about its native currency, Credit, and how to interact with the network. ---- - -# Credit Smart Chain Mainnet - -Credit Smart Chain Mainnet is a blockchain network with chain ID 4400. - -## Network Details - -- **Chain ID**: 4400 -- **Chain Name**: CREDIT -- **Short Name**: CreditEdge -- **Network ID**: 4400 -- **Currency**: - - **Name**: Credit - - **Symbol**: CREDIT - - **Decimals**: 18 - -## RPC URLs - -Credit Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.creditsmartchain.com - -## Credit Smart Chain Mainnet Block Explorers - -- [Creditscan](https://scan.creditsmartchain.com) - -## Additional Information - -- **Official Website**: https://creditsmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/creditcoin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/creditcoin-testnet.mdx deleted file mode 100644 index b55188314d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/creditcoin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Creditcoin Testnet - CTC Blockchain Network -description: Explore Creditcoin Testnet, a blockchain network with chain ID 102031. Learn about its native currency, Testnet CTC, and how to interact with the network. ---- - -# Creditcoin Testnet - -Creditcoin Testnet is a blockchain network with chain ID 102031. - -## Network Details - -- **Chain ID**: 102031 -- **Chain Name**: CTC -- **Short Name**: ctctest -- **Network ID**: 102031 -- **Currency**: - - **Name**: Testnet CTC - - **Symbol**: tCTC - - **Decimals**: 18 - -## RPC URLs - -Creditcoin Testnet can be accessed through the following RPC endpoints: - -- https://rpc.cc3-testnet.creditcoin.network - -## Creditcoin Testnet Block Explorers - -- [blockscout](https://creditcoin-testnet.blockscout.com) - -## Additional Information - -- **Official Website**: https://creditcoin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Creditcoin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/creepy-monkeys.mdx b/docs/pages/solutions/chainlist/non-integrated/creepy-monkeys.mdx deleted file mode 100644 index ed14807325..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/creepy-monkeys.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Creepy Monkeys - Creepy Monkeys Blockchain Network -description: Explore Creepy Monkeys, a blockchain network with chain ID 2712939583089000. Learn about its native currency, MNKY, and how to interact with the network. ---- - -# Creepy Monkeys - -Creepy Monkeys is a blockchain network with chain ID 2712939583089000. - -## Network Details - -- **Chain ID**: 2712939583089000 -- **Chain Name**: Creepy Monkeys -- **Short Name**: Creepy Monkeys -- **Network ID**: 2712939583089000 -- **Currency**: - - **Name**: MNKY - - **Symbol**: MNKY - - **Decimals**: 18 - -## RPC URLs - -Creepy Monkeys can be accessed through the following RPC endpoints: - -- https://creepymonkeys-2712939583089000-1.jsonrpc.testnet.sagarpc.io - -## Creepy Monkeys Block Explorers - -- [creepymonkeys explorer](https://creepymonkeys-2712939583089000-1.testnet.sagaexplorer.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Creepy Monkeys Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cronos-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cronos-testnet.mdx deleted file mode 100644 index 8140c9f59d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cronos-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Cronos Testnet - CRO Blockchain Network -description: Explore Cronos Testnet, a blockchain network with chain ID 338. Learn about its native currency, Cronos Test Coin, and how to interact with the network. ---- - -# Cronos Testnet - -Cronos Testnet is a blockchain network with chain ID 338. - -## Network Details - -- **Chain ID**: 338 -- **Chain Name**: CRO -- **Short Name**: tcro -- **Network ID**: 338 -- **Currency**: - - **Name**: Cronos Test Coin - - **Symbol**: TCRO - - **Decimals**: 18 - -## RPC URLs - -Cronos Testnet can be accessed through the following RPC endpoints: - -- https://evm-t3.cronos.org -- https://cronos-testnet.drpc.org -- wss://cronos-testnet.drpc.org - -## Cronos Testnet Block Explorers - -- [Cronos Testnet Explorer](https://explorer.cronos.org/testnet) - -## Additional Information - -- **Official Website**: https://cronos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cronos Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm-testnet.mdx deleted file mode 100644 index b59f2f5f8a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cronos zkEVM Testnet - CronosZkEVMTestnet Blockchain Network -description: Explore Cronos zkEVM Testnet, a blockchain network with chain ID 282. Learn about its native currency, Cronos zkEVM Test Coin, and how to interact with the network. ---- - -# Cronos zkEVM Testnet - -Cronos zkEVM Testnet is a blockchain network with chain ID 282. - -## Network Details - -- **Chain ID**: 282 -- **Chain Name**: CronosZkEVMTestnet -- **Short Name**: zkTCRO -- **Network ID**: 282 -- **Currency**: - - **Name**: Cronos zkEVM Test Coin - - **Symbol**: zkTCRO - - **Decimals**: 18 - -## RPC URLs - -Cronos zkEVM Testnet can be accessed through the following RPC endpoints: - -- https://testnet.zkevm.cronos.org - -## Cronos zkEVM Testnet Block Explorers - -- [Cronos zkEVM Testnet Explorer](https://explorer.zkevm.cronos.org/testnet) - -## Additional Information - -- **Official Website**: https://docs-zkevm.cronos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cronos zkEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm.mdx b/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm.mdx deleted file mode 100644 index e446dbc67f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cronos-zkevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cronos zkEVM Mainnet - CronosZkEVMMainnet Blockchain Network -description: Explore Cronos zkEVM Mainnet, a blockchain network with chain ID 388. Learn about its native currency, Cronos zkEVM CRO, and how to interact with the network. ---- - -# Cronos zkEVM Mainnet - -Cronos zkEVM Mainnet is a blockchain network with chain ID 388. - -## Network Details - -- **Chain ID**: 388 -- **Chain Name**: CronosZkEVMMainnet -- **Short Name**: zkCRO -- **Network ID**: 388 -- **Currency**: - - **Name**: Cronos zkEVM CRO - - **Symbol**: zkCRO - - **Decimals**: 18 - -## RPC URLs - -Cronos zkEVM Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.zkevm.cronos.org - -## Cronos zkEVM Mainnet Block Explorers - -- [Cronos zkEVM (Mainnet) Chain Explorer](https://explorer.zkevm.cronos.org) - -## Additional Information - -- **Official Website**: https://cronos.org/zkevm - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cronos.mdx b/docs/pages/solutions/chainlist/non-integrated/cronos.mdx deleted file mode 100644 index 57229b5862..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cronos.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cronos Mainnet - CRO Blockchain Network -description: Explore Cronos Mainnet, a blockchain network with chain ID 25. Learn about its native currency, Cronos, and how to interact with the network. ---- - -# Cronos Mainnet - -Cronos Mainnet is a blockchain network with chain ID 25. - -## Network Details - -- **Chain ID**: 25 -- **Chain Name**: CRO -- **Short Name**: cro -- **Network ID**: 25 -- **Currency**: - - **Name**: Cronos - - **Symbol**: CRO - - **Decimals**: 18 - -## RPC URLs - -Cronos Mainnet can be accessed through the following RPC endpoints: - -- https://evm.cronos.org -- https://cronos-evm-rpc.publicnode.com -- wss://cronos-evm-rpc.publicnode.com -- https://cronos.drpc.org -- wss://cronos.drpc.org - -## Cronos Mainnet Block Explorers - -- [Cronos Explorer](https://explorer.cronos.org) - -## Additional Information - -- **Official Website**: https://cronos.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/crossbell.mdx b/docs/pages/solutions/chainlist/non-integrated/crossbell.mdx deleted file mode 100644 index df59271251..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crossbell.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Crossbell - Crossbell Blockchain Network -description: Explore Crossbell, a blockchain network with chain ID 3737. Learn about its native currency, Crossbell Token, and how to interact with the network. ---- - -# Crossbell - -Crossbell is a blockchain network with chain ID 3737. - -## Network Details - -- **Chain ID**: 3737 -- **Chain Name**: Crossbell -- **Short Name**: csb -- **Network ID**: 3737 -- **Currency**: - - **Name**: Crossbell Token - - **Symbol**: CSB - - **Decimals**: 18 - -## RPC URLs - -Crossbell can be accessed through the following RPC endpoints: - -- https://rpc.crossbell.io - -## Crossbell Block Explorers - -- [Crossbell Explorer](https://scan.crossbell.io) - -## Additional Information - -- **Official Website**: https://crossbell.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/crossfi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/crossfi-testnet.mdx deleted file mode 100644 index e8ab940582..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crossfi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CrossFi Testnet - XFI Blockchain Network -description: Explore CrossFi Testnet, a blockchain network with chain ID 4157. Learn about its native currency, XFI, and how to interact with the network. ---- - -# CrossFi Testnet - -CrossFi Testnet is a blockchain network with chain ID 4157. - -## Network Details - -- **Chain ID**: 4157 -- **Chain Name**: XFI -- **Short Name**: crossfi-testnet -- **Network ID**: 4157 -- **Currency**: - - **Name**: XFI - - **Symbol**: XFI - - **Decimals**: 18 - -## RPC URLs - -CrossFi Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.ms - -## CrossFi Testnet Block Explorers - -- [CrossFi Testnet Scan](https://test.xfiscan.com) - -## Additional Information - -- **Official Website**: https://crossfi.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CrossFi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/crtr-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/crtr-testnet.mdx deleted file mode 100644 index bc6dd1e570..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crtr-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: crtr-testnet - crtr-testnet Blockchain Network -description: Explore crtr-testnet, a blockchain network with chain ID 37003. Learn about its native currency, CRTR, and how to interact with the network. ---- - -# crtr-testnet - -crtr-testnet is a blockchain network with chain ID 37003. - -## Network Details - -- **Chain ID**: 37003 -- **Chain Name**: crtr-testnet -- **Short Name**: crtr-testnet-mev0ni0xlx -- **Network ID**: 37003 -- **Currency**: - - **Name**: CRTR - - **Symbol**: CRTR - - **Decimals**: 18 - -## RPC URLs - -crtr-testnet can be accessed through the following RPC endpoints: - -- https://rpc-crtr-testnet-mev0ni0xlx.t.conduit.xyz - -## crtr-testnet Block Explorers - -- [blockscout](https://explorerl2new-crtr-testnet-mev0ni0xlx.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## crtr-testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/crypto-emergency.mdx b/docs/pages/solutions/chainlist/non-integrated/crypto-emergency.mdx deleted file mode 100644 index 799b1ba197..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crypto-emergency.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Crypto Emergency - CEM Blockchain Network -description: Explore Crypto Emergency, a blockchain network with chain ID 193. Learn about its native currency, Crypto Emergency, and how to interact with the network. ---- - -# Crypto Emergency - -Crypto Emergency is a blockchain network with chain ID 193. - -## Network Details - -- **Chain ID**: 193 -- **Chain Name**: CEM -- **Short Name**: cem -- **Network ID**: 193 -- **Currency**: - - **Name**: Crypto Emergency - - **Symbol**: CEM - - **Decimals**: 18 - -## RPC URLs - -Crypto Emergency can be accessed through the following RPC endpoints: - -- https://cemchain.com - -## Crypto Emergency Block Explorers - -- [cemscan](https://cemscan.com) - -## Additional Information - -- **Official Website**: https://cemblockchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cryptocoinpay.mdx b/docs/pages/solutions/chainlist/non-integrated/cryptocoinpay.mdx deleted file mode 100644 index 23d458e107..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cryptocoinpay.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: CryptoCoinPay - CCP Blockchain Network -description: Explore CryptoCoinPay, a blockchain network with chain ID 10823. Learn about its native currency, CryptoCoinPay, and how to interact with the network. ---- - -# CryptoCoinPay - -CryptoCoinPay is a blockchain network with chain ID 10823. - -## Network Details - -- **Chain ID**: 10823 -- **Chain Name**: CCP -- **Short Name**: CCP -- **Network ID**: 10823 -- **Currency**: - - **Name**: CryptoCoinPay - - **Symbol**: CCP - - **Decimals**: 18 - -## RPC URLs - -CryptoCoinPay can be accessed through the following RPC endpoints: - -- http://node106.cryptocoinpay.info:8545 -- ws://node106.cryptocoinpay.info:8546 - -## CryptoCoinPay Block Explorers - -- [CCP Explorer](https://cryptocoinpay.info) - -## Additional Information - -- **Official Website**: https://www.cryptocoinpay.co - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/crystaleum.mdx b/docs/pages/solutions/chainlist/non-integrated/crystaleum.mdx deleted file mode 100644 index ae52b157e0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/crystaleum.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Crystaleum - crystal Blockchain Network -description: Explore Crystaleum, a blockchain network with chain ID 103090. Learn about its native currency, CRFI, and how to interact with the network. ---- - -# Crystaleum - -Crystaleum is a blockchain network with chain ID 103090. - -## Network Details - -- **Chain ID**: 103090 -- **Chain Name**: crystal -- **Short Name**: CRFI -- **Network ID**: 103090 -- **Currency**: - - **Name**: CRFI - - **Symbol**: ◈ - - **Decimals**: 18 - -## RPC URLs - -Crystaleum can be accessed through the following RPC endpoints: - -- https://evm.cryptocurrencydevs.org -- https://rpc.crystaleum.org - -## Crystaleum Block Explorers - -- [blockscout](https://scan.crystaleum.org) - -## Additional Information - -- **Official Website**: https://crystaleum.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ctex-scan-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/ctex-scan-blockchain.mdx deleted file mode 100644 index 323c0393be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ctex-scan-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ctex Scan Blockchain - Ctex Scan Blockchain Blockchain Network -description: Explore Ctex Scan Blockchain, a blockchain network with chain ID 1455. Learn about its native currency, CTEX, and how to interact with the network. ---- - -# Ctex Scan Blockchain - -Ctex Scan Blockchain is a blockchain network with chain ID 1455. - -## Network Details - -- **Chain ID**: 1455 -- **Chain Name**: Ctex Scan Blockchain -- **Short Name**: CTEX -- **Network ID**: 1455 -- **Currency**: - - **Name**: CTEX - - **Symbol**: CTEX - - **Decimals**: 18 - -## RPC URLs - -Ctex Scan Blockchain can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.ctexscan.com/ - -## Ctex Scan Blockchain Block Explorers - -- [Ctex Scan Explorer](https://ctexscan.com) - -## Additional Information - -- **Official Website**: https://ctextoken.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cube-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cube-chain-testnet.mdx deleted file mode 100644 index d2e6ef258a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cube-chain-testnet.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Cube Chain Testnet - Cube Blockchain Network -description: Explore Cube Chain Testnet, a blockchain network with chain ID 1819. Learn about its native currency, Cube Chain Test Native Token, and how to interact with the network. ---- - -# Cube Chain Testnet - -Cube Chain Testnet is a blockchain network with chain ID 1819. - -## Network Details - -- **Chain ID**: 1819 -- **Chain Name**: Cube -- **Short Name**: cubet -- **Network ID**: 1819 -- **Currency**: - - **Name**: Cube Chain Test Native Token - - **Symbol**: CUBET - - **Decimals**: 18 - -## RPC URLs - -Cube Chain Testnet can be accessed through the following RPC endpoints: - -- https://http-testnet.cube.network -- wss://ws-testnet.cube.network -- https://http-testnet-sg.cube.network -- wss://ws-testnet-sg.cube.network -- https://http-testnet-jp.cube.network -- wss://ws-testnet-jp.cube.network -- https://http-testnet-us.cube.network -- wss://ws-testnet-us.cube.network - -## Cube Chain Testnet Block Explorers - -- [cubetest-scan](https://testnet.cubescan.network) - -## Additional Information - -- **Official Website**: https://www.cube.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cube Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cube-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/cube-chain.mdx deleted file mode 100644 index 82bc76beeb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cube-chain.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Cube Chain Mainnet - Cube Blockchain Network -description: Explore Cube Chain Mainnet, a blockchain network with chain ID 1818. Learn about its native currency, Cube Chain Native Token, and how to interact with the network. ---- - -# Cube Chain Mainnet - -Cube Chain Mainnet is a blockchain network with chain ID 1818. - -## Network Details - -- **Chain ID**: 1818 -- **Chain Name**: Cube -- **Short Name**: cube -- **Network ID**: 1818 -- **Currency**: - - **Name**: Cube Chain Native Token - - **Symbol**: CUBE - - **Decimals**: 18 - -## RPC URLs - -Cube Chain Mainnet can be accessed through the following RPC endpoints: - -- https://http-mainnet.cube.network -- wss://ws-mainnet.cube.network -- https://http-mainnet-sg.cube.network -- wss://ws-mainnet-sg.cube.network -- https://http-mainnet-us.cube.network -- wss://ws-mainnet-us.cube.network - -## Cube Chain Mainnet Block Explorers - -- [cube-scan](https://cubescan.network) - -## Additional Information - -- **Official Website**: https://www.cube.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cuckoo-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/cuckoo-chain.mdx deleted file mode 100644 index f8e13727f3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cuckoo-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Cuckoo Chain - CuckooAI Blockchain Network -description: Explore Cuckoo Chain, a blockchain network with chain ID 1200. Learn about its native currency, CuckooAI, and how to interact with the network. ---- - -# Cuckoo Chain - -Cuckoo Chain is a blockchain network with chain ID 1200. - -## Network Details - -- **Chain ID**: 1200 -- **Chain Name**: CuckooAI -- **Short Name**: cai -- **Network ID**: 1200 -- **Currency**: - - **Name**: CuckooAI - - **Symbol**: CAI - - **Decimals**: 18 - -## RPC URLs - -Cuckoo Chain can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.cuckoo.network -- wss://mainnet-rpc.cuckoo.network - -## Cuckoo Chain Block Explorers - -- [Cuckoo Chain Explorer](https://scan.cuckoo.network) - -## Additional Information - -- **Official Website**: https://cuckoo.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cuckoo-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/cuckoo-sepolia.mdx deleted file mode 100644 index 5d4feb08e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cuckoo-sepolia.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Cuckoo Sepolia - CuckooAI Blockchain Network -description: Explore Cuckoo Sepolia, a blockchain network with chain ID 1210. Learn about its native currency, CuckooAI, and how to interact with the network. ---- - -# Cuckoo Sepolia - -Cuckoo Sepolia is a blockchain network with chain ID 1210. - -## Network Details - -- **Chain ID**: 1210 -- **Chain Name**: CuckooAI -- **Short Name**: caisepolia -- **Network ID**: 1210 -- **Currency**: - - **Name**: CuckooAI - - **Symbol**: CAI - - **Decimals**: 18 - -## RPC URLs - -Cuckoo Sepolia can be accessed through the following RPC endpoints: - -- https://testnet-rpc.cuckoo.network -- wss://testnet-rpc.cuckoo.network - -## Cuckoo Sepolia Block Explorers - -- [Cuckoo Sepolia Explorer](https://testnet-scan.cuckoo.network) - -## Additional Information - -- **Official Website**: https://cuckoo.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cuckoo Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/curtis.mdx b/docs/pages/solutions/chainlist/non-integrated/curtis.mdx deleted file mode 100644 index 3f699b80ac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/curtis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Curtis - Curtis Blockchain Network -description: Explore Curtis, a blockchain network with chain ID 33111. Learn about its native currency, ApeCoin, and how to interact with the network. ---- - -# Curtis - -Curtis is a blockchain network with chain ID 33111. - -## Network Details - -- **Chain ID**: 33111 -- **Chain Name**: Curtis -- **Short Name**: curtis -- **Network ID**: 33111 -- **Currency**: - - **Name**: ApeCoin - - **Symbol**: APE - - **Decimals**: 18 - -## RPC URLs - -Curtis can be accessed through the following RPC endpoints: - -- https://curtis.rpc.caldera.xyz/http - -## Curtis Block Explorers - -- [Curtis Explorer](https://curtis.explorer.caldera.xyz) - -## Additional Information - -- **Official Website**: https://curtis.hub.caldera.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/curve.mdx b/docs/pages/solutions/chainlist/non-integrated/curve.mdx deleted file mode 100644 index cc3e08cc60..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/curve.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CURVE Mainnet - CURVE Blockchain Network -description: Explore CURVE Mainnet, a blockchain network with chain ID 827431. Learn about its native currency, Curve, and how to interact with the network. ---- - -# CURVE Mainnet - -CURVE Mainnet is a blockchain network with chain ID 827431. - -## Network Details - -- **Chain ID**: 827431 -- **Chain Name**: CURVE -- **Short Name**: CURVEm -- **Network ID**: 827431 -- **Currency**: - - **Name**: Curve - - **Symbol**: CURVE - - **Decimals**: 18 - -## RPC URLs - -CURVE Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.curvescan.io - -## CURVE Mainnet Block Explorers - -- [CURVE Mainnet](https://curvescan.io) - -## Additional Information - -- **Official Website**: https://curvescan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/custom-fee-recipients.mdx b/docs/pages/solutions/chainlist/non-integrated/custom-fee-recipients.mdx deleted file mode 100644 index f7f8d90c33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/custom-fee-recipients.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: custom-fee-recipients - Avalanche Blockchain Network -description: Explore custom-fee-recipients, a blockchain network with chain ID 32244. Learn about its native currency, custom-fee-recipients Token, and how to interact with the network. ---- - -# custom-fee-recipients - -custom-fee-recipients is a blockchain network with chain ID 32244. - -## Network Details - -- **Chain ID**: 32244 -- **Chain Name**: Avalanche -- **Short Name**: custom-fee-recipients -- **Network ID**: 32244 -- **Currency**: - - **Name**: custom-fee-recipients Token - - **Symbol**: CUSTOM - - **Decimals**: 18 - -## RPC URLs - -custom-fee-recipients can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## custom-fee-recipients Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## custom-fee-recipients Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cyber-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cyber-testnet.mdx deleted file mode 100644 index c7c19cf29f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cyber-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Cyber Testnet - Cyber Blockchain Network -description: Explore Cyber Testnet, a blockchain network with chain ID 111557560. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Cyber Testnet - -Cyber Testnet is a blockchain network with chain ID 111557560. - -## Network Details - -- **Chain ID**: 111557560 -- **Chain Name**: Cyber -- **Short Name**: cysep -- **Network ID**: 111557560 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Cyber Testnet can be accessed through the following RPC endpoints: - -- https://cyber-testnet.alt.technology/ -- wss://cyber-testnet.alt.technology/ws -- https://rpc.testnet.cyber.co/ -- wss://rpc.testnet.cyber.co/ - -## Cyber Testnet Block Explorers - -- [Cyber Testnet Explorer](https://testnet.cyberscan.co) - -## Additional Information - -- **Official Website**: https://cyber.co/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cyber Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cyber.mdx b/docs/pages/solutions/chainlist/non-integrated/cyber.mdx deleted file mode 100644 index e5c865410a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cyber.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Cyber Mainnet - Cyber Blockchain Network -description: Explore Cyber Mainnet, a blockchain network with chain ID 7560. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Cyber Mainnet - -Cyber Mainnet is a blockchain network with chain ID 7560. - -## Network Details - -- **Chain ID**: 7560 -- **Chain Name**: Cyber -- **Short Name**: cyeth -- **Network ID**: 7560 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Cyber Mainnet can be accessed through the following RPC endpoints: - -- https://cyber.alt.technology/ -- wss://cyber-ws.alt.technology/ -- https://rpc.cyber.co/ -- wss://rpc.cyber.co/ - -## Cyber Mainnet Block Explorers - -- [Cyber Mainnet Explorer](https://cyberscan.co) - -## Additional Information - -- **Official Website**: https://cyber.co/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cyberdecknet.mdx b/docs/pages/solutions/chainlist/non-integrated/cyberdecknet.mdx deleted file mode 100644 index d85e0156a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cyberdecknet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: CyberdeckNet - cyberdeck Blockchain Network -description: Explore CyberdeckNet, a blockchain network with chain ID 1146703430. Learn about its native currency, Cyb, and how to interact with the network. ---- - -# CyberdeckNet - -CyberdeckNet is a blockchain network with chain ID 1146703430. - -## Network Details - -- **Chain ID**: 1146703430 -- **Chain Name**: cyberdeck -- **Short Name**: cyb -- **Network ID**: 1146703430 -- **Currency**: - - **Name**: Cyb - - **Symbol**: CYB - - **Decimals**: 18 - -## RPC URLs - -CyberdeckNet can be accessed through the following RPC endpoints: - -- http://cybeth1.cyberdeck.eu:8545 - -## CyberdeckNet Block Explorers - -- [CybEthExplorer](http://cybeth1.cyberdeck.eu:8000) - -## Additional Information - -- **Official Website**: https://cyberdeck.eu - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cybertrust.mdx b/docs/pages/solutions/chainlist/non-integrated/cybertrust.mdx deleted file mode 100644 index 8ce26b7cde..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cybertrust.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: CYBERTRUST - CYBER Blockchain Network -description: Explore CYBERTRUST, a blockchain network with chain ID 85449. Learn about its native currency, Cyber Trust, and how to interact with the network. ---- - -# CYBERTRUST - -CYBERTRUST is a blockchain network with chain ID 85449. - -## Network Details - -- **Chain ID**: 85449 -- **Chain Name**: CYBER -- **Short Name**: Cyber -- **Network ID**: 85449 -- **Currency**: - - **Name**: Cyber Trust - - **Symbol**: CYBER - - **Decimals**: 18 - -## RPC URLs - -CYBERTRUST can be accessed through the following RPC endpoints: - -- http://testnet.cybertrust.space:48501 - -## CYBERTRUST Block Explorers - - - -## Additional Information - -- **Official Website**: https://cybertrust.space - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## CYBERTRUST Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cybria-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cybria-testnet.mdx deleted file mode 100644 index 381d39d0ff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cybria-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cybria Testnet - CYBA Blockchain Network -description: Explore Cybria Testnet, a blockchain network with chain ID 6666. Learn about its native currency, Cybria, and how to interact with the network. ---- - -# Cybria Testnet - -Cybria Testnet is a blockchain network with chain ID 6666. - -## Network Details - -- **Chain ID**: 6666 -- **Chain Name**: CYBA -- **Short Name**: tcyba -- **Network ID**: 6666 -- **Currency**: - - **Name**: Cybria - - **Symbol**: CYBA - - **Decimals**: 18 - -## RPC URLs - -Cybria Testnet can be accessed through the following RPC endpoints: - -- https://l2-rpc.cybascan.io - -## Cybria Testnet Block Explorers - -- [Cybria Explorer](https://explorer.cybascan.io) - -## Additional Information - -- **Official Website**: https://cybria.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cybria Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cybria.mdx b/docs/pages/solutions/chainlist/non-integrated/cybria.mdx deleted file mode 100644 index 1ed4b95087..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cybria.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cybria Mainnet - CYBA Blockchain Network -description: Explore Cybria Mainnet, a blockchain network with chain ID 6661. Learn about its native currency, Cybria, and how to interact with the network. ---- - -# Cybria Mainnet - -Cybria Mainnet is a blockchain network with chain ID 6661. - -## Network Details - -- **Chain ID**: 6661 -- **Chain Name**: CYBA -- **Short Name**: cyba -- **Network ID**: 6661 -- **Currency**: - - **Name**: Cybria - - **Symbol**: CYBA - - **Decimals**: 18 - -## RPC URLs - -Cybria Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.cybria.io - -## Cybria Mainnet Block Explorers - -- [Cybria Explorer](https://cybascan.io) - -## Additional Information - -- **Official Website**: https://cybria.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cycle-network-sailboat.mdx b/docs/pages/solutions/chainlist/non-integrated/cycle-network-sailboat.mdx deleted file mode 100644 index aa9531c5d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cycle-network-sailboat.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Cycle Network Mainnet Sailboat - ETH Blockchain Network -description: Explore Cycle Network Mainnet Sailboat, a blockchain network with chain ID 77677. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Cycle Network Mainnet Sailboat - -Cycle Network Mainnet Sailboat is a blockchain network with chain ID 77677. - -## Network Details - -- **Chain ID**: 77677 -- **Chain Name**: ETH -- **Short Name**: cycles -- **Network ID**: 77677 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Cycle Network Mainnet Sailboat can be accessed through the following RPC endpoints: - -- https://sailboat-rpc-mainnet.cyclenetwork.io - -## Cycle Network Mainnet Sailboat Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.cyclenetwork.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet-jellyfish.mdx b/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet-jellyfish.mdx deleted file mode 100644 index f06c4a3e74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet-jellyfish.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cycle Network Testnet Jellyfish - ETH Blockchain Network -description: Explore Cycle Network Testnet Jellyfish, a blockchain network with chain ID 1223. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Cycle Network Testnet Jellyfish - -Cycle Network Testnet Jellyfish is a blockchain network with chain ID 1223. - -## Network Details - -- **Chain ID**: 1223 -- **Chain Name**: ETH -- **Short Name**: cyclej -- **Network ID**: 1223 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Cycle Network Testnet Jellyfish can be accessed through the following RPC endpoints: - -- https://jellyfish-rpc-testnet.cyclenetwork.io - -## Cycle Network Testnet Jellyfish Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.cyclenetwork.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cycle Network Testnet Jellyfish Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet.mdx deleted file mode 100644 index a7ab16536c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/cycle-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Cycle Network Testnet - ETH Blockchain Network -description: Explore Cycle Network Testnet, a blockchain network with chain ID 1221. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Cycle Network Testnet - -Cycle Network Testnet is a blockchain network with chain ID 1221. - -## Network Details - -- **Chain ID**: 1221 -- **Chain Name**: ETH -- **Short Name**: Cycle -- **Network ID**: 1221 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Cycle Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.cyclenetwork.io - -## Cycle Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.cyclenetwork.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Cycle Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/d-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/d-chain.mdx deleted file mode 100644 index f861a4550e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/d-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: D-Chain Mainnet - D-Chain Blockchain Network -description: Explore D-Chain Mainnet, a blockchain network with chain ID 1951. Learn about its native currency, DOINX, and how to interact with the network. ---- - -# D-Chain Mainnet - -D-Chain Mainnet is a blockchain network with chain ID 1951. - -## Network Details - -- **Chain ID**: 1951 -- **Chain Name**: D-Chain -- **Short Name**: dchain-mainnet -- **Network ID**: 1951 -- **Currency**: - - **Name**: DOINX - - **Symbol**: DOINX - - **Decimals**: 18 - -## RPC URLs - -D-Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.d-chain.network/ext/bc/2ZiR1Bro5E59siVuwdNuRFzqL95NkvkbzyLBdrsYR9BLSHV7H4/rpc - -## D-Chain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/darwin-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/darwin-devnet.mdx deleted file mode 100644 index f11944c082..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/darwin-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Darwin Devnet - Darwin Blockchain Network -description: Explore Darwin Devnet, a blockchain network with chain ID 610. Learn about its native currency, Darwin Devnet token, and how to interact with the network. ---- - -# Darwin Devnet - -Darwin Devnet is a blockchain network with chain ID 610. - -## Network Details - -- **Chain ID**: 610 -- **Chain Name**: Darwin -- **Short Name**: darwin-devnet -- **Network ID**: 610 -- **Currency**: - - **Name**: Darwin Devnet token - - **Symbol**: DNA - - **Decimals**: 18 - -## RPC URLs - -Darwin Devnet can be accessed through the following RPC endpoints: - -- https://devnet-rpc.darwinchain.ai - -## Darwin Devnet Block Explorers - -- [Darwin Explorer](https://explorer.darwinchain.ai) - -## Additional Information - -- **Official Website**: https://darwinchain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/darwinia-koi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/darwinia-koi-testnet.mdx deleted file mode 100644 index 4a48c51b77..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/darwinia-koi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Darwinia Koi Testnet - Darwinia Koi Blockchain Network -description: Explore Darwinia Koi Testnet, a blockchain network with chain ID 701. Learn about its native currency, Koi Network Native Token, and how to interact with the network. ---- - -# Darwinia Koi Testnet - -Darwinia Koi Testnet is a blockchain network with chain ID 701. - -## Network Details - -- **Chain ID**: 701 -- **Chain Name**: Darwinia Koi -- **Short Name**: darwinia-koi -- **Network ID**: 701 -- **Currency**: - - **Name**: Koi Network Native Token - - **Symbol**: KRING - - **Decimals**: 18 - -## RPC URLs - -Darwinia Koi Testnet can be accessed through the following RPC endpoints: - -- https://koi-rpc.darwinia.network - -## Darwinia Koi Testnet Block Explorers - -- [blockscout](https://koi-scan.darwinia.network) - -## Additional Information - -- **Official Website**: https://darwinia.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Darwinia Koi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/darwinia-network.mdx b/docs/pages/solutions/chainlist/non-integrated/darwinia-network.mdx deleted file mode 100644 index d5009f982c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/darwinia-network.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Darwinia Network - darwinia Blockchain Network -description: Explore Darwinia Network, a blockchain network with chain ID 46. Learn about its native currency, Darwinia Network Native Token, and how to interact with the network. ---- - -# Darwinia Network - -Darwinia Network is a blockchain network with chain ID 46. - -## Network Details - -- **Chain ID**: 46 -- **Chain Name**: darwinia -- **Short Name**: darwinia -- **Network ID**: 46 -- **Currency**: - - **Name**: Darwinia Network Native Token - - **Symbol**: RING - - **Decimals**: 18 - -## RPC URLs - -Darwinia Network can be accessed through the following RPC endpoints: - -- https://rpc.darwinia.network -- https://darwinia-rpc.dcdao.box -- https://darwinia-rpc.dwellir.com - -## Darwinia Network Block Explorers - -- [blockscout](https://explorer.darwinia.network) - -## Additional Information - -- **Official Website**: https://darwinia.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/darwinia-pangolin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/darwinia-pangolin-testnet.mdx deleted file mode 100644 index a439d6bda4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/darwinia-pangolin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Darwinia Pangolin Testnet - pangolin Blockchain Network -description: Explore Darwinia Pangolin Testnet, a blockchain network with chain ID 43. Learn about its native currency, Pangolin Network Native Token, and how to interact with the network. ---- - -# Darwinia Pangolin Testnet - -Darwinia Pangolin Testnet is a blockchain network with chain ID 43. - -## Network Details - -- **Chain ID**: 43 -- **Chain Name**: pangolin -- **Short Name**: pangolin -- **Network ID**: 43 -- **Currency**: - - **Name**: Pangolin Network Native Token - - **Symbol**: PRING - - **Decimals**: 18 - -## RPC URLs - -Darwinia Pangolin Testnet can be accessed through the following RPC endpoints: - -- https://pangolin-rpc.darwinia.network - -## Darwinia Pangolin Testnet Block Explorers - -- [subscan](https://pangolin.subscan.io) - -## Additional Information - -- **Official Website**: https://darwinia.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Darwinia Pangolin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/darwinia-pangoro-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/darwinia-pangoro-testnet.mdx deleted file mode 100644 index 1ff0f0bb0c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/darwinia-pangoro-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Darwinia Pangoro Testnet - pangoro Blockchain Network -description: Explore Darwinia Pangoro Testnet, a blockchain network with chain ID 45. Learn about its native currency, Pangoro Network Native Token, and how to interact with the network. ---- - -# Darwinia Pangoro Testnet - -Darwinia Pangoro Testnet is a blockchain network with chain ID 45. - -## Network Details - -- **Chain ID**: 45 -- **Chain Name**: pangoro -- **Short Name**: pangoro -- **Network ID**: 45 -- **Currency**: - - **Name**: Pangoro Network Native Token - - **Symbol**: ORING - - **Decimals**: 18 - -## RPC URLs - -Darwinia Pangoro Testnet can be accessed through the following RPC endpoints: - -- https://pangoro-rpc.darwinia.network - -## Darwinia Pangoro Testnet Block Explorers - -- [subscan](https://pangoro.subscan.io) - -## Additional Information - -- **Official Website**: https://darwinia.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Darwinia Pangoro Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/datahopper.mdx b/docs/pages/solutions/chainlist/non-integrated/datahopper.mdx deleted file mode 100644 index b34acd6151..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/datahopper.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DataHopper - HOP Blockchain Network -description: Explore DataHopper, a blockchain network with chain ID 2021121117. Learn about its native currency, DataHoppers, and how to interact with the network. ---- - -# DataHopper - -DataHopper is a blockchain network with chain ID 2021121117. - -## Network Details - -- **Chain ID**: 2021121117 -- **Chain Name**: HOP -- **Short Name**: hop -- **Network ID**: 2021121117 -- **Currency**: - - **Name**: DataHoppers - - **Symbol**: HOP - - **Decimals**: 18 - -## RPC URLs - -DataHopper can be accessed through the following RPC endpoints: - -- https://23.92.21.121:8545 - -## DataHopper Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.DataHopper.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dax-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/dax-chain.mdx deleted file mode 100644 index b9a64ea03e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dax-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DAX CHAIN - DAX Blockchain Network -description: Explore DAX CHAIN, a blockchain network with chain ID 142. Learn about its native currency, Prodax, and how to interact with the network. ---- - -# DAX CHAIN - -DAX CHAIN is a blockchain network with chain ID 142. - -## Network Details - -- **Chain ID**: 142 -- **Chain Name**: DAX -- **Short Name**: dax -- **Network ID**: 142 -- **Currency**: - - **Name**: Prodax - - **Symbol**: DAX - - **Decimals**: 18 - -## RPC URLs - -DAX CHAIN can be accessed through the following RPC endpoints: - -- https://rpc.prodax.io - -## DAX CHAIN Block Explorers - - - -## Additional Information - -- **Official Website**: https://prodax.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dbchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dbchain-testnet.mdx deleted file mode 100644 index 5874ff4695..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dbchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DBChain Testnet - DBM Blockchain Network -description: Explore DBChain Testnet, a blockchain network with chain ID 67. Learn about its native currency, DBChain Testnet, and how to interact with the network. ---- - -# DBChain Testnet - -DBChain Testnet is a blockchain network with chain ID 67. - -## Network Details - -- **Chain ID**: 67 -- **Chain Name**: DBM -- **Short Name**: dbm -- **Network ID**: 67 -- **Currency**: - - **Name**: DBChain Testnet - - **Symbol**: DBM - - **Decimals**: 18 - -## RPC URLs - -DBChain Testnet can be accessed through the following RPC endpoints: - -- http://test-rpc.dbmbp.com - -## DBChain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: http://test.dbmbp.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DBChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dbk-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/dbk-chain.mdx deleted file mode 100644 index 76d36913cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dbk-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DBK Chain - DBK Chain Blockchain Network -description: Explore DBK Chain, a blockchain network with chain ID 20240603. Learn about its native currency, Ether, and how to interact with the network. ---- - -# DBK Chain - -DBK Chain is a blockchain network with chain ID 20240603. - -## Network Details - -- **Chain ID**: 20240603 -- **Chain Name**: DBK Chain -- **Short Name**: dbkchain -- **Network ID**: 20240603 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -DBK Chain can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.dbkchain.io - -## DBK Chain Block Explorers - -- [DBK Chain Explorer](https://scan.dbkchain.io) - -## Additional Information - -- **Official Website**: https://docs.dbkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dc.mdx b/docs/pages/solutions/chainlist/non-integrated/dc.mdx deleted file mode 100644 index c6a67c87b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dc.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: DC Mainnet - dcchain Blockchain Network -description: Explore DC Mainnet, a blockchain network with chain ID 176. Learn about its native currency, DC Native Token, and how to interact with the network. ---- - -# DC Mainnet - -DC Mainnet is a blockchain network with chain ID 176. - -## Network Details - -- **Chain ID**: 176 -- **Chain Name**: dcchain -- **Short Name**: dcchain -- **Network ID**: 176 -- **Currency**: - - **Name**: DC Native Token - - **Symbol**: DCT - - **Decimals**: 18 - -## RPC URLs - -DC Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dcnetio.cloud -- wss://ws.dcnetio.cloud - -## DC Mainnet Block Explorers - -- [dcscan](https://exp.dcnetio.cloud) - -## Additional Information - -- **Official Website**: https://www.dcnetio.cloud - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dchain-testnet.mdx deleted file mode 100644 index ab49e6de47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DCHAIN Testnet - dchaint Blockchain Network -description: Explore DCHAIN Testnet, a blockchain network with chain ID 2713017997578000. Learn about its native currency, Ether, and how to interact with the network. ---- - -# DCHAIN Testnet - -DCHAIN Testnet is a blockchain network with chain ID 2713017997578000. - -## Network Details - -- **Chain ID**: 2713017997578000 -- **Chain Name**: dchaint -- **Short Name**: dchaint -- **Network ID**: 2713017997578000 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -DCHAIN Testnet can be accessed through the following RPC endpoints: - -- https://dchaintestnet-2713017997578000-1.jsonrpc.testnet.sagarpc.io - -## DCHAIN Testnet Block Explorers - -- [dchaint scan](https://dchaintestnet-2713017997578000-1.testnet.sagaexplorer.io) - -## Additional Information - -- **Official Website**: https://www.dchain.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DCHAIN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dchain.mdx b/docs/pages/solutions/chainlist/non-integrated/dchain.mdx deleted file mode 100644 index 0116db98ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DCHAIN - dchainmainnet Blockchain Network -description: Explore DCHAIN, a blockchain network with chain ID 2716446429837000. Learn about its native currency, Ether, and how to interact with the network. ---- - -# DCHAIN - -DCHAIN is a blockchain network with chain ID 2716446429837000. - -## Network Details - -- **Chain ID**: 2716446429837000 -- **Chain Name**: dchainmainnet -- **Short Name**: dchainmainnet -- **Network ID**: 2716446429837000 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -DCHAIN can be accessed through the following RPC endpoints: - -- https://dchain-2716446429837000-1.jsonrpc.sagarpc.io - -## DCHAIN Block Explorers - -- [dchain scan](https://dchain-2716446429837000-1.sagaexplorer.io) - -## Additional Information - -- **Official Website**: https://www.dchain.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dcpay-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dcpay-testnet.mdx deleted file mode 100644 index a18389ca64..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dcpay-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DCpay Testnet - DCpay Blockchain Network -description: Explore DCpay Testnet, a blockchain network with chain ID 21224. Learn about its native currency, DCP, and how to interact with the network. ---- - -# DCpay Testnet - -DCpay Testnet is a blockchain network with chain ID 21224. - -## Network Details - -- **Chain ID**: 21224 -- **Chain Name**: DCpay -- **Short Name**: DCPt -- **Network ID**: 21224 -- **Currency**: - - **Name**: DCP - - **Symbol**: DCP - - **Decimals**: 18 - -## RPC URLs - -DCpay Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.dcpay.io - -## DCpay Testnet Block Explorers - -- [DCpay Testnet Explorer](https://testnet.dcpay.io) - -## Additional Information - -- **Official Website**: https://dcpay.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DCpay Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dcpay.mdx b/docs/pages/solutions/chainlist/non-integrated/dcpay.mdx deleted file mode 100644 index e754414286..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dcpay.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DCpay Mainnet - DCpay Blockchain Network -description: Explore DCpay Mainnet, a blockchain network with chain ID 21223. Learn about its native currency, DCP, and how to interact with the network. ---- - -# DCpay Mainnet - -DCpay Mainnet is a blockchain network with chain ID 21223. - -## Network Details - -- **Chain ID**: 21223 -- **Chain Name**: DCpay -- **Short Name**: DCPm -- **Network ID**: 21223 -- **Currency**: - - **Name**: DCP - - **Symbol**: DCP - - **Decimals**: 18 - -## RPC URLs - -DCpay Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dcpay.io - -## DCpay Mainnet Block Explorers - -- [DCpay Mainnet Explorer](https://mainnet.dcpay.io) - -## Additional Information - -- **Official Website**: https://dcpay.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deamchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deamchain-testnet.mdx deleted file mode 100644 index 9abfb7d39f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deamchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Deamchain Testnet - Deamchain Blockchain Network -description: Explore Deamchain Testnet, a blockchain network with chain ID 236. Learn about its native currency, Deamchain Native Token, and how to interact with the network. ---- - -# Deamchain Testnet - -Deamchain Testnet is a blockchain network with chain ID 236. - -## Network Details - -- **Chain ID**: 236 -- **Chain Name**: Deamchain -- **Short Name**: deamtest -- **Network ID**: 236 -- **Currency**: - - **Name**: Deamchain Native Token - - **Symbol**: DEAM - - **Decimals**: 18 - -## RPC URLs - -Deamchain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.deamchain.com - -## Deamchain Testnet Block Explorers - -- [Deamchain Testnet Explorer](https://testnet-scan.deamchain.com) - -## Additional Information - -- **Official Website**: https://deamchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deamchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deamchain.mdx b/docs/pages/solutions/chainlist/non-integrated/deamchain.mdx deleted file mode 100644 index 1cc0f5904d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deamchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Deamchain Mainnet - Deamchain Blockchain Network -description: Explore Deamchain Mainnet, a blockchain network with chain ID 136. Learn about its native currency, Deamchain Native Token, and how to interact with the network. ---- - -# Deamchain Mainnet - -Deamchain Mainnet is a blockchain network with chain ID 136. - -## Network Details - -- **Chain ID**: 136 -- **Chain Name**: Deamchain -- **Short Name**: deam -- **Network ID**: 136 -- **Currency**: - - **Name**: Deamchain Native Token - - **Symbol**: DEAM - - **Decimals**: 18 - -## RPC URLs - -Deamchain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.deamchain.com - -## Deamchain Mainnet Block Explorers - -- [Deamchain Block Explorer](https://scan.deamchain.com) - -## Additional Information - -- **Official Website**: https://deamchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/debank-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/debank-sepolia-testnet.mdx deleted file mode 100644 index 1f851769a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/debank-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeBank Sepolia Testnet - DeBank Blockchain Network -description: Explore DeBank Sepolia Testnet, a blockchain network with chain ID 20240324. Learn about its native currency, DeBank USD, and how to interact with the network. ---- - -# DeBank Sepolia Testnet - -DeBank Sepolia Testnet is a blockchain network with chain ID 20240324. - -## Network Details - -- **Chain ID**: 20240324 -- **Chain Name**: DeBank -- **Short Name**: dbkse -- **Network ID**: 20240324 -- **Currency**: - - **Name**: DeBank USD - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -DeBank Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia-rpc.testnet.debank.com - -## DeBank Sepolia Testnet Block Explorers - -- [DeBank Chain Explorer](https://sepolia-explorer.testnet.debank.com) - -## Additional Information - -- **Official Website**: https://debank.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeBank Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/debank-testnet(deprecated).mdx b/docs/pages/solutions/chainlist/non-integrated/debank-testnet(deprecated).mdx deleted file mode 100644 index d463722f14..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/debank-testnet(deprecated).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeBank Testnet(Deprecated) - DeBank Blockchain Network -description: Explore DeBank Testnet(Deprecated), a blockchain network with chain ID 115. Learn about its native currency, Ether, and how to interact with the network. ---- - -# DeBank Testnet(Deprecated) - -DeBank Testnet(Deprecated) is a blockchain network with chain ID 115. - -## Network Details - -- **Chain ID**: 115 -- **Chain Name**: DeBank -- **Short Name**: debank-testnet -- **Network ID**: 115 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -DeBank Testnet(Deprecated) can be accessed through the following RPC endpoints: - - - -## DeBank Testnet(Deprecated) Block Explorers - - - -## Additional Information - -- **Official Website**: https://debank.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeBank Testnet(Deprecated) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/debank-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/debank-testnet.mdx deleted file mode 100644 index 3db2cc1a01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/debank-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeBank Testnet - DeBank Blockchain Network -description: Explore DeBank Testnet, a blockchain network with chain ID 2021398. Learn about its native currency, DeBank USD, and how to interact with the network. ---- - -# DeBank Testnet - -DeBank Testnet is a blockchain network with chain ID 2021398. - -## Network Details - -- **Chain ID**: 2021398 -- **Chain Name**: DeBank -- **Short Name**: dbk -- **Network ID**: 2021398 -- **Currency**: - - **Name**: DeBank USD - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -DeBank Testnet can be accessed through the following RPC endpoints: - -- http://rpc.testnet.debank.com - -## DeBank Testnet Block Explorers - -- [DeBank Chain Explorer](https://explorer.testnet.debank.com) - -## Additional Information - -- **Official Website**: https://debank.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeBank Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/debank.mdx b/docs/pages/solutions/chainlist/non-integrated/debank.mdx deleted file mode 100644 index ab6a47019b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/debank.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DeBank Mainnet - DeBank Blockchain Network -description: Explore DeBank Mainnet, a blockchain network with chain ID 116. Learn about its native currency, Ether, and how to interact with the network. ---- - -# DeBank Mainnet - -DeBank Mainnet is a blockchain network with chain ID 116. - -## Network Details - -- **Chain ID**: 116 -- **Chain Name**: DeBank -- **Short Name**: debank-mainnet -- **Network ID**: 116 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -DeBank Mainnet can be accessed through the following RPC endpoints: - - - -## DeBank Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://debank.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deboard's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deboard's-testnet.mdx deleted file mode 100644 index f1e2bac2fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deboard's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Deboard's Testnet - Avalanche Blockchain Network -description: Explore Deboard's Testnet, a blockchain network with chain ID 30915. Learn about its native currency, Deboard's Testnet Token, and how to interact with the network. ---- - -# Deboard's Testnet - -Deboard's Testnet is a blockchain network with chain ID 30915. - -## Network Details - -- **Chain ID**: 30915 -- **Chain Name**: Avalanche -- **Short Name**: Deboard's Testnet -- **Network ID**: 30915 -- **Currency**: - - **Name**: Deboard's Testnet Token - - **Symbol**: DEVAX - - **Decimals**: 18 - -## RPC URLs - -Deboard's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/deboardste/testnet/rpc - -## Deboard's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deboard's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deboard.mdx b/docs/pages/solutions/chainlist/non-integrated/deboard.mdx deleted file mode 100644 index 29b80828e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deboard.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Deboard - Avalanche Blockchain Network -description: Explore Deboard, a blockchain network with chain ID 29732. Learn about its native currency, Deboard Token, and how to interact with the network. ---- - -# Deboard - -Deboard is a blockchain network with chain ID 29732. - -## Network Details - -- **Chain ID**: 29732 -- **Chain Name**: Avalanche -- **Short Name**: Deboard -- **Network ID**: 29732 -- **Currency**: - - **Name**: Deboard Token - - **Symbol**: DEVAX - - **Decimals**: 18 - -## RPC URLs - -Deboard can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/deboard/mainnet/rpc - -## Deboard Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/debounce-subnet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/debounce-subnet-testnet.mdx deleted file mode 100644 index 999883b575..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/debounce-subnet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Debounce Subnet Testnet - Debounce Network Blockchain Network -description: Explore Debounce Subnet Testnet, a blockchain network with chain ID 3306. Learn about its native currency, Debounce Network, and how to interact with the network. ---- - -# Debounce Subnet Testnet - -Debounce Subnet Testnet is a blockchain network with chain ID 3306. - -## Network Details - -- **Chain ID**: 3306 -- **Chain Name**: Debounce Network -- **Short Name**: debounce-devnet -- **Network ID**: 3306 -- **Currency**: - - **Name**: Debounce Network - - **Symbol**: DB - - **Decimals**: 18 - -## RPC URLs - -Debounce Subnet Testnet can be accessed through the following RPC endpoints: - -- https://dev-rpc.debounce.network - -## Debounce Subnet Testnet Block Explorers - -- [Debounce Devnet Explorer](https://explorer.debounce.network) - -## Additional Information - -- **Official Website**: https://debounce.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Debounce Subnet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/decentrabone-layer1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/decentrabone-layer1-testnet.mdx deleted file mode 100644 index 635d5db183..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/decentrabone-layer1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DecentraBone Layer1 Testnet - DBONE Blockchain Network -description: Explore DecentraBone Layer1 Testnet, a blockchain network with chain ID 910. Learn about its native currency, DecentraBone, and how to interact with the network. ---- - -# DecentraBone Layer1 Testnet - -DecentraBone Layer1 Testnet is a blockchain network with chain ID 910. - -## Network Details - -- **Chain ID**: 910 -- **Chain Name**: DBONE -- **Short Name**: DBONE -- **Network ID**: 910 -- **Currency**: - - **Name**: DecentraBone - - **Symbol**: DBONE - - **Decimals**: 18 - -## RPC URLs - -DecentraBone Layer1 Testnet can be accessed through the following RPC endpoints: - -- https://layer1test.decentrabone.com - -## DecentraBone Layer1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://decentrabone.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DecentraBone Layer1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/decentraconnect-social.mdx b/docs/pages/solutions/chainlist/non-integrated/decentraconnect-social.mdx deleted file mode 100644 index 4f4edd0c3c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/decentraconnect-social.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Decentraconnect Social - DCSM Blockchain Network -description: Explore Decentraconnect Social, a blockchain network with chain ID 19224. Learn about its native currency, Decentraconnect Social, and how to interact with the network. ---- - -# Decentraconnect Social - -Decentraconnect Social is a blockchain network with chain ID 19224. - -## Network Details - -- **Chain ID**: 19224 -- **Chain Name**: DCSM -- **Short Name**: DCSMs -- **Network ID**: 19224 -- **Currency**: - - **Name**: Decentraconnect Social - - **Symbol**: DCSM - - **Decimals**: 18 - -## RPC URLs - -Decentraconnect Social can be accessed through the following RPC endpoints: - -- https://rpc.decentraconnect.io - -## Decentraconnect Social Block Explorers - -- [Decentraconnect Social](https://decentraconnect.io) - -## Additional Information - -- **Official Website**: https://docs.decentraconnect.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/decentralized-web.mdx b/docs/pages/solutions/chainlist/non-integrated/decentralized-web.mdx deleted file mode 100644 index f77270e1d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/decentralized-web.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Decentralized Web Mainnet - DWU Blockchain Network -description: Explore Decentralized Web Mainnet, a blockchain network with chain ID 124. Learn about its native currency, Decentralized Web Utility, and how to interact with the network. ---- - -# Decentralized Web Mainnet - -Decentralized Web Mainnet is a blockchain network with chain ID 124. - -## Network Details - -- **Chain ID**: 124 -- **Chain Name**: DWU -- **Short Name**: dwu -- **Network ID**: 124 -- **Currency**: - - **Name**: Decentralized Web Utility - - **Symbol**: DWU - - **Decimals**: 18 - -## RPC URLs - -Decentralized Web Mainnet can be accessed through the following RPC endpoints: - -- https://decentralized-web.tech/dw_rpc.php - -## Decentralized Web Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://decentralized-web.tech/dw_chain.php - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain-testnet.mdx deleted file mode 100644 index 39ce29c0b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Decimal Smart Chain Testnet - tDSC Blockchain Network -description: Explore Decimal Smart Chain Testnet, a blockchain network with chain ID 202020. Learn about its native currency, Decimal, and how to interact with the network. ---- - -# Decimal Smart Chain Testnet - -Decimal Smart Chain Testnet is a blockchain network with chain ID 202020. - -## Network Details - -- **Chain ID**: 202020 -- **Chain Name**: tDSC -- **Short Name**: tDSC -- **Network ID**: 202020 -- **Currency**: - - **Name**: Decimal - - **Symbol**: tDEL - - **Decimals**: 18 - -## RPC URLs - -Decimal Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-val.decimalchain.com/web3/ - -## Decimal Smart Chain Testnet Block Explorers - -- [DSC Explorer Testnet](https://testnet.explorer.decimalchain.com) - -## Additional Information - -- **Official Website**: https://decimalchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Decimal Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain.mdx deleted file mode 100644 index d5c51f11cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/decimal-smart-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Decimal Smart Chain Mainnet - DSC Blockchain Network -description: Explore Decimal Smart Chain Mainnet, a blockchain network with chain ID 75. Learn about its native currency, Decimal, and how to interact with the network. ---- - -# Decimal Smart Chain Mainnet - -Decimal Smart Chain Mainnet is a blockchain network with chain ID 75. - -## Network Details - -- **Chain ID**: 75 -- **Chain Name**: DSC -- **Short Name**: DSC -- **Network ID**: 75 -- **Currency**: - - **Name**: Decimal - - **Symbol**: DEL - - **Decimals**: 18 - -## RPC URLs - -Decimal Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://node.decimalchain.com/web3/ -- https://node1-mainnet.decimalchain.com/web3/ -- https://node2-mainnet.decimalchain.com/web3/ -- https://node3-mainnet.decimalchain.com/web3/ -- https://node4-mainnet.decimalchain.com/web3/ - -## Decimal Smart Chain Mainnet Block Explorers - -- [DSC Explorer Mainnet](https://explorer.decimalchain.com) - -## Additional Information - -- **Official Website**: https://decimalchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deelance.mdx b/docs/pages/solutions/chainlist/non-integrated/deelance.mdx deleted file mode 100644 index c2d57a2c96..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deelance.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Deelance Mainnet - DEE Blockchain Network -description: Explore Deelance Mainnet, a blockchain network with chain ID 45510. Learn about its native currency, Deelance, and how to interact with the network. ---- - -# Deelance Mainnet - -Deelance Mainnet is a blockchain network with chain ID 45510. - -## Network Details - -- **Chain ID**: 45510 -- **Chain Name**: DEE -- **Short Name**: dee -- **Network ID**: 45510 -- **Currency**: - - **Name**: Deelance - - **Symbol**: DEE - - **Decimals**: 18 - -## RPC URLs - -Deelance Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.deelance.com - -## Deelance Mainnet Block Explorers - -- [Deelance Mainnet Explorer](https://deescan.com) - -## Additional Information - -- **Official Website**: https://deelance.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deepbrainchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deepbrainchain-testnet.mdx deleted file mode 100644 index 303b7b9507..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deepbrainchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeepBrainChain Testnet - DeepBrainChain Blockchain Network -description: Explore DeepBrainChain Testnet, a blockchain network with chain ID 19850818. Learn about its native currency, DeepBrainChain, and how to interact with the network. ---- - -# DeepBrainChain Testnet - -DeepBrainChain Testnet is a blockchain network with chain ID 19850818. - -## Network Details - -- **Chain ID**: 19850818 -- **Chain Name**: DeepBrainChain -- **Short Name**: tDBC -- **Network ID**: 19850818 -- **Currency**: - - **Name**: DeepBrainChain - - **Symbol**: DBC - - **Decimals**: 18 - -## RPC URLs - -DeepBrainChain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.dbcwallet.io - -## DeepBrainChain Testnet Block Explorers - -- [DeepBrainChain Testnet](https://blockscout-testnet.dbcscan.io) - -## Additional Information - -- **Official Website**: https://www.deepbrainchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeepBrainChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deepbrainchain.mdx b/docs/pages/solutions/chainlist/non-integrated/deepbrainchain.mdx deleted file mode 100644 index 282722a771..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deepbrainchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DeepBrainChain Mainnet - DeepBrainChain Blockchain Network -description: Explore DeepBrainChain Mainnet, a blockchain network with chain ID 19880818. Learn about its native currency, DeepBrainChain, and how to interact with the network. ---- - -# DeepBrainChain Mainnet - -DeepBrainChain Mainnet is a blockchain network with chain ID 19880818. - -## Network Details - -- **Chain ID**: 19880818 -- **Chain Name**: DeepBrainChain -- **Short Name**: DBC -- **Network ID**: 19880818 -- **Currency**: - - **Name**: DeepBrainChain - - **Symbol**: DBC - - **Decimals**: 18 - -## RPC URLs - -DeepBrainChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dbcwallet.io - -## DeepBrainChain Mainnet Block Explorers - -- [DeepBrainChain Mainnet](https://blockscout.dbcscan.io) - -## Additional Information - -- **Official Website**: https://www.deepbrainchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deepl-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deepl-testnet.mdx deleted file mode 100644 index 04f63c8c3d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deepl-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeepL Testnet - DEEPL Blockchain Network -description: Explore DeepL Testnet, a blockchain network with chain ID 222666. Learn about its native currency, DeepL, and how to interact with the network. ---- - -# DeepL Testnet - -DeepL Testnet is a blockchain network with chain ID 222666. - -## Network Details - -- **Chain ID**: 222666 -- **Chain Name**: DEEPL -- **Short Name**: tdeepl -- **Network ID**: 222666 -- **Currency**: - - **Name**: DeepL - - **Symbol**: DEEPL - - **Decimals**: 18 - -## RPC URLs - -DeepL Testnet can be accessed through the following RPC endpoints: - -- https://testnet.deeplnetwork.org - -## DeepL Testnet Block Explorers - -- [DeepL Testnet Explorer](https://testnet-scan.deeplnetwork.org) - -## Additional Information - -- **Official Website**: https://deeplnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeepL Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deepl.mdx b/docs/pages/solutions/chainlist/non-integrated/deepl.mdx deleted file mode 100644 index ad55c43827..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deepl.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DeepL Mainnet - DEEPL Blockchain Network -description: Explore DeepL Mainnet, a blockchain network with chain ID 222555. Learn about its native currency, DeepL, and how to interact with the network. ---- - -# DeepL Mainnet - -DeepL Mainnet is a blockchain network with chain ID 222555. - -## Network Details - -- **Chain ID**: 222555 -- **Chain Name**: DEEPL -- **Short Name**: deepl -- **Network ID**: 222555 -- **Currency**: - - **Name**: DeepL - - **Symbol**: DEEPL - - **Decimals**: 18 - -## RPC URLs - -DeepL Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.deeplnetwork.org - -## DeepL Mainnet Block Explorers - -- [DeepL Mainnet Explorer](https://scan.deeplnetwork.org) - -## Additional Information - -- **Official Website**: https://deeplnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta-testnet.mdx deleted file mode 100644 index b1a480fe84..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Defi Oracle Meta Testnet - dfiometatest Blockchain Network -description: Explore Defi Oracle Meta Testnet, a blockchain network with chain ID 2138. Learn about its native currency, testEther, and how to interact with the network. ---- - -# Defi Oracle Meta Testnet - -Defi Oracle Meta Testnet is a blockchain network with chain ID 2138. - -## Network Details - -- **Chain ID**: 2138 -- **Chain Name**: dfiometatest -- **Short Name**: dfio-meta-test -- **Network ID**: 2138 -- **Currency**: - - **Name**: testEther - - **Symbol**: tETH - - **Decimals**: 18 - -## RPC URLs - -Defi Oracle Meta Testnet can be accessed through the following RPC endpoints: - -- https://rpc.public-2138.defi-oracle.io -- wss://rpc.public-2138.defi-oracle.io - -## Defi Oracle Meta Testnet Block Explorers - -- [Quorum Explorer](https://public-2138.defi-oracle.io) - -## Additional Information - -- **Official Website**: https://defi-oracle.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Defi Oracle Meta Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta.mdx b/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta.mdx deleted file mode 100644 index 08970c0ece..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defi-oracle-meta.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Defi Oracle Meta Mainnet - dfiometa Blockchain Network -description: Explore Defi Oracle Meta Mainnet, a blockchain network with chain ID 138. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Defi Oracle Meta Mainnet - -Defi Oracle Meta Mainnet is a blockchain network with chain ID 138. - -## Network Details - -- **Chain ID**: 138 -- **Chain Name**: dfiometa -- **Short Name**: dfio-meta-main -- **Network ID**: 138 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Defi Oracle Meta Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.defi-oracle.io -- wss://wss.defi-oracle.io - -## Defi Oracle Meta Mainnet Block Explorers - -- [Blockscout Explorer](https://blockscout.defi-oracle.io) -- [Quorum Explorer](https://explorer.defi-oracle.io) - -## Additional Information - -- **Official Website**: https://info.defi-oracle.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network-testnet.mdx deleted file mode 100644 index cc911e8410..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeFiChain EVM Network Testnet - defichain-evm-testnet Blockchain Network -description: Explore DeFiChain EVM Network Testnet, a blockchain network with chain ID 1131. Learn about its native currency, DeFiChain, and how to interact with the network. ---- - -# DeFiChain EVM Network Testnet - -DeFiChain EVM Network Testnet is a blockchain network with chain ID 1131. - -## Network Details - -- **Chain ID**: 1131 -- **Chain Name**: defichain-evm-testnet -- **Short Name**: DFI-T -- **Network ID**: 1131 -- **Currency**: - - **Name**: DeFiChain - - **Symbol**: DFI - - **Decimals**: 18 - -## RPC URLs - -DeFiChain EVM Network Testnet can be accessed through the following RPC endpoints: - - - -## DeFiChain EVM Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://meta.defichain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeFiChain EVM Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network.mdx b/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network.mdx deleted file mode 100644 index a39921be1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defichain-evm-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DeFiChain EVM Network Mainnet - defichain-evm Blockchain Network -description: Explore DeFiChain EVM Network Mainnet, a blockchain network with chain ID 1130. Learn about its native currency, DeFiChain, and how to interact with the network. ---- - -# DeFiChain EVM Network Mainnet - -DeFiChain EVM Network Mainnet is a blockchain network with chain ID 1130. - -## Network Details - -- **Chain ID**: 1130 -- **Chain Name**: defichain-evm -- **Short Name**: DFI -- **Network ID**: 1130 -- **Currency**: - - **Name**: DeFiChain - - **Symbol**: DFI - - **Decimals**: 18 - -## RPC URLs - -DeFiChain EVM Network Mainnet can be accessed through the following RPC endpoints: - - - -## DeFiChain EVM Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://meta.defichain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/defimetachain-changi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/defimetachain-changi-testnet.mdx deleted file mode 100644 index 7ba47c384b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defimetachain-changi-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: DeFiMetaChain Changi Testnet - DFI Blockchain Network -description: Explore DeFiMetaChain Changi Testnet, a blockchain network with chain ID 1133. Learn about its native currency, DeFiChain Token, and how to interact with the network. ---- - -# DeFiMetaChain Changi Testnet - -DeFiMetaChain Changi Testnet is a blockchain network with chain ID 1133. - -## Network Details - -- **Chain ID**: 1133 -- **Chain Name**: DFI -- **Short Name**: changi -- **Network ID**: 1133 -- **Currency**: - - **Name**: DeFiChain Token - - **Symbol**: DFI - - **Decimals**: 18 - -## RPC URLs - -DeFiMetaChain Changi Testnet can be accessed through the following RPC endpoints: - -- https://dmc.mydefichain.com/changi -- https://testnet-dmc.mydefichain.com:20551 - -## DeFiMetaChain Changi Testnet Block Explorers - -- [MetaScan](https://meta.defiscan.live) - -## Additional Information - -- **Official Website**: https://meta.defichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeFiMetaChain Changi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/defiverse-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/defiverse-testnet.mdx deleted file mode 100644 index 9f7d0ffc93..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defiverse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DeFiVerse Testnet - DeFiVerse Testnet Blockchain Network -description: Explore DeFiVerse Testnet, a blockchain network with chain ID 17117. Learn about its native currency, Oasys, and how to interact with the network. ---- - -# DeFiVerse Testnet - -DeFiVerse Testnet is a blockchain network with chain ID 17117. - -## Network Details - -- **Chain ID**: 17117 -- **Chain Name**: DeFiVerse Testnet -- **Short Name**: DFV-testnet -- **Network ID**: 17117 -- **Currency**: - - **Name**: Oasys - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -DeFiVerse Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.defi-verse.org/ - -## DeFiVerse Testnet Block Explorers - -- [DeFiVerse Testnet Explorer](https://scan-testnet.defi-verse.org) - -## Additional Information - -- **Official Website**: https://defi-verse.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DeFiVerse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/defiverse.mdx b/docs/pages/solutions/chainlist/non-integrated/defiverse.mdx deleted file mode 100644 index 44aaa622a9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/defiverse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DeFiVerse Mainnet - DeFiVerse Blockchain Network -description: Explore DeFiVerse Mainnet, a blockchain network with chain ID 16116. Learn about its native currency, Oasys, and how to interact with the network. ---- - -# DeFiVerse Mainnet - -DeFiVerse Mainnet is a blockchain network with chain ID 16116. - -## Network Details - -- **Chain ID**: 16116 -- **Chain Name**: DeFiVerse -- **Short Name**: DFV -- **Network ID**: 16116 -- **Currency**: - - **Name**: Oasys - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -DeFiVerse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.defi-verse.org/ - -## DeFiVerse Mainnet Block Explorers - -- [DeFiVerse Explorer](https://scan.defi-verse.org) - -## Additional Information - -- **Official Website**: https://defi-verse.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/degen-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/degen-chain.mdx deleted file mode 100644 index da4d1b1f93..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/degen-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Degen Chain - Degen Blockchain Network -description: Explore Degen Chain, a blockchain network with chain ID 666666666. Learn about its native currency, DEGEN, and how to interact with the network. ---- - -# Degen Chain - -Degen Chain is a blockchain network with chain ID 666666666. - -## Network Details - -- **Chain ID**: 666666666 -- **Chain Name**: Degen -- **Short Name**: degen-chain -- **Network ID**: 666666666 -- **Currency**: - - **Name**: DEGEN - - **Symbol**: DEGEN - - **Decimals**: 18 - -## RPC URLs - -Degen Chain can be accessed through the following RPC endpoints: - -- https://rpc.degen.tips - -## Degen Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://degen.tips - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dehvo.mdx b/docs/pages/solutions/chainlist/non-integrated/dehvo.mdx deleted file mode 100644 index b9692caaf2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dehvo.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Dehvo - Dehvo Blockchain Network -description: Explore Dehvo, a blockchain network with chain ID 113. Learn about its native currency, Dehvo, and how to interact with the network. ---- - -# Dehvo - -Dehvo is a blockchain network with chain ID 113. - -## Network Details - -- **Chain ID**: 113 -- **Chain Name**: Dehvo -- **Short Name**: deh -- **Network ID**: 113 -- **Currency**: - - **Name**: Dehvo - - **Symbol**: Deh - - **Decimals**: 18 - -## RPC URLs - -Dehvo can be accessed through the following RPC endpoints: - -- https://connect.dehvo.com -- https://rpc.dehvo.com -- https://rpc1.dehvo.com -- https://rpc2.dehvo.com - -## Dehvo Block Explorers - -- [Dehvo Explorer](https://explorer.dehvo.com) - -## Additional Information - -- **Official Website**: https://dehvo.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dela-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dela-sepolia-testnet.mdx deleted file mode 100644 index aee5f80587..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dela-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dela Sepolia Testnet - ETH Blockchain Network -description: Explore Dela Sepolia Testnet, a blockchain network with chain ID 9393. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Dela Sepolia Testnet - -Dela Sepolia Testnet is a blockchain network with chain ID 9393. - -## Network Details - -- **Chain ID**: 9393 -- **Chain Name**: ETH -- **Short Name**: delasep -- **Network ID**: 9393 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Dela Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia-dela.deperp.com - -## Dela Sepolia Testnet Block Explorers - -- [basescout](https://sepolia-delascan.deperp.com) - -## Additional Information - -- **Official Website**: https://www.deperp.com/dela - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dela Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deprecated-chi.mdx b/docs/pages/solutions/chainlist/non-integrated/deprecated-chi.mdx deleted file mode 100644 index db3f56d07b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deprecated-chi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Deprecated CHI - CHI1 Blockchain Network -description: Explore Deprecated CHI, a blockchain network with chain ID 100100. Learn about its native currency, Chiado xDAI, and how to interact with the network. ---- - -# Deprecated CHI - -Deprecated CHI is a blockchain network with chain ID 100100. - -## Network Details - -- **Chain ID**: 100100 -- **Chain Name**: CHI1 -- **Short Name**: chi1 -- **Network ID**: 100100 -- **Currency**: - - **Name**: Chiado xDAI - - **Symbol**: xDAI - - **Decimals**: 18 - -## RPC URLs - -Deprecated CHI can be accessed through the following RPC endpoints: - - - -## Deprecated CHI Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.gnosischain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-calypso-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-calypso-hub-testnet.mdx deleted file mode 100644 index ca37db2fa8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-calypso-hub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Deprecated SKALE Calypso Hub Testnet - staging-utter-unripe-menkar Blockchain Network -description: Explore Deprecated SKALE Calypso Hub Testnet, a blockchain network with chain ID 344106930. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# Deprecated SKALE Calypso Hub Testnet - -Deprecated SKALE Calypso Hub Testnet is a blockchain network with chain ID 344106930. - -## Network Details - -- **Chain ID**: 344106930 -- **Chain Name**: staging-utter-unripe-menkar -- **Short Name**: deprected-calypso-testnet -- **Network ID**: 344106930 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -Deprecated SKALE Calypso Hub Testnet can be accessed through the following RPC endpoints: - -- https://staging-v3.skalenodes.com/v1/staging-utter-unripe-menkar - -## Deprecated SKALE Calypso Hub Testnet Block Explorers - -- [Blockscout](https://staging-utter-unripe-menkar.explorer.staging-v3.skalenodes.com) - -## Additional Information - -- **Official Website**: https://calypsohub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deprecated SKALE Calypso Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-europa-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-europa-hub-testnet.mdx deleted file mode 100644 index bcaca5ec53..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-europa-hub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Deprecated SKALE Europa Hub Testnet - staging-legal-crazy-castor Blockchain Network -description: Explore Deprecated SKALE Europa Hub Testnet, a blockchain network with chain ID 476158412. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# Deprecated SKALE Europa Hub Testnet - -Deprecated SKALE Europa Hub Testnet is a blockchain network with chain ID 476158412. - -## Network Details - -- **Chain ID**: 476158412 -- **Chain Name**: staging-legal-crazy-castor -- **Short Name**: deprecated-europa-testnet -- **Network ID**: 476158412 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -Deprecated SKALE Europa Hub Testnet can be accessed through the following RPC endpoints: - -- https://staging-v3.skalenodes.com/v1/staging-legal-crazy-castor - -## Deprecated SKALE Europa Hub Testnet Block Explorers - -- [Blockscout](https://staging-legal-crazy-castor.explorer.staging-v3.skalenodes.com) - -## Additional Information - -- **Official Website**: https://europahub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deprecated SKALE Europa Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-nebula-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-nebula-hub-testnet.mdx deleted file mode 100644 index b0552815df..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-nebula-hub-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Deprecated SKALE Nebula Hub Testnet - staging-faint-slimy-achird Blockchain Network -description: Explore Deprecated SKALE Nebula Hub Testnet, a blockchain network with chain ID 503129905. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# Deprecated SKALE Nebula Hub Testnet - -Deprecated SKALE Nebula Hub Testnet is a blockchain network with chain ID 503129905. - -## Network Details - -- **Chain ID**: 503129905 -- **Chain Name**: staging-faint-slimy-achird -- **Short Name**: deprecated-nebula-testnet -- **Network ID**: 503129905 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -Deprecated SKALE Nebula Hub Testnet can be accessed through the following RPC endpoints: - -- https://staging-v3.skalenodes.com/v1/staging-faint-slimy-achird -- wss://staging-v3.skalenodes.com/v1/ws/staging-faint-slimy-achird - -## Deprecated SKALE Nebula Hub Testnet Block Explorers - -- [Blockscout](https://staging-faint-slimy-achird.explorer.staging-v3.skalenodes.com) - -## Additional Information - -- **Official Website**: https://nebulachain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deprecated SKALE Nebula Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-titan-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-titan-hub-testnet.mdx deleted file mode 100644 index 161edda89f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/deprecated-skale-titan-hub-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Deprecated SKALE Titan Hub Testnet - staging-aware-chief-gianfar Blockchain Network -description: Explore Deprecated SKALE Titan Hub Testnet, a blockchain network with chain ID 1517929550. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# Deprecated SKALE Titan Hub Testnet - -Deprecated SKALE Titan Hub Testnet is a blockchain network with chain ID 1517929550. - -## Network Details - -- **Chain ID**: 1517929550 -- **Chain Name**: staging-aware-chief-gianfar -- **Short Name**: deprecated-titan-testnet -- **Network ID**: 1517929550 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -Deprecated SKALE Titan Hub Testnet can be accessed through the following RPC endpoints: - -- https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar -- wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar - -## Deprecated SKALE Titan Hub Testnet Block Explorers - -- [Blockscout](https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Deprecated SKALE Titan Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/devnet.mdx deleted file mode 100644 index d7d3618cbf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/devnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Devnet - Devnet Blockchain Network -description: Explore Devnet, a blockchain network with chain ID 2910. Learn about its native currency, Toggen, and how to interact with the network. ---- - -# Devnet - -Devnet is a blockchain network with chain ID 2910. - -## Network Details - -- **Chain ID**: 2910 -- **Chain Name**: Devnet -- **Short Name**: Devnet -- **Network ID**: 2910 -- **Currency**: - - **Name**: Toggen - - **Symbol**: TGN - - **Decimals**: 18 - -## RPC URLs - -Devnet can be accessed through the following RPC endpoints: - -- https://rpc-devnet.toggens.com - -## Devnet Block Explorers - -- [Devnet Explorer](https://devnet.toggens.com) - -## Additional Information - -- **Official Website**: https://thirdweb.com/2910 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Devnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet-testnet.mdx deleted file mode 100644 index 8c05e47149..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dexalot Subnet Testnet - DEXALOT Blockchain Network -description: Explore Dexalot Subnet Testnet, a blockchain network with chain ID 432201. Learn about its native currency, Dexalot, and how to interact with the network. ---- - -# Dexalot Subnet Testnet - -Dexalot Subnet Testnet is a blockchain network with chain ID 432201. - -## Network Details - -- **Chain ID**: 432201 -- **Chain Name**: DEXALOT -- **Short Name**: dexalot-testnet -- **Network ID**: 432201 -- **Currency**: - - **Name**: Dexalot - - **Symbol**: ALOT - - **Decimals**: 18 - -## RPC URLs - -Dexalot Subnet Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/dexalot/testnet/rpc - -## Dexalot Subnet Testnet Block Explorers - -- [Avalanche Subnet Testnet Explorer](https://subnets-test.avax.network/dexalot) - -## Additional Information - -- **Official Website**: https://dexalot.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dexalot Subnet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet.mdx deleted file mode 100644 index cb06ec9d9a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dexalot-subnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dexalot Subnet - DEXALOT Blockchain Network -description: Explore Dexalot Subnet, a blockchain network with chain ID 432204. Learn about its native currency, Dexalot, and how to interact with the network. ---- - -# Dexalot Subnet - -Dexalot Subnet is a blockchain network with chain ID 432204. - -## Network Details - -- **Chain ID**: 432204 -- **Chain Name**: DEXALOT -- **Short Name**: dexalot -- **Network ID**: 432204 -- **Currency**: - - **Name**: Dexalot - - **Symbol**: ALOT - - **Decimals**: 18 - -## RPC URLs - -Dexalot Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/dexalot/mainnet/rpc - -## Dexalot Subnet Block Explorers - -- [Avalanche Subnet Explorer](https://subnets.avax.network/dexalot) - -## Additional Information - -- **Official Website**: https://dexalot.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dexilla-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dexilla-testnet.mdx deleted file mode 100644 index 0348f35954..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dexilla-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dexilla Testnet - Dexilla Blockchain Network -description: Explore Dexilla Testnet, a blockchain network with chain ID 1954. Learn about its native currency, Dexilla Native Token, and how to interact with the network. ---- - -# Dexilla Testnet - -Dexilla Testnet is a blockchain network with chain ID 1954. - -## Network Details - -- **Chain ID**: 1954 -- **Chain Name**: Dexilla -- **Short Name**: Dexilla -- **Network ID**: 1954 -- **Currency**: - - **Name**: Dexilla Native Token - - **Symbol**: DXZ - - **Decimals**: 18 - -## RPC URLs - -Dexilla Testnet can be accessed through the following RPC endpoints: - -- https://rpc.dexilla.com - -## Dexilla Testnet Block Explorers - -- [dos-mainnet](https://exp.dexilla.com) - -## Additional Information - -- **Official Website**: https://dexilla.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dexilla Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dexit-network.mdx b/docs/pages/solutions/chainlist/non-integrated/dexit-network.mdx deleted file mode 100644 index 46d1d4bc29..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dexit-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dexit Network - DXT Blockchain Network -description: Explore Dexit Network, a blockchain network with chain ID 877. Learn about its native currency, Dexit network, and how to interact with the network. ---- - -# Dexit Network - -Dexit Network is a blockchain network with chain ID 877. - -## Network Details - -- **Chain ID**: 877 -- **Chain Name**: DXT -- **Short Name**: DXT -- **Network ID**: 877 -- **Currency**: - - **Name**: Dexit network - - **Symbol**: DXT - - **Decimals**: 18 - -## RPC URLs - -Dexit Network can be accessed through the following RPC endpoints: - -- https://dxt.dexit.network - -## Dexit Network Block Explorers - -- [dxtscan](https://dxtscan.com) - -## Additional Information - -- **Official Website**: https://dexit.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dfk-chain-test.mdx b/docs/pages/solutions/chainlist/non-integrated/dfk-chain-test.mdx deleted file mode 100644 index 04ba8958ba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dfk-chain-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DFK Chain Test - DFK Blockchain Network -description: Explore DFK Chain Test, a blockchain network with chain ID 335. Learn about its native currency, Jewel, and how to interact with the network. ---- - -# DFK Chain Test - -DFK Chain Test is a blockchain network with chain ID 335. - -## Network Details - -- **Chain ID**: 335 -- **Chain Name**: DFK -- **Short Name**: DFKTEST -- **Network ID**: 335 -- **Currency**: - - **Name**: Jewel - - **Symbol**: JEWEL - - **Decimals**: 18 - -## RPC URLs - -DFK Chain Test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain-testnet/rpc - -## DFK Chain Test Block Explorers - -- [ethernal](https://explorer-test.dfkchain.com) - -## Additional Information - -- **Official Website**: https://defikingdoms.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DFK Chain Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dfk-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/dfk-chain.mdx deleted file mode 100644 index 4c8dbe2cc5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dfk-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DFK Chain - DFK Blockchain Network -description: Explore DFK Chain, a blockchain network with chain ID 53935. Learn about its native currency, Jewel, and how to interact with the network. ---- - -# DFK Chain - -DFK Chain is a blockchain network with chain ID 53935. - -## Network Details - -- **Chain ID**: 53935 -- **Chain Name**: DFK -- **Short Name**: DFK -- **Network ID**: 53935 -- **Currency**: - - **Name**: Jewel - - **Symbol**: JEWEL - - **Decimals**: 18 - -## RPC URLs - -DFK Chain can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## DFK Chain Block Explorers - -- [ethernal](https://explorer.dfkchain.com) - -## Additional Information - -- **Official Website**: https://defikingdoms.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/diego's.mdx b/docs/pages/solutions/chainlist/non-integrated/diego's.mdx deleted file mode 100644 index d9609ffa46..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/diego's.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Diego's - Avalanche Blockchain Network -description: Explore Diego's, a blockchain network with chain ID 14299. Learn about its native currency, Diego's Token, and how to interact with the network. ---- - -# Diego's - -Diego's is a blockchain network with chain ID 14299. - -## Network Details - -- **Chain ID**: 14299 -- **Chain Name**: Avalanche -- **Short Name**: Diego's -- **Network ID**: 14299 -- **Currency**: - - **Name**: Diego's Token - - **Symbol**: VMF - - **Decimals**: 18 - -## RPC URLs - -Diego's can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/diegos/testnet/rpc - -## Diego's Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Diego's Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain-2.mdx b/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain-2.mdx deleted file mode 100644 index 45d7fc7ad8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Digit Soul Smart Chain 2 - DS2 Blockchain Network -description: Explore Digit Soul Smart Chain 2, a blockchain network with chain ID 363636. Learn about its native currency, Digit Coin, and how to interact with the network. ---- - -# Digit Soul Smart Chain 2 - -Digit Soul Smart Chain 2 is a blockchain network with chain ID 363636. - -## Network Details - -- **Chain ID**: 363636 -- **Chain Name**: DS2 -- **Short Name**: DS2 -- **Network ID**: 363636 -- **Currency**: - - **Name**: Digit Coin - - **Symbol**: DGC - - **Decimals**: 18 - -## RPC URLs - -Digit Soul Smart Chain 2 can be accessed through the following RPC endpoints: - -- https://dgs-rpc.digitsoul.co.th - -## Digit Soul Smart Chain 2 Block Explorers - -- [Digit Soul Explorer](https://dgs-exp.digitsoul.co.th) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain.mdx deleted file mode 100644 index 599b37efa6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/digit-soul-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Digit Soul Smart Chain - DGS Blockchain Network -description: Explore Digit Soul Smart Chain, a blockchain network with chain ID 6363. Learn about its native currency, Digit Coin, and how to interact with the network. ---- - -# Digit Soul Smart Chain - -Digit Soul Smart Chain is a blockchain network with chain ID 6363. - -## Network Details - -- **Chain ID**: 6363 -- **Chain Name**: DGS -- **Short Name**: DGS -- **Network ID**: 6363 -- **Currency**: - - **Name**: Digit Coin - - **Symbol**: DGC - - **Decimals**: 18 - -## RPC URLs - -Digit Soul Smart Chain can be accessed through the following RPC endpoints: - -- https://dsc-rpc.digitsoul.co.th - -## Digit Soul Smart Chain Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/diode-prenet.mdx b/docs/pages/solutions/chainlist/non-integrated/diode-prenet.mdx deleted file mode 100644 index 5c09b772d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/diode-prenet.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Diode Prenet - DIODE Blockchain Network -description: Explore Diode Prenet, a blockchain network with chain ID 15. Learn about its native currency, Diodes, and how to interact with the network. ---- - -# Diode Prenet - -Diode Prenet is a blockchain network with chain ID 15. - -## Network Details - -- **Chain ID**: 15 -- **Chain Name**: DIODE -- **Short Name**: diode -- **Network ID**: 15 -- **Currency**: - - **Name**: Diodes - - **Symbol**: DIODE - - **Decimals**: 18 - -## RPC URLs - -Diode Prenet can be accessed through the following RPC endpoints: - -- https://prenet.diode.io:8443/ -- wss://prenet.diode.io:8443/ws - -## Diode Prenet Block Explorers - - - -## Additional Information - -- **Official Website**: https://diode.io/prenet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/diode-testnet-staging.mdx b/docs/pages/solutions/chainlist/non-integrated/diode-testnet-staging.mdx deleted file mode 100644 index f3e06101e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/diode-testnet-staging.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Diode Testnet Staging - DIODE Blockchain Network -description: Explore Diode Testnet Staging, a blockchain network with chain ID 13. Learn about its native currency, Staging Diodes, and how to interact with the network. ---- - -# Diode Testnet Staging - -Diode Testnet Staging is a blockchain network with chain ID 13. - -## Network Details - -- **Chain ID**: 13 -- **Chain Name**: DIODE -- **Short Name**: dstg -- **Network ID**: 13 -- **Currency**: - - **Name**: Staging Diodes - - **Symbol**: sDIODE - - **Decimals**: 18 - -## RPC URLs - -Diode Testnet Staging can be accessed through the following RPC endpoints: - -- https://staging.diode.io:8443/ -- wss://staging.diode.io:8443/ws - -## Diode Testnet Staging Block Explorers - - - -## Additional Information - -- **Official Website**: https://diode.io/staging - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Diode Testnet Staging Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dischain.mdx b/docs/pages/solutions/chainlist/non-integrated/dischain.mdx deleted file mode 100644 index 797934288f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dischain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DisChain - DIS Blockchain Network -description: Explore DisChain, a blockchain network with chain ID 513100. Learn about its native currency, DisChain, and how to interact with the network. ---- - -# DisChain - -DisChain is a blockchain network with chain ID 513100. - -## Network Details - -- **Chain ID**: 513100 -- **Chain Name**: DIS -- **Short Name**: dis -- **Network ID**: 513100 -- **Currency**: - - **Name**: DisChain - - **Symbol**: DIS - - **Decimals**: 18 - -## RPC URLs - -DisChain can be accessed through the following RPC endpoints: - -- https://rpc.dischain.xyz - -## DisChain Block Explorers - -- [DisChain](https://www.oklink.com/dis) - -## Additional Information - -- **Official Website**: https://dischain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dm2-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/dm2-verse.mdx deleted file mode 100644 index a225f1ea08..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dm2-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DM2 Verse Mainnet - DM2 Verse Blockchain Network -description: Explore DM2 Verse Mainnet, a blockchain network with chain ID 68770. Learn about its native currency, OAS, and how to interact with the network. ---- - -# DM2 Verse Mainnet - -DM2 Verse Mainnet is a blockchain network with chain ID 68770. - -## Network Details - -- **Chain ID**: 68770 -- **Chain Name**: DM2 Verse -- **Short Name**: dm2 -- **Network ID**: 68770 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -DM2 Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dm2verse.dmm.com - -## DM2 Verse Mainnet Block Explorers - -- [DM2Verse Explorer](https://explorer.dm2verse.dmm.com) - -## Additional Information - -- **Official Website**: https://seamoon.dmm.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/docoin-community-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/docoin-community-chain.mdx deleted file mode 100644 index fc53049eb0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/docoin-community-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DoCoin Community Chain - DoCoin Blockchain Network -description: Explore DoCoin Community Chain, a blockchain network with chain ID 526916. Learn about its native currency, DO, and how to interact with the network. ---- - -# DoCoin Community Chain - -DoCoin Community Chain is a blockchain network with chain ID 526916. - -## Network Details - -- **Chain ID**: 526916 -- **Chain Name**: DoCoin -- **Short Name**: DoCoin -- **Network ID**: 526916 -- **Currency**: - - **Name**: DO - - **Symbol**: DCT - - **Decimals**: 18 - -## RPC URLs - -DoCoin Community Chain can be accessed through the following RPC endpoints: - -- https://rpc.docoin.shop - -## DoCoin Community Chain Block Explorers - -- [DoCoin Community Chain Explorer](https://explorer.docoin.shop) - -## Additional Information - -- **Official Website**: https://docoin.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dodao.mdx b/docs/pages/solutions/chainlist/non-integrated/dodao.mdx deleted file mode 100644 index bc905e9e4f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dodao.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Dodao - EVMCC Blockchain Network -description: Explore Dodao, a blockchain network with chain ID 855456. Learn about its native currency, Dodao, and how to interact with the network. ---- - -# Dodao - -Dodao is a blockchain network with chain ID 855456. - -## Network Details - -- **Chain ID**: 855456 -- **Chain Name**: EVMCC -- **Short Name**: dodao -- **Network ID**: 855456 -- **Currency**: - - **Name**: Dodao - - **Symbol**: DODAO - - **Decimals**: 18 - -## RPC URLs - -Dodao can be accessed through the following RPC endpoints: - -- https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network -- wss://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network - -## Dodao Block Explorers - -- [Dodao Explorer](https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3041-rpc.a.dancebox.tanssi.network) - -## Additional Information - -- **Official Website**: https://dodao.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dodochain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dodochain-testnet.mdx deleted file mode 100644 index 952de827c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dodochain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: DODOchain testnet - DODOchain Blockchain Network -description: Explore DODOchain testnet, a blockchain network with chain ID 53457. Learn about its native currency, DODO, and how to interact with the network. ---- - -# DODOchain testnet - -DODOchain testnet is a blockchain network with chain ID 53457. - -## Network Details - -- **Chain ID**: 53457 -- **Chain Name**: DODOchain -- **Short Name**: dodochain -- **Network ID**: 53457 -- **Currency**: - - **Name**: DODO - - **Symbol**: DODO - - **Decimals**: 18 - -## RPC URLs - -DODOchain testnet can be accessed through the following RPC endpoints: - -- https://dodochain-testnet.alt.technology -- wss://dodochain-testnet.alt.technology/ws - -## DODOchain testnet Block Explorers - -- [DODOchain Testnet (Sepolia) Explorer](https://testnet-scan.dodochain.com) - -## Additional Information - -- **Official Website**: https://www.dodochain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DODOchain testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogcoin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dogcoin-testnet.mdx deleted file mode 100644 index 281eb52a82..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogcoin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dogcoin Testnet - DOGS Blockchain Network -description: Explore Dogcoin Testnet, a blockchain network with chain ID 9339. Learn about its native currency, Dogcoin, and how to interact with the network. ---- - -# Dogcoin Testnet - -Dogcoin Testnet is a blockchain network with chain ID 9339. - -## Network Details - -- **Chain ID**: 9339 -- **Chain Name**: DOGS -- **Short Name**: DOGSt -- **Network ID**: 9339 -- **Currency**: - - **Name**: Dogcoin - - **Symbol**: DOGS - - **Decimals**: 18 - -## RPC URLs - -Dogcoin Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.dogcoin.me - -## Dogcoin Testnet Block Explorers - -- [Dogcoin](https://testnet.dogcoin.network) - -## Additional Information - -- **Official Website**: https://dogcoin.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dogcoin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogcoin.mdx b/docs/pages/solutions/chainlist/non-integrated/dogcoin.mdx deleted file mode 100644 index d4014e3de1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogcoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dogcoin Mainnet - DOGS Blockchain Network -description: Explore Dogcoin Mainnet, a blockchain network with chain ID 1117. Learn about its native currency, Dogcoin, and how to interact with the network. ---- - -# Dogcoin Mainnet - -Dogcoin Mainnet is a blockchain network with chain ID 1117. - -## Network Details - -- **Chain ID**: 1117 -- **Chain Name**: DOGS -- **Short Name**: DOGSm -- **Network ID**: 1117 -- **Currency**: - - **Name**: Dogcoin - - **Symbol**: DOGS - - **Decimals**: 18 - -## RPC URLs - -Dogcoin Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.dogcoin.me - -## Dogcoin Mainnet Block Explorers - -- [Dogcoin](https://explorer.dogcoin.network) - -## Additional Information - -- **Official Website**: https://dogcoin.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dogechain-testnet.mdx deleted file mode 100644 index c7383f9943..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dogechain Testnet - DC Blockchain Network -description: Explore Dogechain Testnet, a blockchain network with chain ID 568. Learn about its native currency, Dogecoin, and how to interact with the network. ---- - -# Dogechain Testnet - -Dogechain Testnet is a blockchain network with chain ID 568. - -## Network Details - -- **Chain ID**: 568 -- **Chain Name**: DC -- **Short Name**: dct -- **Network ID**: 568 -- **Currency**: - - **Name**: Dogecoin - - **Symbol**: DOGE - - **Decimals**: 18 - -## RPC URLs - -Dogechain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.dogechain.dog - -## Dogechain Testnet Block Explorers - -- [dogechain testnet explorer](https://explorer-testnet.dogechain.dog) - -## Additional Information - -- **Official Website**: https://dogechain.dog - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dogechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogechain.mdx b/docs/pages/solutions/chainlist/non-integrated/dogechain.mdx deleted file mode 100644 index 0807341e55..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogechain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Dogechain Mainnet - DC Blockchain Network -description: Explore Dogechain Mainnet, a blockchain network with chain ID 2000. Learn about its native currency, Dogecoin, and how to interact with the network. ---- - -# Dogechain Mainnet - -Dogechain Mainnet is a blockchain network with chain ID 2000. - -## Network Details - -- **Chain ID**: 2000 -- **Chain Name**: DC -- **Short Name**: dc -- **Network ID**: 2000 -- **Currency**: - - **Name**: Dogecoin - - **Symbol**: DOGE - - **Decimals**: 18 - -## RPC URLs - -Dogechain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dogechain.dog -- https://rpc01-sg.dogechain.dog -- https://rpc.ankr.com/dogechain - -## Dogechain Mainnet Block Explorers - -- [dogechain explorer](https://explorer.dogechain.dog) - -## Additional Information - -- **Official Website**: https://dogechain.dog - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogelayer.mdx b/docs/pages/solutions/chainlist/non-integrated/dogelayer.mdx deleted file mode 100644 index 060cb670a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogelayer.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dogelayer Mainnet - Dogelayer Blockchain Network -description: Explore Dogelayer Mainnet, a blockchain network with chain ID 9888. Learn about its native currency, Dogecoin, and how to interact with the network. ---- - -# Dogelayer Mainnet - -Dogelayer Mainnet is a blockchain network with chain ID 9888. - -## Network Details - -- **Chain ID**: 9888 -- **Chain Name**: Dogelayer -- **Short Name**: Dogelayer -- **Network ID**: 9888 -- **Currency**: - - **Name**: Dogecoin - - **Symbol**: DOGE - - **Decimals**: 18 - -## RPC URLs - -Dogelayer Mainnet can be accessed through the following RPC endpoints: - -- https://dl-rpc.dogelayer.org - -## Dogelayer Mainnet Block Explorers - -- [Dogelayer mainnet explorer](https://dl-explorer.dogelayer.org) - -## Additional Information - -- **Official Website**: https://dogelayer.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dogether.mdx b/docs/pages/solutions/chainlist/non-integrated/dogether.mdx deleted file mode 100644 index e54a9a9bbe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dogether.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dogether Mainnet - Dogether Blockchain Network -description: Explore Dogether Mainnet, a blockchain network with chain ID 1248. Learn about its native currency, Dogether, and how to interact with the network. ---- - -# Dogether Mainnet - -Dogether Mainnet is a blockchain network with chain ID 1248. - -## Network Details - -- **Chain ID**: 1248 -- **Chain Name**: Dogether -- **Short Name**: Dogether -- **Network ID**: 1248 -- **Currency**: - - **Name**: Dogether - - **Symbol**: dogeth - - **Decimals**: 18 - -## RPC URLs - -Dogether Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dogether.dog/ - -## Dogether Mainnet Block Explorers - -- [DogetherExplorer](https://explorer.dogether.dog) - -## Additional Information - -- **Official Website**: https://www.dogether.dog/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/doid-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/doid-testnet.mdx deleted file mode 100644 index 97e2032e16..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/doid-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DOID Testnet - DOID Blockchain Network -description: Explore DOID Testnet, a blockchain network with chain ID 56797. Learn about its native currency, DOID, and how to interact with the network. ---- - -# DOID Testnet - -DOID Testnet is a blockchain network with chain ID 56797. - -## Network Details - -- **Chain ID**: 56797 -- **Chain Name**: DOID -- **Short Name**: doidTestnet -- **Network ID**: 56797 -- **Currency**: - - **Name**: DOID - - **Symbol**: DOID - - **Decimals**: 18 - -## RPC URLs - -DOID Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.doid.tech - -## DOID Testnet Block Explorers - -- [DOID Testnet Scan](https://scan.testnet.doid.tech) - -## Additional Information - -- **Official Website**: https://doid.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DOID Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/doid.mdx b/docs/pages/solutions/chainlist/non-integrated/doid.mdx deleted file mode 100644 index 2fd567532a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/doid.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DOID - DOID Blockchain Network -description: Explore DOID, a blockchain network with chain ID 53277. Learn about its native currency, DOID, and how to interact with the network. ---- - -# DOID - -DOID is a blockchain network with chain ID 53277. - -## Network Details - -- **Chain ID**: 53277 -- **Chain Name**: DOID -- **Short Name**: DOID -- **Network ID**: 53277 -- **Currency**: - - **Name**: DOID - - **Symbol**: DOID - - **Decimals**: 18 - -## RPC URLs - -DOID can be accessed through the following RPC endpoints: - -- https://rpc.doid.tech - -## DOID Block Explorers - -- [DOID Scan](https://scan.doid.tech) - -## Additional Information - -- **Official Website**: https://doid.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dojima-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dojima-testnet.mdx deleted file mode 100644 index 1f60bf80d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dojima-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dojima Testnet - Dojima Blockchain Network -description: Explore Dojima Testnet, a blockchain network with chain ID 184. Learn about its native currency, Dojima, and how to interact with the network. ---- - -# Dojima Testnet - -Dojima Testnet is a blockchain network with chain ID 184. - -## Network Details - -- **Chain ID**: 184 -- **Chain Name**: Dojima -- **Short Name**: dojtestnet -- **Network ID**: 184 -- **Currency**: - - **Name**: Dojima - - **Symbol**: DOJ - - **Decimals**: 18 - -## RPC URLs - -Dojima Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test-d11k.dojima.network - -## Dojima Testnet Block Explorers - -- [Dojima Testnet Explorer](https://explorer-test.dojima.network) - -## Additional Information - -- **Official Website**: https://www.dojima.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dojima Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dojima.mdx b/docs/pages/solutions/chainlist/non-integrated/dojima.mdx deleted file mode 100644 index 763bc0a98c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dojima.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dojima - Dojima Blockchain Network -description: Explore Dojima, a blockchain network with chain ID 187. Learn about its native currency, Dojima, and how to interact with the network. ---- - -# Dojima - -Dojima is a blockchain network with chain ID 187. - -## Network Details - -- **Chain ID**: 187 -- **Chain Name**: Dojima -- **Short Name**: dojima -- **Network ID**: 187 -- **Currency**: - - **Name**: Dojima - - **Symbol**: DOJ - - **Decimals**: 18 - -## RPC URLs - -Dojima can be accessed through the following RPC endpoints: - -- https://rpc-d11k.dojima.network - -## Dojima Block Explorers - -- [Dojima Explorer](https://explorer.dojima.network) - -## Additional Information - -- **Official Website**: https://www.dojima.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/doken-super-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/doken-super-chain.mdx deleted file mode 100644 index fca1638c11..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/doken-super-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: DoKEN Super Chain Mainnet - DoKEN Super Chain Blockchain Network -description: Explore DoKEN Super Chain Mainnet, a blockchain network with chain ID 61916. Learn about its native currency, DoKEN, and how to interact with the network. ---- - -# DoKEN Super Chain Mainnet - -DoKEN Super Chain Mainnet is a blockchain network with chain ID 61916. - -## Network Details - -- **Chain ID**: 61916 -- **Chain Name**: DoKEN Super Chain -- **Short Name**: DoKEN -- **Network ID**: 61916 -- **Currency**: - - **Name**: DoKEN - - **Symbol**: DKN - - **Decimals**: 18 - -## RPC URLs - -DoKEN Super Chain Mainnet can be accessed through the following RPC endpoints: - -- https://sgrpc.doken.dev -- https://nyrpc.doken.dev -- https://ukrpc.doken.dev - -## DoKEN Super Chain Mainnet Block Explorers - -- [DSC Scan](https://explore.doken.dev) - -## Additional Information - -- **Official Website**: https://doken.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/donatuz.mdx b/docs/pages/solutions/chainlist/non-integrated/donatuz.mdx deleted file mode 100644 index e47fb62df9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/donatuz.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Donatuz - DTZ Blockchain Network -description: Explore Donatuz, a blockchain network with chain ID 42026. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Donatuz - -Donatuz is a blockchain network with chain ID 42026. - -## Network Details - -- **Chain ID**: 42026 -- **Chain Name**: DTZ -- **Short Name**: DTZ -- **Network ID**: 42026 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Donatuz can be accessed through the following RPC endpoints: - -- https://rpc.donatuz.com - -## Donatuz Block Explorers - -- [Blockscout](https://explorer.donatuz.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/doric-network.mdx b/docs/pages/solutions/chainlist/non-integrated/doric-network.mdx deleted file mode 100644 index 435934e979..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/doric-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Doric Network - DRC Blockchain Network -description: Explore Doric Network, a blockchain network with chain ID 1717. Learn about its native currency, Doric Native Token, and how to interact with the network. ---- - -# Doric Network - -Doric Network is a blockchain network with chain ID 1717. - -## Network Details - -- **Chain ID**: 1717 -- **Chain Name**: DRC -- **Short Name**: DRC -- **Network ID**: 1717 -- **Currency**: - - **Name**: Doric Native Token - - **Symbol**: DRC - - **Decimals**: 18 - -## RPC URLs - -Doric Network can be accessed through the following RPC endpoints: - -- https://mainnet.doric.network - -## Doric Network Block Explorers - -- [Doric Explorer](https://explorer.doric.network) - -## Additional Information - -- **Official Website**: https://doric.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dos-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/dos-chain.mdx deleted file mode 100644 index ed5a547798..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dos-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DOS Chain - DOS Blockchain Network -description: Explore DOS Chain, a blockchain network with chain ID 7979. Learn about its native currency, DOS, and how to interact with the network. ---- - -# DOS Chain - -DOS Chain is a blockchain network with chain ID 7979. - -## Network Details - -- **Chain ID**: 7979 -- **Chain Name**: DOS -- **Short Name**: dos -- **Network ID**: 7979 -- **Currency**: - - **Name**: DOS - - **Symbol**: DOS - - **Decimals**: 18 - -## RPC URLs - -DOS Chain can be accessed through the following RPC endpoints: - -- https://main.doschain.com - -## DOS Chain Block Explorers - -- [DOScan](https://doscan.io) - -## Additional Information - -- **Official Website**: https://doschain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dos-fuji-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dos-fuji-subnet.mdx deleted file mode 100644 index 2e6a985c57..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dos-fuji-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dos Fuji Subnet - DOS Blockchain Network -description: Explore Dos Fuji Subnet, a blockchain network with chain ID 1311. Learn about its native currency, Dos Native Token, and how to interact with the network. ---- - -# Dos Fuji Subnet - -Dos Fuji Subnet is a blockchain network with chain ID 1311. - -## Network Details - -- **Chain ID**: 1311 -- **Chain Name**: DOS -- **Short Name**: TDOS -- **Network ID**: 1311 -- **Currency**: - - **Name**: Dos Native Token - - **Symbol**: DOS - - **Decimals**: 18 - -## RPC URLs - -Dos Fuji Subnet can be accessed through the following RPC endpoints: - -- https://test.doschain.com/jsonrpc - -## Dos Fuji Subnet Block Explorers - -- [dos-testnet](https://test.doscan.io) - -## Additional Information - -- **Official Website**: http://doschain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dos Fuji Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dos-tesnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dos-tesnet.mdx deleted file mode 100644 index a8e243259b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dos-tesnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DOS Tesnet - DOS Blockchain Network -description: Explore DOS Tesnet, a blockchain network with chain ID 3939. Learn about its native currency, DOS, and how to interact with the network. ---- - -# DOS Tesnet - -DOS Tesnet is a blockchain network with chain ID 3939. - -## Network Details - -- **Chain ID**: 3939 -- **Chain Name**: DOS -- **Short Name**: dost -- **Network ID**: 3939 -- **Currency**: - - **Name**: DOS - - **Symbol**: DOS - - **Decimals**: 18 - -## RPC URLs - -DOS Tesnet can be accessed through the following RPC endpoints: - -- https://test.doschain.com - -## DOS Tesnet Block Explorers - -- [DOScan-Test](https://test.doscan.io) - -## Additional Information - -- **Official Website**: http://doschain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DOS Tesnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dot-blox.mdx b/docs/pages/solutions/chainlist/non-integrated/dot-blox.mdx deleted file mode 100644 index b56f8ebc67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dot-blox.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dot Blox - DTBX Blockchain Network -description: Explore Dot Blox, a blockchain network with chain ID 7923. Learn about its native currency, Dot Blox, and how to interact with the network. ---- - -# Dot Blox - -Dot Blox is a blockchain network with chain ID 7923. - -## Network Details - -- **Chain ID**: 7923 -- **Chain Name**: DTBX -- **Short Name**: DTBX -- **Network ID**: 7923 -- **Currency**: - - **Name**: Dot Blox - - **Symbol**: DTBX - - **Decimals**: 18 - -## RPC URLs - -Dot Blox can be accessed through the following RPC endpoints: - -- https://rpc.dotblox.io - -## Dot Blox Block Explorers - -- [blockscout](https://explorer.dotblox.io) - -## Additional Information - -- **Official Website**: https://explorer.dotblox.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/double-a-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/double-a-chain-testnet.mdx deleted file mode 100644 index 42d2151fc2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/double-a-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Double-A Chain Testnet - AAC Blockchain Network -description: Explore Double-A Chain Testnet, a blockchain network with chain ID 513. Learn about its native currency, Acuteangle Native Token, and how to interact with the network. ---- - -# Double-A Chain Testnet - -Double-A Chain Testnet is a blockchain network with chain ID 513. - -## Network Details - -- **Chain ID**: 513 -- **Chain Name**: AAC -- **Short Name**: aact -- **Network ID**: 513 -- **Currency**: - - **Name**: Acuteangle Native Token - - **Symbol**: AAC - - **Decimals**: 18 - -## RPC URLs - -Double-A Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.acuteangle.com - -## Double-A Chain Testnet Block Explorers - -- [aacscan-testnet](https://scan-testnet.acuteangle.com) - -## Additional Information - -- **Official Website**: https://www.acuteangle.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Double-A Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/double-a-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/double-a-chain.mdx deleted file mode 100644 index 28126d68bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/double-a-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Double-A Chain Mainnet - AAC Blockchain Network -description: Explore Double-A Chain Mainnet, a blockchain network with chain ID 512. Learn about its native currency, Acuteangle Native Token, and how to interact with the network. ---- - -# Double-A Chain Mainnet - -Double-A Chain Mainnet is a blockchain network with chain ID 512. - -## Network Details - -- **Chain ID**: 512 -- **Chain Name**: AAC -- **Short Name**: aac -- **Network ID**: 512 -- **Currency**: - - **Name**: Acuteangle Native Token - - **Symbol**: AAC - - **Decimals**: 18 - -## RPC URLs - -Double-A Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.acuteangle.com - -## Double-A Chain Mainnet Block Explorers - -- [aacscan](https://scan.acuteangle.com) - -## Additional Information - -- **Official Website**: https://www.acuteangle.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dpu-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/dpu-chain.mdx deleted file mode 100644 index f7ddd512e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dpu-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DPU Chain - DPU Blockchain Network -description: Explore DPU Chain, a blockchain network with chain ID 2611555. Learn about its native currency, DGC, and how to interact with the network. ---- - -# DPU Chain - -DPU Chain is a blockchain network with chain ID 2611555. - -## Network Details - -- **Chain ID**: 2611555 -- **Chain Name**: DPU -- **Short Name**: DPU -- **Network ID**: 2611555 -- **Currency**: - - **Name**: DGC - - **Symbol**: DGC - - **Decimals**: 18 - -## RPC URLs - -DPU Chain can be accessed through the following RPC endpoints: - -- https://sc-rpc.dpu.ac.th - -## DPU Chain Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/drac-network.mdx b/docs/pages/solutions/chainlist/non-integrated/drac-network.mdx deleted file mode 100644 index 968402288e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/drac-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DRAC Network - DRAC Blockchain Network -description: Explore DRAC Network, a blockchain network with chain ID 3912. Learn about its native currency, DRAC, and how to interact with the network. ---- - -# DRAC Network - -DRAC Network is a blockchain network with chain ID 3912. - -## Network Details - -- **Chain ID**: 3912 -- **Chain Name**: DRAC -- **Short Name**: drac -- **Network ID**: 3912 -- **Currency**: - - **Name**: DRAC - - **Symbol**: DRAC - - **Decimals**: 18 - -## RPC URLs - -DRAC Network can be accessed through the following RPC endpoints: - -- https://www.dracscan.com/rpc - -## DRAC Network Block Explorers - -- [DRAC_Network Scan](https://www.dracscan.io) - -## Additional Information - -- **Official Website**: https://drac.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dracones-financial-services.mdx b/docs/pages/solutions/chainlist/non-integrated/dracones-financial-services.mdx deleted file mode 100644 index 16c3fa0e6e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dracones-financial-services.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dracones Financial Services - FUCK Blockchain Network -description: Explore Dracones Financial Services, a blockchain network with chain ID 8387. Learn about its native currency, Functionally Universal Coin Kind, and how to interact with the network. ---- - -# Dracones Financial Services - -Dracones Financial Services is a blockchain network with chain ID 8387. - -## Network Details - -- **Chain ID**: 8387 -- **Chain Name**: FUCK -- **Short Name**: fuck -- **Network ID**: 8387 -- **Currency**: - - **Name**: Functionally Universal Coin Kind - - **Symbol**: FUCK - - **Decimals**: 18 - -## RPC URLs - -Dracones Financial Services can be accessed through the following RPC endpoints: - -- https://api.dracones.net/ - -## Dracones Financial Services Block Explorers - - - -## Additional Information - -- **Official Website**: https://wolfery.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dragon-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dragon-testnet.mdx deleted file mode 100644 index 0dfbafca5a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dragon-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dragon Testnet - Avalanche Blockchain Network -description: Explore Dragon Testnet, a blockchain network with chain ID 72709. Learn about its native currency, Dragon Testnet Token, and how to interact with the network. ---- - -# Dragon Testnet - -Dragon Testnet is a blockchain network with chain ID 72709. - -## Network Details - -- **Chain ID**: 72709 -- **Chain Name**: Avalanche -- **Short Name**: Dragon Testnet -- **Network ID**: 72709 -- **Currency**: - - **Name**: Dragon Testnet Token - - **Symbol**: BDI - - **Decimals**: 18 - -## RPC URLs - -Dragon Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/dragontest/testnet/rpc - -## Dragon Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dragon Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dragonfly-(hexapod).mdx b/docs/pages/solutions/chainlist/non-integrated/dragonfly-(hexapod).mdx deleted file mode 100644 index aee2c6392b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dragonfly-(hexapod).mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Dragonfly Mainnet (Hexapod) - Dragonfly Blockchain Network -description: Explore Dragonfly Mainnet (Hexapod), a blockchain network with chain ID 78281. Learn about its native currency, Dragonfly, and how to interact with the network. ---- - -# Dragonfly Mainnet (Hexapod) - -Dragonfly Mainnet (Hexapod) is a blockchain network with chain ID 78281. - -## Network Details - -- **Chain ID**: 78281 -- **Chain Name**: Dragonfly -- **Short Name**: dfly -- **Network ID**: 78281 -- **Currency**: - - **Name**: Dragonfly - - **Symbol**: DFLY - - **Decimals**: 18 - -## RPC URLs - -Dragonfly Mainnet (Hexapod) can be accessed through the following RPC endpoints: - -- https://dragonfly-rpc.switch.ch -- https://dragonfly-rpc.kore-technologies.ch -- https://dragonfly-rpc.phoenix-systems.io -- https://dragonfly-rpc.block-spirit.ch - -## Dragonfly Mainnet (Hexapod) Block Explorers - -- [Dragonfly Blockscout](https://blockscout.dragonfly.hexapod.network) - -## Additional Information - -- **Official Website**: https://hexapod.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dreyerx-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dreyerx-testnet.mdx deleted file mode 100644 index dbdf672c57..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dreyerx-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DreyerX Testnet - DreyerX Blockchain Network -description: Explore DreyerX Testnet, a blockchain network with chain ID 23452. Learn about its native currency, DreyerX, and how to interact with the network. ---- - -# DreyerX Testnet - -DreyerX Testnet is a blockchain network with chain ID 23452. - -## Network Details - -- **Chain ID**: 23452 -- **Chain Name**: DreyerX -- **Short Name**: dreyerx-testnet -- **Network ID**: 23452 -- **Currency**: - - **Name**: DreyerX - - **Symbol**: DRX - - **Decimals**: 18 - -## RPC URLs - -DreyerX Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.dreyerx.com - -## DreyerX Testnet Block Explorers - -- [drxscan](https://testnet-scan.dreyerx.com) - -## Additional Information - -- **Official Website**: https://dreyerx.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DreyerX Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dreyerx.mdx b/docs/pages/solutions/chainlist/non-integrated/dreyerx.mdx deleted file mode 100644 index b2d36eae7d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dreyerx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DreyerX Mainnet - DreyerX Blockchain Network -description: Explore DreyerX Mainnet, a blockchain network with chain ID 23451. Learn about its native currency, DreyerX, and how to interact with the network. ---- - -# DreyerX Mainnet - -DreyerX Mainnet is a blockchain network with chain ID 23451. - -## Network Details - -- **Chain ID**: 23451 -- **Chain Name**: DreyerX -- **Short Name**: dreyerx -- **Network ID**: 23451 -- **Currency**: - - **Name**: DreyerX - - **Symbol**: DRX - - **Decimals**: 18 - -## RPC URLs - -DreyerX Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.dreyerx.com - -## DreyerX Mainnet Block Explorers - -- [drxscan](https://scan.dreyerx.com) - -## Additional Information - -- **Official Website**: https://dreyerx.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dubxcoin-network.mdx b/docs/pages/solutions/chainlist/non-integrated/dubxcoin-network.mdx deleted file mode 100644 index ccf357b757..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dubxcoin-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dubxcoin network - DUBX Blockchain Network -description: Explore Dubxcoin network, a blockchain network with chain ID 3269. Learn about its native currency, Dubxcoin mainnet, and how to interact with the network. ---- - -# Dubxcoin network - -Dubxcoin network is a blockchain network with chain ID 3269. - -## Network Details - -- **Chain ID**: 3269 -- **Chain Name**: DUBX -- **Short Name**: dubx -- **Network ID**: 3269 -- **Currency**: - - **Name**: Dubxcoin mainnet - - **Symbol**: DUBX - - **Decimals**: 18 - -## RPC URLs - -Dubxcoin network can be accessed through the following RPC endpoints: - -- https://rpcmain.arabianchain.org - -## Dubxcoin network Block Explorers - - - -## Additional Information - -- **Official Website**: https://arabianchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dubxcoin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dubxcoin-testnet.mdx deleted file mode 100644 index d22abfd7fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dubxcoin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Dubxcoin testnet - TESTDUBX Blockchain Network -description: Explore Dubxcoin testnet, a blockchain network with chain ID 3270. Learn about its native currency, Dubxcoin testnet, and how to interact with the network. ---- - -# Dubxcoin testnet - -Dubxcoin testnet is a blockchain network with chain ID 3270. - -## Network Details - -- **Chain ID**: 3270 -- **Chain Name**: TESTDUBX -- **Short Name**: testdubx -- **Network ID**: 3270 -- **Currency**: - - **Name**: Dubxcoin testnet - - **Symbol**: TDUBX - - **Decimals**: 18 - -## RPC URLs - -Dubxcoin testnet can be accessed through the following RPC endpoints: - -- https://rpctestnet.arabianchain.org - -## Dubxcoin testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://arabianchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Dubxcoin testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dxchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dxchain-testnet.mdx deleted file mode 100644 index ef5ea0b7f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dxchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DxChain Testnet - DxChain Blockchain Network -description: Explore DxChain Testnet, a blockchain network with chain ID 72. Learn about its native currency, DxChain Testnet, and how to interact with the network. ---- - -# DxChain Testnet - -DxChain Testnet is a blockchain network with chain ID 72. - -## Network Details - -- **Chain ID**: 72 -- **Chain Name**: DxChain -- **Short Name**: dxc -- **Network ID**: 72 -- **Currency**: - - **Name**: DxChain Testnet - - **Symbol**: DX - - **Decimals**: 18 - -## RPC URLs - -DxChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-http.dxchain.com - -## DxChain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://testnet.dxscan.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DxChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dxchain.mdx b/docs/pages/solutions/chainlist/non-integrated/dxchain.mdx deleted file mode 100644 index 861741081d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dxchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Dxchain Mainnet - Dxchain Blockchain Network -description: Explore Dxchain Mainnet, a blockchain network with chain ID 36. Learn about its native currency, Dxchain, and how to interact with the network. ---- - -# Dxchain Mainnet - -Dxchain Mainnet is a blockchain network with chain ID 36. - -## Network Details - -- **Chain ID**: 36 -- **Chain Name**: Dxchain -- **Short Name**: dx -- **Network ID**: 36 -- **Currency**: - - **Name**: Dxchain - - **Symbol**: DX - - **Decimals**: 18 - -## RPC URLs - -Dxchain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.dxchain.com - -## Dxchain Mainnet Block Explorers - -- [dxscan](https://dxscan.io) - -## Additional Information - -- **Official Website**: https://www.dxchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dymension.mdx b/docs/pages/solutions/chainlist/non-integrated/dymension.mdx deleted file mode 100644 index b3f7d76e2a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dymension.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Dymension - Dymension Blockchain Network -description: Explore Dymension, a blockchain network with chain ID 1100. Learn about its native currency, DYM, and how to interact with the network. ---- - -# Dymension - -Dymension is a blockchain network with chain ID 1100. - -## Network Details - -- **Chain ID**: 1100 -- **Chain Name**: Dymension -- **Short Name**: dymension -- **Network ID**: 1100 -- **Currency**: - - **Name**: DYM - - **Symbol**: DYM - - **Decimals**: 18 - -## RPC URLs - -Dymension can be accessed through the following RPC endpoints: - -- https://dymension-evm.blockpi.network/v1/rpc/public -- https://dymension-evm-rpc.publicnode.com -- wss://dymension-evm-rpc.publicnode.com - -## Dymension Block Explorers - -- [dym.fyi](https://dym.fyi) - -## Additional Information - -- **Official Website**: https://dymension.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/dyno-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/dyno-testnet.mdx deleted file mode 100644 index cf4bd2524a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dyno-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: DYNO Testnet - DYNO Blockchain Network -description: Explore DYNO Testnet, a blockchain network with chain ID 3967. Learn about its native currency, DYNO Token, and how to interact with the network. ---- - -# DYNO Testnet - -DYNO Testnet is a blockchain network with chain ID 3967. - -## Network Details - -- **Chain ID**: 3967 -- **Chain Name**: DYNO -- **Short Name**: tdyno -- **Network ID**: 3967 -- **Currency**: - - **Name**: DYNO Token - - **Symbol**: tDYNO - - **Decimals**: 18 - -## RPC URLs - -DYNO Testnet can be accessed through the following RPC endpoints: - -- https://tapi.dynoprotocol.com - -## DYNO Testnet Block Explorers - -- [DYNO Explorer](https://testnet.dynoscan.io) - -## Additional Information - -- **Official Website**: https://dynoprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## DYNO Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/dyno.mdx b/docs/pages/solutions/chainlist/non-integrated/dyno.mdx deleted file mode 100644 index 37566502dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/dyno.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: DYNO Mainnet - DYNO Blockchain Network -description: Explore DYNO Mainnet, a blockchain network with chain ID 3966. Learn about its native currency, DYNO Token, and how to interact with the network. ---- - -# DYNO Mainnet - -DYNO Mainnet is a blockchain network with chain ID 3966. - -## Network Details - -- **Chain ID**: 3966 -- **Chain Name**: DYNO -- **Short Name**: dyno -- **Network ID**: 3966 -- **Currency**: - - **Name**: DYNO Token - - **Symbol**: DYNO - - **Decimals**: 18 - -## RPC URLs - -DYNO Mainnet can be accessed through the following RPC endpoints: - -- https://api.dynoprotocol.com - -## DYNO Mainnet Block Explorers - -- [DYNO Explorer](https://dynoscan.io) - -## Additional Information - -- **Official Website**: https://dynoprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/e-dollar.mdx b/docs/pages/solutions/chainlist/non-integrated/e-dollar.mdx deleted file mode 100644 index 0c15c8add4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/e-dollar.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: E-Dollar - USD Blockchain Network -description: Explore E-Dollar, a blockchain network with chain ID 8087. Learn about its native currency, E-Dollar, and how to interact with the network. ---- - -# E-Dollar - -E-Dollar is a blockchain network with chain ID 8087. - -## Network Details - -- **Chain ID**: 8087 -- **Chain Name**: USD -- **Short Name**: E-Dollar -- **Network ID**: 8087 -- **Currency**: - - **Name**: E-Dollar - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -E-Dollar can be accessed through the following RPC endpoints: - -- https://rpc.e-dollar.org - -## E-Dollar Block Explorers - - - -## Additional Information - -- **Official Website**: https://e-dollar.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ebi-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ebi-chain.mdx deleted file mode 100644 index b1e60a1562..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ebi-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ebi Chain - Ebi Blockchain Network -description: Explore Ebi Chain, a blockchain network with chain ID 98881. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ebi Chain - -Ebi Chain is a blockchain network with chain ID 98881. - -## Network Details - -- **Chain ID**: 98881 -- **Chain Name**: Ebi -- **Short Name**: ebi -- **Network ID**: 98881 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ebi Chain can be accessed through the following RPC endpoints: - -- https://rpc.ebi.xyz - -## Ebi Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://ebi.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ebro-network.mdx b/docs/pages/solutions/chainlist/non-integrated/ebro-network.mdx deleted file mode 100644 index 67bd74916b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ebro-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ebro Network - ebro Blockchain Network -description: Explore Ebro Network, a blockchain network with chain ID 2306. Learn about its native currency, Ebro, and how to interact with the network. ---- - -# Ebro Network - -Ebro Network is a blockchain network with chain ID 2306. - -## Network Details - -- **Chain ID**: 2306 -- **Chain Name**: ebro -- **Short Name**: ebro -- **Network ID**: 2306 -- **Currency**: - - **Name**: Ebro - - **Symbol**: ebro - - **Decimals**: 18 - -## RPC URLs - -Ebro Network can be accessed through the following RPC endpoints: - -- https://greendinoswap.com - -## Ebro Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.ebrochain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eclat-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eclat-testnet.mdx deleted file mode 100644 index 647d982ddb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eclat-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Eclat Testnet - Eclat Blockchain Network -description: Explore Eclat Testnet, a blockchain network with chain ID 262371. Learn about its native currency, Eclat Testnet, and how to interact with the network. ---- - -# Eclat Testnet - -Eclat Testnet is a blockchain network with chain ID 262371. - -## Network Details - -- **Chain ID**: 262371 -- **Chain Name**: Eclat -- **Short Name**: tECLAT -- **Network ID**: 262371 -- **Currency**: - - **Name**: Eclat Testnet - - **Symbol**: ECLAT - - **Decimals**: 18 - -## RPC URLs - -Eclat Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.eclatscan.com - -## Eclat Testnet Block Explorers - -- [Eclat Testnet Explorer](https://testnet-explorer.eclatscan.com) - -## Additional Information - -- **Official Website**: https://testnet-explorer.eclatscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eclat Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eclat.mdx b/docs/pages/solutions/chainlist/non-integrated/eclat.mdx deleted file mode 100644 index aa1b487c4c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eclat.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Eclat Mainnet - Eclat Blockchain Network -description: Explore Eclat Mainnet, a blockchain network with chain ID 165279. Learn about its native currency, Eclat, and how to interact with the network. ---- - -# Eclat Mainnet - -Eclat Mainnet is a blockchain network with chain ID 165279. - -## Network Details - -- **Chain ID**: 165279 -- **Chain Name**: Eclat -- **Short Name**: ECLAT -- **Network ID**: 165279 -- **Currency**: - - **Name**: Eclat - - **Symbol**: ECLAT - - **Decimals**: 18 - -## RPC URLs - -Eclat Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.eclatscan.com - -## Eclat Mainnet Block Explorers - -- [Eclat Mainnet Explorer](https://eclatscan.com) - -## Additional Information - -- **Official Website**: https://eclatscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eclipse-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eclipse-subnet.mdx deleted file mode 100644 index 817104d6e0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eclipse-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Eclipse Subnet - ECLIPSE Blockchain Network -description: Explore Eclipse Subnet, a blockchain network with chain ID 17172. Learn about its native currency, Eclipse, and how to interact with the network. ---- - -# Eclipse Subnet - -Eclipse Subnet is a blockchain network with chain ID 17172. - -## Network Details - -- **Chain ID**: 17172 -- **Chain Name**: ECLIPSE -- **Short Name**: eclipse -- **Network ID**: 17172 -- **Currency**: - - **Name**: Eclipse - - **Symbol**: ECLP - - **Decimals**: 16 - -## RPC URLs - -Eclipse Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/eclipse/testnet/rpc - -## Eclipse Subnet Block Explorers - -- [ECLIPSE Explorer](https://subnets-test.avax.network/eclipse) - -## Additional Information - -- **Official Website**: http://eclipsenet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eclipse Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eclipsechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eclipsechain-testnet.mdx deleted file mode 100644 index 71426961fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eclipsechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Eclipse Testnet - ECLIPSE Blockchain Network -description: Explore Eclipse Testnet, a blockchain network with chain ID 555666. Learn about its native currency, Eclipse, and how to interact with the network. ---- - -# Eclipse Testnet - -Eclipse Testnet is a blockchain network with chain ID 555666. - -## Network Details - -- **Chain ID**: 555666 -- **Chain Name**: ECLIPSE -- **Short Name**: eclipset -- **Network ID**: 555666 -- **Currency**: - - **Name**: Eclipse - - **Symbol**: ECLPS - - **Decimals**: 18 - -## RPC URLs - -Eclipse Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/eclipsecha/testnet/rpc - -## Eclipse Testnet Block Explorers - -- [ECLIPSE Explorer](https://subnets-test.avax.network/eclipsecha) - -## Additional Information - -- **Official Website**: http://eclipsenet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eclipse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ecoball-testnet-espuma.mdx b/docs/pages/solutions/chainlist/non-integrated/ecoball-testnet-espuma.mdx deleted file mode 100644 index 73f2799899..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ecoball-testnet-espuma.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ecoball Testnet Espuma - ECO Blockchain Network -description: Explore Ecoball Testnet Espuma, a blockchain network with chain ID 2101. Learn about its native currency, Espuma Coin, and how to interact with the network. ---- - -# Ecoball Testnet Espuma - -Ecoball Testnet Espuma is a blockchain network with chain ID 2101. - -## Network Details - -- **Chain ID**: 2101 -- **Chain Name**: ECO -- **Short Name**: esp -- **Network ID**: 2101 -- **Currency**: - - **Name**: Espuma Coin - - **Symbol**: ECO - - **Decimals**: 18 - -## RPC URLs - -Ecoball Testnet Espuma can be accessed through the following RPC endpoints: - -- https://api.ecoball.org/espuma/ - -## Ecoball Testnet Espuma Block Explorers - -- [Ecoball Testnet Explorer](https://espuma-scan.ecoball.org) - -## Additional Information - -- **Official Website**: https://ecoball.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ecoball Testnet Espuma Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ecoball.mdx b/docs/pages/solutions/chainlist/non-integrated/ecoball.mdx deleted file mode 100644 index 498f33a407..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ecoball.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ecoball Mainnet - ECO Blockchain Network -description: Explore Ecoball Mainnet, a blockchain network with chain ID 2100. Learn about its native currency, Ecoball Coin, and how to interact with the network. ---- - -# Ecoball Mainnet - -Ecoball Mainnet is a blockchain network with chain ID 2100. - -## Network Details - -- **Chain ID**: 2100 -- **Chain Name**: ECO -- **Short Name**: eco -- **Network ID**: 2100 -- **Currency**: - - **Name**: Ecoball Coin - - **Symbol**: ECO - - **Decimals**: 18 - -## RPC URLs - -Ecoball Mainnet can be accessed through the following RPC endpoints: - -- https://api.ecoball.org/ecoball/ - -## Ecoball Mainnet Block Explorers - -- [Ecoball Explorer](https://scan.ecoball.org) - -## Additional Information - -- **Official Website**: https://ecoball.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ecredits-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ecredits-testnet.mdx deleted file mode 100644 index 76c4c839a6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ecredits-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: eCredits Testnet - ECS Blockchain Network -description: Explore eCredits Testnet, a blockchain network with chain ID 63001. Learn about its native currency, eCredits, and how to interact with the network. ---- - -# eCredits Testnet - -eCredits Testnet is a blockchain network with chain ID 63001. - -## Network Details - -- **Chain ID**: 63001 -- **Chain Name**: ECS -- **Short Name**: ecs-testnet -- **Network ID**: 63001 -- **Currency**: - - **Name**: eCredits - - **Symbol**: ECS - - **Decimals**: 18 - -## RPC URLs - -eCredits Testnet can be accessed through the following RPC endpoints: - -- https://rpc.tst.ecredits.com - -## eCredits Testnet Block Explorers - -- [eCredits TestNet Explorer](https://explorer.tst.ecredits.com) - -## Additional Information - -- **Official Website**: https://ecredits.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## eCredits Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ecredits.mdx b/docs/pages/solutions/chainlist/non-integrated/ecredits.mdx deleted file mode 100644 index aedea89b2b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ecredits.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: eCredits Mainnet - ECS Blockchain Network -description: Explore eCredits Mainnet, a blockchain network with chain ID 63000. Learn about its native currency, eCredits, and how to interact with the network. ---- - -# eCredits Mainnet - -eCredits Mainnet is a blockchain network with chain ID 63000. - -## Network Details - -- **Chain ID**: 63000 -- **Chain Name**: ECS -- **Short Name**: ecs -- **Network ID**: 63000 -- **Currency**: - - **Name**: eCredits - - **Symbol**: ECS - - **Decimals**: 18 - -## RPC URLs - -eCredits Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.ecredits.com - -## eCredits Mainnet Block Explorers - -- [eCredits MainNet Explorer](https://explorer.ecredits.com) - -## Additional Information - -- **Official Website**: https://ecredits.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ecrox-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ecrox-chain.mdx deleted file mode 100644 index 08164b75aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ecrox-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ecrox Chain Mainnet - Ecrox Chain Blockchain Network -description: Explore Ecrox Chain Mainnet, a blockchain network with chain ID 988207. Learn about its native currency, ECROX COIN, and how to interact with the network. ---- - -# Ecrox Chain Mainnet - -Ecrox Chain Mainnet is a blockchain network with chain ID 988207. - -## Network Details - -- **Chain ID**: 988207 -- **Chain Name**: Ecrox Chain -- **Short Name**: ecrox -- **Network ID**: 988207 -- **Currency**: - - **Name**: ECROX COIN - - **Symbol**: ECROX - - **Decimals**: 18 - -## RPC URLs - -Ecrox Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.ecroxscan.com/ - -## Ecrox Chain Mainnet Block Explorers - -- [Ecrox Chain Explorer](https://ecroxscan.com) - -## Additional Information - -- **Official Website**: https://ecroxcoin.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/edexa-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/edexa-testnet.mdx deleted file mode 100644 index 72ed926691..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edexa-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: edeXa Testnet - edeXa TestNetwork Blockchain Network -description: Explore edeXa Testnet, a blockchain network with chain ID 1995. Learn about its native currency, EDEXA, and how to interact with the network. ---- - -# edeXa Testnet - -edeXa Testnet is a blockchain network with chain ID 1995. - -## Network Details - -- **Chain ID**: 1995 -- **Chain Name**: edeXa TestNetwork -- **Short Name**: edx -- **Network ID**: 1995 -- **Currency**: - - **Name**: EDEXA - - **Symbol**: EDX - - **Decimals**: 18 - -## RPC URLs - -edeXa Testnet can be accessed through the following RPC endpoints: - -- https://testnet.edexa.network/rpc -- https://io-dataseed1.testnet.edexa.io-market.com/rpc - -## edeXa Testnet Block Explorers - -- [edexa-testnet](https://explorer.testnet.edexa.network) - -## Additional Information - -- **Official Website**: https://edexa.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## edeXa Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/edexa.mdx b/docs/pages/solutions/chainlist/non-integrated/edexa.mdx deleted file mode 100644 index c9992fb461..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edexa.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: edeXa Mainnet - edeXa Network Blockchain Network -description: Explore edeXa Mainnet, a blockchain network with chain ID 5424. Learn about its native currency, EDEXA, and how to interact with the network. ---- - -# edeXa Mainnet - -edeXa Mainnet is a blockchain network with chain ID 5424. - -## Network Details - -- **Chain ID**: 5424 -- **Chain Name**: edeXa Network -- **Short Name**: edeXa -- **Network ID**: 5424 -- **Currency**: - - **Name**: EDEXA - - **Symbol**: EDX - - **Decimals**: 18 - -## RPC URLs - -edeXa Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.edexa.network/rpc -- https://mainnet.edexa.com/rpc -- https://io-dataseed1.mainnet.edexa.io-market.com/rpc - -## edeXa Mainnet Block Explorers - -- [edexa-mainnet](https://explorer.edexa.network) - -## Additional Information - -- **Official Website**: https://edexa.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/edgamatrix-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/edgamatrix-chain.mdx deleted file mode 100644 index 44ae216238..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edgamatrix-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EdgaMatrix Chain - EMC Blockchain Network -description: Explore EdgaMatrix Chain, a blockchain network with chain ID 6678. Learn about its native currency, EdgaMatrix Chain Token, and how to interact with the network. ---- - -# EdgaMatrix Chain - -EdgaMatrix Chain is a blockchain network with chain ID 6678. - -## Network Details - -- **Chain ID**: 6678 -- **Chain Name**: EMC -- **Short Name**: EMC -- **Network ID**: 6678 -- **Currency**: - - **Name**: EdgaMatrix Chain Token - - **Symbol**: EMC - - **Decimals**: 18 - -## RPC URLs - -EdgaMatrix Chain can be accessed through the following RPC endpoints: - -- https://rpc1-mainnet.emc.network - -## EdgaMatrix Chain Block Explorers - -- [blockscout](https://emcscan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/edgeless-network.mdx b/docs/pages/solutions/chainlist/non-integrated/edgeless-network.mdx deleted file mode 100644 index 8e0a71b5cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edgeless-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Edgeless Network - Edgeless Blockchain Network -description: Explore Edgeless Network, a blockchain network with chain ID 2026. Learn about its native currency, Edgeless Wrapped Eth, and how to interact with the network. ---- - -# Edgeless Network - -Edgeless Network is a blockchain network with chain ID 2026. - -## Network Details - -- **Chain ID**: 2026 -- **Chain Name**: Edgeless -- **Short Name**: edgeless -- **Network ID**: 2026 -- **Currency**: - - **Name**: Edgeless Wrapped Eth - - **Symbol**: EwEth - - **Decimals**: 18 - -## RPC URLs - -Edgeless Network can be accessed through the following RPC endpoints: - -- https://rpc.edgeless.network/http - -## Edgeless Network Block Explorers - -- [Edgeless Explorer](https://explorer.edgeless.network) - -## Additional Information - -- **Official Website**: https://edgeless.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/edgeless-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/edgeless-testnet.mdx deleted file mode 100644 index 6cfd9d1020..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edgeless-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Edgeless Testnet - EdgelessTestnet Blockchain Network -description: Explore Edgeless Testnet, a blockchain network with chain ID 202. Learn about its native currency, Edgeless Wrapped Eth, and how to interact with the network. ---- - -# Edgeless Testnet - -Edgeless Testnet is a blockchain network with chain ID 202. - -## Network Details - -- **Chain ID**: 202 -- **Chain Name**: EdgelessTestnet -- **Short Name**: edgeless-testnet -- **Network ID**: 202 -- **Currency**: - - **Name**: Edgeless Wrapped Eth - - **Symbol**: EwEth - - **Decimals**: 18 - -## RPC URLs - -Edgeless Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rpc.edgeless.network/http - -## Edgeless Testnet Block Explorers - -- [Edgeless Explorer](https://testnet.explorer.edgeless.network) - -## Additional Information - -- **Official Website**: https://edgeless.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Edgeless Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/edgeware-edgeevm.mdx b/docs/pages/solutions/chainlist/non-integrated/edgeware-edgeevm.mdx deleted file mode 100644 index 7b7c182ce1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/edgeware-edgeevm.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Edgeware EdgeEVM Mainnet - EDG Blockchain Network -description: Explore Edgeware EdgeEVM Mainnet, a blockchain network with chain ID 2021. Learn about its native currency, Edgeware, and how to interact with the network. ---- - -# Edgeware EdgeEVM Mainnet - -Edgeware EdgeEVM Mainnet is a blockchain network with chain ID 2021. - -## Network Details - -- **Chain ID**: 2021 -- **Chain Name**: EDG -- **Short Name**: edg -- **Network ID**: 2021 -- **Currency**: - - **Name**: Edgeware - - **Symbol**: EDG - - **Decimals**: 18 - -## RPC URLs - -Edgeware EdgeEVM Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Edgeware EdgeEVM Mainnet Block Explorers - -- [Edgscan EdgeEVM explorer by Bharathcoorg](https://edgscan.live) -- [Edgscan EdgeWASM explorer by Bharathcoorg](https://edgscan.ink) - -## Additional Information - -- **Official Website**: https://edgeware.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/egochain.mdx b/docs/pages/solutions/chainlist/non-integrated/egochain.mdx deleted file mode 100644 index 9fea21696d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/egochain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Egochain - EGAX Blockchain Network -description: Explore Egochain, a blockchain network with chain ID 5439. Learn about its native currency, EGAX, and how to interact with the network. ---- - -# Egochain - -Egochain is a blockchain network with chain ID 5439. - -## Network Details - -- **Chain ID**: 5439 -- **Chain Name**: EGAX -- **Short Name**: egax -- **Network ID**: 5439 -- **Currency**: - - **Name**: EGAX - - **Symbol**: EGAX - - **Decimals**: 18 - -## RPC URLs - -Egochain can be accessed through the following RPC endpoints: - -- https://mainnet.egochain.org - -## Egochain Block Explorers - -- [egoscan](https://egoscan.io) - -## Additional Information - -- **Official Website**: https://docs.egochain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/egoncoin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/egoncoin-testnet.mdx deleted file mode 100644 index 7c89986a71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/egoncoin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EgonCoin Testnet - EGON Blockchain Network -description: Explore EgonCoin Testnet, a blockchain network with chain ID 271271. Learn about its native currency, EgonCoin, and how to interact with the network. ---- - -# EgonCoin Testnet - -EgonCoin Testnet is a blockchain network with chain ID 271271. - -## Network Details - -- **Chain ID**: 271271 -- **Chain Name**: EGON -- **Short Name**: EGONt -- **Network ID**: 271271 -- **Currency**: - - **Name**: EgonCoin - - **Symbol**: EGON - - **Decimals**: 18 - -## RPC URLs - -EgonCoin Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.egonscan.com - -## EgonCoin Testnet Block Explorers - -- [EgonCoin Testnet](https://testnet.egonscan.com) - -## Additional Information - -- **Official Website**: https://egonscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EgonCoin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/egoncoin.mdx b/docs/pages/solutions/chainlist/non-integrated/egoncoin.mdx deleted file mode 100644 index b022845404..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/egoncoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EgonCoin Mainnet - EGON Blockchain Network -description: Explore EgonCoin Mainnet, a blockchain network with chain ID 271. Learn about its native currency, EgonCoin, and how to interact with the network. ---- - -# EgonCoin Mainnet - -EgonCoin Mainnet is a blockchain network with chain ID 271. - -## Network Details - -- **Chain ID**: 271 -- **Chain Name**: EGON -- **Short Name**: EGONm -- **Network ID**: 271 -- **Currency**: - - **Name**: EgonCoin - - **Symbol**: EGON - - **Decimals**: 18 - -## RPC URLs - -EgonCoin Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.egonscan.com - -## EgonCoin Mainnet Block Explorers - -- [EgonCoin Mainnet](https://egonscan.com) - -## Additional Information - -- **Official Website**: https://egonscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eiob.mdx b/docs/pages/solutions/chainlist/non-integrated/eiob.mdx deleted file mode 100644 index 5da9185cc0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eiob.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EIOB Mainnet - EIOB Blockchain Network -description: Explore EIOB Mainnet, a blockchain network with chain ID 612. Learn about its native currency, EIOB, and how to interact with the network. ---- - -# EIOB Mainnet - -EIOB Mainnet is a blockchain network with chain ID 612. - -## Network Details - -- **Chain ID**: 612 -- **Chain Name**: EIOB -- **Short Name**: eiob -- **Network ID**: 612 -- **Currency**: - - **Name**: EIOB - - **Symbol**: EIOB - - **Decimals**: 18 - -## RPC URLs - -EIOB Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.eiob.xyz - -## EIOB Mainnet Block Explorers - -- [EIOB Explorer](https://explorer.eiob.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ekta.mdx b/docs/pages/solutions/chainlist/non-integrated/ekta.mdx deleted file mode 100644 index c05bb137a5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ekta.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ekta - EKTA Blockchain Network -description: Explore Ekta, a blockchain network with chain ID 1994. Learn about its native currency, EKTA, and how to interact with the network. ---- - -# Ekta - -Ekta is a blockchain network with chain ID 1994. - -## Network Details - -- **Chain ID**: 1994 -- **Chain Name**: EKTA -- **Short Name**: ekta -- **Network ID**: 1994 -- **Currency**: - - **Name**: EKTA - - **Symbol**: EKTA - - **Decimals**: 18 - -## RPC URLs - -Ekta can be accessed through the following RPC endpoints: - -- https://main.ekta.io - -## Ekta Block Explorers - -- [ektascan](https://ektascan.io) - -## Additional Information - -- **Official Website**: https://www.ekta.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain-testnet.mdx deleted file mode 100644 index ea77b023fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ELA-DID-Sidechain Testnet - ETH Blockchain Network -description: Explore ELA-DID-Sidechain Testnet, a blockchain network with chain ID 23. Learn about its native currency, Elastos, and how to interact with the network. ---- - -# ELA-DID-Sidechain Testnet - -ELA-DID-Sidechain Testnet is a blockchain network with chain ID 23. - -## Network Details - -- **Chain ID**: 23 -- **Chain Name**: ETH -- **Short Name**: eladidt -- **Network ID**: 23 -- **Currency**: - - **Name**: Elastos - - **Symbol**: tELA - - **Decimals**: 18 - -## RPC URLs - -ELA-DID-Sidechain Testnet can be accessed through the following RPC endpoints: - - - -## ELA-DID-Sidechain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://elaeth.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ELA-DID-Sidechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain.mdx b/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain.mdx deleted file mode 100644 index c7416033c3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ela-did-sidechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ELA-DID-Sidechain Mainnet - ETH Blockchain Network -description: Explore ELA-DID-Sidechain Mainnet, a blockchain network with chain ID 22. Learn about its native currency, Elastos, and how to interact with the network. ---- - -# ELA-DID-Sidechain Mainnet - -ELA-DID-Sidechain Mainnet is a blockchain network with chain ID 22. - -## Network Details - -- **Chain ID**: 22 -- **Chain Name**: ETH -- **Short Name**: eladid -- **Network ID**: 22 -- **Currency**: - - **Name**: Elastos - - **Symbol**: ELA - - **Decimals**: 18 - -## RPC URLs - -ELA-DID-Sidechain Mainnet can be accessed through the following RPC endpoints: - - - -## ELA-DID-Sidechain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.elastos.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain-testnet.mdx deleted file mode 100644 index b8714543fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Elastos Smart Chain Testnet - ETH Blockchain Network -description: Explore Elastos Smart Chain Testnet, a blockchain network with chain ID 21. Learn about its native currency, Elastos, and how to interact with the network. ---- - -# Elastos Smart Chain Testnet - -Elastos Smart Chain Testnet is a blockchain network with chain ID 21. - -## Network Details - -- **Chain ID**: 21 -- **Chain Name**: ETH -- **Short Name**: esct -- **Network ID**: 21 -- **Currency**: - - **Name**: Elastos - - **Symbol**: tELA - - **Decimals**: 18 - -## RPC URLs - -Elastos Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://api-testnet.elastos.io/eth - -## Elastos Smart Chain Testnet Block Explorers - -- [elastos esc explorer](https://esc-testnet.elastos.io) - -## Additional Information - -- **Official Website**: https://www.elastos.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Elastos Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain.mdx deleted file mode 100644 index 08357add67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elastos-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Elastos Smart Chain - ETH Blockchain Network -description: Explore Elastos Smart Chain, a blockchain network with chain ID 20. Learn about its native currency, Elastos, and how to interact with the network. ---- - -# Elastos Smart Chain - -Elastos Smart Chain is a blockchain network with chain ID 20. - -## Network Details - -- **Chain ID**: 20 -- **Chain Name**: ETH -- **Short Name**: esc -- **Network ID**: 20 -- **Currency**: - - **Name**: Elastos - - **Symbol**: ELA - - **Decimals**: 18 - -## RPC URLs - -Elastos Smart Chain can be accessed through the following RPC endpoints: - -- https://api.elastos.io/eth - -## Elastos Smart Chain Block Explorers - -- [elastos esc explorer](https://esc.elastos.io) - -## Additional Information - -- **Official Website**: https://www.elastos.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eleanor.mdx b/docs/pages/solutions/chainlist/non-integrated/eleanor.mdx deleted file mode 100644 index daaa325a62..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eleanor.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Eleanor - MTC Blockchain Network -description: Explore Eleanor, a blockchain network with chain ID 1967. Learn about its native currency, Eleanor Metacoin, and how to interact with the network. ---- - -# Eleanor - -Eleanor is a blockchain network with chain ID 1967. - -## Network Details - -- **Chain ID**: 1967 -- **Chain Name**: MTC -- **Short Name**: mtc -- **Network ID**: 1967 -- **Currency**: - - **Name**: Eleanor Metacoin - - **Symbol**: MTC - - **Decimals**: 18 - -## RPC URLs - -Eleanor can be accessed through the following RPC endpoints: - -- https://rpc.metatime.com/eleanor -- wss://ws.metatime.com/eleanor - -## Eleanor Block Explorers - -- [metaexplorer-eleanor](https://explorer.metatime.com/eleanor) - -## Additional Information - -- **Official Website**: https://eleanor.metatime.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eleanor Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/electroneum-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/electroneum-testnet.mdx deleted file mode 100644 index 8fc2bbc88e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/electroneum-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Electroneum Testnet - Electroneum Blockchain Network -description: Explore Electroneum Testnet, a blockchain network with chain ID 5201420. Learn about its native currency, Electroneum, and how to interact with the network. ---- - -# Electroneum Testnet - -Electroneum Testnet is a blockchain network with chain ID 5201420. - -## Network Details - -- **Chain ID**: 5201420 -- **Chain Name**: Electroneum -- **Short Name**: etn-testnet -- **Network ID**: 5201420 -- **Currency**: - - **Name**: Electroneum - - **Symbol**: ETN - - **Decimals**: 18 - -## RPC URLs - -Electroneum Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.electroneum.com - -## Electroneum Testnet Block Explorers - -- [blockscout](https://blockexplorer.thesecurityteam.rocks) - -## Additional Information - -- **Official Website**: https://electroneum.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Electroneum Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/electroneum.mdx b/docs/pages/solutions/chainlist/non-integrated/electroneum.mdx deleted file mode 100644 index 8d57840745..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/electroneum.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Electroneum Mainnet - Electroneum Blockchain Network -description: Explore Electroneum Mainnet, a blockchain network with chain ID 52014. Learn about its native currency, Electroneum, and how to interact with the network. ---- - -# Electroneum Mainnet - -Electroneum Mainnet is a blockchain network with chain ID 52014. - -## Network Details - -- **Chain ID**: 52014 -- **Chain Name**: Electroneum -- **Short Name**: etn-mainnet -- **Network ID**: 52014 -- **Currency**: - - **Name**: Electroneum - - **Symbol**: ETN - - **Decimals**: 18 - -## RPC URLs - -Electroneum Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.electroneum.com - -## Electroneum Mainnet Block Explorers - -- [blockscout](https://blockexplorer.electroneum.com) - -## Additional Information - -- **Official Website**: https://electroneum.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eliberty-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eliberty-testnet.mdx deleted file mode 100644 index 9d511d9071..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eliberty-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: eLiberty Testnet - $EL Blockchain Network -description: Explore eLiberty Testnet, a blockchain network with chain ID 99099. Learn about its native currency, eLiberty, and how to interact with the network. ---- - -# eLiberty Testnet - -eLiberty Testnet is a blockchain network with chain ID 99099. - -## Network Details - -- **Chain ID**: 99099 -- **Chain Name**: $EL -- **Short Name**: ELt -- **Network ID**: 99099 -- **Currency**: - - **Name**: eLiberty - - **Symbol**: $EL - - **Decimals**: 18 - -## RPC URLs - -eLiberty Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.eliberty.ngo - -## eLiberty Testnet Block Explorers - -- [eLiberty Testnet](https://testnet.eliberty.ngo) - -## Additional Information - -- **Official Website**: https://eliberty.ngo - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## eLiberty Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eliberty.mdx b/docs/pages/solutions/chainlist/non-integrated/eliberty.mdx deleted file mode 100644 index 5eb3e96fa7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eliberty.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: eLiberty Mainnet - $EL Blockchain Network -description: Explore eLiberty Mainnet, a blockchain network with chain ID 990. Learn about its native currency, eLiberty, and how to interact with the network. ---- - -# eLiberty Mainnet - -eLiberty Mainnet is a blockchain network with chain ID 990. - -## Network Details - -- **Chain ID**: 990 -- **Chain Name**: $EL -- **Short Name**: ELm -- **Network ID**: 990 -- **Currency**: - - **Name**: eLiberty - - **Symbol**: $EL - - **Decimals**: 18 - -## RPC URLs - -eLiberty Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.eliberty.ngo - -## eLiberty Mainnet Block Explorers - -- [eLiberty Mainnet](https://explorer.eliberty.ngo) - -## Additional Information - -- **Official Website**: https://eliberty.ngo - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/elizabeth-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/elizabeth-testnet.mdx deleted file mode 100644 index d8cc5faccb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elizabeth-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Elizabeth Testnet - Elizabeth Blockchain Network -description: Explore Elizabeth Testnet, a blockchain network with chain ID 2731. Learn about its native currency, TIME, and how to interact with the network. ---- - -# Elizabeth Testnet - -Elizabeth Testnet is a blockchain network with chain ID 2731. - -## Network Details - -- **Chain ID**: 2731 -- **Chain Name**: Elizabeth -- **Short Name**: TIME -- **Network ID**: 2731 -- **Currency**: - - **Name**: TIME - - **Symbol**: TIME - - **Decimals**: 18 - -## RPC URLs - -Elizabeth Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.timenetwork.io - -## Elizabeth Testnet Block Explorers - -- [Time Network Explorer](https://testnet-scanner.timenetwork.io) - -## Additional Information - -- **Official Website**: https://whitepaper.anttime.net/overview/anttime - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Elizabeth Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ella-the-heart.mdx b/docs/pages/solutions/chainlist/non-integrated/ella-the-heart.mdx deleted file mode 100644 index 169c79adab..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ella-the-heart.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ella the heart - ella Blockchain Network -description: Explore Ella the heart, a blockchain network with chain ID 7027. Learn about its native currency, Ella, and how to interact with the network. ---- - -# Ella the heart - -Ella the heart is a blockchain network with chain ID 7027. - -## Network Details - -- **Chain ID**: 7027 -- **Chain Name**: ella -- **Short Name**: ELLA -- **Network ID**: 7027 -- **Currency**: - - **Name**: Ella - - **Symbol**: ELLA - - **Decimals**: 18 - -## RPC URLs - -Ella the heart can be accessed through the following RPC endpoints: - -- https://rpc.ella.network - -## Ella the heart Block Explorers - -- [Ella](https://ella.network) - -## Additional Information - -- **Official Website**: https://ella.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ellaism.mdx b/docs/pages/solutions/chainlist/non-integrated/ellaism.mdx deleted file mode 100644 index fb129f67fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ellaism.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ellaism - ELLA Blockchain Network -description: Explore Ellaism, a blockchain network with chain ID 64. Learn about its native currency, Ellaism Ether, and how to interact with the network. ---- - -# Ellaism - -Ellaism is a blockchain network with chain ID 64. - -## Network Details - -- **Chain ID**: 64 -- **Chain Name**: ELLA -- **Short Name**: ellaism -- **Network ID**: 64 -- **Currency**: - - **Name**: Ellaism Ether - - **Symbol**: ELLA - - **Decimals**: 18 - -## RPC URLs - -Ellaism can be accessed through the following RPC endpoints: - -- https://jsonrpc.ellaism.org - -## Ellaism Block Explorers - - - -## Additional Information - -- **Official Website**: https://ellaism.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eluvio-content-fabric.mdx b/docs/pages/solutions/chainlist/non-integrated/eluvio-content-fabric.mdx deleted file mode 100644 index 7b182da1ec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eluvio-content-fabric.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Eluvio Content Fabric - Eluvio Blockchain Network -description: Explore Eluvio Content Fabric, a blockchain network with chain ID 955305. Learn about its native currency, ELV, and how to interact with the network. ---- - -# Eluvio Content Fabric - -Eluvio Content Fabric is a blockchain network with chain ID 955305. - -## Network Details - -- **Chain ID**: 955305 -- **Chain Name**: Eluvio -- **Short Name**: elv -- **Network ID**: 955305 -- **Currency**: - - **Name**: ELV - - **Symbol**: ELV - - **Decimals**: 18 - -## RPC URLs - -Eluvio Content Fabric can be accessed through the following RPC endpoints: - -- https://host-76-74-28-226.contentfabric.io/eth/ -- https://host-76-74-28-232.contentfabric.io/eth/ -- https://host-76-74-29-2.contentfabric.io/eth/ -- https://host-76-74-29-8.contentfabric.io/eth/ -- https://host-76-74-29-34.contentfabric.io/eth/ -- https://host-76-74-29-35.contentfabric.io/eth/ -- https://host-154-14-211-98.contentfabric.io/eth/ -- https://host-154-14-192-66.contentfabric.io/eth/ -- https://host-60-240-133-202.contentfabric.io/eth/ -- https://host-64-235-250-98.contentfabric.io/eth/ - -## Eluvio Content Fabric Block Explorers - -- [blockscout](https://explorer.eluv.io) - -## Additional Information - -- **Official Website**: https://eluv.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/elux-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/elux-chain.mdx deleted file mode 100644 index 9988f288ba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elux-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Elux Chain - ELUX Blockchain Network -description: Explore Elux Chain, a blockchain network with chain ID 2907. Learn about its native currency, Elux Chain, and how to interact with the network. ---- - -# Elux Chain - -Elux Chain is a blockchain network with chain ID 2907. - -## Network Details - -- **Chain ID**: 2907 -- **Chain Name**: ELUX -- **Short Name**: ELUX -- **Network ID**: 2907 -- **Currency**: - - **Name**: Elux Chain - - **Symbol**: ELUX - - **Decimals**: 18 - -## RPC URLs - -Elux Chain can be accessed through the following RPC endpoints: - -- https://rpc.eluxscan.com - -## Elux Chain Block Explorers - -- [blockscout](https://eluxscan.com) - -## Additional Information - -- **Official Website**: https://eluxscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/elysium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/elysium-testnet.mdx deleted file mode 100644 index 4ca8c38d67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elysium-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Elysium Testnet - Elysium Blockchain Network -description: Explore Elysium Testnet, a blockchain network with chain ID 1338. Learn about its native currency, LAVA, and how to interact with the network. ---- - -# Elysium Testnet - -Elysium Testnet is a blockchain network with chain ID 1338. - -## Network Details - -- **Chain ID**: 1338 -- **Chain Name**: Elysium -- **Short Name**: ELST -- **Network ID**: 1338 -- **Currency**: - - **Name**: LAVA - - **Symbol**: LAVA - - **Decimals**: 18 - -## RPC URLs - -Elysium Testnet can be accessed through the following RPC endpoints: - -- https://elysium-test-rpc.vulcanforged.com - -## Elysium Testnet Block Explorers - -- [Elysium testnet explorer](https://elysium-explorer.vulcanforged.com) - -## Additional Information - -- **Official Website**: https://elysiumscan.vulcanforged.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Elysium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/elysium.mdx b/docs/pages/solutions/chainlist/non-integrated/elysium.mdx deleted file mode 100644 index b25c5db80a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/elysium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Elysium Mainnet - Elysium Blockchain Network -description: Explore Elysium Mainnet, a blockchain network with chain ID 1339. Learn about its native currency, LAVA, and how to interact with the network. ---- - -# Elysium Mainnet - -Elysium Mainnet is a blockchain network with chain ID 1339. - -## Network Details - -- **Chain ID**: 1339 -- **Chain Name**: Elysium -- **Short Name**: ELSM -- **Network ID**: 1339 -- **Currency**: - - **Name**: LAVA - - **Symbol**: LAVA - - **Decimals**: 18 - -## RPC URLs - -Elysium Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.elysiumchain.tech/ - -## Elysium Mainnet Block Explorers - -- [Elysium mainnet explorer](https://explorer.elysiumchain.tech) - -## Additional Information - -- **Official Website**: https://elysiumscan.vulcanforged.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/emoney-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/emoney-network-testnet.mdx deleted file mode 100644 index 0c7a94d1ff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/emoney-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Emoney Network Testnet - Emoney Blockchain Network -description: Explore Emoney Network Testnet, a blockchain network with chain ID 4544. Learn about its native currency, Emoney Network, and how to interact with the network. ---- - -# Emoney Network Testnet - -Emoney Network Testnet is a blockchain network with chain ID 4544. - -## Network Details - -- **Chain ID**: 4544 -- **Chain Name**: Emoney -- **Short Name**: emoney -- **Network ID**: 4544 -- **Currency**: - - **Name**: Emoney Network - - **Symbol**: EMYC - - **Decimals**: 18 - -## RPC URLs - -Emoney Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet.emoney.network/ - -## Emoney Network Testnet Block Explorers - -- [EMoney ethscan](https://ethscan.emoney.network) - -## Additional Information - -- **Official Website**: https://emoney.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Emoney Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/empire-network.mdx b/docs/pages/solutions/chainlist/non-integrated/empire-network.mdx deleted file mode 100644 index c266feb02e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/empire-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Empire Network - EMPIRE Blockchain Network -description: Explore Empire Network, a blockchain network with chain ID 3693. Learn about its native currency, Empire, and how to interact with the network. ---- - -# Empire Network - -Empire Network is a blockchain network with chain ID 3693. - -## Network Details - -- **Chain ID**: 3693 -- **Chain Name**: EMPIRE -- **Short Name**: empire -- **Network ID**: 3693 -- **Currency**: - - **Name**: Empire - - **Symbol**: EMPIRE - - **Decimals**: 18 - -## RPC URLs - -Empire Network can be accessed through the following RPC endpoints: - -- https://rpc.empirenetwork.io - -## Empire Network Block Explorers - -- [Empire Explorer](https://explorer.empirenetwork.io) - -## Additional Information - -- **Official Website**: https://www.empirenetwork.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/endurance-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/endurance-smart-chain.mdx deleted file mode 100644 index 66ca8d06df..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/endurance-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Endurance Smart Chain Mainnet - ACE Blockchain Network -description: Explore Endurance Smart Chain Mainnet, a blockchain network with chain ID 648. Learn about its native currency, Endurance Chain Native Token, and how to interact with the network. ---- - -# Endurance Smart Chain Mainnet - -Endurance Smart Chain Mainnet is a blockchain network with chain ID 648. - -## Network Details - -- **Chain ID**: 648 -- **Chain Name**: ACE -- **Short Name**: ace -- **Network ID**: 648 -- **Currency**: - - **Name**: Endurance Chain Native Token - - **Symbol**: ACE - - **Decimals**: 18 - -## RPC URLs - -Endurance Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-endurance.fusionist.io/ - -## Endurance Smart Chain Mainnet Block Explorers - -- [Endurance Scan](https://explorer.endurance.fusionist.io) - -## Additional Information - -- **Official Website**: https://ace.fusionist.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/energi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/energi-testnet.mdx deleted file mode 100644 index 62a0429e3a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/energi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Energi Testnet - NRG Blockchain Network -description: Explore Energi Testnet, a blockchain network with chain ID 49797. Learn about its native currency, Energi, and how to interact with the network. ---- - -# Energi Testnet - -Energi Testnet is a blockchain network with chain ID 49797. - -## Network Details - -- **Chain ID**: 49797 -- **Chain Name**: NRG -- **Short Name**: tnrg -- **Network ID**: 49797 -- **Currency**: - - **Name**: Energi - - **Symbol**: NRG - - **Decimals**: 18 - -## RPC URLs - -Energi Testnet can be accessed through the following RPC endpoints: - -- https://nodeapi.test.energi.network - -## Energi Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.energi.world/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Energi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/energi.mdx b/docs/pages/solutions/chainlist/non-integrated/energi.mdx deleted file mode 100644 index ca981aced2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/energi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Energi Mainnet - NRG Blockchain Network -description: Explore Energi Mainnet, a blockchain network with chain ID 39797. Learn about its native currency, Energi, and how to interact with the network. ---- - -# Energi Mainnet - -Energi Mainnet is a blockchain network with chain ID 39797. - -## Network Details - -- **Chain ID**: 39797 -- **Chain Name**: NRG -- **Short Name**: nrg -- **Network ID**: 39797 -- **Currency**: - - **Name**: Energi - - **Symbol**: NRG - - **Decimals**: 18 - -## RPC URLs - -Energi Mainnet can be accessed through the following RPC endpoints: - -- https://nodeapi.energi.network - -## Energi Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.energi.world/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/energy-web-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/energy-web-chain.mdx deleted file mode 100644 index 9dec8c22cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/energy-web-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Energy Web Chain - Energy Web Chain Blockchain Network -description: Explore Energy Web Chain, a blockchain network with chain ID 246. Learn about its native currency, Energy Web Token, and how to interact with the network. ---- - -# Energy Web Chain - -Energy Web Chain is a blockchain network with chain ID 246. - -## Network Details - -- **Chain ID**: 246 -- **Chain Name**: Energy Web Chain -- **Short Name**: ewt -- **Network ID**: 246 -- **Currency**: - - **Name**: Energy Web Token - - **Symbol**: EWT - - **Decimals**: 18 - -## RPC URLs - -Energy Web Chain can be accessed through the following RPC endpoints: - -- https://rpc.energyweb.org -- wss://rpc.energyweb.org/ws - -## Energy Web Chain Block Explorers - -- [blockscout](https://explorer.energyweb.org) - -## Additional Information - -- **Official Website**: https://energyweb.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/energy-web-volta-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/energy-web-volta-testnet.mdx deleted file mode 100644 index bba3827c7e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/energy-web-volta-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Energy Web Volta Testnet - Volta Blockchain Network -description: Explore Energy Web Volta Testnet, a blockchain network with chain ID 73799. Learn about its native currency, Volta Token, and how to interact with the network. ---- - -# Energy Web Volta Testnet - -Energy Web Volta Testnet is a blockchain network with chain ID 73799. - -## Network Details - -- **Chain ID**: 73799 -- **Chain Name**: Volta -- **Short Name**: vt -- **Network ID**: 73799 -- **Currency**: - - **Name**: Volta Token - - **Symbol**: VT - - **Decimals**: 18 - -## RPC URLs - -Energy Web Volta Testnet can be accessed through the following RPC endpoints: - -- https://volta-rpc.energyweb.org -- wss://volta-rpc.energyweb.org/ws - -## Energy Web Volta Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://energyweb.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Energy Web Volta Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/engram-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/engram-testnet.mdx deleted file mode 100644 index 4c2e67c947..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/engram-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Engram Testnet - tGRAM Blockchain Network -description: Explore Engram Testnet, a blockchain network with chain ID 131. Learn about its native currency, Engram Tokio Testnet, and how to interact with the network. ---- - -# Engram Testnet - -Engram Testnet is a blockchain network with chain ID 131. - -## Network Details - -- **Chain ID**: 131 -- **Chain Name**: tGRAM -- **Short Name**: tgram -- **Network ID**: 131 -- **Currency**: - - **Name**: Engram Tokio Testnet - - **Symbol**: tGRAM - - **Decimals**: 18 - -## RPC URLs - -Engram Testnet can be accessed through the following RPC endpoints: - -- https://tokioswift.engram.tech -- https://tokio-archive.engram.tech - -## Engram Testnet Block Explorers - -- [blockscout](https://tokioscan-v2.engram.tech) - -## Additional Information - -- **Official Website**: https://engramnet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Engram Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ennothem-proterozoic.mdx b/docs/pages/solutions/chainlist/non-integrated/ennothem-proterozoic.mdx deleted file mode 100644 index a4f651299b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ennothem-proterozoic.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ennothem Mainnet Proterozoic - ETMP Blockchain Network -description: Explore Ennothem Mainnet Proterozoic, a blockchain network with chain ID 48. Learn about its native currency, Ennothem, and how to interact with the network. ---- - -# Ennothem Mainnet Proterozoic - -Ennothem Mainnet Proterozoic is a blockchain network with chain ID 48. - -## Network Details - -- **Chain ID**: 48 -- **Chain Name**: ETMP -- **Short Name**: etmp -- **Network ID**: 48 -- **Currency**: - - **Name**: Ennothem - - **Symbol**: ETMP - - **Decimals**: 18 - -## RPC URLs - -Ennothem Mainnet Proterozoic can be accessed through the following RPC endpoints: - -- https://rpc.etm.network - -## Ennothem Mainnet Proterozoic Block Explorers - -- [etmpscan](https://etmscan.network) - -## Additional Information - -- **Official Website**: https://etm.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ennothem-testnet-pioneer.mdx b/docs/pages/solutions/chainlist/non-integrated/ennothem-testnet-pioneer.mdx deleted file mode 100644 index 1ae29945b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ennothem-testnet-pioneer.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ennothem Testnet Pioneer - ETMP Blockchain Network -description: Explore Ennothem Testnet Pioneer, a blockchain network with chain ID 49. Learn about its native currency, Ennothem, and how to interact with the network. ---- - -# Ennothem Testnet Pioneer - -Ennothem Testnet Pioneer is a blockchain network with chain ID 49. - -## Network Details - -- **Chain ID**: 49 -- **Chain Name**: ETMP -- **Short Name**: etmpTest -- **Network ID**: 49 -- **Currency**: - - **Name**: Ennothem - - **Symbol**: ETMP - - **Decimals**: 18 - -## RPC URLs - -Ennothem Testnet Pioneer can be accessed through the following RPC endpoints: - -- https://rpc.pioneer.etm.network - -## Ennothem Testnet Pioneer Block Explorers - -- [etmp](https://pioneer.etmscan.network) - -## Additional Information - -- **Official Website**: https://etm.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ennothem Testnet Pioneer Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/entangle-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/entangle-testnet.mdx deleted file mode 100644 index 38c8df65f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/entangle-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Entangle Testnet - NGL Blockchain Network -description: Explore Entangle Testnet, a blockchain network with chain ID 33133. Learn about its native currency, Entangle, and how to interact with the network. ---- - -# Entangle Testnet - -Entangle Testnet is a blockchain network with chain ID 33133. - -## Network Details - -- **Chain ID**: 33133 -- **Chain Name**: NGL -- **Short Name**: tngl -- **Network ID**: 33133 -- **Currency**: - - **Name**: Entangle - - **Symbol**: NGL - - **Decimals**: 18 - -## RPC URLs - -Entangle Testnet can be accessed through the following RPC endpoints: - -- https://evm-testnet.entangle.fi - -## Entangle Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.entangle.fi - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Entangle Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/entangle.mdx b/docs/pages/solutions/chainlist/non-integrated/entangle.mdx deleted file mode 100644 index f908f838fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/entangle.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Entangle Mainnet - NGL Blockchain Network -description: Explore Entangle Mainnet, a blockchain network with chain ID 33033. Learn about its native currency, Entangle, and how to interact with the network. ---- - -# Entangle Mainnet - -Entangle Mainnet is a blockchain network with chain ID 33033. - -## Network Details - -- **Chain ID**: 33033 -- **Chain Name**: NGL -- **Short Name**: ngl -- **Network ID**: 33033 -- **Currency**: - - **Name**: Entangle - - **Symbol**: NGL - - **Decimals**: 18 - -## RPC URLs - -Entangle Mainnet can be accessed through the following RPC endpoints: - -- https://json-rpc.entangle.fi - -## Entangle Mainnet Block Explorers - -- [Entangle Mainnet Explorer](https://explorer.entangle.fi) - -## Additional Information - -- **Official Website**: https://www.entangle.fi - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/enterchain.mdx b/docs/pages/solutions/chainlist/non-integrated/enterchain.mdx deleted file mode 100644 index 370db4e0f8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/enterchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EnterChain Mainnet - ENTER Blockchain Network -description: Explore EnterChain Mainnet, a blockchain network with chain ID 1214. Learn about its native currency, EnterCoin, and how to interact with the network. ---- - -# EnterChain Mainnet - -EnterChain Mainnet is a blockchain network with chain ID 1214. - -## Network Details - -- **Chain ID**: 1214 -- **Chain Name**: ENTER -- **Short Name**: enter -- **Network ID**: 1214 -- **Currency**: - - **Name**: EnterCoin - - **Symbol**: ENTER - - **Decimals**: 18 - -## RPC URLs - -EnterChain Mainnet can be accessed through the following RPC endpoints: - -- https://tapi.entercoin.net/ - -## EnterChain Mainnet Block Explorers - -- [Enter Explorer - Expenter](https://explorer.entercoin.net) - -## Additional Information - -- **Official Website**: https://entercoin.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/enuls-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/enuls-testnet.mdx deleted file mode 100644 index c1b0cc9edc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/enuls-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: ENULS Testnet - ENULS Blockchain Network -description: Explore ENULS Testnet, a blockchain network with chain ID 120. Learn about its native currency, NULS, and how to interact with the network. ---- - -# ENULS Testnet - -ENULS Testnet is a blockchain network with chain ID 120. - -## Network Details - -- **Chain ID**: 120 -- **Chain Name**: ENULS -- **Short Name**: enulst -- **Network ID**: 120 -- **Currency**: - - **Name**: NULS - - **Symbol**: NULS - - **Decimals**: 18 - -## RPC URLs - -ENULS Testnet can be accessed through the following RPC endpoints: - -- https://beta.evmapi.nuls.io -- https://beta.evmapi2.nuls.io - -## ENULS Testnet Block Explorers - -- [enulsscan](https://beta.evmscan.nuls.io) - -## Additional Information - -- **Official Website**: https://nuls.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ENULS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/enuls.mdx b/docs/pages/solutions/chainlist/non-integrated/enuls.mdx deleted file mode 100644 index 81f693af76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/enuls.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ENULS Mainnet - ENULS Blockchain Network -description: Explore ENULS Mainnet, a blockchain network with chain ID 119. Learn about its native currency, NULS, and how to interact with the network. ---- - -# ENULS Mainnet - -ENULS Mainnet is a blockchain network with chain ID 119. - -## Network Details - -- **Chain ID**: 119 -- **Chain Name**: ENULS -- **Short Name**: enuls -- **Network ID**: 119 -- **Currency**: - - **Name**: NULS - - **Symbol**: NULS - - **Decimals**: 18 - -## RPC URLs - -ENULS Mainnet can be accessed through the following RPC endpoints: - -- https://evmapi.nuls.io -- https://evmapi2.nuls.io - -## ENULS Mainnet Block Explorers - -- [enulsscan](https://evmscan.nuls.io) - -## Additional Information - -- **Official Website**: https://nuls.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eos-evm-legacy.mdx b/docs/pages/solutions/chainlist/non-integrated/eos-evm-legacy.mdx deleted file mode 100644 index e65078673d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eos-evm-legacy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EOS EVM Legacy - EOS Blockchain Network -description: Explore EOS EVM Legacy, a blockchain network with chain ID 59. Learn about its native currency, EOS, and how to interact with the network. ---- - -# EOS EVM Legacy - -EOS EVM Legacy is a blockchain network with chain ID 59. - -## Network Details - -- **Chain ID**: 59 -- **Chain Name**: EOS -- **Short Name**: eos-legacy -- **Network ID**: 59 -- **Currency**: - - **Name**: EOS - - **Symbol**: EOS - - **Decimals**: 18 - -## RPC URLs - -EOS EVM Legacy can be accessed through the following RPC endpoints: - -- https://api.eosargentina.io - -## EOS EVM Legacy Block Explorers - - - -## Additional Information - -- **Official Website**: https://eosargentina.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eos-evm-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eos-evm-network-testnet.mdx deleted file mode 100644 index d36c428bbc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eos-evm-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EOS EVM Network Testnet - EOS Blockchain Network -description: Explore EOS EVM Network Testnet, a blockchain network with chain ID 15557. Learn about its native currency, EOS, and how to interact with the network. ---- - -# EOS EVM Network Testnet - -EOS EVM Network Testnet is a blockchain network with chain ID 15557. - -## Network Details - -- **Chain ID**: 15557 -- **Chain Name**: EOS -- **Short Name**: eos-testnet -- **Network ID**: 15557 -- **Currency**: - - **Name**: EOS - - **Symbol**: EOS - - **Decimals**: 18 - -## RPC URLs - -EOS EVM Network Testnet can be accessed through the following RPC endpoints: - -- https://api.testnet.evm.eosnetwork.com - -## EOS EVM Network Testnet Block Explorers - -- [EOS EVM Explorer](https://explorer.testnet.evm.eosnetwork.com) - -## Additional Information - -- **Official Website**: https://eosnetwork.com/eos-evm - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EOS EVM Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eos-evm-network.mdx b/docs/pages/solutions/chainlist/non-integrated/eos-evm-network.mdx deleted file mode 100644 index 502754560e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eos-evm-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EOS EVM Network - EOS Blockchain Network -description: Explore EOS EVM Network, a blockchain network with chain ID 17777. Learn about its native currency, EOS, and how to interact with the network. ---- - -# EOS EVM Network - -EOS EVM Network is a blockchain network with chain ID 17777. - -## Network Details - -- **Chain ID**: 17777 -- **Chain Name**: EOS -- **Short Name**: eos -- **Network ID**: 17777 -- **Currency**: - - **Name**: EOS - - **Symbol**: EOS - - **Decimals**: 18 - -## RPC URLs - -EOS EVM Network can be accessed through the following RPC endpoints: - -- https://api.evm.eosnetwork.com - -## EOS EVM Network Block Explorers - -- [EOS EVM Explorer](https://explorer.evm.eosnetwork.com) - -## Additional Information - -- **Official Website**: https://eosnetwork.com/eos-evm - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eram.mdx b/docs/pages/solutions/chainlist/non-integrated/eram.mdx deleted file mode 100644 index 62d3da37d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eram.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ERAM Mainnet - ERAM Blockchain Network -description: Explore ERAM Mainnet, a blockchain network with chain ID 721529. Learn about its native currency, ERAM, and how to interact with the network. ---- - -# ERAM Mainnet - -ERAM Mainnet is a blockchain network with chain ID 721529. - -## Network Details - -- **Chain ID**: 721529 -- **Chain Name**: ERAM -- **Short Name**: ERAM -- **Network ID**: 721529 -- **Currency**: - - **Name**: ERAM - - **Symbol**: ERAM - - **Decimals**: 18 - -## RPC URLs - -ERAM Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.eramscan.com - -## ERAM Mainnet Block Explorers - -- [Eramscan](https://eramscan.com) - -## Additional Information - -- **Official Website**: http://doc.eramscan.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eraswap.mdx b/docs/pages/solutions/chainlist/non-integrated/eraswap.mdx deleted file mode 100644 index 239f1dc5c3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eraswap.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: EraSwap Mainnet - ESN Blockchain Network -description: Explore EraSwap Mainnet, a blockchain network with chain ID 5197. Learn about its native currency, EraSwap, and how to interact with the network. ---- - -# EraSwap Mainnet - -EraSwap Mainnet is a blockchain network with chain ID 5197. - -## Network Details - -- **Chain ID**: 5197 -- **Chain Name**: ESN -- **Short Name**: es -- **Network ID**: 5197 -- **Currency**: - - **Name**: EraSwap - - **Symbol**: ES - - **Decimals**: 18 - -## RPC URLs - -EraSwap Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.eraswap.network -- https://rpc-mumbai.mainnet.eraswap.network - -## EraSwap Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://eraswap.info/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/espento.mdx b/docs/pages/solutions/chainlist/non-integrated/espento.mdx deleted file mode 100644 index 186e908313..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/espento.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Espento Mainnet - SPENT Blockchain Network -description: Explore Espento Mainnet, a blockchain network with chain ID 9911. Learn about its native currency, ESPENTO, and how to interact with the network. ---- - -# Espento Mainnet - -Espento Mainnet is a blockchain network with chain ID 9911. - -## Network Details - -- **Chain ID**: 9911 -- **Chain Name**: SPENT -- **Short Name**: spent -- **Network ID**: 9911 -- **Currency**: - - **Name**: ESPENTO - - **Symbol**: SPENT - - **Decimals**: 18 - -## RPC URLs - -Espento Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.escscan.com/ - -## Espento Mainnet Block Explorers - -- [escscan](https://escscan.com) - -## Additional Information - -- **Official Website**: https://espento.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eternal.mdx b/docs/pages/solutions/chainlist/non-integrated/eternal.mdx deleted file mode 100644 index e13f866e43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eternal.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Eternal Mainnet - Eter Blockchain Network -description: Explore Eternal Mainnet, a blockchain network with chain ID 140. Learn about its native currency, Eternal, and how to interact with the network. ---- - -# Eternal Mainnet - -Eternal Mainnet is a blockchain network with chain ID 140. - -## Network Details - -- **Chain ID**: 140 -- **Chain Name**: Eter -- **Short Name**: Eter -- **Network ID**: 140 -- **Currency**: - - **Name**: Eternal - - **Symbol**: Eter - - **Decimals**: 18 - -## RPC URLs - -Eternal Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.eternalcoin.io/v1 -- ws://mainnet.eternalcoin.io/v1/ws - -## Eternal Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://eternalcoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethereum-classic.mdx b/docs/pages/solutions/chainlist/non-integrated/ethereum-classic.mdx deleted file mode 100644 index e3b74077d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethereum-classic.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Ethereum Classic - ETC Blockchain Network -description: Explore Ethereum Classic, a blockchain network with chain ID 61. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ethereum Classic - -Ethereum Classic is a blockchain network with chain ID 61. - -## Network Details - -- **Chain ID**: 61 -- **Chain Name**: ETC -- **Short Name**: etc -- **Network ID**: 61 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETC - - **Decimals**: 18 - -## RPC URLs - -Ethereum Classic can be accessed through the following RPC endpoints: - -- https://etc.rivet.link -- https://besu-at.etc-network.info -- https://geth-at.etc-network.info -- https://etc.etcdesktop.com -- https://etc.mytokenpocket.vip - -## Ethereum Classic Block Explorers - -- [etcnetworkinfo-blockscout-ethereum-classic](https://explorer-blockscout.etc-network.info) -- [etcnetworkinfo-alethio-ethereum-classic](https://explorer-alethio.etc-network.info) -- [etcnetworkinfo-expedition-ethereum-classic](https://explorer-expedition.etc-network.info) -- [hebeblock-ethereum-classic](https://etcerscan.com) -- [oklink-ethereum-classic](https://www.oklink.com/etc) -- [tokenview-ethereum-classic](https://etc.tokenview.io) - -## Additional Information - -- **Official Website**: https://ethereumclassic.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethereum-inscription.mdx b/docs/pages/solutions/chainlist/non-integrated/ethereum-inscription.mdx deleted file mode 100644 index 1932380b0c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethereum-inscription.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ethereum Inscription Mainnet - ETINS Blockchain Network -description: Explore Ethereum Inscription Mainnet, a blockchain network with chain ID 1617. Learn about its native currency, Ethereum Inscription, and how to interact with the network. ---- - -# Ethereum Inscription Mainnet - -Ethereum Inscription Mainnet is a blockchain network with chain ID 1617. - -## Network Details - -- **Chain ID**: 1617 -- **Chain Name**: ETINS -- **Short Name**: etins -- **Network ID**: 1617 -- **Currency**: - - **Name**: Ethereum Inscription - - **Symbol**: ETINS - - **Decimals**: 18 - -## RPC URLs - -Ethereum Inscription Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.etins.org - -## Ethereum Inscription Mainnet Block Explorers - -- [Ethereum Inscription Explorer](https://explorer.etins.org) - -## Additional Information - -- **Official Website**: https://www.etins.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethergem.mdx b/docs/pages/solutions/chainlist/non-integrated/ethergem.mdx deleted file mode 100644 index 4faab276f8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethergem.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EtherGem - EGEM Blockchain Network -description: Explore EtherGem, a blockchain network with chain ID 1987. Learn about its native currency, EtherGem Ether, and how to interact with the network. ---- - -# EtherGem - -EtherGem is a blockchain network with chain ID 1987. - -## Network Details - -- **Chain ID**: 1987 -- **Chain Name**: EGEM -- **Short Name**: egem -- **Network ID**: 1987 -- **Currency**: - - **Name**: EtherGem Ether - - **Symbol**: EGEM - - **Decimals**: 18 - -## RPC URLs - -EtherGem can be accessed through the following RPC endpoints: - -- https://jsonrpc.egem.io/custom - -## EtherGem Block Explorers - - - -## Additional Information - -- **Official Website**: https://egem.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/etherinc.mdx b/docs/pages/solutions/chainlist/non-integrated/etherinc.mdx deleted file mode 100644 index a024b20982..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etherinc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EtherInc - ETI Blockchain Network -description: Explore EtherInc, a blockchain network with chain ID 101. Learn about its native currency, EtherInc Ether, and how to interact with the network. ---- - -# EtherInc - -EtherInc is a blockchain network with chain ID 101. - -## Network Details - -- **Chain ID**: 101 -- **Chain Name**: ETI -- **Short Name**: eti -- **Network ID**: 101 -- **Currency**: - - **Name**: EtherInc Ether - - **Symbol**: ETI - - **Decimals**: 18 - -## RPC URLs - -EtherInc can be accessed through the following RPC endpoints: - -- https://api.einc.io/jsonrpc/mainnet - -## EtherInc Block Explorers - - - -## Additional Information - -- **Official Website**: https://einc.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/etherlink-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/etherlink-testnet.mdx deleted file mode 100644 index e029793eb1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etherlink-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Etherlink Testnet - Etherlink Blockchain Network -description: Explore Etherlink Testnet, a blockchain network with chain ID 128123. Learn about its native currency, tez, and how to interact with the network. ---- - -# Etherlink Testnet - -Etherlink Testnet is a blockchain network with chain ID 128123. - -## Network Details - -- **Chain ID**: 128123 -- **Chain Name**: Etherlink -- **Short Name**: etlt -- **Network ID**: 128123 -- **Currency**: - - **Name**: tez - - **Symbol**: XTZ - - **Decimals**: 18 - -## RPC URLs - -Etherlink Testnet can be accessed through the following RPC endpoints: - -- https://node.ghostnet.etherlink.com - -## Etherlink Testnet Block Explorers - -- [Etherlink Testnet Explorer](https://testnet-explorer.etherlink.com) - -## Additional Information - -- **Official Website**: https://etherlink.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Etherlink Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/etherlink.mdx b/docs/pages/solutions/chainlist/non-integrated/etherlink.mdx deleted file mode 100644 index e6c0599579..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etherlink.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Etherlink Mainnet - Etherlink Blockchain Network -description: Explore Etherlink Mainnet, a blockchain network with chain ID 42793. Learn about its native currency, tez, and how to interact with the network. ---- - -# Etherlink Mainnet - -Etherlink Mainnet is a blockchain network with chain ID 42793. - -## Network Details - -- **Chain ID**: 42793 -- **Chain Name**: Etherlink -- **Short Name**: etlk -- **Network ID**: 42793 -- **Currency**: - - **Name**: tez - - **Symbol**: XTZ - - **Decimals**: 18 - -## RPC URLs - -Etherlink Mainnet can be accessed through the following RPC endpoints: - -- https://node.mainnet.etherlink.com -- https://etherlink-mainnet-pub-l5p9tu.zeeve.net/rpc - -## Etherlink Mainnet Block Explorers - -- [Etherlink Explorer](https://explorer.etherlink.com) - -## Additional Information - -- **Official Website**: https://etherlink.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethersocial-network.mdx b/docs/pages/solutions/chainlist/non-integrated/ethersocial-network.mdx deleted file mode 100644 index 355f1f0239..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethersocial-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ethersocial Network - ESN Blockchain Network -description: Explore Ethersocial Network, a blockchain network with chain ID 31102. Learn about its native currency, Ethersocial Network Ether, and how to interact with the network. ---- - -# Ethersocial Network - -Ethersocial Network is a blockchain network with chain ID 31102. - -## Network Details - -- **Chain ID**: 31102 -- **Chain Name**: ESN -- **Short Name**: esn -- **Network ID**: 31102 -- **Currency**: - - **Name**: Ethersocial Network Ether - - **Symbol**: ESN - - **Decimals**: 18 - -## RPC URLs - -Ethersocial Network can be accessed through the following RPC endpoints: - -- https://api.esn.gonspool.com - -## Ethersocial Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethersocial.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/etho-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/etho-protocol.mdx deleted file mode 100644 index 92c09232bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etho-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Etho Protocol - ETHO Blockchain Network -description: Explore Etho Protocol, a blockchain network with chain ID 1313114. Learn about its native currency, Etho Protocol, and how to interact with the network. ---- - -# Etho Protocol - -Etho Protocol is a blockchain network with chain ID 1313114. - -## Network Details - -- **Chain ID**: 1313114 -- **Chain Name**: ETHO -- **Short Name**: etho -- **Network ID**: 1313114 -- **Currency**: - - **Name**: Etho Protocol - - **Symbol**: ETHO - - **Decimals**: 18 - -## RPC URLs - -Etho Protocol can be accessed through the following RPC endpoints: - -- https://rpc.ethoprotocol.com - -## Etho Protocol Block Explorers - -- [blockscout](https://explorer.ethoprotocol.com) - -## Additional Information - -- **Official Website**: https://ethoprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethstorage-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ethstorage-testnet.mdx deleted file mode 100644 index 7ebb6e6e2b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethstorage-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EthStorage Testnet - EthStorage Blockchain Network -description: Explore EthStorage Testnet, a blockchain network with chain ID 3333. Learn about its native currency, Ether, and how to interact with the network. ---- - -# EthStorage Testnet - -EthStorage Testnet is a blockchain network with chain ID 3333. - -## Network Details - -- **Chain ID**: 3333 -- **Chain Name**: EthStorage -- **Short Name**: es-t -- **Network ID**: 3333 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -EthStorage Testnet can be accessed through the following RPC endpoints: - -- http://testnet.ethstorage.io:9540 - -## EthStorage Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethstorage.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EthStorage Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethstorage.mdx b/docs/pages/solutions/chainlist/non-integrated/ethstorage.mdx deleted file mode 100644 index 1f2ccd0418..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethstorage.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EthStorage Mainnet - EthStorage Blockchain Network -description: Explore EthStorage Mainnet, a blockchain network with chain ID 3335. Learn about its native currency, Ether, and how to interact with the network. ---- - -# EthStorage Mainnet - -EthStorage Mainnet is a blockchain network with chain ID 3335. - -## Network Details - -- **Chain ID**: 3335 -- **Chain Name**: EthStorage -- **Short Name**: es-m -- **Network ID**: 3335 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -EthStorage Mainnet can be accessed through the following RPC endpoints: - -- http://mainnet.ethstorage.io:9540 - -## EthStorage Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethstorage.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethxy-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ethxy-testnet.mdx deleted file mode 100644 index 7512c7b3f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethxy-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EthXY Testnet - EthXY Blockchain Network -description: Explore EthXY Testnet, a blockchain network with chain ID 979. Learn about its native currency, Settled EthXY Token, and how to interact with the network. ---- - -# EthXY Testnet - -EthXY Testnet is a blockchain network with chain ID 979. - -## Network Details - -- **Chain ID**: 979 -- **Chain Name**: EthXY -- **Short Name**: sexyTestnet -- **Network ID**: 979 -- **Currency**: - - **Name**: Settled EthXY Token - - **Symbol**: SEXY - - **Decimals**: 18 - -## RPC URLs - -EthXY Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.ethxy.com - -## EthXY Testnet Block Explorers - -- [EthXY Testnet Network Explorer](https://explorer.testnet.ethxy.com) - -## Additional Information - -- **Official Website**: https://ethxy.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EthXY Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ethxy.mdx b/docs/pages/solutions/chainlist/non-integrated/ethxy.mdx deleted file mode 100644 index c644e074d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ethxy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EthXY - EthXY Blockchain Network -description: Explore EthXY, a blockchain network with chain ID 969. Learn about its native currency, Settled EthXY Token, and how to interact with the network. ---- - -# EthXY - -EthXY is a blockchain network with chain ID 969. - -## Network Details - -- **Chain ID**: 969 -- **Chain Name**: EthXY -- **Short Name**: sexy -- **Network ID**: 969 -- **Currency**: - - **Name**: Settled EthXY Token - - **Symbol**: SEXY - - **Decimals**: 18 - -## RPC URLs - -EthXY can be accessed through the following RPC endpoints: - -- https://rpc.ethxy.com - -## EthXY Block Explorers - -- [EthXY Network Explorer](https://explorer.ethxy.com) - -## Additional Information - -- **Official Website**: https://ethxy.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/etica.mdx b/docs/pages/solutions/chainlist/non-integrated/etica.mdx deleted file mode 100644 index 3e6173ecdf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etica.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Etica Mainnet - Etica Protocol (ETI/EGAZ) Blockchain Network -description: Explore Etica Mainnet, a blockchain network with chain ID 61803. Learn about its native currency, EGAZ, and how to interact with the network. ---- - -# Etica Mainnet - -Etica Mainnet is a blockchain network with chain ID 61803. - -## Network Details - -- **Chain ID**: 61803 -- **Chain Name**: Etica Protocol (ETI/EGAZ) -- **Short Name**: Etica -- **Network ID**: 61803 -- **Currency**: - - **Name**: EGAZ - - **Symbol**: EGAZ - - **Decimals**: 18 - -## RPC URLs - -Etica Mainnet can be accessed through the following RPC endpoints: - -- https://eticamainnet.eticascan.org -- https://eticamainnet.eticaprotocol.org - -## Etica Mainnet Block Explorers - -- [eticascan](https://eticascan.org) -- [eticastats](http://explorer.etica-stats.org) - -## Additional Information - -- **Official Website**: https://eticaprotocol.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/etnd-chain-s.mdx b/docs/pages/solutions/chainlist/non-integrated/etnd-chain-s.mdx deleted file mode 100644 index d8fe5d728d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/etnd-chain-s.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ETND Chain Mainnets - ETND Blockchain Network -description: Explore ETND Chain Mainnets, a blockchain network with chain ID 131419. Learn about its native currency, ETND, and how to interact with the network. ---- - -# ETND Chain Mainnets - -ETND Chain Mainnets is a blockchain network with chain ID 131419. - -## Network Details - -- **Chain ID**: 131419 -- **Chain Name**: ETND -- **Short Name**: ETND -- **Network ID**: 131419 -- **Currency**: - - **Name**: ETND - - **Symbol**: ETND - - **Decimals**: 18 - -## RPC URLs - -ETND Chain Mainnets can be accessed through the following RPC endpoints: - -- https://rpc.node1.etnd.pro/ - -## ETND Chain Mainnets Block Explorers - -- [etndscan](https://scan.etnd.pro) - -## Additional Information - -- **Official Website**: https://www.etnd.pro - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/eun-kyu's.mdx b/docs/pages/solutions/chainlist/non-integrated/eun-kyu's.mdx deleted file mode 100644 index 6fb417966b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eun-kyu's.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Eun Kyu's - Avalanche Blockchain Network -description: Explore Eun Kyu's, a blockchain network with chain ID 87566. Learn about its native currency, Eun Kyu's Token, and how to interact with the network. ---- - -# Eun Kyu's - -Eun Kyu's is a blockchain network with chain ID 87566. - -## Network Details - -- **Chain ID**: 87566 -- **Chain Name**: Avalanche -- **Short Name**: Eun Kyu's -- **Network ID**: 87566 -- **Currency**: - - **Name**: Eun Kyu's Token - - **Symbol**: EKY - - **Decimals**: 18 - -## RPC URLs - -Eun Kyu's can be accessed through the following RPC endpoints: - -- https://testnet-eunkyu-w0354.avax-test.network/ext/bc/2EWNDiAUH6WLaJ4zbbjzqRgJjAqygtwPh6zKTsNRK7DaSCEn9e/rpc?token=737d2a8644ac84c1f04ff511430c2b1e1ac5924b803776f93ad665289df5a7c3 - -## Eun Kyu's Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eun Kyu's Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eurus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/eurus-testnet.mdx deleted file mode 100644 index 7722e5a72f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eurus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Eurus Testnet - EUN Blockchain Network -description: Explore Eurus Testnet, a blockchain network with chain ID 1984. Learn about its native currency, Eurus, and how to interact with the network. ---- - -# Eurus Testnet - -Eurus Testnet is a blockchain network with chain ID 1984. - -## Network Details - -- **Chain ID**: 1984 -- **Chain Name**: EUN -- **Short Name**: euntest -- **Network ID**: 1984 -- **Currency**: - - **Name**: Eurus - - **Symbol**: EUN - - **Decimals**: 18 - -## RPC URLs - -Eurus Testnet can be accessed through the following RPC endpoints: - -- https://testnet.eurus.network - -## Eurus Testnet Block Explorers - -- [testnetexplorer](https://testnetexplorer.eurus.network) - -## Additional Information - -- **Official Website**: https://eurus.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Eurus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/eurus.mdx b/docs/pages/solutions/chainlist/non-integrated/eurus.mdx deleted file mode 100644 index 8b7039443d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/eurus.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Eurus Mainnet - EUN Blockchain Network -description: Explore Eurus Mainnet, a blockchain network with chain ID 1008. Learn about its native currency, Eurus, and how to interact with the network. ---- - -# Eurus Mainnet - -Eurus Mainnet is a blockchain network with chain ID 1008. - -## Network Details - -- **Chain ID**: 1008 -- **Chain Name**: EUN -- **Short Name**: eun -- **Network ID**: 1008 -- **Currency**: - - **Name**: Eurus - - **Symbol**: EUN - - **Decimals**: 18 - -## RPC URLs - -Eurus Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.eurus.network/ - -## Eurus Mainnet Block Explorers - -- [eurusexplorer](https://explorer.eurus.network) - -## Additional Information - -- **Official Website**: https://eurus.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evanesco-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/evanesco-testnet.mdx deleted file mode 100644 index f11b7688e4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evanesco-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Evanesco Testnet - Evanesco Testnet Blockchain Network -description: Explore Evanesco Testnet, a blockchain network with chain ID 1201. Learn about its native currency, AVIS, and how to interact with the network. ---- - -# Evanesco Testnet - -Evanesco Testnet is a blockchain network with chain ID 1201. - -## Network Details - -- **Chain ID**: 1201 -- **Chain Name**: Evanesco Testnet -- **Short Name**: avis -- **Network ID**: 1201 -- **Currency**: - - **Name**: AVIS - - **Symbol**: AVIS - - **Decimals**: 18 - -## RPC URLs - -Evanesco Testnet can be accessed through the following RPC endpoints: - -- https://seed5.evanesco.org:8547 - -## Evanesco Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://evanesco.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Evanesco Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/evanesco.mdx b/docs/pages/solutions/chainlist/non-integrated/evanesco.mdx deleted file mode 100644 index 6d96909cfb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evanesco.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Evanesco Mainnet - EVA Blockchain Network -description: Explore Evanesco Mainnet, a blockchain network with chain ID 2213. Learn about its native currency, EVA, and how to interact with the network. ---- - -# Evanesco Mainnet - -Evanesco Mainnet is a blockchain network with chain ID 2213. - -## Network Details - -- **Chain ID**: 2213 -- **Chain Name**: EVA -- **Short Name**: evanesco -- **Network ID**: 2213 -- **Currency**: - - **Name**: EVA - - **Symbol**: EVA - - **Decimals**: 18 - -## RPC URLs - -Evanesco Mainnet can be accessed through the following RPC endpoints: - -- https://seed4.evanesco.org:8546 - -## Evanesco Mainnet Block Explorers - -- [Evanesco Explorer](https://explorer.evanesco.org) - -## Additional Information - -- **Official Website**: https://evanesco.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evm-on-flow.mdx b/docs/pages/solutions/chainlist/non-integrated/evm-on-flow.mdx deleted file mode 100644 index 0e8c46cfbd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evm-on-flow.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Previewnet - Flow Blockchain Network -description: Explore Previewnet, a blockchain network with chain ID 646. Learn about its native currency, FLOW, and how to interact with the network. ---- - -# Previewnet - -Previewnet is a blockchain network with chain ID 646. - -## Network Details - -- **Chain ID**: 646 -- **Chain Name**: Flow -- **Short Name**: flow-previewnet -- **Network ID**: 646 -- **Currency**: - - **Name**: FLOW - - **Symbol**: FLOW - - **Decimals**: 18 - -## RPC URLs - -Previewnet can be accessed through the following RPC endpoints: - -- https://previewnet.evm.nodes.onflow.org - -## Previewnet Block Explorers - -- [EVM on Flow Block Explorer (PreviewNet)](https://eth.flowscan.io) - -## Additional Information - -- **Official Website**: https://developers.flow.com/evm/about - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evmos-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/evmos-testnet.mdx deleted file mode 100644 index 237f3da70a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evmos-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Evmos Testnet - Evmos Blockchain Network -description: Explore Evmos Testnet, a blockchain network with chain ID 9000. Learn about its native currency, test-Evmos, and how to interact with the network. ---- - -# Evmos Testnet - -Evmos Testnet is a blockchain network with chain ID 9000. - -## Network Details - -- **Chain ID**: 9000 -- **Chain Name**: Evmos -- **Short Name**: evmos-testnet -- **Network ID**: 9000 -- **Currency**: - - **Name**: test-Evmos - - **Symbol**: tEVMOS - - **Decimals**: 18 - -## RPC URLs - -Evmos Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Evmos Testnet Block Explorers - -- [Evmos Explorer (Escan)](https://testnet.escan.live) - -## Additional Information - -- **Official Website**: https://evmos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Evmos Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/evmos.mdx b/docs/pages/solutions/chainlist/non-integrated/evmos.mdx deleted file mode 100644 index d137428304..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evmos.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Evmos - Evmos Blockchain Network -description: Explore Evmos, a blockchain network with chain ID 9001. Learn about its native currency, Evmos, and how to interact with the network. ---- - -# Evmos - -Evmos is a blockchain network with chain ID 9001. - -## Network Details - -- **Chain ID**: 9001 -- **Chain Name**: Evmos -- **Short Name**: evmos -- **Network ID**: 9001 -- **Currency**: - - **Name**: Evmos - - **Symbol**: EVMOS - - **Decimals**: 18 - -## RPC URLs - -Evmos can be accessed through the following RPC endpoints: - -- https://evmos.lava.build -- wss://evmos.lava.build/websocket -- https://evmos-evm-rpc.publicnode.com -- wss://evmos-evm-rpc.publicnode.com - -## Evmos Block Explorers - -- [Evmos Explorer (Escan)](https://escan.live) - -## Additional Information - -- **Official Website**: https://evmos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evoke-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/evoke-testnet.mdx deleted file mode 100644 index 92492359cd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evoke-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Evoke Testnet - Evoke Blockchain Network -description: Explore Evoke Testnet, a blockchain network with chain ID 31414. Learn about its native currency, MTHN Testnet, and how to interact with the network. ---- - -# Evoke Testnet - -Evoke Testnet is a blockchain network with chain ID 31414. - -## Network Details - -- **Chain ID**: 31414 -- **Chain Name**: Evoke -- **Short Name**: tmthn -- **Network ID**: 31414 -- **Currency**: - - **Name**: MTHN Testnet - - **Symbol**: MTHN - - **Decimals**: 18 - -## RPC URLs - -Evoke Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.evokescan.org - -## Evoke Testnet Block Explorers - -- [Evoke SmartChain Testnet Explorer](https://testnet-explorer.evokescan.org) - -## Additional Information - -- **Official Website**: https://testnet-explorer.evokescan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Evoke Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/evoke.mdx b/docs/pages/solutions/chainlist/non-integrated/evoke.mdx deleted file mode 100644 index 963e03b16b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evoke.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Evoke Mainnet - MTHN Blockchain Network -description: Explore Evoke Mainnet, a blockchain network with chain ID 9395. Learn about its native currency, MTHN, and how to interact with the network. ---- - -# Evoke Mainnet - -Evoke Mainnet is a blockchain network with chain ID 9395. - -## Network Details - -- **Chain ID**: 9395 -- **Chain Name**: MTHN -- **Short Name**: MTHN -- **Network ID**: 9395 -- **Currency**: - - **Name**: MTHN - - **Symbol**: MTHN - - **Decimals**: 18 - -## RPC URLs - -Evoke Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.evokescan.org - -## Evoke Mainnet Block Explorers - -- [Evoke SmartChain Explorer](https://explorer.evokescan.org) - -## Additional Information - -- **Official Website**: https://explorer.evokescan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evolve-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/evolve-testnet.mdx deleted file mode 100644 index 17db2385b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evolve-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EVOLVE Testnet - EVO Blockchain Network -description: Explore EVOLVE Testnet, a blockchain network with chain ID 14324. Learn about its native currency, Evolve, and how to interact with the network. ---- - -# EVOLVE Testnet - -EVOLVE Testnet is a blockchain network with chain ID 14324. - -## Network Details - -- **Chain ID**: 14324 -- **Chain Name**: EVO -- **Short Name**: evo -- **Network ID**: 14324 -- **Currency**: - - **Name**: Evolve - - **Symbol**: EVO - - **Decimals**: 18 - -## RPC URLs - -EVOLVE Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.evolveblockchain.io - -## EVOLVE Testnet Block Explorers - -- [Evolve Testnet Explorer](https://testnet.evolveblockchain.io) - -## Additional Information - -- **Official Website**: https://evolveblockchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EVOLVE Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/evolve.mdx b/docs/pages/solutions/chainlist/non-integrated/evolve.mdx deleted file mode 100644 index 53ac0b278e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evolve.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EVOLVE Mainnet - EVO Blockchain Network -description: Explore EVOLVE Mainnet, a blockchain network with chain ID 3424. Learn about its native currency, Evolve, and how to interact with the network. ---- - -# EVOLVE Mainnet - -EVOLVE Mainnet is a blockchain network with chain ID 3424. - -## Network Details - -- **Chain ID**: 3424 -- **Chain Name**: EVO -- **Short Name**: EVOm -- **Network ID**: 3424 -- **Currency**: - - **Name**: Evolve - - **Symbol**: EVO - - **Decimals**: 18 - -## RPC URLs - -EVOLVE Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.evolveblockchain.io - -## EVOLVE Mainnet Block Explorers - -- [Evolve Mainnet Explorer](https://evoexplorer.com) - -## Additional Information - -- **Official Website**: https://evolveblockchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/evrice-network.mdx b/docs/pages/solutions/chainlist/non-integrated/evrice-network.mdx deleted file mode 100644 index 030e6fc605..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/evrice-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Evrice Network - EVC Blockchain Network -description: Explore Evrice Network, a blockchain network with chain ID 1010. Learn about its native currency, Evrice, and how to interact with the network. ---- - -# Evrice Network - -Evrice Network is a blockchain network with chain ID 1010. - -## Network Details - -- **Chain ID**: 1010 -- **Chain Name**: EVC -- **Short Name**: EVC -- **Network ID**: 1010 -- **Currency**: - - **Name**: Evrice - - **Symbol**: EVC - - **Decimals**: 18 - -## RPC URLs - -Evrice Network can be accessed through the following RPC endpoints: - -- https://meta.evrice.com - -## Evrice Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://evrice.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/example-l1.mdx b/docs/pages/solutions/chainlist/non-integrated/example-l1.mdx deleted file mode 100644 index ebf43c8b5c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/example-l1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Example L1 - Avalanche Blockchain Network -description: Explore Example L1, a blockchain network with chain ID 92554. Learn about its native currency, Example L1 Token, and how to interact with the network. ---- - -# Example L1 - -Example L1 is a blockchain network with chain ID 92554. - -## Network Details - -- **Chain ID**: 92554 -- **Chain Name**: Avalanche -- **Short Name**: Example L1 -- **Network ID**: 92554 -- **Currency**: - - **Name**: Example L1 Token - - **Symbol**: QAU - - **Decimals**: 18 - -## RPC URLs - -Example L1 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## Example L1 Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Example L1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/excelon.mdx b/docs/pages/solutions/chainlist/non-integrated/excelon.mdx deleted file mode 100644 index c8137548b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/excelon.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Excelon Mainnet - XLON Blockchain Network -description: Explore Excelon Mainnet, a blockchain network with chain ID 22052002. Learn about its native currency, Excelon, and how to interact with the network. ---- - -# Excelon Mainnet - -Excelon Mainnet is a blockchain network with chain ID 22052002. - -## Network Details - -- **Chain ID**: 22052002 -- **Chain Name**: XLON -- **Short Name**: xlon -- **Network ID**: 22052002 -- **Currency**: - - **Name**: Excelon - - **Symbol**: xlon - - **Decimals**: 18 - -## RPC URLs - -Excelon Mainnet can be accessed through the following RPC endpoints: - -- https://edgewallet1.xlon.org/ - -## Excelon Mainnet Block Explorers - -- [Excelon explorer](https://explorer.excelon.io) - -## Additional Information - -- **Official Website**: https://xlon.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/excoincial-chain-volta-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/excoincial-chain-volta-testnet.mdx deleted file mode 100644 index d471a2bbef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/excoincial-chain-volta-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Excoincial Chain Volta-Testnet - TEXL Blockchain Network -description: Explore Excoincial Chain Volta-Testnet, a blockchain network with chain ID 27082017. Learn about its native currency, TExlcoin, and how to interact with the network. ---- - -# Excoincial Chain Volta-Testnet - -Excoincial Chain Volta-Testnet is a blockchain network with chain ID 27082017. - -## Network Details - -- **Chain ID**: 27082017 -- **Chain Name**: TEXL -- **Short Name**: exlvolta -- **Network ID**: 27082017 -- **Currency**: - - **Name**: TExlcoin - - **Symbol**: TEXL - - **Decimals**: 18 - -## RPC URLs - -Excoincial Chain Volta-Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.exlscan.com - -## Excoincial Chain Volta-Testnet Block Explorers - -- [exlscan](https://testnet-explorer.exlscan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Excoincial Chain Volta-Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/excoincial-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/excoincial-chain.mdx deleted file mode 100644 index ff84d08585..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/excoincial-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Excoincial Chain Mainnet - EXL Blockchain Network -description: Explore Excoincial Chain Mainnet, a blockchain network with chain ID 27082022. Learn about its native currency, Exlcoin, and how to interact with the network. ---- - -# Excoincial Chain Mainnet - -Excoincial Chain Mainnet is a blockchain network with chain ID 27082022. - -## Network Details - -- **Chain ID**: 27082022 -- **Chain Name**: EXL -- **Short Name**: exl -- **Network ID**: 27082022 -- **Currency**: - - **Name**: Exlcoin - - **Symbol**: EXL - - **Decimals**: 18 - -## RPC URLs - -Excoincial Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.exlscan.com - -## Excoincial Chain Mainnet Block Explorers - -- [exlscan](https://exlscan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/exosama-network.mdx b/docs/pages/solutions/chainlist/non-integrated/exosama-network.mdx deleted file mode 100644 index f30da1c138..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/exosama-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Exosama Network - EXN Blockchain Network -description: Explore Exosama Network, a blockchain network with chain ID 2109. Learn about its native currency, Sama Token, and how to interact with the network. ---- - -# Exosama Network - -Exosama Network is a blockchain network with chain ID 2109. - -## Network Details - -- **Chain ID**: 2109 -- **Chain Name**: EXN -- **Short Name**: exn -- **Network ID**: 2109 -- **Currency**: - - **Name**: Sama Token - - **Symbol**: SAMA - - **Decimals**: 18 - -## RPC URLs - -Exosama Network can be accessed through the following RPC endpoints: - -- https://rpc.exosama.com -- wss://rpc.exosama.com - -## Exosama Network Block Explorers - -- [blockscout](https://explorer.exosama.com) - -## Additional Information - -- **Official Website**: https://moonsama.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/expanse-network.mdx b/docs/pages/solutions/chainlist/non-integrated/expanse-network.mdx deleted file mode 100644 index 93ce14d4f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/expanse-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Expanse Network - EXP Blockchain Network -description: Explore Expanse Network, a blockchain network with chain ID 2. Learn about its native currency, Expanse Network Ether, and how to interact with the network. ---- - -# Expanse Network - -Expanse Network is a blockchain network with chain ID 2. - -## Network Details - -- **Chain ID**: 2 -- **Chain Name**: EXP -- **Short Name**: exp -- **Network ID**: 2 -- **Currency**: - - **Name**: Expanse Network Ether - - **Symbol**: EXP - - **Decimals**: 18 - -## RPC URLs - -Expanse Network can be accessed through the following RPC endpoints: - -- https://node.expanse.tech - -## Expanse Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://expanse.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/exr0314-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/exr0314-testnet.mdx deleted file mode 100644 index aebb0e3d49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/exr0314-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EXR0314 Testnet - Avalanche Blockchain Network -description: Explore EXR0314 Testnet, a blockchain network with chain ID 65044. Learn about its native currency, EXR0314 Testnet Token, and how to interact with the network. ---- - -# EXR0314 Testnet - -EXR0314 Testnet is a blockchain network with chain ID 65044. - -## Network Details - -- **Chain ID**: 65044 -- **Chain Name**: Avalanche -- **Short Name**: EXR0314 Testnet -- **Network ID**: 65044 -- **Currency**: - - **Name**: EXR0314 Testnet Token - - **Symbol**: BPR - - **Decimals**: 18 - -## RPC URLs - -EXR0314 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## EXR0314 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EXR0314 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/exzo-network.mdx b/docs/pages/solutions/chainlist/non-integrated/exzo-network.mdx deleted file mode 100644 index 525ce748cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/exzo-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Exzo Network Mainnet - EXZO Blockchain Network -description: Explore Exzo Network Mainnet, a blockchain network with chain ID 1229. Learn about its native currency, Exzo, and how to interact with the network. ---- - -# Exzo Network Mainnet - -Exzo Network Mainnet is a blockchain network with chain ID 1229. - -## Network Details - -- **Chain ID**: 1229 -- **Chain Name**: EXZO -- **Short Name**: xzo -- **Network ID**: 1229 -- **Currency**: - - **Name**: Exzo - - **Symbol**: XZO - - **Decimals**: 18 - -## RPC URLs - -Exzo Network Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.exzo.technology - -## Exzo Network Mainnet Block Explorers - -- [blockscout](https://exzoscan.io) - -## Additional Information - -- **Official Website**: https://exzo.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain-testnet.mdx deleted file mode 100644 index bf581d47bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: EZChain C-Chain Testnet - EZC Blockchain Network -description: Explore EZChain C-Chain Testnet, a blockchain network with chain ID 2613. Learn about its native currency, EZChain, and how to interact with the network. ---- - -# EZChain C-Chain Testnet - -EZChain C-Chain Testnet is a blockchain network with chain ID 2613. - -## Network Details - -- **Chain ID**: 2613 -- **Chain Name**: EZC -- **Short Name**: Fuji-EZChain -- **Network ID**: 2613 -- **Currency**: - - **Name**: EZChain - - **Symbol**: EZC - - **Decimals**: 18 - -## RPC URLs - -EZChain C-Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-api.ezchain.com/ext/bc/C/rpc - -## EZChain C-Chain Testnet Block Explorers - -- [ezchain](https://testnet-cchain-explorer.ezchain.com) - -## Additional Information - -- **Official Website**: https://ezchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## EZChain C-Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain.mdx deleted file mode 100644 index c35ca30725..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ezchain-c-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: EZChain C-Chain Mainnet - EZC Blockchain Network -description: Explore EZChain C-Chain Mainnet, a blockchain network with chain ID 2612. Learn about its native currency, EZChain, and how to interact with the network. ---- - -# EZChain C-Chain Mainnet - -EZChain C-Chain Mainnet is a blockchain network with chain ID 2612. - -## Network Details - -- **Chain ID**: 2612 -- **Chain Name**: EZC -- **Short Name**: EZChain -- **Network ID**: 2612 -- **Currency**: - - **Name**: EZChain - - **Symbol**: EZC - - **Decimals**: 18 - -## RPC URLs - -EZChain C-Chain Mainnet can be accessed through the following RPC endpoints: - -- https://api.ezchain.com/ext/bc/C/rpc - -## EZChain C-Chain Mainnet Block Explorers - -- [ezchain](https://cchain-explorer.ezchain.com) - -## Additional Information - -- **Official Website**: https://ezchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/f(x)core-network.mdx b/docs/pages/solutions/chainlist/non-integrated/f(x)core-network.mdx deleted file mode 100644 index 80a5b4b423..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/f(x)core-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: F(x)Core Mainnet Network - Fxcore Blockchain Network -description: Explore F(x)Core Mainnet Network, a blockchain network with chain ID 530. Learn about its native currency, Function X, and how to interact with the network. ---- - -# F(x)Core Mainnet Network - -F(x)Core Mainnet Network is a blockchain network with chain ID 530. - -## Network Details - -- **Chain ID**: 530 -- **Chain Name**: Fxcore -- **Short Name**: FxCore -- **Network ID**: 530 -- **Currency**: - - **Name**: Function X - - **Symbol**: FX - - **Decimals**: 18 - -## RPC URLs - -F(x)Core Mainnet Network can be accessed through the following RPC endpoints: - -- https://fx-json-web3.functionx.io:8545 - -## F(x)Core Mainnet Network Block Explorers - -- [FunctionX Explorer](https://fx-evm.functionx.io) - -## Additional Information - -- **Official Website**: https://functionx.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/f(x)core-testnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/f(x)core-testnet-network.mdx deleted file mode 100644 index d7dc4010a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/f(x)core-testnet-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: F(x)Core Testnet Network - Fxcore Blockchain Network -description: Explore F(x)Core Testnet Network, a blockchain network with chain ID 90001. Learn about its native currency, Function X, and how to interact with the network. ---- - -# F(x)Core Testnet Network - -F(x)Core Testnet Network is a blockchain network with chain ID 90001. - -## Network Details - -- **Chain ID**: 90001 -- **Chain Name**: Fxcore -- **Short Name**: dhobyghaut -- **Network ID**: 90001 -- **Currency**: - - **Name**: Function X - - **Symbol**: FX - - **Decimals**: 18 - -## RPC URLs - -F(x)Core Testnet Network can be accessed through the following RPC endpoints: - -- https://testnet-fx-json-web3.functionx.io:8545 - -## F(x)Core Testnet Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://functionx.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## F(x)Core Testnet Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/factory-127.mdx b/docs/pages/solutions/chainlist/non-integrated/factory-127.mdx deleted file mode 100644 index 4866b2c772..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/factory-127.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Factory 127 Mainnet - FETH Blockchain Network -description: Explore Factory 127 Mainnet, a blockchain network with chain ID 127. Learn about its native currency, Factory 127 Token, and how to interact with the network. ---- - -# Factory 127 Mainnet - -Factory 127 Mainnet is a blockchain network with chain ID 127. - -## Network Details - -- **Chain ID**: 127 -- **Chain Name**: FETH -- **Short Name**: feth -- **Network ID**: 127 -- **Currency**: - - **Name**: Factory 127 Token - - **Symbol**: FETH - - **Decimals**: 18 - -## RPC URLs - -Factory 127 Mainnet can be accessed through the following RPC endpoints: - - - -## Factory 127 Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.factory127.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fantasia-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/fantasia-chain.mdx deleted file mode 100644 index eaa763188d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fantasia-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Fantasia Chain Mainnet - FSC Blockchain Network -description: Explore Fantasia Chain Mainnet, a blockchain network with chain ID 868. Learn about its native currency, FST, and how to interact with the network. ---- - -# Fantasia Chain Mainnet - -Fantasia Chain Mainnet is a blockchain network with chain ID 868. - -## Network Details - -- **Chain ID**: 868 -- **Chain Name**: FSC -- **Short Name**: FSCMainnet -- **Network ID**: 868 -- **Currency**: - - **Name**: FST - - **Symbol**: FST - - **Decimals**: 18 - -## RPC URLs - -Fantasia Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-data1.fantasiachain.com/ -- https://mainnet-data2.fantasiachain.com/ -- https://mainnet-data3.fantasiachain.com/ - -## Fantasia Chain Mainnet Block Explorers - -- [FSCScan](https://explorer.fantasiachain.com) - -## Additional Information - -- **Official Website**: https://fantasiachain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fantom-sonic-builders-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fantom-sonic-builders-testnet.mdx deleted file mode 100644 index 5d7d923414..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fantom-sonic-builders-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fantom Sonic Builders Testnet - FTM Blockchain Network -description: Explore Fantom Sonic Builders Testnet, a blockchain network with chain ID 64165. Learn about its native currency, Fantom, and how to interact with the network. ---- - -# Fantom Sonic Builders Testnet - -Fantom Sonic Builders Testnet is a blockchain network with chain ID 64165. - -## Network Details - -- **Chain ID**: 64165 -- **Chain Name**: FTM -- **Short Name**: FantomTestnet -- **Network ID**: 64165 -- **Currency**: - - **Name**: Fantom - - **Symbol**: FTM - - **Decimals**: 18 - -## RPC URLs - -Fantom Sonic Builders Testnet can be accessed through the following RPC endpoints: - -- https://rpc.sonic.fantom.network/ - -## Fantom Sonic Builders Testnet Block Explorers - -- [Fantom Sonic Builders Testnet](https://sonicscan.io/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fantom Sonic Builders Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fantom-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fantom-testnet.mdx deleted file mode 100644 index c4a848508e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fantom-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Fantom Testnet - FTM Blockchain Network -description: Explore Fantom Testnet, a blockchain network with chain ID 4002. Learn about its native currency, Fantom, and how to interact with the network. ---- - -# Fantom Testnet - -Fantom Testnet is a blockchain network with chain ID 4002. - -## Network Details - -- **Chain ID**: 4002 -- **Chain Name**: FTM -- **Short Name**: tftm -- **Network ID**: 4002 -- **Currency**: - - **Name**: Fantom - - **Symbol**: FTM - - **Decimals**: 18 - -## RPC URLs - -Fantom Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Fantom Testnet Block Explorers - -- [ftmscan](https://testnet.ftmscan.com) - -## Additional Information - -- **Official Website**: https://docs.fantom.foundation/quick-start/short-guide#fantom-testnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fantom Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fantom.mdx b/docs/pages/solutions/chainlist/non-integrated/fantom.mdx deleted file mode 100644 index ece75c4e91..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fantom.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Fantom Opera - FTM Blockchain Network -description: Explore Fantom Opera, a blockchain network with chain ID 250. Learn about its native currency, Fantom, and how to interact with the network. ---- - -# Fantom Opera - -Fantom Opera is a blockchain network with chain ID 250. - -## Network Details - -- **Chain ID**: 250 -- **Chain Name**: FTM -- **Short Name**: ftm -- **Network ID**: 250 -- **Currency**: - - **Name**: Fantom - - **Symbol**: FTM - - **Decimals**: 18 - -## RPC URLs - -Fantom Opera can be accessed through the following RPC endpoints: - -- https://rpc.ftm.tools -- https://fantom-rpc.publicnode.com -- wss://fantom-rpc.publicnode.com -- https://fantom.drpc.org -- wss://fantom.drpc.org - -## Fantom Opera Block Explorers - -- [ftmscan](https://ftmscan.com) -- [dexguru](https://fantom.dex.guru) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fastex-chain-(bahamut)-oasis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fastex-chain-(bahamut)-oasis-testnet.mdx deleted file mode 100644 index 6e0d87b2f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fastex-chain-(bahamut)-oasis-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fastex Chain (Bahamut) Oasis Testnet - Fastex Chain (Bahamut) Blockchain Network -description: Explore Fastex Chain (Bahamut) Oasis Testnet, a blockchain network with chain ID 4090. Learn about its native currency, FTN, and how to interact with the network. ---- - -# Fastex Chain (Bahamut) Oasis Testnet - -Fastex Chain (Bahamut) Oasis Testnet is a blockchain network with chain ID 4090. - -## Network Details - -- **Chain ID**: 4090 -- **Chain Name**: Fastex Chain (Bahamut) -- **Short Name**: Oasis -- **Network ID**: 4090 -- **Currency**: - - **Name**: FTN - - **Symbol**: FTN - - **Decimals**: 18 - -## RPC URLs - -Fastex Chain (Bahamut) Oasis Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.oasis.bahamutchain.com - -## Fastex Chain (Bahamut) Oasis Testnet Block Explorers - -- [blockscout](https://oasis.ftnscan.com) - -## Additional Information - -- **Official Website**: https://fastexchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fastex Chain (Bahamut) Oasis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fastex-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fastex-chain-testnet.mdx deleted file mode 100644 index 6ac1e23f1c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fastex-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fastex Chain testnet - FTN Blockchain Network -description: Explore Fastex Chain testnet, a blockchain network with chain ID 424242. Learn about its native currency, FTN, and how to interact with the network. ---- - -# Fastex Chain testnet - -Fastex Chain testnet is a blockchain network with chain ID 424242. - -## Network Details - -- **Chain ID**: 424242 -- **Chain Name**: FTN -- **Short Name**: fastexTestnet -- **Network ID**: 424242 -- **Currency**: - - **Name**: FTN - - **Symbol**: FTN - - **Decimals**: 18 - -## RPC URLs - -Fastex Chain testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.fastexchain.com - -## Fastex Chain testnet Block Explorers - -- [blockscout](https://testnet.ftnscan.com) - -## Additional Information - -- **Official Website**: https://fastex.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fastex Chain testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ferrum-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ferrum-testnet.mdx deleted file mode 100644 index a4a1162103..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ferrum-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ferrum Testnet - tFRM Blockchain Network -description: Explore Ferrum Testnet, a blockchain network with chain ID 26026. Learn about its native currency, Ferrum, and how to interact with the network. ---- - -# Ferrum Testnet - -Ferrum Testnet is a blockchain network with chain ID 26026. - -## Network Details - -- **Chain ID**: 26026 -- **Chain Name**: tFRM -- **Short Name**: frm -- **Network ID**: 26026 -- **Currency**: - - **Name**: Ferrum - - **Symbol**: tFRM - - **Decimals**: 18 - -## RPC URLs - -Ferrum Testnet can be accessed through the following RPC endpoints: - -- http://testnet.dev.svcs.ferrumnetwork.io:9933 - -## Ferrum Testnet Block Explorers - -- [polkadotjs](https://polkadot.js.org/apps/?rpc=wss%3A%2F%2Ftestnet.dev.svcs.ferrumnetwork.io#/explorer) - -## Additional Information - -- **Official Website**: https://ferrum.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ferrum Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fhenix-helium.mdx b/docs/pages/solutions/chainlist/non-integrated/fhenix-helium.mdx deleted file mode 100644 index ee4eaecc85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fhenix-helium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Fhenix Helium - tFHE Blockchain Network -description: Explore Fhenix Helium, a blockchain network with chain ID 8008135. Learn about its native currency, tFHE, and how to interact with the network. ---- - -# Fhenix Helium - -Fhenix Helium is a blockchain network with chain ID 8008135. - -## Network Details - -- **Chain ID**: 8008135 -- **Chain Name**: tFHE -- **Short Name**: fhe-helium -- **Network ID**: 8008135 -- **Currency**: - - **Name**: tFHE - - **Symbol**: tFHE - - **Decimals**: 18 - -## RPC URLs - -Fhenix Helium can be accessed through the following RPC endpoints: - -- https://api.helium.fhenix.zone - -## Fhenix Helium Block Explorers - -- [Fhenix Helium Explorer (Blockscout)](https://explorer.helium.fhenix.zone) - -## Additional Information - -- **Official Website**: https://www.fhenix.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fibonacci.mdx b/docs/pages/solutions/chainlist/non-integrated/fibonacci.mdx deleted file mode 100644 index 26aa50f907..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fibonacci.mdx +++ /dev/null @@ -1,54 +0,0 @@ ---- -title: Fibonacci Mainnet - FIBO Blockchain Network -description: Explore Fibonacci Mainnet, a blockchain network with chain ID 12306. Learn about its native currency, FIBONACCI UTILITY TOKEN, and how to interact with the network. ---- - -# Fibonacci Mainnet - -Fibonacci Mainnet is a blockchain network with chain ID 12306. - -## Network Details - -- **Chain ID**: 12306 -- **Chain Name**: FIBO -- **Short Name**: fibo -- **Network ID**: 12306 -- **Currency**: - - **Name**: FIBONACCI UTILITY TOKEN - - **Symbol**: FIBO - - **Decimals**: 18 - -## RPC URLs - -Fibonacci Mainnet can be accessed through the following RPC endpoints: - -- https://node1.fibo-api.asia -- https://node2.fibo-api.asia -- https://node3.fibo-api.asia -- https://node4.fibo-api.asia -- https://node5.fibo-api.asia -- https://node6.fibo-api.asia -- https://node7.fibo-api.asia -- https://node1.fibo-rpc.asia -- https://node2.fibo-rpc.asia -- https://node3.fibo-rpc.asia -- https://node4.fibo-rpc.asia -- https://node5.fibo-rpc.asia -- https://node6.fibo-rpc.asia -- https://node7.fibo-rpc.asia - -## Fibonacci Mainnet Block Explorers - -- [fiboscan](https://scan.fibochain.org) - -## Additional Information - -- **Official Website**: https://fibochain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fibonacci Mainnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin---butterfly-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin---butterfly-testnet.mdx deleted file mode 100644 index d6e955ae62..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin---butterfly-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Filecoin - Butterfly testnet - FIL Blockchain Network -description: Explore Filecoin - Butterfly testnet, a blockchain network with chain ID 3141592. Learn about its native currency, testnet filecoin, and how to interact with the network. ---- - -# Filecoin - Butterfly testnet - -Filecoin - Butterfly testnet is a blockchain network with chain ID 3141592. - -## Network Details - -- **Chain ID**: 3141592 -- **Chain Name**: FIL -- **Short Name**: filecoin-butterfly -- **Network ID**: 3141592 -- **Currency**: - - **Name**: testnet filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Butterfly testnet can be accessed through the following RPC endpoints: - - - -## Filecoin - Butterfly testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://filecoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filecoin - Butterfly testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin---calibration-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin---calibration-testnet.mdx deleted file mode 100644 index acfb62d05e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin---calibration-testnet.mdx +++ /dev/null @@ -1,51 +0,0 @@ ---- -title: Filecoin - Calibration testnet - FIL Blockchain Network -description: Explore Filecoin - Calibration testnet, a blockchain network with chain ID 314159. Learn about its native currency, testnet filecoin, and how to interact with the network. ---- - -# Filecoin - Calibration testnet - -Filecoin - Calibration testnet is a blockchain network with chain ID 314159. - -## Network Details - -- **Chain ID**: 314159 -- **Chain Name**: FIL -- **Short Name**: filecoin-calibration -- **Network ID**: 314159 -- **Currency**: - - **Name**: testnet filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Calibration testnet can be accessed through the following RPC endpoints: - -- 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 - -## Filecoin - Calibration testnet Block Explorers - -- [Filscan - Calibration](https://calibration.filscan.io) -- [Filscout - Calibration](https://calibration.filscout.com/en) -- [Filfox - Calibration](https://calibration.filfox.info) -- [Glif Explorer - Calibration](https://explorer.glif.io/?network=calibration) -- [Beryx](https://beryx.zondax.ch) - -## Additional Information - -- **Official Website**: https://filecoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filecoin - Calibration testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin---hyperspace-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin---hyperspace-testnet.mdx deleted file mode 100644 index 8fca05aacd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin---hyperspace-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Filecoin - Hyperspace testnet - FIL Blockchain Network -description: Explore Filecoin - Hyperspace testnet, a blockchain network with chain ID 3141. Learn about its native currency, testnet filecoin, and how to interact with the network. ---- - -# Filecoin - Hyperspace testnet - -Filecoin - Hyperspace testnet is a blockchain network with chain ID 3141. - -## Network Details - -- **Chain ID**: 3141 -- **Chain Name**: FIL -- **Short Name**: filecoin-hyperspace -- **Network ID**: 3141 -- **Currency**: - - **Name**: testnet filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Hyperspace testnet can be accessed through the following RPC endpoints: - - - -## Filecoin - Hyperspace testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://filecoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filecoin - Hyperspace testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin---local-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin---local-testnet.mdx deleted file mode 100644 index ed87d29e0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin---local-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Filecoin - Local testnet - FIL Blockchain Network -description: Explore Filecoin - Local testnet, a blockchain network with chain ID 31415926. Learn about its native currency, testnet filecoin, and how to interact with the network. ---- - -# Filecoin - Local testnet - -Filecoin - Local testnet is a blockchain network with chain ID 31415926. - -## Network Details - -- **Chain ID**: 31415926 -- **Chain Name**: FIL -- **Short Name**: filecoin-local -- **Network ID**: 31415926 -- **Currency**: - - **Name**: testnet filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Local testnet can be accessed through the following RPC endpoints: - - - -## Filecoin - Local testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://filecoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filecoin - Local testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin---wallaby-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin---wallaby-testnet.mdx deleted file mode 100644 index f1b6247959..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin---wallaby-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Filecoin - Wallaby testnet - FIL Blockchain Network -description: Explore Filecoin - Wallaby testnet, a blockchain network with chain ID 31415. Learn about its native currency, testnet filecoin, and how to interact with the network. ---- - -# Filecoin - Wallaby testnet - -Filecoin - Wallaby testnet is a blockchain network with chain ID 31415. - -## Network Details - -- **Chain ID**: 31415 -- **Chain Name**: FIL -- **Short Name**: filecoin-wallaby -- **Network ID**: 31415 -- **Currency**: - - **Name**: testnet filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Wallaby testnet can be accessed through the following RPC endpoints: - - - -## Filecoin - Wallaby testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://filecoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filecoin - Wallaby testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filecoin.mdx b/docs/pages/solutions/chainlist/non-integrated/filecoin.mdx deleted file mode 100644 index df2f0d94d7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filecoin.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Filecoin - Mainnet - FIL Blockchain Network -description: Explore Filecoin - Mainnet, a blockchain network with chain ID 314. Learn about its native currency, filecoin, and how to interact with the network. ---- - -# Filecoin - Mainnet - -Filecoin - Mainnet is a blockchain network with chain ID 314. - -## Network Details - -- **Chain ID**: 314 -- **Chain Name**: FIL -- **Short Name**: filecoin -- **Network ID**: 314 -- **Currency**: - - **Name**: filecoin - - **Symbol**: FIL - - **Decimals**: 18 - -## RPC URLs - -Filecoin - Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Filecoin - Mainnet Block Explorers - -- [Filfox](https://filfox.info/en) -- [Beryx](https://beryx.zondax.ch) -- [Glif Explorer](https://explorer.glif.io) -- [Dev.storage](https://dev.storage) -- [Filscan](https://filscan.io) -- [Filscout](https://filscout.io/en) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/filefilego.mdx b/docs/pages/solutions/chainlist/non-integrated/filefilego.mdx deleted file mode 100644 index f15976b9ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filefilego.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: FileFileGo - FFG Blockchain Network -description: Explore FileFileGo, a blockchain network with chain ID 191. Learn about its native currency, FFG, and how to interact with the network. ---- - -# FileFileGo - -FileFileGo is a blockchain network with chain ID 191. - -## Network Details - -- **Chain ID**: 191 -- **Chain Name**: FFG -- **Short Name**: ffg -- **Network ID**: 191 -- **Currency**: - - **Name**: FFG - - **Symbol**: FFG - - **Decimals**: 18 - -## RPC URLs - -FileFileGo can be accessed through the following RPC endpoints: - -- https://rpc.filefilego.com/rpc - -## FileFileGo Block Explorers - - - -## Additional Information - -- **Official Website**: https://filefilego.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/filenova-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/filenova-testnet.mdx deleted file mode 100644 index 9b3cd4a1d2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filenova-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Filenova Testnet - Filenova Blockchain Network -description: Explore Filenova Testnet, a blockchain network with chain ID 5675. Learn about its native currency, Test Filecoin, and how to interact with the network. ---- - -# Filenova Testnet - -Filenova Testnet is a blockchain network with chain ID 5675. - -## Network Details - -- **Chain ID**: 5675 -- **Chain Name**: Filenova -- **Short Name**: tfilenova -- **Network ID**: 5675 -- **Currency**: - - **Name**: Test Filecoin - - **Symbol**: tFIL - - **Decimals**: 18 - -## RPC URLs - -Filenova Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.filenova.org - -## Filenova Testnet Block Explorers - -- [filenova testnet explorer](https://scantest.filenova.org) - -## Additional Information - -- **Official Website**: https://filenova.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Filenova Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/filenova.mdx b/docs/pages/solutions/chainlist/non-integrated/filenova.mdx deleted file mode 100644 index 7d81c6c8ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/filenova.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Filenova Mainnet - Filenova Blockchain Network -description: Explore Filenova Mainnet, a blockchain network with chain ID 579. Learn about its native currency, Filecoin, and how to interact with the network. ---- - -# Filenova Mainnet - -Filenova Mainnet is a blockchain network with chain ID 579. - -## Network Details - -- **Chain ID**: 579 -- **Chain Name**: Filenova -- **Short Name**: filenova -- **Network ID**: 579 -- **Currency**: - - **Name**: Filecoin - - **Symbol**: FIL - - **Decimals**: 18 - -## RPC URLs - -Filenova Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.filenova.org - -## Filenova Mainnet Block Explorers - -- [filenova explorer](https://scan.filenova.org) - -## Additional Information - -- **Official Website**: https://filenova.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/findora-forge.mdx b/docs/pages/solutions/chainlist/non-integrated/findora-forge.mdx deleted file mode 100644 index 6cd0c761d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/findora-forge.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Findora Forge - Testnet-forge Blockchain Network -description: Explore Findora Forge, a blockchain network with chain ID 2154. Learn about its native currency, FRA, and how to interact with the network. ---- - -# Findora Forge - -Findora Forge is a blockchain network with chain ID 2154. - -## Network Details - -- **Chain ID**: 2154 -- **Chain Name**: Testnet-forge -- **Short Name**: findora-forge -- **Network ID**: 2154 -- **Currency**: - - **Name**: FRA - - **Symbol**: FRA - - **Decimals**: 18 - -## RPC URLs - -Findora Forge can be accessed through the following RPC endpoints: - -- https://prod-forge.prod.findora.org:8545/ - -## Findora Forge Block Explorers - -- [findorascan](https://testnet-forge.evm.findorascan.io) - -## Additional Information - -- **Official Website**: https://findora.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Findora Forge Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/findora-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/findora-testnet.mdx deleted file mode 100644 index 8d4a9d92f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/findora-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Findora Testnet - Testnet-anvil Blockchain Network -description: Explore Findora Testnet, a blockchain network with chain ID 2153. Learn about its native currency, FRA, and how to interact with the network. ---- - -# Findora Testnet - -Findora Testnet is a blockchain network with chain ID 2153. - -## Network Details - -- **Chain ID**: 2153 -- **Chain Name**: Testnet-anvil -- **Short Name**: findora-testnet -- **Network ID**: 2153 -- **Currency**: - - **Name**: FRA - - **Symbol**: FRA - - **Decimals**: 18 - -## RPC URLs - -Findora Testnet can be accessed through the following RPC endpoints: - -- https://prod-testnet.prod.findora.org:8545/ - -## Findora Testnet Block Explorers - -- [findorascan](https://testnet-anvil.evm.findorascan.io) - -## Additional Information - -- **Official Website**: https://findora.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Findora Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/findora.mdx b/docs/pages/solutions/chainlist/non-integrated/findora.mdx deleted file mode 100644 index c5db5649b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/findora.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Findora Mainnet - Findora Blockchain Network -description: Explore Findora Mainnet, a blockchain network with chain ID 2152. Learn about its native currency, FRA, and how to interact with the network. ---- - -# Findora Mainnet - -Findora Mainnet is a blockchain network with chain ID 2152. - -## Network Details - -- **Chain ID**: 2152 -- **Chain Name**: Findora -- **Short Name**: fra -- **Network ID**: 2152 -- **Currency**: - - **Name**: FRA - - **Symbol**: FRA - - **Decimals**: 18 - -## RPC URLs - -Findora Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.findora.org - -## Findora Mainnet Block Explorers - -- [findorascan](https://evm.findorascan.io) - -## Additional Information - -- **Official Website**: https://findora.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/firechain-old.mdx b/docs/pages/solutions/chainlist/non-integrated/firechain-old.mdx deleted file mode 100644 index 7a12dae979..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/firechain-old.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Firechain Mainnet Old - FIRE Blockchain Network -description: Explore Firechain Mainnet Old, a blockchain network with chain ID 5290. Learn about its native currency, Firechain, and how to interact with the network. ---- - -# Firechain Mainnet Old - -Firechain Mainnet Old is a blockchain network with chain ID 5290. - -## Network Details - -- **Chain ID**: 5290 -- **Chain Name**: FIRE -- **Short Name**: _old_fire -- **Network ID**: 5290 -- **Currency**: - - **Name**: Firechain - - **Symbol**: FIRE - - **Decimals**: 18 - -## RPC URLs - -Firechain Mainnet Old can be accessed through the following RPC endpoints: - -- https://mainnet.rpc1.thefirechain.com - -## Firechain Mainnet Old Block Explorers - - - -## Additional Information - -- **Official Website**: https://thefirechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm-ghostrider.mdx b/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm-ghostrider.mdx deleted file mode 100644 index e57e01894b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm-ghostrider.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Firechain zkEVM Ghostrider - Firechain Blockchain Network -description: Explore Firechain zkEVM Ghostrider, a blockchain network with chain ID 3885. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Firechain zkEVM Ghostrider - -Firechain zkEVM Ghostrider is a blockchain network with chain ID 3885. - -## Network Details - -- **Chain ID**: 3885 -- **Chain Name**: Firechain -- **Short Name**: firechain-zkEVM-testnet -- **Network ID**: 3885 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Firechain zkEVM Ghostrider can be accessed through the following RPC endpoints: - -- https://rpc-zkevm-ghostrider.thefirechain.com - -## Firechain zkEVM Ghostrider Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.thefirechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Firechain zkEVM Ghostrider Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm.mdx b/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm.mdx deleted file mode 100644 index f67b2348de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/firechain-zkevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Firechain zkEVM - Firechain Blockchain Network -description: Explore Firechain zkEVM, a blockchain network with chain ID 814. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Firechain zkEVM - -Firechain zkEVM is a blockchain network with chain ID 814. - -## Network Details - -- **Chain ID**: 814 -- **Chain Name**: Firechain -- **Short Name**: firechan-zkEVM -- **Network ID**: 814 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Firechain zkEVM can be accessed through the following RPC endpoints: - -- https://rpc-zkevm.thefirechain.com - -## Firechain zkEVM Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.thefirechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/firechain.mdx b/docs/pages/solutions/chainlist/non-integrated/firechain.mdx deleted file mode 100644 index 0a58849935..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/firechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Firechain Mainnet - FIRE Blockchain Network -description: Explore Firechain Mainnet, a blockchain network with chain ID 529. Learn about its native currency, Firechain, and how to interact with the network. ---- - -# Firechain Mainnet - -Firechain Mainnet is a blockchain network with chain ID 529. - -## Network Details - -- **Chain ID**: 529 -- **Chain Name**: FIRE -- **Short Name**: fire -- **Network ID**: 529 -- **Currency**: - - **Name**: Firechain - - **Symbol**: FIRE - - **Decimals**: 18 - -## RPC URLs - -Firechain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.thefirechain.com - -## Firechain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://thefirechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/firenze-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/firenze-test-network.mdx deleted file mode 100644 index 82504f5ae8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/firenze-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Firenze test network - ETH Blockchain Network -description: Explore Firenze test network, a blockchain network with chain ID 78110. Learn about its native currency, Firenze Ether, and how to interact with the network. ---- - -# Firenze test network - -Firenze test network is a blockchain network with chain ID 78110. - -## Network Details - -- **Chain ID**: 78110 -- **Chain Name**: ETH -- **Short Name**: firenze -- **Network ID**: 78110 -- **Currency**: - - **Name**: Firenze Ether - - **Symbol**: FIN - - **Decimals**: 18 - -## RPC URLs - -Firenze test network can be accessed through the following RPC endpoints: - -- https://ethnode.primusmoney.com/firenze - -## Firenze test network Block Explorers - - - -## Additional Information - -- **Official Website**: https://primusmoney.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Firenze test network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fizit.mdx b/docs/pages/solutions/chainlist/non-integrated/fizit.mdx deleted file mode 100644 index 3a07ead962..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fizit.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FIZIT - Avalanche Blockchain Network -description: Explore FIZIT, a blockchain network with chain ID 96040. Learn about its native currency, FIZIT Token, and how to interact with the network. ---- - -# FIZIT - -FIZIT is a blockchain network with chain ID 96040. - -## Network Details - -- **Chain ID**: 96040 -- **Chain Name**: Avalanche -- **Short Name**: FIZIT -- **Network ID**: 96040 -- **Currency**: - - **Name**: FIZIT Token - - **Symbol**: FIZIT - - **Decimals**: 18 - -## RPC URLs - -FIZIT can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/fizit/testnet/rpc - -## FIZIT Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FIZIT Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flachain.mdx b/docs/pages/solutions/chainlist/non-integrated/flachain.mdx deleted file mode 100644 index b54be21aea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flachain Mainnet - FLX Blockchain Network -description: Explore Flachain Mainnet, a blockchain network with chain ID 29032022. Learn about its native currency, Flacoin, and how to interact with the network. ---- - -# Flachain Mainnet - -Flachain Mainnet is a blockchain network with chain ID 29032022. - -## Network Details - -- **Chain ID**: 29032022 -- **Chain Name**: FLX -- **Short Name**: fla -- **Network ID**: 29032022 -- **Currency**: - - **Name**: Flacoin - - **Symbol**: FLA - - **Decimals**: 18 - -## RPC URLs - -Flachain Mainnet can be accessed through the following RPC endpoints: - -- https://flachain.flaexchange.top/ - -## Flachain Mainnet Block Explorers - -- [FLXExplorer](https://explorer.flaexchange.top) - -## Additional Information - -- **Official Website**: https://www.flaexchange.top - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flag-220.mdx b/docs/pages/solutions/chainlist/non-integrated/flag-220.mdx deleted file mode 100644 index e43e2494c2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flag-220.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flag Mainnet - Flag Blockchain Network -description: Explore Flag Mainnet, a blockchain network with chain ID 220. Learn about its native currency, Flag, and how to interact with the network. ---- - -# Flag Mainnet - -Flag Mainnet is a blockchain network with chain ID 220. - -## Network Details - -- **Chain ID**: 220 -- **Chain Name**: Flag -- **Short Name**: Flag -- **Network ID**: 220 -- **Currency**: - - **Name**: Flag - - **Symbol**: Flag - - **Decimals**: 18 - -## RPC URLs - -Flag Mainnet can be accessed through the following RPC endpoints: - - - -## Flag Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flag-testnet-1220.mdx b/docs/pages/solutions/chainlist/non-integrated/flag-testnet-1220.mdx deleted file mode 100644 index 1f74ea6ae8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flag-testnet-1220.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Flag Testnet - 1220 Blockchain Network -description: Explore Flag Testnet, a blockchain network with chain ID 1220. Learn about its native currency, FLAG, and how to interact with the network. ---- - -# Flag Testnet - -Flag Testnet is a blockchain network with chain ID 1220. - -## Network Details - -- **Chain ID**: 1220 -- **Chain Name**: 1220 -- **Short Name**: Flag -- **Network ID**: 1220 -- **Currency**: - - **Name**: FLAG - - **Symbol**: FLAG - - **Decimals**: 18 - -## RPC URLs - -Flag Testnet can be accessed through the following RPC endpoints: - - - -## Flag Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Flag Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flag-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/flag-testnet.mdx deleted file mode 100644 index 9fba69d416..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flag-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Flag Testnet - Flag Blockchain Network -description: Explore Flag Testnet, a blockchain network with chain ID 1147. Learn about its native currency, Flag Testnet, and how to interact with the network. ---- - -# Flag Testnet - -Flag Testnet is a blockchain network with chain ID 1147. - -## Network Details - -- **Chain ID**: 1147 -- **Chain Name**: Flag -- **Short Name**: tFLAG -- **Network ID**: 1147 -- **Currency**: - - **Name**: Flag Testnet - - **Symbol**: FLAG - - **Decimals**: 18 - -## RPC URLs - -Flag Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.flagscan.xyz - -## Flag Testnet Block Explorers - -- [Flag Testnet Explorer](https://testnet-explorer.flagscan.xyz) - -## Additional Information - -- **Official Website**: https://testnet-explorer.flagscan.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Flag Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flag.mdx b/docs/pages/solutions/chainlist/non-integrated/flag.mdx deleted file mode 100644 index e00b02d29f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flag.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flag Mainnet - Flag Blockchain Network -description: Explore Flag Mainnet, a blockchain network with chain ID 147. Learn about its native currency, Flag, and how to interact with the network. ---- - -# Flag Mainnet - -Flag Mainnet is a blockchain network with chain ID 147. - -## Network Details - -- **Chain ID**: 147 -- **Chain Name**: Flag -- **Short Name**: FLAG -- **Network ID**: 147 -- **Currency**: - - **Name**: Flag - - **Symbol**: FLAG - - **Decimals**: 18 - -## RPC URLs - -Flag Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.flagscan.xyz - -## Flag Mainnet Block Explorers - -- [Flag Mainnet Explorer](https://flagscan.xyz) - -## Additional Information - -- **Official Website**: https://flagscan.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flamma-testenet.mdx b/docs/pages/solutions/chainlist/non-integrated/flamma-testenet.mdx deleted file mode 100644 index e0d34afd46..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flamma-testenet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Flamma Testenet - FLA Blockchain Network -description: Explore Flamma Testenet, a blockchain network with chain ID 6550. Learn about its native currency, Flamma, and how to interact with the network. ---- - -# Flamma Testenet - -Flamma Testenet is a blockchain network with chain ID 6550. - -## Network Details - -- **Chain ID**: 6550 -- **Chain Name**: FLA -- **Short Name**: FLA -- **Network ID**: 6550 -- **Currency**: - - **Name**: Flamma - - **Symbol**: FLA - - **Decimals**: 18 - -## RPC URLs - -Flamma Testenet can be accessed through the following RPC endpoints: - -- https://testnetrpc.flamma.network/ - -## Flamma Testenet Block Explorers - -- [FLASCAN](https://testnet.flascan.net/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Flamma Testenet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flamma.mdx b/docs/pages/solutions/chainlist/non-integrated/flamma.mdx deleted file mode 100644 index 835e7446b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flamma.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flamma Mainnet - Flamma Blockchain Network -description: Explore Flamma Mainnet, a blockchain network with chain ID 55614. Learn about its native currency, Flamma, and how to interact with the network. ---- - -# Flamma Mainnet - -Flamma Mainnet is a blockchain network with chain ID 55614. - -## Network Details - -- **Chain ID**: 55614 -- **Chain Name**: Flamma -- **Short Name**: FlammaMainnet -- **Network ID**: 55614 -- **Currency**: - - **Name**: Flamma - - **Symbol**: FLA - - **Decimals**: 18 - -## RPC URLs - -Flamma Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.flamma.network - -## Flamma Mainnet Block Explorers - -- [flascan](https://flascan.net) - -## Additional Information - -- **Official Website**: https://flamma.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flana-mixnet.mdx b/docs/pages/solutions/chainlist/non-integrated/flana-mixnet.mdx deleted file mode 100644 index a90dcaac71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flana-mixnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flana Mixnet - MEER Blockchain Network -description: Explore Flana Mixnet, a blockchain network with chain ID 81352. Learn about its native currency, Flana Mixnet, and how to interact with the network. ---- - -# Flana Mixnet - -Flana Mixnet is a blockchain network with chain ID 81352. - -## Network Details - -- **Chain ID**: 81352 -- **Chain Name**: MEER -- **Short Name**: flanamix -- **Network ID**: 81352 -- **Currency**: - - **Name**: Flana Mixnet - - **Symbol**: MEER-M - - **Decimals**: 18 - -## RPC URLs - -Flana Mixnet can be accessed through the following RPC endpoints: - - - -## Flana Mixnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flana-privnet.mdx b/docs/pages/solutions/chainlist/non-integrated/flana-privnet.mdx deleted file mode 100644 index 809614e1d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flana-privnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flana Privnet - MEER Blockchain Network -description: Explore Flana Privnet, a blockchain network with chain ID 81353. Learn about its native currency, Flana Privnet, and how to interact with the network. ---- - -# Flana Privnet - -Flana Privnet is a blockchain network with chain ID 81353. - -## Network Details - -- **Chain ID**: 81353 -- **Chain Name**: MEER -- **Short Name**: flanapriv -- **Network ID**: 81353 -- **Currency**: - - **Name**: Flana Privnet - - **Symbol**: MEER-P - - **Decimals**: 18 - -## RPC URLs - -Flana Privnet can be accessed through the following RPC endpoints: - - - -## Flana Privnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flana-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/flana-testnet.mdx deleted file mode 100644 index 5570cb06ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flana-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Flana Testnet - MEER Blockchain Network -description: Explore Flana Testnet, a blockchain network with chain ID 81351. Learn about its native currency, Flana Testnet, and how to interact with the network. ---- - -# Flana Testnet - -Flana Testnet is a blockchain network with chain ID 81351. - -## Network Details - -- **Chain ID**: 81351 -- **Chain Name**: MEER -- **Short Name**: flanatest -- **Network ID**: 81351 -- **Currency**: - - **Name**: Flana Testnet - - **Symbol**: MEER-T - - **Decimals**: 18 - -## RPC URLs - -Flana Testnet can be accessed through the following RPC endpoints: - - - -## Flana Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Flana Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flana.mdx b/docs/pages/solutions/chainlist/non-integrated/flana.mdx deleted file mode 100644 index b869e9aada..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flana.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Flana - MEER Blockchain Network -description: Explore Flana, a blockchain network with chain ID 8135. Learn about its native currency, Flana Mainnet, and how to interact with the network. ---- - -# Flana - -Flana is a blockchain network with chain ID 8135. - -## Network Details - -- **Chain ID**: 8135 -- **Chain Name**: MEER -- **Short Name**: flana -- **Network ID**: 8135 -- **Currency**: - - **Name**: Flana Mainnet - - **Symbol**: MEER - - **Decimals**: 18 - -## RPC URLs - -Flana can be accessed through the following RPC endpoints: - - - -## Flana Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/flare-testnet-coston2.mdx b/docs/pages/solutions/chainlist/non-integrated/flare-testnet-coston2.mdx deleted file mode 100644 index e269b2a6bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flare-testnet-coston2.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Flare Testnet Coston2 - FLR Blockchain Network -description: Explore Flare Testnet Coston2, a blockchain network with chain ID 114. Learn about its native currency, Coston2 Flare, and how to interact with the network. ---- - -# Flare Testnet Coston2 - -Flare Testnet Coston2 is a blockchain network with chain ID 114. - -## Network Details - -- **Chain ID**: 114 -- **Chain Name**: FLR -- **Short Name**: c2flr -- **Network ID**: 114 -- **Currency**: - - **Name**: Coston2 Flare - - **Symbol**: C2FLR - - **Decimals**: 18 - -## RPC URLs - -Flare Testnet Coston2 can be accessed through the following RPC endpoints: - -- https://coston2-api.flare.network/ext/C/rpc -- 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 - -## Flare Testnet Coston2 Block Explorers - -- [blockscout](https://coston2-explorer.flare.network) -- [flarescan](https://coston2.testnet.flarescan.com) - -## Additional Information - -- **Official Website**: https://flare.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Flare Testnet Coston2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/flare.mdx b/docs/pages/solutions/chainlist/non-integrated/flare.mdx deleted file mode 100644 index bc9568da74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/flare.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Flare Mainnet - FLR Blockchain Network -description: Explore Flare Mainnet, a blockchain network with chain ID 14. Learn about its native currency, Flare, and how to interact with the network. ---- - -# Flare Mainnet - -Flare Mainnet is a blockchain network with chain ID 14. - -## Network Details - -- **Chain ID**: 14 -- **Chain Name**: FLR -- **Short Name**: flr -- **Network ID**: 14 -- **Currency**: - - **Name**: Flare - - **Symbol**: FLR - - **Decimals**: 18 - -## RPC URLs - -Flare Mainnet can be accessed through the following RPC endpoints: - -- https://flare-api.flare.network/ext/C/rpc -- 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 - -## Flare Mainnet Block Explorers - -- [blockscout](https://flare-explorer.flare.network) -- [flarescan](https://mainnet.flarescan.com) - -## Additional Information - -- **Official Website**: https://flare.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fluence-stage.mdx b/docs/pages/solutions/chainlist/non-integrated/fluence-stage.mdx deleted file mode 100644 index 0262f968ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fluence-stage.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Fluence Stage - Fluence Stage (Testnet) Blockchain Network -description: Explore Fluence Stage, a blockchain network with chain ID 123420000220. Learn about its native currency, tFLT, and how to interact with the network. ---- - -# Fluence Stage - -Fluence Stage is a blockchain network with chain ID 123420000220. - -## Network Details - -- **Chain ID**: 123420000220 -- **Chain Name**: Fluence Stage (Testnet) -- **Short Name**: fluence-stage -- **Network ID**: 123420000220 -- **Currency**: - - **Name**: tFLT - - **Symbol**: tFLT - - **Decimals**: 18 - -## RPC URLs - -Fluence Stage can be accessed through the following RPC endpoints: - -- https://rpc-123420000220.raas-testnet.gelato.digital/ -- wss://ws-123420000220.raas-testnet.gelato.digital/ - -## Fluence Stage Block Explorers - -- [blockscout](https://blockscout-123420000220.raas-testnet.gelato.digital) - -## Additional Information - -- **Official Website**: https://fluence.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fluence Stage Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fncy-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fncy-testnet.mdx deleted file mode 100644 index ba548f1324..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fncy-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FNCY Testnet - FNCY Blockchain Network -description: Explore FNCY Testnet, a blockchain network with chain ID 923018. Learn about its native currency, FNCY, and how to interact with the network. ---- - -# FNCY Testnet - -FNCY Testnet is a blockchain network with chain ID 923018. - -## Network Details - -- **Chain ID**: 923018 -- **Chain Name**: FNCY -- **Short Name**: tFNCY -- **Network ID**: 923018 -- **Currency**: - - **Name**: FNCY - - **Symbol**: FNCY - - **Decimals**: 18 - -## RPC URLs - -FNCY Testnet can be accessed through the following RPC endpoints: - -- https://fncy-testnet-seed.fncy.world - -## FNCY Testnet Block Explorers - -- [fncy scan testnet](https://fncyscan-testnet.fncy.world) - -## Additional Information - -- **Official Website**: https://fncyscan-testnet.fncy.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FNCY Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fncy.mdx b/docs/pages/solutions/chainlist/non-integrated/fncy.mdx deleted file mode 100644 index ba49c384fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fncy.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FNCY - FNCY Blockchain Network -description: Explore FNCY, a blockchain network with chain ID 73. Learn about its native currency, FNCY, and how to interact with the network. ---- - -# FNCY - -FNCY is a blockchain network with chain ID 73. - -## Network Details - -- **Chain ID**: 73 -- **Chain Name**: FNCY -- **Short Name**: FNCY -- **Network ID**: 73 -- **Currency**: - - **Name**: FNCY - - **Symbol**: FNCY - - **Decimals**: 18 - -## RPC URLs - -FNCY can be accessed through the following RPC endpoints: - -- https://fncy-seed1.fncy.world - -## FNCY Block Explorers - -- [fncy scan](https://fncyscan.fncy.world) - -## Additional Information - -- **Official Website**: https://fncyscan.fncy.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FNCY Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/form-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/form-testnet.mdx deleted file mode 100644 index 2333492303..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/form-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Form Testnet - formtestnet Blockchain Network -description: Explore Form Testnet, a blockchain network with chain ID 132902. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Form Testnet - -Form Testnet is a blockchain network with chain ID 132902. - -## Network Details - -- **Chain ID**: 132902 -- **Chain Name**: formtestnet -- **Short Name**: formtestnet -- **Network ID**: 132902 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Form Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.form.network/http -- wss://testnet-rpc.form.network/ws - -## Form Testnet Block Explorers - -- [Form Testnet explorer](https://testnet-explorer.form.network) - -## Additional Information - -- **Official Website**: https://form.network/details - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Form Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/forma-sketchpad.mdx b/docs/pages/solutions/chainlist/non-integrated/forma-sketchpad.mdx deleted file mode 100644 index cb06936e1f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/forma-sketchpad.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Forma Sketchpad - Forma Blockchain Network -description: Explore Forma Sketchpad, a blockchain network with chain ID 984123. Learn about its native currency, TIA, and how to interact with the network. ---- - -# Forma Sketchpad - -Forma Sketchpad is a blockchain network with chain ID 984123. - -## Network Details - -- **Chain ID**: 984123 -- **Chain Name**: Forma -- **Short Name**: sketchpad -- **Network ID**: 984123 -- **Currency**: - - **Name**: TIA - - **Symbol**: TIA - - **Decimals**: 18 - -## RPC URLs - -Forma Sketchpad can be accessed through the following RPC endpoints: - -- https://rpc.sketchpad-1.forma.art - -## Forma Sketchpad Block Explorers - -- [blockscout](https://explorer.sketchpad-1.forma.art) - -## Additional Information - -- **Official Website**: https://forma.art - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/forma.mdx b/docs/pages/solutions/chainlist/non-integrated/forma.mdx deleted file mode 100644 index 763a212c02..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/forma.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Forma - Forma Blockchain Network -description: Explore Forma, a blockchain network with chain ID 984122. Learn about its native currency, TIA, and how to interact with the network. ---- - -# Forma - -Forma is a blockchain network with chain ID 984122. - -## Network Details - -- **Chain ID**: 984122 -- **Chain Name**: Forma -- **Short Name**: forma -- **Network ID**: 984122 -- **Currency**: - - **Name**: TIA - - **Symbol**: TIA - - **Decimals**: 18 - -## RPC URLs - -Forma can be accessed through the following RPC endpoints: - -- https://rpc.forma.art - -## Forma Block Explorers - -- [blockscout](https://explorer.forma.art) - -## Additional Information - -- **Official Website**: https://forma.art - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/found-1-4-23.mdx b/docs/pages/solutions/chainlist/non-integrated/found-1-4-23.mdx deleted file mode 100644 index c37c35fc5d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/found-1-4-23.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Found 1-4-23 - Avalanche Blockchain Network -description: Explore Found 1-4-23, a blockchain network with chain ID 35395. Learn about its native currency, Found 1-4-23 Token, and how to interact with the network. ---- - -# Found 1-4-23 - -Found 1-4-23 is a blockchain network with chain ID 35395. - -## Network Details - -- **Chain ID**: 35395 -- **Chain Name**: Avalanche -- **Short Name**: Found 1-4-23 -- **Network ID**: 35395 -- **Currency**: - - **Name**: Found 1-4-23 Token - - **Symbol**: TVJ - - **Decimals**: 18 - -## RPC URLs - -Found 1-4-23 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Found 1-4-23 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Found 1-4-23 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/found-test.mdx b/docs/pages/solutions/chainlist/non-integrated/found-test.mdx deleted file mode 100644 index fc48f2f1c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/found-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Found Test - Avalanche Blockchain Network -description: Explore Found Test, a blockchain network with chain ID 18105. Learn about its native currency, Found Test Token, and how to interact with the network. ---- - -# Found Test - -Found Test is a blockchain network with chain ID 18105. - -## Network Details - -- **Chain ID**: 18105 -- **Chain Name**: Avalanche -- **Short Name**: Found Test -- **Network ID**: 18105 -- **Currency**: - - **Name**: Found Test Token - - **Symbol**: TVJ - - **Decimals**: 18 - -## RPC URLs - -Found Test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Found Test Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Found Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/foundation-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/foundation-testnet.mdx deleted file mode 100644 index d261a0fa50..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/foundation-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Foundation Testnet - Avalanche Blockchain Network -description: Explore Foundation Testnet, a blockchain network with chain ID 431188. Learn about its native currency, Foundation Testnet Token, and how to interact with the network. ---- - -# Foundation Testnet - -Foundation Testnet is a blockchain network with chain ID 431188. - -## Network Details - -- **Chain ID**: 431188 -- **Chain Name**: Avalanche -- **Short Name**: Foundation Testnet -- **Network ID**: 431188 -- **Currency**: - - **Name**: Foundation Testnet Token - - **Symbol**: TFND - - **Decimals**: 18 - -## RPC URLs - -Foundation Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/foundation/testnet/rpc - -## Foundation Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Foundation Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/foundry-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/foundry-chain-testnet.mdx deleted file mode 100644 index 4c72957fd3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/foundry-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Foundry Chain Testnet - tFNC Blockchain Network -description: Explore Foundry Chain Testnet, a blockchain network with chain ID 77238. Learn about its native currency, Foundry Chain Testnet, and how to interact with the network. ---- - -# Foundry Chain Testnet - -Foundry Chain Testnet is a blockchain network with chain ID 77238. - -## Network Details - -- **Chain ID**: 77238 -- **Chain Name**: tFNC -- **Short Name**: fnc -- **Network ID**: 77238 -- **Currency**: - - **Name**: Foundry Chain Testnet - - **Symbol**: tFNC - - **Decimals**: 18 - -## RPC URLs - -Foundry Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.foundryscan.org/ - -## Foundry Chain Testnet Block Explorers - -- [Foundry Scan Testnet](https://testnet-explorer.foundryscan.org) - -## Additional Information - -- **Official Website**: https://foundrychain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Foundry Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fox-testnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/fox-testnet-network.mdx deleted file mode 100644 index 8f4b2489a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fox-testnet-network.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Fox Testnet Network - FOX Blockchain Network -description: Explore Fox Testnet Network, a blockchain network with chain ID 6565. Learn about its native currency, FOX Native Token, and how to interact with the network. ---- - -# Fox Testnet Network - -Fox Testnet Network is a blockchain network with chain ID 6565. - -## Network Details - -- **Chain ID**: 6565 -- **Chain Name**: FOX -- **Short Name**: fox -- **Network ID**: 6565 -- **Currency**: - - **Name**: FOX Native Token - - **Symbol**: tFOX - - **Decimals**: 18 - -## RPC URLs - -Fox Testnet Network can be accessed through the following RPC endpoints: - -- https://rpc-testnet-v1.foxchain.app/ -- https://rpc2-testnet-v1.foxchain.app/ -- https://rpc3-testnet-v1.foxchain.app - -## Fox Testnet Network Block Explorers - -- [FOX Testnet Explorer](https://testnet.foxscan.app) - -## Additional Information - -- **Official Website**: https://foxchain.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fox Testnet Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/frame-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/frame-testnet.mdx deleted file mode 100644 index e4d9e3e7e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/frame-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Frame Testnet - ETH Blockchain Network -description: Explore Frame Testnet, a blockchain network with chain ID 68840142. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Frame Testnet - -Frame Testnet is a blockchain network with chain ID 68840142. - -## Network Details - -- **Chain ID**: 68840142 -- **Chain Name**: ETH -- **Short Name**: frametest -- **Network ID**: 68840142 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Frame Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.frame.xyz/http - -## Frame Testnet Block Explorers - -- [Frame Testnet Explorer](https://explorer.testnet.frame.xyz) - -## Additional Information - -- **Official Website**: https://www.frame.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Frame Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fraxtal-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fraxtal-testnet.mdx deleted file mode 100644 index 0270fbee5f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fraxtal-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fraxtal Testnet - FRAX Blockchain Network -description: Explore Fraxtal Testnet, a blockchain network with chain ID 2522. Learn about its native currency, Frax Ether, and how to interact with the network. ---- - -# Fraxtal Testnet - -Fraxtal Testnet is a blockchain network with chain ID 2522. - -## Network Details - -- **Chain ID**: 2522 -- **Chain Name**: FRAX -- **Short Name**: fraxtal-testnet -- **Network ID**: 2522 -- **Currency**: - - **Name**: Frax Ether - - **Symbol**: frxETH - - **Decimals**: 18 - -## RPC URLs - -Fraxtal Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.frax.com - -## Fraxtal Testnet Block Explorers - -- [fraxscan](https://holesky.fraxscan.com) - -## Additional Information - -- **Official Website**: https://testnet.frax.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fraxtal Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fraxtal.mdx b/docs/pages/solutions/chainlist/non-integrated/fraxtal.mdx deleted file mode 100644 index 3a2f3ab3c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fraxtal.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Fraxtal - FRAX Blockchain Network -description: Explore Fraxtal, a blockchain network with chain ID 252. Learn about its native currency, Frax Ether, and how to interact with the network. ---- - -# Fraxtal - -Fraxtal is a blockchain network with chain ID 252. - -## Network Details - -- **Chain ID**: 252 -- **Chain Name**: FRAX -- **Short Name**: fraxtal -- **Network ID**: 252 -- **Currency**: - - **Name**: Frax Ether - - **Symbol**: frxETH - - **Decimals**: 18 - -## RPC URLs - -Fraxtal can be accessed through the following RPC endpoints: - -- https://rpc.frax.com - -## Fraxtal Block Explorers - -- [fraxscan](https://fraxscan.com) - -## Additional Information - -- **Official Website**: https://mainnet.frax.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/freight-trust-network.mdx b/docs/pages/solutions/chainlist/non-integrated/freight-trust-network.mdx deleted file mode 100644 index 962f3f3399..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/freight-trust-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Freight Trust Network - EDI Blockchain Network -description: Explore Freight Trust Network, a blockchain network with chain ID 211. Learn about its native currency, Freight Trust Native, and how to interact with the network. ---- - -# Freight Trust Network - -Freight Trust Network is a blockchain network with chain ID 211. - -## Network Details - -- **Chain ID**: 211 -- **Chain Name**: EDI -- **Short Name**: EDI -- **Network ID**: 211 -- **Currency**: - - **Name**: Freight Trust Native - - **Symbol**: 0xF - - **Decimals**: 18 - -## RPC URLs - -Freight Trust Network can be accessed through the following RPC endpoints: - -- http://13.57.207.168:3435 -- https://app.freighttrust.net/ftn/${API_KEY} - -## Freight Trust Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://freighttrust.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/frenchain.mdx b/docs/pages/solutions/chainlist/non-integrated/frenchain.mdx deleted file mode 100644 index 089c7d678b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/frenchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Frenchain - fren Blockchain Network -description: Explore Frenchain, a blockchain network with chain ID 44444. Learn about its native currency, FREN, and how to interact with the network. ---- - -# Frenchain - -Frenchain is a blockchain network with chain ID 44444. - -## Network Details - -- **Chain ID**: 44444 -- **Chain Name**: fren -- **Short Name**: FREN -- **Network ID**: 44444 -- **Currency**: - - **Name**: FREN - - **Symbol**: FREN - - **Decimals**: 18 - -## RPC URLs - -Frenchain can be accessed through the following RPC endpoints: - -- https://rpc-02.frenscan.io - -## Frenchain Block Explorers - -- [blockscout](https://frenscan.io) - -## Additional Information - -- **Official Website**: https://frenchain.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/frontier-of-dreams-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/frontier-of-dreams-testnet.mdx deleted file mode 100644 index 3e311d7f6a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/frontier-of-dreams-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Frontier of Dreams Testnet - Game Network Blockchain Network -description: Explore Frontier of Dreams Testnet, a blockchain network with chain ID 18000. Learn about its native currency, ZKST, and how to interact with the network. ---- - -# Frontier of Dreams Testnet - -Frontier of Dreams Testnet is a blockchain network with chain ID 18000. - -## Network Details - -- **Chain ID**: 18000 -- **Chain Name**: Game Network -- **Short Name**: ZKST -- **Network ID**: 18000 -- **Currency**: - - **Name**: ZKST - - **Symbol**: ZKST - - **Decimals**: 18 - -## RPC URLs - -Frontier of Dreams Testnet can be accessed through the following RPC endpoints: - -- https://rpc.fod.games/ - -## Frontier of Dreams Testnet Block Explorers - -- [Game Network](https://explorer.fod.games) - -## Additional Information - -- **Official Website**: https://goexosphere.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Frontier of Dreams Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fst-01-16-multi.mdx b/docs/pages/solutions/chainlist/non-integrated/fst-01-16-multi.mdx deleted file mode 100644 index a28fa02460..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fst-01-16-multi.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FST 01-16 Multi - Avalanche Blockchain Network -description: Explore FST 01-16 Multi, a blockchain network with chain ID 21758. Learn about its native currency, FST 01-16 Multi Token, and how to interact with the network. ---- - -# FST 01-16 Multi - -FST 01-16 Multi is a blockchain network with chain ID 21758. - -## Network Details - -- **Chain ID**: 21758 -- **Chain Name**: Avalanche -- **Short Name**: FST 01-16 Multi -- **Network ID**: 21758 -- **Currency**: - - **Name**: FST 01-16 Multi Token - - **Symbol**: RUI - - **Decimals**: 18 - -## RPC URLs - -FST 01-16 Multi can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## FST 01-16 Multi Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FST 01-16 Multi Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v1.mdx b/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v1.mdx deleted file mode 100644 index a477986a83..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FST 12-22 V1 - Avalanche Blockchain Network -description: Explore FST 12-22 V1, a blockchain network with chain ID 94158. Learn about its native currency, FST 12-22 V1 Token, and how to interact with the network. ---- - -# FST 12-22 V1 - -FST 12-22 V1 is a blockchain network with chain ID 94158. - -## Network Details - -- **Chain ID**: 94158 -- **Chain Name**: Avalanche -- **Short Name**: FST 12-22 V1 -- **Network ID**: 94158 -- **Currency**: - - **Name**: FST 12-22 V1 Token - - **Symbol**: EJJ - - **Decimals**: 18 - -## RPC URLs - -FST 12-22 V1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## FST 12-22 V1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FST 12-22 V1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v2.mdx deleted file mode 100644 index 6bec94fb01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fst-12-22-v2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: FST 12-22 V2 - Avalanche Blockchain Network -description: Explore FST 12-22 V2, a blockchain network with chain ID 78933. Learn about its native currency, FST 12-22 V2 Token, and how to interact with the network. ---- - -# FST 12-22 V2 - -FST 12-22 V2 is a blockchain network with chain ID 78933. - -## Network Details - -- **Chain ID**: 78933 -- **Chain Name**: Avalanche -- **Short Name**: FST 12-22 V2 -- **Network ID**: 78933 -- **Currency**: - - **Name**: FST 12-22 V2 Token - - **Symbol**: EJJ - - **Decimals**: 18 - -## RPC URLs - -FST 12-22 V2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## FST 12-22 V2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## FST 12-22 V2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/funki-sepolia-sandbox.mdx b/docs/pages/solutions/chainlist/non-integrated/funki-sepolia-sandbox.mdx deleted file mode 100644 index abb8449e09..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/funki-sepolia-sandbox.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Funki Sepolia Sandbox - ETH Blockchain Network -description: Explore Funki Sepolia Sandbox, a blockchain network with chain ID 3397901. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Funki Sepolia Sandbox - -Funki Sepolia Sandbox is a blockchain network with chain ID 3397901. - -## Network Details - -- **Chain ID**: 3397901 -- **Chain Name**: ETH -- **Short Name**: funkisepolia -- **Network ID**: 3397901 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Funki Sepolia Sandbox can be accessed through the following RPC endpoints: - -- https://funki-testnet.alt.technology - -## Funki Sepolia Sandbox Block Explorers - -- [Funki Sepolia Sandbox Explorer](https://sepolia-sandbox.funkichain.com) - -## Additional Information - -- **Official Website**: https://funkichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Funki Sepolia Sandbox Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/funki.mdx b/docs/pages/solutions/chainlist/non-integrated/funki.mdx deleted file mode 100644 index f2d03bc4dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/funki.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Funki - ETH Blockchain Network -description: Explore Funki, a blockchain network with chain ID 33979. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Funki - -Funki is a blockchain network with chain ID 33979. - -## Network Details - -- **Chain ID**: 33979 -- **Chain Name**: ETH -- **Short Name**: funki -- **Network ID**: 33979 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Funki can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.funkichain.com -- wss://rpc-mainnet.funkichain.com - -## Funki Block Explorers - -- [FunkiScan](https://funkiscan.io) -- [Funki Mainnet Explorer](https://funki.superscan.network) - -## Additional Information - -- **Official Website**: https://funkichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/furtheon-network.mdx b/docs/pages/solutions/chainlist/non-integrated/furtheon-network.mdx deleted file mode 100644 index 4bfdd0d480..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/furtheon-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Furtheon - Furtheon Network Blockchain Network -description: Explore Furtheon, a blockchain network with chain ID 308. Learn about its native currency, Furtheon, and how to interact with the network. ---- - -# Furtheon - -Furtheon is a blockchain network with chain ID 308. - -## Network Details - -- **Chain ID**: 308 -- **Chain Name**: Furtheon Network -- **Short Name**: furtheon -- **Network ID**: 308 -- **Currency**: - - **Name**: Furtheon - - **Symbol**: FTH - - **Decimals**: 18 - -## RPC URLs - -Furtheon can be accessed through the following RPC endpoints: - -- https://rpc.furtheon.org - -## Furtheon Block Explorers - -- [furthscan](http://furthscan.com) - -## Additional Information - -- **Official Website**: https://furtheon.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fuse-sparknet.mdx b/docs/pages/solutions/chainlist/non-integrated/fuse-sparknet.mdx deleted file mode 100644 index 3a64d4dfe6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fuse-sparknet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fuse Sparknet - fuse Blockchain Network -description: Explore Fuse Sparknet, a blockchain network with chain ID 123. Learn about its native currency, Spark, and how to interact with the network. ---- - -# Fuse Sparknet - -Fuse Sparknet is a blockchain network with chain ID 123. - -## Network Details - -- **Chain ID**: 123 -- **Chain Name**: fuse -- **Short Name**: spark -- **Network ID**: 123 -- **Currency**: - - **Name**: Spark - - **Symbol**: SPARK - - **Decimals**: 18 - -## RPC URLs - -Fuse Sparknet can be accessed through the following RPC endpoints: - -- https://rpc.fusespark.io - -## Fuse Sparknet Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.fuse.io/general/fuse-network-blockchain/fuse-testnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fuse Sparknet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fuse.mdx b/docs/pages/solutions/chainlist/non-integrated/fuse.mdx deleted file mode 100644 index 2b51d19417..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fuse.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Fuse Mainnet - FUSE Blockchain Network -description: Explore Fuse Mainnet, a blockchain network with chain ID 122. Learn about its native currency, Fuse, and how to interact with the network. ---- - -# Fuse Mainnet - -Fuse Mainnet is a blockchain network with chain ID 122. - -## Network Details - -- **Chain ID**: 122 -- **Chain Name**: FUSE -- **Short Name**: fuse -- **Network ID**: 122 -- **Currency**: - - **Name**: Fuse - - **Symbol**: FUSE - - **Decimals**: 18 - -## RPC URLs - -Fuse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.fuse.io -- https://fuse.drpc.org -- wss://fuse.drpc.org - -## Fuse Mainnet Block Explorers - -- [blockscout](https://explorer.fuse.io) - -## Additional Information - -- **Official Website**: https://fuse.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/fusion-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/fusion-testnet.mdx deleted file mode 100644 index c4e90d8687..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fusion-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Fusion Testnet - FSN Blockchain Network -description: Explore Fusion Testnet, a blockchain network with chain ID 46688. Learn about its native currency, Testnet Fusion, and how to interact with the network. ---- - -# Fusion Testnet - -Fusion Testnet is a blockchain network with chain ID 46688. - -## Network Details - -- **Chain ID**: 46688 -- **Chain Name**: FSN -- **Short Name**: tfsn -- **Network ID**: 46688 -- **Currency**: - - **Name**: Testnet Fusion - - **Symbol**: T-FSN - - **Decimals**: 18 - -## RPC URLs - -Fusion Testnet can be accessed through the following RPC endpoints: - -- https://testnet.fusionnetwork.io -- wss://testnet.fusionnetwork.io - -## Fusion Testnet Block Explorers - -- [fsnscan](https://testnet.fsnscan.com) - -## Additional Information - -- **Official Website**: https://fusion.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fusion Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/fusion.mdx b/docs/pages/solutions/chainlist/non-integrated/fusion.mdx deleted file mode 100644 index 9c55f3940c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/fusion.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Fusion Mainnet - FSN Blockchain Network -description: Explore Fusion Mainnet, a blockchain network with chain ID 32659. Learn about its native currency, Fusion, and how to interact with the network. ---- - -# Fusion Mainnet - -Fusion Mainnet is a blockchain network with chain ID 32659. - -## Network Details - -- **Chain ID**: 32659 -- **Chain Name**: FSN -- **Short Name**: fsn -- **Network ID**: 32659 -- **Currency**: - - **Name**: Fusion - - **Symbol**: FSN - - **Decimals**: 18 - -## RPC URLs - -Fusion Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.fusionnetwork.io -- wss://mainnet.fusionnetwork.io - -## Fusion Mainnet Block Explorers - -- [fsnscan](https://fsnscan.com) - -## Additional Information - -- **Official Website**: https://fusion.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/g8chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/g8chain-testnet.mdx deleted file mode 100644 index a68cea6d7f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/g8chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: G8Chain Testnet - G8C Blockchain Network -description: Explore G8Chain Testnet, a blockchain network with chain ID 18181. Learn about its native currency, G8Coin, and how to interact with the network. ---- - -# G8Chain Testnet - -G8Chain Testnet is a blockchain network with chain ID 18181. - -## Network Details - -- **Chain ID**: 18181 -- **Chain Name**: G8C -- **Short Name**: G8Ct -- **Network ID**: 18181 -- **Currency**: - - **Name**: G8Coin - - **Symbol**: G8C - - **Decimals**: 18 - -## RPC URLs - -G8Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.oneg8.network - -## G8Chain Testnet Block Explorers - -- [G8Chain](https://testnet.oneg8.network) - -## Additional Information - -- **Official Website**: https://oneg8.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## G8Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/g8chain.mdx b/docs/pages/solutions/chainlist/non-integrated/g8chain.mdx deleted file mode 100644 index 9e0d3ec5f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/g8chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: G8Chain Mainnet - G8C Blockchain Network -description: Explore G8Chain Mainnet, a blockchain network with chain ID 17171. Learn about its native currency, G8Chain, and how to interact with the network. ---- - -# G8Chain Mainnet - -G8Chain Mainnet is a blockchain network with chain ID 17171. - -## Network Details - -- **Chain ID**: 17171 -- **Chain Name**: G8C -- **Short Name**: G8Cm -- **Network ID**: 17171 -- **Currency**: - - **Name**: G8Chain - - **Symbol**: G8C - - **Decimals**: 18 - -## RPC URLs - -G8Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.oneg8.network - -## G8Chain Mainnet Block Explorers - -- [G8Chain](https://mainnet.oneg8.network) - -## Additional Information - -- **Official Website**: https://oneg8.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/galactica-reticulum.mdx b/docs/pages/solutions/chainlist/non-integrated/galactica-reticulum.mdx deleted file mode 100644 index 60bda369c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/galactica-reticulum.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Galactica-Reticulum - GNET Blockchain Network -description: Explore Galactica-Reticulum, a blockchain network with chain ID 9302. Learn about its native currency, GNET, and how to interact with the network. ---- - -# Galactica-Reticulum - -Galactica-Reticulum is a blockchain network with chain ID 9302. - -## Network Details - -- **Chain ID**: 9302 -- **Chain Name**: GNET -- **Short Name**: GNET -- **Network ID**: 9302 -- **Currency**: - - **Name**: GNET - - **Symbol**: GNET - - **Decimals**: 18 - -## RPC URLs - -Galactica-Reticulum can be accessed through the following RPC endpoints: - -- https://evm-rpc-http-reticulum.galactica.com/ - -## Galactica-Reticulum Block Explorers - -- [Galactica Reticulum explorer](https://explorer-reticulum.galactica.com/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Galactica-Reticulum Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/galadriel-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/galadriel-devnet.mdx deleted file mode 100644 index ceed7ddf19..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/galadriel-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Galadriel Devnet - Galadriel Blockchain Network -description: Explore Galadriel Devnet, a blockchain network with chain ID 696969. Learn about its native currency, Galadriel Devnet token, and how to interact with the network. ---- - -# Galadriel Devnet - -Galadriel Devnet is a blockchain network with chain ID 696969. - -## Network Details - -- **Chain ID**: 696969 -- **Chain Name**: Galadriel -- **Short Name**: galadriel-devnet -- **Network ID**: 696969 -- **Currency**: - - **Name**: Galadriel Devnet token - - **Symbol**: GAL - - **Decimals**: 18 - -## RPC URLs - -Galadriel Devnet can be accessed through the following RPC endpoints: - -- https://devnet.galadriel.com - -## Galadriel Devnet Block Explorers - -- [Galadriel Explorer](https://explorer.galadriel.com) - -## Additional Information - -- **Official Website**: https://galadriel.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gan-testnet.mdx deleted file mode 100644 index e6c083ea94..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GAN Testnet - GAN Blockchain Network -description: Explore GAN Testnet, a blockchain network with chain ID 4048. Learn about its native currency, GP Token, and how to interact with the network. ---- - -# GAN Testnet - -GAN Testnet is a blockchain network with chain ID 4048. - -## Network Details - -- **Chain ID**: 4048 -- **Chain Name**: GAN -- **Short Name**: GANTestnet -- **Network ID**: 4048 -- **Currency**: - - **Name**: GP Token - - **Symbol**: GP - - **Decimals**: 18 - -## RPC URLs - -GAN Testnet can be accessed through the following RPC endpoints: - -- https://rpc.gpu.net - -## GAN Testnet Block Explorers - -- [ganscan](https://ganscan.gpu.net) - -## Additional Information - -- **Official Website**: https://docs.gpu.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GAN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ganache.mdx b/docs/pages/solutions/chainlist/non-integrated/ganache.mdx deleted file mode 100644 index 64fca1a13b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ganache.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ganache - ETH Blockchain Network -description: Explore Ganache, a blockchain network with chain ID 5777. Learn about its native currency, Ganache Test Ether, and how to interact with the network. ---- - -# Ganache - -Ganache is a blockchain network with chain ID 5777. - -## Network Details - -- **Chain ID**: 5777 -- **Chain Name**: ETH -- **Short Name**: ggui -- **Network ID**: 5777 -- **Currency**: - - **Name**: Ganache Test Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ganache can be accessed through the following RPC endpoints: - -- https://127.0.0.1:7545 - -## Ganache Block Explorers - - - -## Additional Information - -- **Official Website**: https://trufflesuite.com/ganache/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ganache Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-stage0.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-stage0.mdx deleted file mode 100644 index ed070bd342..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-stage0.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Garizon Stage0 - GAR Blockchain Network -description: Explore Garizon Stage0, a blockchain network with chain ID 90. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Stage0 - -Garizon Stage0 is a blockchain network with chain ID 90. - -## Network Details - -- **Chain ID**: 90 -- **Chain Name**: GAR -- **Short Name**: gar-s0 -- **Network ID**: 90 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Stage0 can be accessed through the following RPC endpoints: - -- https://s0.garizon.net/rpc - -## Garizon Stage0 Block Explorers - -- [explorer](https://explorer.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-stage1.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-stage1.mdx deleted file mode 100644 index 97f1c1e17d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-stage1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Garizon Stage1 - GAR Blockchain Network -description: Explore Garizon Stage1, a blockchain network with chain ID 91. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Stage1 - -Garizon Stage1 is a blockchain network with chain ID 91. - -## Network Details - -- **Chain ID**: 91 -- **Chain Name**: GAR -- **Short Name**: gar-s1 -- **Network ID**: 91 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Stage1 can be accessed through the following RPC endpoints: - -- https://s1.garizon.net/rpc - -## Garizon Stage1 Block Explorers - -- [explorer](https://explorer.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-stage2.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-stage2.mdx deleted file mode 100644 index f6ee1aa5d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-stage2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Garizon Stage2 - GAR Blockchain Network -description: Explore Garizon Stage2, a blockchain network with chain ID 92. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Stage2 - -Garizon Stage2 is a blockchain network with chain ID 92. - -## Network Details - -- **Chain ID**: 92 -- **Chain Name**: GAR -- **Short Name**: gar-s2 -- **Network ID**: 92 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Stage2 can be accessed through the following RPC endpoints: - -- https://s2.garizon.net/rpc - -## Garizon Stage2 Block Explorers - -- [explorer](https://explorer.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-stage3.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-stage3.mdx deleted file mode 100644 index a2ec6ef403..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-stage3.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Garizon Stage3 - GAR Blockchain Network -description: Explore Garizon Stage3, a blockchain network with chain ID 93. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Stage3 - -Garizon Stage3 is a blockchain network with chain ID 93. - -## Network Details - -- **Chain ID**: 93 -- **Chain Name**: GAR -- **Short Name**: gar-s3 -- **Network ID**: 93 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Stage3 can be accessed through the following RPC endpoints: - -- https://s3.garizon.net/rpc - -## Garizon Stage3 Block Explorers - -- [explorer](https://explorer.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage0.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage0.mdx deleted file mode 100644 index b3ee23b906..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage0.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Garizon Testnet Stage0 - GAR Blockchain Network -description: Explore Garizon Testnet Stage0, a blockchain network with chain ID 900. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Testnet Stage0 - -Garizon Testnet Stage0 is a blockchain network with chain ID 900. - -## Network Details - -- **Chain ID**: 900 -- **Chain Name**: GAR -- **Short Name**: gar-test-s0 -- **Network ID**: 900 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Testnet Stage0 can be accessed through the following RPC endpoints: - -- https://s0-testnet.garizon.net/rpc - -## Garizon Testnet Stage0 Block Explorers - -- [explorer](https://explorer-testnet.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Garizon Testnet Stage0 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage1.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage1.mdx deleted file mode 100644 index f4b6ddfd9e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Garizon Testnet Stage1 - GAR Blockchain Network -description: Explore Garizon Testnet Stage1, a blockchain network with chain ID 901. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Testnet Stage1 - -Garizon Testnet Stage1 is a blockchain network with chain ID 901. - -## Network Details - -- **Chain ID**: 901 -- **Chain Name**: GAR -- **Short Name**: gar-test-s1 -- **Network ID**: 901 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Testnet Stage1 can be accessed through the following RPC endpoints: - -- https://s1-testnet.garizon.net/rpc - -## Garizon Testnet Stage1 Block Explorers - -- [explorer](https://explorer-testnet.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Garizon Testnet Stage1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage2.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage2.mdx deleted file mode 100644 index 211c71a8b4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Garizon Testnet Stage2 - GAR Blockchain Network -description: Explore Garizon Testnet Stage2, a blockchain network with chain ID 902. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Testnet Stage2 - -Garizon Testnet Stage2 is a blockchain network with chain ID 902. - -## Network Details - -- **Chain ID**: 902 -- **Chain Name**: GAR -- **Short Name**: gar-test-s2 -- **Network ID**: 902 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Testnet Stage2 can be accessed through the following RPC endpoints: - -- https://s2-testnet.garizon.net/rpc - -## Garizon Testnet Stage2 Block Explorers - -- [explorer](https://explorer-testnet.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Garizon Testnet Stage2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage3.mdx b/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage3.mdx deleted file mode 100644 index 68a6c6e273..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garizon-testnet-stage3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Garizon Testnet Stage3 - GAR Blockchain Network -description: Explore Garizon Testnet Stage3, a blockchain network with chain ID 903. Learn about its native currency, Garizon, and how to interact with the network. ---- - -# Garizon Testnet Stage3 - -Garizon Testnet Stage3 is a blockchain network with chain ID 903. - -## Network Details - -- **Chain ID**: 903 -- **Chain Name**: GAR -- **Short Name**: gar-test-s3 -- **Network ID**: 903 -- **Currency**: - - **Name**: Garizon - - **Symbol**: GAR - - **Decimals**: 18 - -## RPC URLs - -Garizon Testnet Stage3 can be accessed through the following RPC endpoints: - -- https://s3-testnet.garizon.net/rpc - -## Garizon Testnet Stage3 Block Explorers - -- [explorer](https://explorer-testnet.garizon.com) - -## Additional Information - -- **Official Website**: https://garizon.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Garizon Testnet Stage3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/garnet-holesky.mdx b/docs/pages/solutions/chainlist/non-integrated/garnet-holesky.mdx deleted file mode 100644 index 29c76e0e09..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/garnet-holesky.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Garnet Holesky - ETH Blockchain Network -description: Explore Garnet Holesky, a blockchain network with chain ID 17069. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Garnet Holesky - -Garnet Holesky is a blockchain network with chain ID 17069. - -## Network Details - -- **Chain ID**: 17069 -- **Chain Name**: ETH -- **Short Name**: garnet -- **Network ID**: 17069 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Garnet Holesky can be accessed through the following RPC endpoints: - -- https://rpc.garnetchain.com -- wss://rpc.garnetchain.com - -## Garnet Holesky Block Explorers - -- [blockscout](https://explorer.garnetchain.com) - -## Additional Information - -- **Official Website**: https://redstone.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Garnet Holesky Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gatechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gatechain-testnet.mdx deleted file mode 100644 index f4761556a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gatechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GateChain Testnet - GTTEST Blockchain Network -description: Explore GateChain Testnet, a blockchain network with chain ID 85. Learn about its native currency, GateToken, and how to interact with the network. ---- - -# GateChain Testnet - -GateChain Testnet is a blockchain network with chain ID 85. - -## Network Details - -- **Chain ID**: 85 -- **Chain Name**: GTTEST -- **Short Name**: gttest -- **Network ID**: 85 -- **Currency**: - - **Name**: GateToken - - **Symbol**: GT - - **Decimals**: 18 - -## RPC URLs - -GateChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.gatenode.cc - -## GateChain Testnet Block Explorers - -- [GateScan](https://www.gatescan.org/testnet) - -## Additional Information - -- **Official Website**: https://www.gatechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GateChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gatechain.mdx b/docs/pages/solutions/chainlist/non-integrated/gatechain.mdx deleted file mode 100644 index 24e4d58fc6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gatechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GateChain Mainnet - GT Blockchain Network -description: Explore GateChain Mainnet, a blockchain network with chain ID 86. Learn about its native currency, GateToken, and how to interact with the network. ---- - -# GateChain Mainnet - -GateChain Mainnet is a blockchain network with chain ID 86. - -## Network Details - -- **Chain ID**: 86 -- **Chain Name**: GT -- **Short Name**: gt -- **Network ID**: 86 -- **Currency**: - - **Name**: GateToken - - **Symbol**: GT - - **Decimals**: 18 - -## RPC URLs - -GateChain Mainnet can be accessed through the following RPC endpoints: - -- https://evm.gatenode.cc - -## GateChain Mainnet Block Explorers - -- [GateScan](https://www.gatescan.org) - -## Additional Information - -- **Official Website**: https://www.gatechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gather-devnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gather-devnet-network.mdx deleted file mode 100644 index ca418d629c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gather-devnet-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gather Devnet Network - GTH Blockchain Network -description: Explore Gather Devnet Network, a blockchain network with chain ID 486217935. Learn about its native currency, Gather, and how to interact with the network. ---- - -# Gather Devnet Network - -Gather Devnet Network is a blockchain network with chain ID 486217935. - -## Network Details - -- **Chain ID**: 486217935 -- **Chain Name**: GTH -- **Short Name**: dGTH -- **Network ID**: 486217935 -- **Currency**: - - **Name**: Gather - - **Symbol**: GTH - - **Decimals**: 18 - -## RPC URLs - -Gather Devnet Network can be accessed through the following RPC endpoints: - -- https://devnet.gather.network - -## Gather Devnet Network Block Explorers - -- [Blockscout](https://devnet-explorer.gather.network) - -## Additional Information - -- **Official Website**: https://gather.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gather-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gather-network.mdx deleted file mode 100644 index 69c739d593..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gather-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gather Mainnet Network - GTH Blockchain Network -description: Explore Gather Mainnet Network, a blockchain network with chain ID 192837465. Learn about its native currency, Gather, and how to interact with the network. ---- - -# Gather Mainnet Network - -Gather Mainnet Network is a blockchain network with chain ID 192837465. - -## Network Details - -- **Chain ID**: 192837465 -- **Chain Name**: GTH -- **Short Name**: GTH -- **Network ID**: 192837465 -- **Currency**: - - **Name**: Gather - - **Symbol**: GTH - - **Decimals**: 18 - -## RPC URLs - -Gather Mainnet Network can be accessed through the following RPC endpoints: - -- https://mainnet.gather.network - -## Gather Mainnet Network Block Explorers - -- [Blockscout](https://explorer.gather.network) - -## Additional Information - -- **Official Website**: https://gather.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gather-testnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gather-testnet-network.mdx deleted file mode 100644 index 2e3658ae90..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gather-testnet-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gather Testnet Network - GTH Blockchain Network -description: Explore Gather Testnet Network, a blockchain network with chain ID 356256156. Learn about its native currency, Gather, and how to interact with the network. ---- - -# Gather Testnet Network - -Gather Testnet Network is a blockchain network with chain ID 356256156. - -## Network Details - -- **Chain ID**: 356256156 -- **Chain Name**: GTH -- **Short Name**: tGTH -- **Network ID**: 356256156 -- **Currency**: - - **Name**: Gather - - **Symbol**: GTH - - **Decimals**: 18 - -## RPC URLs - -Gather Testnet Network can be accessed through the following RPC endpoints: - -- https://testnet.gather.network - -## Gather Testnet Network Block Explorers - -- [Blockscout](https://testnet-explorer.gather.network) - -## Additional Information - -- **Official Website**: https://gather.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gather Testnet Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gauss.mdx b/docs/pages/solutions/chainlist/non-integrated/gauss.mdx deleted file mode 100644 index 6778642cb5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gauss.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gauss Mainnet - Gauss Blockchain Network -description: Explore Gauss Mainnet, a blockchain network with chain ID 1777. Learn about its native currency, GANG, and how to interact with the network. ---- - -# Gauss Mainnet - -Gauss Mainnet is a blockchain network with chain ID 1777. - -## Network Details - -- **Chain ID**: 1777 -- **Chain Name**: Gauss -- **Short Name**: gauss -- **Network ID**: 1777 -- **Currency**: - - **Name**: GANG - - **Symbol**: GANG - - **Decimals**: 18 - -## RPC URLs - -Gauss Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.gaussgang.com - -## Gauss Mainnet Block Explorers - -- [Gauss Explorer](https://explorer.gaussgang.com) - -## Additional Information - -- **Official Website**: https://gaussgang.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gdcc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gdcc-testnet.mdx deleted file mode 100644 index eacebdd9f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gdcc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GDCC TESTNET - GDCC Blockchain Network -description: Explore GDCC TESTNET, a blockchain network with chain ID 7775. Learn about its native currency, GDCC, and how to interact with the network. ---- - -# GDCC TESTNET - -GDCC TESTNET is a blockchain network with chain ID 7775. - -## Network Details - -- **Chain ID**: 7775 -- **Chain Name**: GDCC -- **Short Name**: GDCC -- **Network ID**: 7775 -- **Currency**: - - **Name**: GDCC - - **Symbol**: GDCC - - **Decimals**: 18 - -## RPC URLs - -GDCC TESTNET can be accessed through the following RPC endpoints: - -- https://testnet-rpc1.gdccscan.io - -## GDCC TESTNET Block Explorers - -- [GDCC](https://testnet.gdccscan.io) - -## Additional Information - -- **Official Website**: https://gdcchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GDCC TESTNET Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gdcc.mdx b/docs/pages/solutions/chainlist/non-integrated/gdcc.mdx deleted file mode 100644 index 91e6806489..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gdcc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GDCC MAINNET - GDCC Blockchain Network -description: Explore GDCC MAINNET, a blockchain network with chain ID 7774. Learn about its native currency, GDCC, and how to interact with the network. ---- - -# GDCC MAINNET - -GDCC MAINNET is a blockchain network with chain ID 7774. - -## Network Details - -- **Chain ID**: 7774 -- **Chain Name**: GDCC -- **Short Name**: GdccMainnet -- **Network ID**: 7774 -- **Currency**: - - **Name**: GDCC - - **Symbol**: GDCC - - **Decimals**: 18 - -## RPC URLs - -GDCC MAINNET can be accessed through the following RPC endpoints: - -- https://mainnet-rpc-1.gdccscan.io - -## GDCC MAINNET Block Explorers - -- [GDCC](https://gdccscan.io) - -## Additional Information - -- **Official Website**: https://gdcchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gear-zero-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gear-zero-network-testnet.mdx deleted file mode 100644 index 43a78d6904..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gear-zero-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gear Zero Network Testnet - GearZero Blockchain Network -description: Explore Gear Zero Network Testnet, a blockchain network with chain ID 266256. Learn about its native currency, Gear Zero Network Native Token, and how to interact with the network. ---- - -# Gear Zero Network Testnet - -Gear Zero Network Testnet is a blockchain network with chain ID 266256. - -## Network Details - -- **Chain ID**: 266256 -- **Chain Name**: GearZero -- **Short Name**: gz-testnet -- **Network ID**: 266256 -- **Currency**: - - **Name**: Gear Zero Network Native Token - - **Symbol**: GZN - - **Decimals**: 18 - -## RPC URLs - -Gear Zero Network Testnet can be accessed through the following RPC endpoints: - -- https://gzn-test.linksme.info - -## Gear Zero Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://token.gearzero.ca/testnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gear Zero Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gear-zero-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gear-zero-network.mdx deleted file mode 100644 index 9d47a55ea2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gear-zero-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gear Zero Network Mainnet - GearZero Blockchain Network -description: Explore Gear Zero Network Mainnet, a blockchain network with chain ID 516. Learn about its native currency, Gear Zero Network Native Token, and how to interact with the network. ---- - -# Gear Zero Network Mainnet - -Gear Zero Network Mainnet is a blockchain network with chain ID 516. - -## Network Details - -- **Chain ID**: 516 -- **Chain Name**: GearZero -- **Short Name**: gz-mainnet -- **Network ID**: 516 -- **Currency**: - - **Name**: Gear Zero Network Native Token - - **Symbol**: GZN - - **Decimals**: 18 - -## RPC URLs - -Gear Zero Network Mainnet can be accessed through the following RPC endpoints: - -- https://gzn.linksme.info - -## Gear Zero Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://token.gearzero.ca/mainnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/geek-verse-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/geek-verse-testnet.mdx deleted file mode 100644 index afb950ae23..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/geek-verse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GEEK Verse Testnet - GEEK Test Blockchain Network -description: Explore GEEK Verse Testnet, a blockchain network with chain ID 75513. Learn about its native currency, OAS, and how to interact with the network. ---- - -# GEEK Verse Testnet - -GEEK Verse Testnet is a blockchain network with chain ID 75513. - -## Network Details - -- **Chain ID**: 75513 -- **Chain Name**: GEEK Test -- **Short Name**: GEEK_Test -- **Network ID**: 75513 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -GEEK Verse Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.geekout-pte.com - -## GEEK Verse Testnet Block Explorers - -- [Geek Testnet Explorer](https://explorer-testnet.geekout-pte.com) - -## Additional Information - -- **Official Website**: https://www.geekout-pte.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GEEK Verse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/geek-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/geek-verse.mdx deleted file mode 100644 index d78c2070b4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/geek-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GEEK Verse Mainnet - GEEK Blockchain Network -description: Explore GEEK Verse Mainnet, a blockchain network with chain ID 75512. Learn about its native currency, OAS, and how to interact with the network. ---- - -# GEEK Verse Mainnet - -GEEK Verse Mainnet is a blockchain network with chain ID 75512. - -## Network Details - -- **Chain ID**: 75512 -- **Chain Name**: GEEK -- **Short Name**: GEEK -- **Network ID**: 75512 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -GEEK Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.geekout-pte.com - -## GEEK Verse Mainnet Block Explorers - -- [Geek Explorer](https://explorer.geekout-pte.com) - -## Additional Information - -- **Official Website**: https://www.geekout-pte.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gemchain.mdx b/docs/pages/solutions/chainlist/non-integrated/gemchain.mdx deleted file mode 100644 index df35deb97a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gemchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gemchain - Gemchain Blockchain Network -description: Explore Gemchain, a blockchain network with chain ID 123321. Learn about its native currency, GEM, and how to interact with the network. ---- - -# Gemchain - -Gemchain is a blockchain network with chain ID 123321. - -## Network Details - -- **Chain ID**: 123321 -- **Chain Name**: Gemchain -- **Short Name**: gemchain -- **Network ID**: 123321 -- **Currency**: - - **Name**: GEM - - **Symbol**: GEM - - **Decimals**: 18 - -## RPC URLs - -Gemchain can be accessed through the following RPC endpoints: - -- https://evm-rpc.gemchain.org - -## Gemchain Block Explorers - -- [Gemchain Scan](https://scan.gemchain.org) - -## Additional Information - -- **Official Website**: https://gemchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gemuchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gemuchain-testnet.mdx deleted file mode 100644 index c67839bd51..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gemuchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gemuchain Testnet - Gemuchain Blockchain Network -description: Explore Gemuchain Testnet, a blockchain network with chain ID 1903648807. Learn about its native currency, Gemuchain, and how to interact with the network. ---- - -# Gemuchain Testnet - -Gemuchain Testnet is a blockchain network with chain ID 1903648807. - -## Network Details - -- **Chain ID**: 1903648807 -- **Chain Name**: Gemuchain -- **Short Name**: Gemuchain -- **Network ID**: 1903648807 -- **Currency**: - - **Name**: Gemuchain - - **Symbol**: GEMU - - **Decimals**: 18 - -## RPC URLs - -Gemuchain Testnet can be accessed through the following RPC endpoints: - -- https://gemutest-rpc.gemuchain.io - -## Gemuchain Testnet Block Explorers - -- [Gemuchain Explorer (Blockscout)](https://gemutest-explorer.gemuchain.io) - -## Additional Information - -- **Official Website**: https://gemuchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gemuchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/genechain.mdx b/docs/pages/solutions/chainlist/non-integrated/genechain.mdx deleted file mode 100644 index eb583ac263..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GeneChain - GeneChain Blockchain Network -description: Explore GeneChain, a blockchain network with chain ID 80. Learn about its native currency, RNA, and how to interact with the network. ---- - -# GeneChain - -GeneChain is a blockchain network with chain ID 80. - -## Network Details - -- **Chain ID**: 80 -- **Chain Name**: GeneChain -- **Short Name**: GeneChain -- **Network ID**: 80 -- **Currency**: - - **Name**: RNA - - **Symbol**: RNA - - **Decimals**: 18 - -## RPC URLs - -GeneChain can be accessed through the following RPC endpoints: - -- https://rpc.genechain.io - -## GeneChain Block Explorers - -- [GeneChain Scan](https://scan.genechain.io) - -## Additional Information - -- **Official Website**: https://scan.genechain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/genesis-coin.mdx b/docs/pages/solutions/chainlist/non-integrated/genesis-coin.mdx deleted file mode 100644 index 0585960947..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genesis-coin.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Genesis Coin - Genesis Blockchain Network -description: Explore Genesis Coin, a blockchain network with chain ID 9100. Learn about its native currency, GN Coin, and how to interact with the network. ---- - -# Genesis Coin - -Genesis Coin is a blockchain network with chain ID 9100. - -## Network Details - -- **Chain ID**: 9100 -- **Chain Name**: Genesis -- **Short Name**: GENEC -- **Network ID**: 9100 -- **Currency**: - - **Name**: GN Coin - - **Symbol**: GNC - - **Decimals**: 18 - -## RPC URLs - -Genesis Coin can be accessed through the following RPC endpoints: - -- https://genesis-gn.com -- wss://genesis-gn.com - -## Genesis Coin Block Explorers - - - -## Additional Information - -- **Official Website**: https://genesis-gn.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/genesis-l1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/genesis-l1-testnet.mdx deleted file mode 100644 index 8e71595eef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genesis-l1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Genesis L1 testnet - genesis Blockchain Network -description: Explore Genesis L1 testnet, a blockchain network with chain ID 26. Learn about its native currency, L1 testcoin, and how to interact with the network. ---- - -# Genesis L1 testnet - -Genesis L1 testnet is a blockchain network with chain ID 26. - -## Network Details - -- **Chain ID**: 26 -- **Chain Name**: genesis -- **Short Name**: L1test -- **Network ID**: 26 -- **Currency**: - - **Name**: L1 testcoin - - **Symbol**: L1test - - **Decimals**: 18 - -## RPC URLs - -Genesis L1 testnet can be accessed through the following RPC endpoints: - -- https://testrpc.genesisl1.org - -## Genesis L1 testnet Block Explorers - -- [Genesis L1 testnet explorer](https://testnet.genesisl1.org) - -## Additional Information - -- **Official Website**: https://www.genesisl1.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Genesis L1 testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/genesis-l1.mdx b/docs/pages/solutions/chainlist/non-integrated/genesis-l1.mdx deleted file mode 100644 index 2c098553ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genesis-l1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Genesis L1 - genesis Blockchain Network -description: Explore Genesis L1, a blockchain network with chain ID 29. Learn about its native currency, L1 coin, and how to interact with the network. ---- - -# Genesis L1 - -Genesis L1 is a blockchain network with chain ID 29. - -## Network Details - -- **Chain ID**: 29 -- **Chain Name**: genesis -- **Short Name**: L1 -- **Network ID**: 29 -- **Currency**: - - **Name**: L1 coin - - **Symbol**: L1 - - **Decimals**: 18 - -## RPC URLs - -Genesis L1 can be accessed through the following RPC endpoints: - -- https://rpc.genesisl1.org - -## Genesis L1 Block Explorers - -- [Genesis L1 blockchain explorer](https://explorer.genesisl1.org) - -## Additional Information - -- **Official Website**: https://www.genesisl1.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/genesys-code.mdx b/docs/pages/solutions/chainlist/non-integrated/genesys-code.mdx deleted file mode 100644 index 73bf4e660a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genesys-code.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Genesys Code Mainnet - GCODE Blockchain Network -description: Explore Genesys Code Mainnet, a blockchain network with chain ID 59971. Learn about its native currency, GenesysCode, and how to interact with the network. ---- - -# Genesys Code Mainnet - -Genesys Code Mainnet is a blockchain network with chain ID 59971. - -## Network Details - -- **Chain ID**: 59971 -- **Chain Name**: GCODE -- **Short Name**: gcode -- **Network ID**: 59971 -- **Currency**: - - **Name**: GenesysCode - - **Symbol**: GCODE - - **Decimals**: 18 - -## RPC URLs - -Genesys Code Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.genesyscode.io/ - -## Genesys Code Mainnet Block Explorers - -- [Genesys Scan](https://genesysscan.io) - -## Additional Information - -- **Official Website**: https://genesyscode.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/genesys.mdx b/docs/pages/solutions/chainlist/non-integrated/genesys.mdx deleted file mode 100644 index abadb03c5c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/genesys.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Genesys Mainnet - Genesys Blockchain Network -description: Explore Genesys Mainnet, a blockchain network with chain ID 16507. Learn about its native currency, Genesys, and how to interact with the network. ---- - -# Genesys Mainnet - -Genesys Mainnet is a blockchain network with chain ID 16507. - -## Network Details - -- **Chain ID**: 16507 -- **Chain Name**: Genesys -- **Short Name**: Genesys -- **Network ID**: 16507 -- **Currency**: - - **Name**: Genesys - - **Symbol**: GSYS - - **Decimals**: 18 - -## RPC URLs - -Genesys Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.genesys.network - -## Genesys Mainnet Block Explorers - -- [GchainExplorer](https://gchainexplorer.genesys.network) - -## Additional Information - -- **Official Website**: https://www.genesys.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/geso-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/geso-verse.mdx deleted file mode 100644 index 99ff471aed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/geso-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Geso Verse - Geso Verse Blockchain Network -description: Explore Geso Verse, a blockchain network with chain ID 428. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Geso Verse - -Geso Verse is a blockchain network with chain ID 428. - -## Network Details - -- **Chain ID**: 428 -- **Chain Name**: Geso Verse -- **Short Name**: GSV -- **Network ID**: 428 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Geso Verse can be accessed through the following RPC endpoints: - -- https://rpc.verse.gesoten.com/ - -## Geso Verse Block Explorers - -- [Geso Verse Explorer](https://explorer.verse.gesoten.com) - -## Additional Information - -- **Official Website**: https://gesoten.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gesoten-verse-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gesoten-verse-testnet.mdx deleted file mode 100644 index 917bdbddf8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gesoten-verse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gesoten Verse Testnet - Gesoten Verse Blockchain Network -description: Explore Gesoten Verse Testnet, a blockchain network with chain ID 42801. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Gesoten Verse Testnet - -Gesoten Verse Testnet is a blockchain network with chain ID 42801. - -## Network Details - -- **Chain ID**: 42801 -- **Chain Name**: Gesoten Verse -- **Short Name**: GST -- **Network ID**: 42801 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Gesoten Verse Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.verse.gesoten.com/ - -## Gesoten Verse Testnet Block Explorers - -- [Gesoten Verse Testnet Explorer](https://explorer.testnet.verse.gesoten.com) - -## Additional Information - -- **Official Website**: https://gesoten.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gesoten Verse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/giant-mammoth.mdx b/docs/pages/solutions/chainlist/non-integrated/giant-mammoth.mdx deleted file mode 100644 index e5308dd548..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/giant-mammoth.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Giant Mammoth Mainnet - GMMT Blockchain Network -description: Explore Giant Mammoth Mainnet, a blockchain network with chain ID 8989. Learn about its native currency, Giant Mammoth Coin, and how to interact with the network. ---- - -# Giant Mammoth Mainnet - -Giant Mammoth Mainnet is a blockchain network with chain ID 8989. - -## Network Details - -- **Chain ID**: 8989 -- **Chain Name**: GMMT -- **Short Name**: gmmt -- **Network ID**: 8989 -- **Currency**: - - **Name**: Giant Mammoth Coin - - **Symbol**: GMMT - - **Decimals**: 18 - -## RPC URLs - -Giant Mammoth Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-asia.gmmtchain.io - -## Giant Mammoth Mainnet Block Explorers - -- [gmmtscan](https://scan.gmmtchain.io) - -## Additional Information - -- **Official Website**: https://gmmtchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gil-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gil-testnet.mdx deleted file mode 100644 index a2e26fdd2b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gil-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GIL Testnet - GIL Blockchain Network -description: Explore GIL Testnet, a blockchain network with chain ID 1452. Learn about its native currency, GANG, and how to interact with the network. ---- - -# GIL Testnet - -GIL Testnet is a blockchain network with chain ID 1452. - -## Network Details - -- **Chain ID**: 1452 -- **Chain Name**: GIL -- **Short Name**: gil -- **Network ID**: 1452 -- **Currency**: - - **Name**: GANG - - **Symbol**: GANG - - **Decimals**: 18 - -## RPC URLs - -GIL Testnet can be accessed through the following RPC endpoints: - -- https://rpc.giltestnet.com - -## GIL Testnet Block Explorers - -- [GIL Explorer](https://explorer.giltestnet.com) - -## Additional Information - -- **Official Website**: https://gaussgang.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GIL Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gitagi-atlas-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gitagi-atlas-testnet.mdx deleted file mode 100644 index 2d25119f6e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gitagi-atlas-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GitAGI Atlas Testnet - GitAGI Blockchain Network -description: Explore GitAGI Atlas Testnet, a blockchain network with chain ID 210049. Learn about its native currency, GitAGI, and how to interact with the network. ---- - -# GitAGI Atlas Testnet - -GitAGI Atlas Testnet is a blockchain network with chain ID 210049. - -## Network Details - -- **Chain ID**: 210049 -- **Chain Name**: GitAGI -- **Short Name**: atlas -- **Network ID**: 210049 -- **Currency**: - - **Name**: GitAGI - - **Symbol**: tGAGI - - **Decimals**: 18 - -## RPC URLs - -GitAGI Atlas Testnet can be accessed through the following RPC endpoints: - -- https://rpc.gitagi.org - -## GitAGI Atlas Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://gitagi.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GitAGI Atlas Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gitshock-cartenz-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gitshock-cartenz-testnet.mdx deleted file mode 100644 index a469cde4f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gitshock-cartenz-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gitshock Cartenz Testnet - Gitshock Cartenz Blockchain Network -description: Explore Gitshock Cartenz Testnet, a blockchain network with chain ID 1881. Learn about its native currency, Gitshock Cartenz, and how to interact with the network. ---- - -# Gitshock Cartenz Testnet - -Gitshock Cartenz Testnet is a blockchain network with chain ID 1881. - -## Network Details - -- **Chain ID**: 1881 -- **Chain Name**: Gitshock Cartenz -- **Short Name**: gitshockchain -- **Network ID**: 1881 -- **Currency**: - - **Name**: Gitshock Cartenz - - **Symbol**: tGTFX - - **Decimals**: 18 - -## RPC URLs - -Gitshock Cartenz Testnet can be accessed through the following RPC endpoints: - -- https://rpc.cartenz.works - -## Gitshock Cartenz Testnet Block Explorers - -- [blockscout](https://scan.cartenz.works) - -## Additional Information - -- **Official Website**: https://gitshock.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gitshock Cartenz Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gitswarm-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gitswarm-test-network.mdx deleted file mode 100644 index 8509af294b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gitswarm-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GitSwarm Test Network - ETH Blockchain Network -description: Explore GitSwarm Test Network, a blockchain network with chain ID 28872323069. Learn about its native currency, GitSwarm Ether, and how to interact with the network. ---- - -# GitSwarm Test Network - -GitSwarm Test Network is a blockchain network with chain ID 28872323069. - -## Network Details - -- **Chain ID**: 28872323069 -- **Chain Name**: ETH -- **Short Name**: GS-ETH -- **Network ID**: 28872323069 -- **Currency**: - - **Name**: GitSwarm Ether - - **Symbol**: GS-ETH - - **Decimals**: 18 - -## RPC URLs - -GitSwarm Test Network can be accessed through the following RPC endpoints: - -- https://testnet.gitswarm.com:2096 - -## GitSwarm Test Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://gitswarm.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GitSwarm Test Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/global-trust-network.mdx b/docs/pages/solutions/chainlist/non-integrated/global-trust-network.mdx deleted file mode 100644 index 5333711dfa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/global-trust-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Global Trust Network - GTN Blockchain Network -description: Explore Global Trust Network, a blockchain network with chain ID 101010. Learn about its native currency, FREE, and how to interact with the network. ---- - -# Global Trust Network - -Global Trust Network is a blockchain network with chain ID 101010. - -## Network Details - -- **Chain ID**: 101010 -- **Chain Name**: GTN -- **Short Name**: stabilityprotocol -- **Network ID**: 101010 -- **Currency**: - - **Name**: FREE - - **Symbol**: FREE - - **Decimals**: 18 - -## RPC URLs - -Global Trust Network can be accessed through the following RPC endpoints: - -- https://gtn.stabilityprotocol.com - -## Global Trust Network Block Explorers - -- [blockscout](https://stability.blockscout.com) - -## Additional Information - -- **Official Website**: https://stabilityprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/globel-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/globel-chain.mdx deleted file mode 100644 index d22a28a9c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/globel-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Globel Chain - GC Blockchain Network -description: Explore Globel Chain, a blockchain network with chain ID 4893. Learn about its native currency, Globel Chain, and how to interact with the network. ---- - -# Globel Chain - -Globel Chain is a blockchain network with chain ID 4893. - -## Network Details - -- **Chain ID**: 4893 -- **Chain Name**: GC -- **Short Name**: GC -- **Network ID**: 4893 -- **Currency**: - - **Name**: Globel Chain - - **Symbol**: GC - - **Decimals**: 18 - -## RPC URLs - -Globel Chain can be accessed through the following RPC endpoints: - -- https://rpc.gcscan.io - -## Globel Chain Block Explorers - -- [blockscout](https://gcscan.io) - -## Additional Information - -- **Official Website**: https://gcscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/glscan.mdx b/docs/pages/solutions/chainlist/non-integrated/glscan.mdx deleted file mode 100644 index 570b098e8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/glscan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GLScan - GLC Blockchain Network -description: Explore GLScan, a blockchain network with chain ID 10222. Learn about its native currency, GLC, and how to interact with the network. ---- - -# GLScan - -GLScan is a blockchain network with chain ID 10222. - -## Network Details - -- **Chain ID**: 10222 -- **Chain Name**: GLC -- **Short Name**: glc -- **Network ID**: 10222 -- **Currency**: - - **Name**: GLC - - **Symbol**: GLC - - **Decimals**: 18 - -## RPC URLs - -GLScan can be accessed through the following RPC endpoints: - -- https://glc-dataseed.glscan.io/ - -## GLScan Block Explorers - -- [GLScan Explorer](https://glscan.io) - -## Additional Information - -- **Official Website**: https://glscan.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gm-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gm-network-testnet.mdx deleted file mode 100644 index 1a17038a3c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gm-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GM Network Testnet - GM Network Testnet Blockchain Network -description: Explore GM Network Testnet, a blockchain network with chain ID 202402181627. Learn about its native currency, Ether, and how to interact with the network. ---- - -# GM Network Testnet - -GM Network Testnet is a blockchain network with chain ID 202402181627. - -## Network Details - -- **Chain ID**: 202402181627 -- **Chain Name**: GM Network Testnet -- **Short Name**: gmnetwork-testnet -- **Network ID**: 202402181627 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -GM Network Testnet can be accessed through the following RPC endpoints: - -- https://gmnetwork-testnet.alt.technology/ - -## GM Network Testnet Block Explorers - -- [gmnetwork-testnet](https://gmnetwork-testnet-explorer.alt.technology) - -## Additional Information - -- **Official Website**: https://gmnetwork.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GM Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gm-network.mdx b/docs/pages/solutions/chainlist/non-integrated/gm-network.mdx deleted file mode 100644 index a73c98f8a6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gm-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GM Network Mainnet - GM Network Mainnet Blockchain Network -description: Explore GM Network Mainnet, a blockchain network with chain ID 2777. Learn about its native currency, Ether, and how to interact with the network. ---- - -# GM Network Mainnet - -GM Network Mainnet is a blockchain network with chain ID 2777. - -## Network Details - -- **Chain ID**: 2777 -- **Chain Name**: GM Network Mainnet -- **Short Name**: gmnetwork-mainnet -- **Network ID**: 2777 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -GM Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.gmnetwork.ai - -## GM Network Mainnet Block Explorers - -- [GM Network Mainnet Explorer](https://scan.gmnetwork.ai) - -## Additional Information - -- **Official Website**: https://gmnetwork.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gnosis-chiado-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gnosis-chiado-testnet.mdx deleted file mode 100644 index 92b0011b9f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gnosis-chiado-testnet.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Gnosis Chiado Testnet - GNO Blockchain Network -description: Explore Gnosis Chiado Testnet, a blockchain network with chain ID 10200. Learn about its native currency, Chiado xDAI, and how to interact with the network. ---- - -# Gnosis Chiado Testnet - -Gnosis Chiado Testnet is a blockchain network with chain ID 10200. - -## Network Details - -- **Chain ID**: 10200 -- **Chain Name**: GNO -- **Short Name**: chi -- **Network ID**: 10200 -- **Currency**: - - **Name**: Chiado xDAI - - **Symbol**: XDAI - - **Decimals**: 18 - -## RPC URLs - -Gnosis Chiado Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Gnosis Chiado Testnet Block Explorers - -- [blockscout](https://gnosis-chiado.blockscout.com) - -## Additional Information - -- **Official Website**: https://docs.gnosischain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gnosis Chiado Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gobbl-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gobbl-testnet.mdx deleted file mode 100644 index 8779d80976..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gobbl-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gobbl Testnet - Gobbl Testnet Blockchain Network -description: Explore Gobbl Testnet, a blockchain network with chain ID 486487. Learn about its native currency, Gobbl Token, and how to interact with the network. ---- - -# Gobbl Testnet - -Gobbl Testnet is a blockchain network with chain ID 486487. - -## Network Details - -- **Chain ID**: 486487 -- **Chain Name**: Gobbl Testnet -- **Short Name**: gbl-testnet -- **Network ID**: 486487 -- **Currency**: - - **Name**: Gobbl Token - - **Symbol**: GOBBL - - **Decimals**: 18 - -## RPC URLs - -Gobbl Testnet can be accessed through the following RPC endpoints: - -- https://rpc.gobbl.io - -## Gobbl Testnet Block Explorers - -- [Gobbl Testnet Explorer](https://explorer.gobbl.io) - -## Additional Information - -- **Official Website**: https://www.gobbl.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gobbl Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gochain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gochain-testnet.mdx deleted file mode 100644 index c6a5e6d8b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gochain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GoChain Testnet - GO Blockchain Network -description: Explore GoChain Testnet, a blockchain network with chain ID 31337. Learn about its native currency, GoChain Coin, and how to interact with the network. ---- - -# GoChain Testnet - -GoChain Testnet is a blockchain network with chain ID 31337. - -## Network Details - -- **Chain ID**: 31337 -- **Chain Name**: GO -- **Short Name**: got -- **Network ID**: 31337 -- **Currency**: - - **Name**: GoChain Coin - - **Symbol**: GO - - **Decimals**: 18 - -## RPC URLs - -GoChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.gochain.io - -## GoChain Testnet Block Explorers - -- [GoChain Testnet Explorer](https://testnet-explorer.gochain.io) - -## Additional Information - -- **Official Website**: https://gochain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GoChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gochain.mdx b/docs/pages/solutions/chainlist/non-integrated/gochain.mdx deleted file mode 100644 index 5d374834c2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gochain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GoChain - GO Blockchain Network -description: Explore GoChain, a blockchain network with chain ID 60. Learn about its native currency, GoChain Ether, and how to interact with the network. ---- - -# GoChain - -GoChain is a blockchain network with chain ID 60. - -## Network Details - -- **Chain ID**: 60 -- **Chain Name**: GO -- **Short Name**: go -- **Network ID**: 60 -- **Currency**: - - **Name**: GoChain Ether - - **Symbol**: GO - - **Decimals**: 18 - -## RPC URLs - -GoChain can be accessed through the following RPC endpoints: - -- https://rpc.gochain.io - -## GoChain Block Explorers - -- [GoChain Explorer](https://explorer.gochain.io) - -## Additional Information - -- **Official Website**: https://gochain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-(v1).mdx b/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-(v1).mdx deleted file mode 100644 index 314b48c331..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-(v1).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Godwoken Testnet (V1) - GWT Blockchain Network -description: Explore Godwoken Testnet (V1), a blockchain network with chain ID 868455272153094. Learn about its native currency, CKB, and how to interact with the network. ---- - -# Godwoken Testnet (V1) - -Godwoken Testnet (V1) is a blockchain network with chain ID 868455272153094. - -## Network Details - -- **Chain ID**: 868455272153094 -- **Chain Name**: GWT -- **Short Name**: gw-testnet-v1-deprecated -- **Network ID**: 868455272153094 -- **Currency**: - - **Name**: CKB - - **Symbol**: CKB - - **Decimals**: 8 - -## RPC URLs - -Godwoken Testnet (V1) can be accessed through the following RPC endpoints: - -- https://godwoken-testnet-web3-v1-rpc.ckbapp.dev - -## Godwoken Testnet (V1) Block Explorers - -- [GWScan Block Explorer](https://v1.aggron.gwscan.com) - -## Additional Information - -- **Official Website**: https://www.nervos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Godwoken Testnet (V1) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-v1.mdx b/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-v1.mdx deleted file mode 100644 index ff7a5602e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/godwoken-testnet-v1.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Godwoken Testnet v1 - GWT Blockchain Network -description: Explore Godwoken Testnet v1, a blockchain network with chain ID 71401. Learn about its native currency, pCKB, and how to interact with the network. ---- - -# Godwoken Testnet v1 - -Godwoken Testnet v1 is a blockchain network with chain ID 71401. - -## Network Details - -- **Chain ID**: 71401 -- **Chain Name**: GWT -- **Short Name**: gw-testnet-v1 -- **Network ID**: 71401 -- **Currency**: - - **Name**: pCKB - - **Symbol**: pCKB - - **Decimals**: 18 - -## RPC URLs - -Godwoken Testnet v1 can be accessed through the following RPC endpoints: - -- https://godwoken-testnet-v1.ckbapp.dev -- https://v1.testnet.godwoken.io/rpc - -## Godwoken Testnet v1 Block Explorers - -- [GWScan Block Explorer](https://v1.testnet.gwscan.com) - -## Additional Information - -- **Official Website**: https://www.nervos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Godwoken Testnet v1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/godwoken.mdx b/docs/pages/solutions/chainlist/non-integrated/godwoken.mdx deleted file mode 100644 index b39debb584..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/godwoken.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Godwoken Mainnet - GWT Blockchain Network -description: Explore Godwoken Mainnet, a blockchain network with chain ID 71402. Learn about its native currency, pCKB, and how to interact with the network. ---- - -# Godwoken Mainnet - -Godwoken Mainnet is a blockchain network with chain ID 71402. - -## Network Details - -- **Chain ID**: 71402 -- **Chain Name**: GWT -- **Short Name**: gw-mainnet-v1 -- **Network ID**: 71402 -- **Currency**: - - **Name**: pCKB - - **Symbol**: pCKB - - **Decimals**: 18 - -## RPC URLs - -Godwoken Mainnet can be accessed through the following RPC endpoints: - -- https://v1.mainnet.godwoken.io/rpc - -## Godwoken Mainnet Block Explorers - -- [GWScan Block Explorer](https://v1.gwscan.com) - -## Additional Information - -- **Official Website**: https://www.nervos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/goerli.mdx b/docs/pages/solutions/chainlist/non-integrated/goerli.mdx deleted file mode 100644 index 73f14020f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/goerli.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Goerli - ETH Blockchain Network -description: Explore Goerli, a blockchain network with chain ID 5. Learn about its native currency, Goerli Ether, and how to interact with the network. ---- - -# Goerli - -Goerli is a blockchain network with chain ID 5. - -## Network Details - -- **Chain ID**: 5 -- **Chain Name**: ETH -- **Short Name**: gor -- **Network ID**: 5 -- **Currency**: - - **Name**: Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Goerli can be accessed through the following RPC endpoints: - -- 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 - -## Goerli Block Explorers - -- [etherscan-goerli](https://goerli.etherscan.io) -- [blockscout-goerli](https://eth-goerli.blockscout.com) - -## Additional Information - -- **Official Website**: https://goerli.net/#about - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Goerli Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gold-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/gold-chain.mdx deleted file mode 100644 index e9aa77d7e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gold-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gold Chain - Gold Blockchain Network -description: Explore Gold Chain, a blockchain network with chain ID 4653. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Gold Chain - -Gold Chain is a blockchain network with chain ID 4653. - -## Network Details - -- **Chain ID**: 4653 -- **Chain Name**: Gold -- **Short Name**: gold -- **Network ID**: 4653 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Gold Chain can be accessed through the following RPC endpoints: - -- https://chain-rpc.gold.dev - -## Gold Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://gold.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain-testnet.mdx deleted file mode 100644 index d5a0aa24b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gold Smart Chain Testnet - STAND Blockchain Network -description: Explore Gold Smart Chain Testnet, a blockchain network with chain ID 79879. Learn about its native currency, Standard in Gold, and how to interact with the network. ---- - -# Gold Smart Chain Testnet - -Gold Smart Chain Testnet is a blockchain network with chain ID 79879. - -## Network Details - -- **Chain ID**: 79879 -- **Chain Name**: STAND -- **Short Name**: STANDt -- **Network ID**: 79879 -- **Currency**: - - **Name**: Standard in Gold - - **Symbol**: STAND - - **Decimals**: 18 - -## RPC URLs - -Gold Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.goldsmartchain.com - -## Gold Smart Chain Testnet Block Explorers - -- [Gold Smart Chain](https://testnet.goldsmartchain.com) - -## Additional Information - -- **Official Website**: https://goldsmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gold Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain.mdx deleted file mode 100644 index 3b635c685e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gold-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gold Smart Chain Mainnet - STAND Blockchain Network -description: Explore Gold Smart Chain Mainnet, a blockchain network with chain ID 6789. Learn about its native currency, Standard in Gold, and how to interact with the network. ---- - -# Gold Smart Chain Mainnet - -Gold Smart Chain Mainnet is a blockchain network with chain ID 6789. - -## Network Details - -- **Chain ID**: 6789 -- **Chain Name**: STAND -- **Short Name**: STANDm -- **Network ID**: 6789 -- **Currency**: - - **Name**: Standard in Gold - - **Symbol**: STAND - - **Decimals**: 18 - -## RPC URLs - -Gold Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.goldsmartchain.com - -## Gold Smart Chain Mainnet Block Explorers - -- [Gold Smart Chain](https://mainnet.goldsmartchain.com) - -## Additional Information - -- **Official Website**: https://goldsmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/goldfever.mdx b/docs/pages/solutions/chainlist/non-integrated/goldfever.mdx deleted file mode 100644 index 492ab82831..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/goldfever.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GoldFever - Avalanche Blockchain Network -description: Explore GoldFever, a blockchain network with chain ID 20948. Learn about its native currency, GoldFever Token, and how to interact with the network. ---- - -# GoldFever - -GoldFever is a blockchain network with chain ID 20948. - -## Network Details - -- **Chain ID**: 20948 -- **Chain Name**: Avalanche -- **Short Name**: GoldFever -- **Network ID**: 20948 -- **Currency**: - - **Name**: GoldFever Token - - **Symbol**: GFT - - **Decimals**: 18 - -## RPC URLs - -GoldFever can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/goldfever/testnet/rpc - -## GoldFever Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GoldFever Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/goldxchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/goldxchain-testnet.mdx deleted file mode 100644 index d0dfa703c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/goldxchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GoldXChain Testnet - GoldXTestnet Blockchain Network -description: Explore GoldXChain Testnet, a blockchain network with chain ID 22324. Learn about its native currency, GoldX, and how to interact with the network. ---- - -# GoldXChain Testnet - -GoldXChain Testnet is a blockchain network with chain ID 22324. - -## Network Details - -- **Chain ID**: 22324 -- **Chain Name**: GoldXTestnet -- **Short Name**: goldx-testnet -- **Network ID**: 22324 -- **Currency**: - - **Name**: GoldX - - **Symbol**: GOLDX - - **Decimals**: 18 - -## RPC URLs - -GoldXChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.goldxchain.io - -## GoldXChain Testnet Block Explorers - -- [GoldXChain Testnet Explorer](https://testnet-explorer.goldxchain.io) - -## Additional Information - -- **Official Website**: https://goldxchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GoldXChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/goldxchain.mdx b/docs/pages/solutions/chainlist/non-integrated/goldxchain.mdx deleted file mode 100644 index cb018c24f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/goldxchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GoldXChain Mainnet - GoldX Blockchain Network -description: Explore GoldXChain Mainnet, a blockchain network with chain ID 42355. Learn about its native currency, GoldX, and how to interact with the network. ---- - -# GoldXChain Mainnet - -GoldXChain Mainnet is a blockchain network with chain ID 42355. - -## Network Details - -- **Chain ID**: 42355 -- **Chain Name**: GoldX -- **Short Name**: goldx -- **Network ID**: 42355 -- **Currency**: - - **Name**: GoldX - - **Symbol**: GOLDX - - **Decimals**: 18 - -## RPC URLs - -GoldXChain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.goldxchain.io - -## GoldXChain Mainnet Block Explorers - -- [GoldXChain Explorer](https://explorer.goldxchain.io) - -## Additional Information - -- **Official Website**: https://goldxchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gon-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/gon-chain.mdx deleted file mode 100644 index 8f1c5eafa2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gon-chain.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Gon Chain - GonChain Blockchain Network -description: Explore Gon Chain, a blockchain network with chain ID 10024. Learn about its native currency, Gon Token, and how to interact with the network. ---- - -# Gon Chain - -Gon Chain is a blockchain network with chain ID 10024. - -## Network Details - -- **Chain ID**: 10024 -- **Chain Name**: GonChain -- **Short Name**: gon -- **Network ID**: 10024 -- **Currency**: - - **Name**: Gon Token - - **Symbol**: GT - - **Decimals**: 18 - -## RPC URLs - -Gon Chain can be accessed through the following RPC endpoints: - -- https://node1.testnet.gaiaopen.network -- https://node1.mainnet.gon.network -- https://node2.mainnet.gon.network -- https://node3.mainnet.gon.network -- https://node4.mainnet.gon.network - -## Gon Chain Block Explorers - -- [Gon Explorer](https://gonscan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gon Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gooddata-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gooddata-testnet.mdx deleted file mode 100644 index 810ed78f4f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gooddata-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GoodData Testnet - GooD Blockchain Network -description: Explore GoodData Testnet, a blockchain network with chain ID 32. Learn about its native currency, GoodData Testnet Ether, and how to interact with the network. ---- - -# GoodData Testnet - -GoodData Testnet is a blockchain network with chain ID 32. - -## Network Details - -- **Chain ID**: 32 -- **Chain Name**: GooD -- **Short Name**: GooDT -- **Network ID**: 32 -- **Currency**: - - **Name**: GoodData Testnet Ether - - **Symbol**: GooD - - **Decimals**: 18 - -## RPC URLs - -GoodData Testnet can be accessed through the following RPC endpoints: - -- https://test2.goodata.io - -## GoodData Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.goodata.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GoodData Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gooddata.mdx b/docs/pages/solutions/chainlist/non-integrated/gooddata.mdx deleted file mode 100644 index c95dc5ecd3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gooddata.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GoodData Mainnet - GooD Blockchain Network -description: Explore GoodData Mainnet, a blockchain network with chain ID 33. Learn about its native currency, GoodData Mainnet Ether, and how to interact with the network. ---- - -# GoodData Mainnet - -GoodData Mainnet is a blockchain network with chain ID 33. - -## Network Details - -- **Chain ID**: 33 -- **Chain Name**: GooD -- **Short Name**: GooD -- **Network ID**: 33 -- **Currency**: - - **Name**: GoodData Mainnet Ether - - **Symbol**: GooD - - **Decimals**: 18 - -## RPC URLs - -GoodData Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.goodata.io - -## GoodData Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.goodata.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gpt.mdx b/docs/pages/solutions/chainlist/non-integrated/gpt.mdx deleted file mode 100644 index cd03ff24e5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gpt.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GPT Mainnet - GPT Protocol Blockchain Network -description: Explore GPT Mainnet, a blockchain network with chain ID 1511670449. Learn about its native currency, GPT, and how to interact with the network. ---- - -# GPT Mainnet - -GPT Mainnet is a blockchain network with chain ID 1511670449. - -## Network Details - -- **Chain ID**: 1511670449 -- **Chain Name**: GPT Protocol -- **Short Name**: GPT -- **Network ID**: 1511670449 -- **Currency**: - - **Name**: GPT - - **Symbol**: GPT - - **Decimals**: 18 - -## RPC URLs - -GPT Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.gptprotocol.io - -## GPT Mainnet Block Explorers - -- [blockscout](https://explorer.gptprotocol.io) - -## Additional Information - -- **Official Website**: https://gptprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/graphlinq-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/graphlinq-blockchain.mdx deleted file mode 100644 index c4f2357b81..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/graphlinq-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Graphlinq Blockchain Mainnet - GLQ Blockchain Blockchain Network -description: Explore Graphlinq Blockchain Mainnet, a blockchain network with chain ID 614. Learn about its native currency, GLQ, and how to interact with the network. ---- - -# Graphlinq Blockchain Mainnet - -Graphlinq Blockchain Mainnet is a blockchain network with chain ID 614. - -## Network Details - -- **Chain ID**: 614 -- **Chain Name**: GLQ Blockchain -- **Short Name**: glq -- **Network ID**: 614 -- **Currency**: - - **Name**: GLQ - - **Symbol**: GLQ - - **Decimals**: 18 - -## RPC URLs - -Graphlinq Blockchain Mainnet can be accessed through the following RPC endpoints: - -- https://glq-dataseed.graphlinq.io - -## Graphlinq Blockchain Mainnet Block Explorers - -- [GLQ Explorer](https://explorer.graphlinq.io) - -## Additional Information - -- **Official Website**: https://graphlinq.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gravity-alpha-testnet-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/gravity-alpha-testnet-sepolia.mdx deleted file mode 100644 index f21fba234f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gravity-alpha-testnet-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Gravity Alpha Testnet Sepolia - Gravity Blockchain Network -description: Explore Gravity Alpha Testnet Sepolia, a blockchain network with chain ID 13505. Learn about its native currency, Sepolia Gravity, and how to interact with the network. ---- - -# Gravity Alpha Testnet Sepolia - -Gravity Alpha Testnet Sepolia is a blockchain network with chain ID 13505. - -## Network Details - -- **Chain ID**: 13505 -- **Chain Name**: Gravity -- **Short Name**: gravitysep -- **Network ID**: 13505 -- **Currency**: - - **Name**: Sepolia Gravity - - **Symbol**: G - - **Decimals**: 18 - -## RPC URLs - -Gravity Alpha Testnet Sepolia can be accessed through the following RPC endpoints: - -- https://rpc-sepolia.gravity.xyz - -## Gravity Alpha Testnet Sepolia Block Explorers - -- [Gravity Alpha Testnet Sepolia Explorer](https://explorer-sepolia.gravity.xyz) - -## Additional Information - -- **Official Website**: https://gravity.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Gravity Alpha Testnet Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gravity-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/gravity-alpha.mdx deleted file mode 100644 index f46d54deba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gravity-alpha.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Gravity Alpha Mainnet - Gravity Blockchain Network -description: Explore Gravity Alpha Mainnet, a blockchain network with chain ID 1625. Learn about its native currency, Gravity, and how to interact with the network. ---- - -# Gravity Alpha Mainnet - -Gravity Alpha Mainnet is a blockchain network with chain ID 1625. - -## Network Details - -- **Chain ID**: 1625 -- **Chain Name**: Gravity -- **Short Name**: gravity -- **Network ID**: 1625 -- **Currency**: - - **Name**: Gravity - - **Symbol**: G - - **Decimals**: 18 - -## RPC URLs - -Gravity Alpha Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.gravity.xyz - -## Gravity Alpha Mainnet Block Explorers - -- [Gravity Alpha Mainnet Explorer](https://explorer.gravity.xyz) - -## Additional Information - -- **Official Website**: https://gravity.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/green-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/green-chain-testnet.mdx deleted file mode 100644 index 89cbe247bd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/green-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Green Chain Testnet - Green Chain Blockchain Network -description: Explore Green Chain Testnet, a blockchain network with chain ID 97531. Learn about its native currency, GREEN, and how to interact with the network. ---- - -# Green Chain Testnet - -Green Chain Testnet is a blockchain network with chain ID 97531. - -## Network Details - -- **Chain ID**: 97531 -- **Chain Name**: Green Chain -- **Short Name**: greenchain -- **Network ID**: 97531 -- **Currency**: - - **Name**: GREEN - - **Symbol**: GREEN - - **Decimals**: 18 - -## RPC URLs - -Green Chain Testnet can be accessed through the following RPC endpoints: - -- https://node.greenchain.app/rpc/ - -## Green Chain Testnet Block Explorers - -- [Green Chain Explorer](https://explorer.greenchain.app) - -## Additional Information - -- **Official Website**: https://www.greenchain.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Green Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/grok-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/grok-chain.mdx deleted file mode 100644 index 435de4a2b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/grok-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Grok Chain Mainnet - Grok Blockchain Network -description: Explore Grok Chain Mainnet, a blockchain network with chain ID 72992. Learn about its native currency, Groc, and how to interact with the network. ---- - -# Grok Chain Mainnet - -Grok Chain Mainnet is a blockchain network with chain ID 72992. - -## Network Details - -- **Chain ID**: 72992 -- **Chain Name**: Grok -- **Short Name**: GrokChain -- **Network ID**: 72992 -- **Currency**: - - **Name**: Groc - - **Symbol**: GROC - - **Decimals**: 18 - -## RPC URLs - -Grok Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.grokchain.dev - -## Grok Chain Mainnet Block Explorers - -- [GrokScan](https://mainnet-explorer.grokchain.dev) - -## Additional Information - -- **Official Website**: https://grokchain.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/growfitter.mdx b/docs/pages/solutions/chainlist/non-integrated/growfitter.mdx deleted file mode 100644 index 35d0325dad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/growfitter.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Growfitter - Avalanche Blockchain Network -description: Explore Growfitter, a blockchain network with chain ID 37632. Learn about its native currency, Growfitter Token, and how to interact with the network. ---- - -# Growfitter - -Growfitter is a blockchain network with chain ID 37632. - -## Network Details - -- **Chain ID**: 37632 -- **Chain Name**: Avalanche -- **Short Name**: Growfitter -- **Network ID**: 37632 -- **Currency**: - - **Name**: Growfitter Token - - **Symbol**: GFP - - **Decimals**: 18 - -## RPC URLs - -Growfitter can be accessed through the following RPC endpoints: - -- https://testnet-growfitter-c6b76.avax-test.network/ext/bc/2JCiNdJcerhyxZXTuekSRFsGp9z7STrWTG2KRnGJpepMe2qHiJ/rpc?token=8203f538b8a9342427f586bc25bd24d454c414bdf545044963504323e474a841 - -## Growfitter Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Growfitter Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/grvt-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/grvt-sepolia-testnet.mdx deleted file mode 100644 index 3cee6d1404..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/grvt-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GRVT Sepolia Testnet - ETH Blockchain Network -description: Explore GRVT Sepolia Testnet, a blockchain network with chain ID 326. Learn about its native currency, ETH, and how to interact with the network. ---- - -# GRVT Sepolia Testnet - -GRVT Sepolia Testnet is a blockchain network with chain ID 326. - -## Network Details - -- **Chain ID**: 326 -- **Chain Name**: ETH -- **Short Name**: grvt-sepolia -- **Network ID**: 326 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -GRVT Sepolia Testnet can be accessed through the following RPC endpoints: - - - -## GRVT Sepolia Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://grvt.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GRVT Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/grvt.mdx b/docs/pages/solutions/chainlist/non-integrated/grvt.mdx deleted file mode 100644 index 373827561e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/grvt.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GRVT Mainnet - ETH Blockchain Network -description: Explore GRVT Mainnet, a blockchain network with chain ID 325. Learn about its native currency, ETH, and how to interact with the network. ---- - -# GRVT Mainnet - -GRVT Mainnet is a blockchain network with chain ID 325. - -## Network Details - -- **Chain ID**: 325 -- **Chain Name**: ETH -- **Short Name**: grvt -- **Network ID**: 325 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -GRVT Mainnet can be accessed through the following RPC endpoints: - - - -## GRVT Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://grvt.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gtcscan.mdx b/docs/pages/solutions/chainlist/non-integrated/gtcscan.mdx deleted file mode 100644 index 81427bab93..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gtcscan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GTCSCAN - GTC Blockchain Network -description: Explore GTCSCAN, a blockchain network with chain ID 3490. Learn about its native currency, GTC, and how to interact with the network. ---- - -# GTCSCAN - -GTCSCAN is a blockchain network with chain ID 3490. - -## Network Details - -- **Chain ID**: 3490 -- **Chain Name**: GTC -- **Short Name**: gtc -- **Network ID**: 3490 -- **Currency**: - - **Name**: GTC - - **Symbol**: GTC - - **Decimals**: 18 - -## RPC URLs - -GTCSCAN can be accessed through the following RPC endpoints: - -- https://gtc-dataseed.gtcscan.io/ - -## GTCSCAN Block Explorers - -- [GTCScan Explorer](https://gtcscan.io) - -## Additional Information - -- **Official Website**: https://gtcscan.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gton-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gton-testnet.mdx deleted file mode 100644 index e49b5a9488..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gton-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GTON Testnet - GTON Testnet Blockchain Network -description: Explore GTON Testnet, a blockchain network with chain ID 50021. Learn about its native currency, GCD, and how to interact with the network. ---- - -# GTON Testnet - -GTON Testnet is a blockchain network with chain ID 50021. - -## Network Details - -- **Chain ID**: 50021 -- **Chain Name**: GTON Testnet -- **Short Name**: tgton -- **Network ID**: 50021 -- **Currency**: - - **Name**: GCD - - **Symbol**: GCD - - **Decimals**: 18 - -## RPC URLs - -GTON Testnet can be accessed through the following RPC endpoints: - -- https://testnet.gton.network/ - -## GTON Testnet Block Explorers - -- [GTON Testnet Network Explorer](https://explorer.testnet.gton.network) - -## Additional Information - -- **Official Website**: https://gton.capital - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GTON Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/gton.mdx b/docs/pages/solutions/chainlist/non-integrated/gton.mdx deleted file mode 100644 index 4778447030..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gton.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: GTON Mainnet - GTON Blockchain Network -description: Explore GTON Mainnet, a blockchain network with chain ID 1000. Learn about its native currency, GCD, and how to interact with the network. ---- - -# GTON Mainnet - -GTON Mainnet is a blockchain network with chain ID 1000. - -## Network Details - -- **Chain ID**: 1000 -- **Chain Name**: GTON -- **Short Name**: gton -- **Network ID**: 1000 -- **Currency**: - - **Name**: GCD - - **Symbol**: GCD - - **Decimals**: 18 - -## RPC URLs - -GTON Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.gton.network/ - -## GTON Mainnet Block Explorers - -- [GTON Network Explorer](https://explorer.gton.network) - -## Additional Information - -- **Official Website**: https://gton.capital - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/guapcoinx.mdx b/docs/pages/solutions/chainlist/non-integrated/guapcoinx.mdx deleted file mode 100644 index 8b8e1116f6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/guapcoinx.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: GuapcoinX - GuapcoinX Blockchain Network -description: Explore GuapcoinX, a blockchain network with chain ID 71111. Learn about its native currency, GuapcoinX, and how to interact with the network. ---- - -# GuapcoinX - -GuapcoinX is a blockchain network with chain ID 71111. - -## Network Details - -- **Chain ID**: 71111 -- **Chain Name**: GuapcoinX -- **Short Name**: GuapX -- **Network ID**: 71111 -- **Currency**: - - **Name**: GuapcoinX - - **Symbol**: GuapX - - **Decimals**: 18 - -## RPC URLs - -GuapcoinX can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.guapcoinx.com/ -- https://rpc-mainnet-1.guapcoinx.com/ -- https://rpc-mainnet-2.guapcoinx.com/ - -## GuapcoinX Block Explorers - -- [GuapcoinX Explorer](http://explorer.guapcoinx.com) - -## Additional Information - -- **Official Website**: https://guapcoin.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/gunz-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/gunz-testnet.mdx deleted file mode 100644 index 32d153f409..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/gunz-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: GUNZ Testnet - tGUN Blockchain Network -description: Explore GUNZ Testnet, a blockchain network with chain ID 49321. Learn about its native currency, GUN, and how to interact with the network. ---- - -# GUNZ Testnet - -GUNZ Testnet is a blockchain network with chain ID 49321. - -## Network Details - -- **Chain ID**: 49321 -- **Chain Name**: tGUN -- **Short Name**: Stork -- **Network ID**: 49321 -- **Currency**: - - **Name**: GUN - - **Symbol**: GUN - - **Decimals**: 18 - -## RPC URLs - -GUNZ Testnet can be accessed through the following RPC endpoints: - -- https://rpc.gunz.dev/ext/bc/ryk9vkvNuKtewME2PeCgybo9sdWXGmCkBrrx4VPuZPdVdAak8/rpc - -## GUNZ Testnet Block Explorers - -- [blockscout](https://testnet.gunzscan.io) - -## Additional Information - -- **Official Website**: https://gunbygunz.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## GUNZ Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/guru-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/guru-network-testnet.mdx deleted file mode 100644 index 202f3f0332..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/guru-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Guru Network Testnet - tGURU Blockchain Network -description: Explore Guru Network Testnet, a blockchain network with chain ID 261. Learn about its native currency, testGURU, and how to interact with the network. ---- - -# Guru Network Testnet - -Guru Network Testnet is a blockchain network with chain ID 261. - -## Network Details - -- **Chain ID**: 261 -- **Chain Name**: tGURU -- **Short Name**: tguru -- **Network ID**: 261 -- **Currency**: - - **Name**: testGURU - - **Symbol**: tGURU - - **Decimals**: 18 - -## RPC URLs - -Guru Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc.gurunetwork.ai/archive/261 - -## Guru Network Testnet Block Explorers - -- [guruscan](https://scan.gurunetwork.ai) - -## Additional Information - -- **Official Website**: https://gurunetwork.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Guru Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/haic.mdx b/docs/pages/solutions/chainlist/non-integrated/haic.mdx deleted file mode 100644 index fcbfa55809..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haic.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Haic - Haic Blockchain Network -description: Explore Haic, a blockchain network with chain ID 803. Learn about its native currency, Haicoin, and how to interact with the network. ---- - -# Haic - -Haic is a blockchain network with chain ID 803. - -## Network Details - -- **Chain ID**: 803 -- **Chain Name**: Haic -- **Short Name**: haic -- **Network ID**: 803 -- **Currency**: - - **Name**: Haicoin - - **Symbol**: HAIC - - **Decimals**: 18 - -## RPC URLs - -Haic can be accessed through the following RPC endpoints: - -- https://orig.haichain.io/ - -## Haic Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.haichain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/haku-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/haku-chain-testnet.mdx deleted file mode 100644 index 58cad7e202..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haku-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haku Chain Testnet - Avalanche Blockchain Network -description: Explore Haku Chain Testnet, a blockchain network with chain ID 68688. Learn about its native currency, Haku Chain Testnet Token, and how to interact with the network. ---- - -# Haku Chain Testnet - -Haku Chain Testnet is a blockchain network with chain ID 68688. - -## Network Details - -- **Chain ID**: 68688 -- **Chain Name**: Avalanche -- **Short Name**: Haku Chain Testnet -- **Network ID**: 68688 -- **Currency**: - - **Name**: Haku Chain Testnet Token - - **Symbol**: HAKU - - **Decimals**: 18 - -## RPC URLs - -Haku Chain Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/hakuchain/testnet/rpc - -## Haku Chain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Haku Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/halo.mdx b/docs/pages/solutions/chainlist/non-integrated/halo.mdx deleted file mode 100644 index a5a03d501a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/halo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HALO Mainnet - HALO Blockchain Network -description: Explore HALO Mainnet, a blockchain network with chain ID 1280. Learn about its native currency, HALO, and how to interact with the network. ---- - -# HALO Mainnet - -HALO Mainnet is a blockchain network with chain ID 1280. - -## Network Details - -- **Chain ID**: 1280 -- **Chain Name**: HALO -- **Short Name**: HO -- **Network ID**: 1280 -- **Currency**: - - **Name**: HALO - - **Symbol**: HO - - **Decimals**: 18 - -## RPC URLs - -HALO Mainnet can be accessed through the following RPC endpoints: - -- https://nodes.halo.land - -## HALO Mainnet Block Explorers - -- [HALOexplorer](https://browser.halo.land) - -## Additional Information - -- **Official Website**: https://halo.land/#/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ham.mdx b/docs/pages/solutions/chainlist/non-integrated/ham.mdx deleted file mode 100644 index e5b88894a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ham.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ham - Ham Blockchain Network -description: Explore Ham, a blockchain network with chain ID 5112. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Ham - -Ham is a blockchain network with chain ID 5112. - -## Network Details - -- **Chain ID**: 5112 -- **Chain Name**: Ham -- **Short Name**: ham -- **Network ID**: 5112 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ham can be accessed through the following RPC endpoints: - -- https://rpc.ham.fun - -## Ham Block Explorers - -- [blockscout](https://explorer.ham.fun) - -## Additional Information - -- **Official Website**: https://ham.fun - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hammer-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/hammer-chain.mdx deleted file mode 100644 index 62f2bf695c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hammer-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hammer Chain Mainnet - HammerChain Blockchain Network -description: Explore Hammer Chain Mainnet, a blockchain network with chain ID 25888. Learn about its native currency, GOLDT, and how to interact with the network. ---- - -# Hammer Chain Mainnet - -Hammer Chain Mainnet is a blockchain network with chain ID 25888. - -## Network Details - -- **Chain ID**: 25888 -- **Chain Name**: HammerChain -- **Short Name**: GOLDT -- **Network ID**: 25888 -- **Currency**: - - **Name**: GOLDT - - **Symbol**: GOLDT - - **Decimals**: 18 - -## RPC URLs - -Hammer Chain Mainnet can be accessed through the following RPC endpoints: - -- https://www.hammerchain.io/rpc - -## Hammer Chain Mainnet Block Explorers - -- [Hammer Chain Explorer](https://www.hammerchain.io) - -## Additional Information - -- **Official Website**: https://www.hammerchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hapchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hapchain-testnet.mdx deleted file mode 100644 index b9f5ec36c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hapchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HAPchain Testnet - HAPchain Blockchain Network -description: Explore HAPchain Testnet, a blockchain network with chain ID 373737. Learn about its native currency, HAP, and how to interact with the network. ---- - -# HAPchain Testnet - -HAPchain Testnet is a blockchain network with chain ID 373737. - -## Network Details - -- **Chain ID**: 373737 -- **Chain Name**: HAPchain -- **Short Name**: hap-testnet -- **Network ID**: 373737 -- **Currency**: - - **Name**: HAP - - **Symbol**: HAP - - **Decimals**: 18 - -## RPC URLs - -HAPchain Testnet can be accessed through the following RPC endpoints: - -- https://jsonrpc-test.hap.land - -## HAPchain Testnet Block Explorers - -- [HAP EVM Explorer (Blockscout)](https://blockscout-test.hap.land) - -## Additional Information - -- **Official Website**: https://hap.land - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HAPchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hapchain.mdx b/docs/pages/solutions/chainlist/non-integrated/hapchain.mdx deleted file mode 100644 index 83f4734132..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hapchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HAPchain - HAPchain Blockchain Network -description: Explore HAPchain, a blockchain network with chain ID 8794598. Learn about its native currency, HAP, and how to interact with the network. ---- - -# HAPchain - -HAPchain is a blockchain network with chain ID 8794598. - -## Network Details - -- **Chain ID**: 8794598 -- **Chain Name**: HAPchain -- **Short Name**: hap -- **Network ID**: 8794598 -- **Currency**: - - **Name**: HAP - - **Symbol**: HAP - - **Decimals**: 18 - -## RPC URLs - -HAPchain can be accessed through the following RPC endpoints: - -- https://jsonrpc.hap.land - -## HAPchain Block Explorers - -- [HAP EVM Explorer (Blockscout)](https://blockscout.hap.land) - -## Additional Information - -- **Official Website**: https://hap.land - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/haqq-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/haqq-chain-testnet.mdx deleted file mode 100644 index 0a488242d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haqq-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haqq Chain Testnet - TestEdge2 Blockchain Network -description: Explore Haqq Chain Testnet, a blockchain network with chain ID 54211. Learn about its native currency, Islamic Coin, and how to interact with the network. ---- - -# Haqq Chain Testnet - -Haqq Chain Testnet is a blockchain network with chain ID 54211. - -## Network Details - -- **Chain ID**: 54211 -- **Chain Name**: TestEdge2 -- **Short Name**: ISLMT -- **Network ID**: 54211 -- **Currency**: - - **Name**: Islamic Coin - - **Symbol**: ISLMT - - **Decimals**: 18 - -## RPC URLs - -Haqq Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.eth.testedge2.haqq.network - -## Haqq Chain Testnet Block Explorers - -- [TestEdge HAQQ Explorer](https://explorer.testedge2.haqq.network) - -## Additional Information - -- **Official Website**: https://islamiccoin.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Haqq Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/haqq-network.mdx b/docs/pages/solutions/chainlist/non-integrated/haqq-network.mdx deleted file mode 100644 index 2658450bdc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haqq-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haqq Network - Haqq Blockchain Network -description: Explore Haqq Network, a blockchain network with chain ID 11235. Learn about its native currency, Islamic Coin, and how to interact with the network. ---- - -# Haqq Network - -Haqq Network is a blockchain network with chain ID 11235. - -## Network Details - -- **Chain ID**: 11235 -- **Chain Name**: Haqq -- **Short Name**: ISLM -- **Network ID**: 11235 -- **Currency**: - - **Name**: Islamic Coin - - **Symbol**: ISLM - - **Decimals**: 18 - -## RPC URLs - -Haqq Network can be accessed through the following RPC endpoints: - -- 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 - -## Haqq Network Block Explorers - -- [Mainnet HAQQ Explorer](https://explorer.haqq.network) - -## Additional Information - -- **Official Website**: https://islamiccoin.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/haradev-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/haradev-testnet.mdx deleted file mode 100644 index d4583745e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haradev-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haradev Testnet - Ntity Blockchain Network -description: Explore Haradev Testnet, a blockchain network with chain ID 197710212031. Learn about its native currency, Ntity Haradev, and how to interact with the network. ---- - -# Haradev Testnet - -Haradev Testnet is a blockchain network with chain ID 197710212031. - -## Network Details - -- **Chain ID**: 197710212031 -- **Chain Name**: Ntity -- **Short Name**: ntt-haradev -- **Network ID**: 197710212031 -- **Currency**: - - **Name**: Ntity Haradev - - **Symbol**: NTTH - - **Decimals**: 18 - -## RPC URLs - -Haradev Testnet can be accessed through the following RPC endpoints: - -- https://blockchain.haradev.com - -## Haradev Testnet Block Explorers - -- [Ntity Haradev Blockscout](https://blockscout.haradev.com) - -## Additional Information - -- **Official Website**: https://ntity.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Haradev Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-0.mdx deleted file mode 100644 index b26901b542..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-0.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Harmony Devnet Shard 0 - Harmony Blockchain Network -description: Explore Harmony Devnet Shard 0, a blockchain network with chain ID 1666900000. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Devnet Shard 0 - -Harmony Devnet Shard 0 is a blockchain network with chain ID 1666900000. - -## Network Details - -- **Chain ID**: 1666900000 -- **Chain Name**: Harmony -- **Short Name**: hmy-ps-s0 -- **Network ID**: 1666900000 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Devnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.s0.ps.hmny.io - -## Harmony Devnet Shard 0 Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-1.mdx deleted file mode 100644 index 63e56f1286..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-devnet-shard-1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Harmony Devnet Shard 1 - Harmony Blockchain Network -description: Explore Harmony Devnet Shard 1, a blockchain network with chain ID 1666900001. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Devnet Shard 1 - -Harmony Devnet Shard 1 is a blockchain network with chain ID 1666900001. - -## Network Details - -- **Chain ID**: 1666900001 -- **Chain Name**: Harmony -- **Short Name**: hmy-ps-s1 -- **Network ID**: 1666900001 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Devnet Shard 1 can be accessed through the following RPC endpoints: - -- https://api.s1.ps.hmny.io - -## Harmony Devnet Shard 1 Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-shard-0.mdx deleted file mode 100644 index d1162a0177..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-0.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Harmony Mainnet Shard 0 - Harmony Blockchain Network -description: Explore Harmony Mainnet Shard 0, a blockchain network with chain ID 1666600000. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Mainnet Shard 0 - -Harmony Mainnet Shard 0 is a blockchain network with chain ID 1666600000. - -## Network Details - -- **Chain ID**: 1666600000 -- **Chain Name**: Harmony -- **Short Name**: hmy-s0 -- **Network ID**: 1666600000 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Mainnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.harmony.one -- https://a.api.s0.t.hmny.io -- https://api.s0.t.hmny.io -- https://rpc.ankr.com/harmony -- https://harmony.api.onfinality.io/public -- https://1rpc.io/one -- https://harmony-0.drpc.org -- wss://harmony-0.drpc.org - -## Harmony Mainnet Shard 0 Block Explorers - -- [Harmony Block Explorer](https://explorer.harmony.one) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-shard-1.mdx deleted file mode 100644 index fcdbcdb63d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-1.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Harmony Mainnet Shard 1 - Harmony Blockchain Network -description: Explore Harmony Mainnet Shard 1, a blockchain network with chain ID 1666600001. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Mainnet Shard 1 - -Harmony Mainnet Shard 1 is a blockchain network with chain ID 1666600001. - -## Network Details - -- **Chain ID**: 1666600001 -- **Chain Name**: Harmony -- **Short Name**: hmy-s1 -- **Network ID**: 1666600001 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Mainnet Shard 1 can be accessed through the following RPC endpoints: - -- https://api.s1.t.hmny.io -- https://harmony-1.drpc.org -- wss://harmony-1.drpc.org - -## Harmony Mainnet Shard 1 Block Explorers - -- [Harmony Block Explorer](https://explorer.harmony.one/blocks/shard/1) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-2.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-shard-2.mdx deleted file mode 100644 index 859b0f1577..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Harmony Mainnet Shard 2 - Harmony Blockchain Network -description: Explore Harmony Mainnet Shard 2, a blockchain network with chain ID 1666600002. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Mainnet Shard 2 - -Harmony Mainnet Shard 2 is a blockchain network with chain ID 1666600002. - -## Network Details - -- **Chain ID**: 1666600002 -- **Chain Name**: Harmony -- **Short Name**: hmy-s2 -- **Network ID**: 1666600002 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Mainnet Shard 2 can be accessed through the following RPC endpoints: - -- https://api.s2.t.hmny.io - -## Harmony Mainnet Shard 2 Block Explorers - -- [Harmony Block Explorer](https://explorer.harmony.one/blocks/shard/2) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-3.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-shard-3.mdx deleted file mode 100644 index f0cbc2b0ea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-shard-3.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Harmony Mainnet Shard 3 - Harmony Blockchain Network -description: Explore Harmony Mainnet Shard 3, a blockchain network with chain ID 1666600003. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Mainnet Shard 3 - -Harmony Mainnet Shard 3 is a blockchain network with chain ID 1666600003. - -## Network Details - -- **Chain ID**: 1666600003 -- **Chain Name**: Harmony -- **Short Name**: hmy-s3 -- **Network ID**: 1666600003 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Mainnet Shard 3 can be accessed through the following RPC endpoints: - -- https://api.s3.t.hmny.io - -## Harmony Mainnet Shard 3 Block Explorers - -- [Harmony Block Explorer](https://explorer.harmony.one/blocks/shard/3) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-0.mdx deleted file mode 100644 index 47202a6b42..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-0.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Harmony Testnet Shard 0 - Harmony Blockchain Network -description: Explore Harmony Testnet Shard 0, a blockchain network with chain ID 1666700000. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Testnet Shard 0 - -Harmony Testnet Shard 0 is a blockchain network with chain ID 1666700000. - -## Network Details - -- **Chain ID**: 1666700000 -- **Chain Name**: Harmony -- **Short Name**: hmy-b-s0 -- **Network ID**: 1666700000 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Testnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.s0.b.hmny.io - -## Harmony Testnet Shard 0 Block Explorers - -- [Harmony Testnet Block Explorer](https://explorer.testnet.harmony.one) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Harmony Testnet Shard 0 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-1.mdx deleted file mode 100644 index de17b73a5c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/harmony-testnet-shard-1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Harmony Testnet Shard 1 - Harmony Blockchain Network -description: Explore Harmony Testnet Shard 1, a blockchain network with chain ID 1666700001. Learn about its native currency, ONE, and how to interact with the network. ---- - -# Harmony Testnet Shard 1 - -Harmony Testnet Shard 1 is a blockchain network with chain ID 1666700001. - -## Network Details - -- **Chain ID**: 1666700001 -- **Chain Name**: Harmony -- **Short Name**: hmy-b-s1 -- **Network ID**: 1666700001 -- **Currency**: - - **Name**: ONE - - **Symbol**: ONE - - **Decimals**: 18 - -## RPC URLs - -Harmony Testnet Shard 1 can be accessed through the following RPC endpoints: - -- https://api.s1.b.hmny.io - -## Harmony Testnet Shard 1 Block Explorers - -- [Harmony Block Explorer](https://explorer.testnet.harmony.one) - -## Additional Information - -- **Official Website**: https://www.harmony.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Harmony Testnet Shard 1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hashbit.mdx b/docs/pages/solutions/chainlist/non-integrated/hashbit.mdx deleted file mode 100644 index 5f6cd63346..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hashbit.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: HashBit Mainnet - HBIT Blockchain Network -description: Explore HashBit Mainnet, a blockchain network with chain ID 11119. Learn about its native currency, HashBit Native Token, and how to interact with the network. ---- - -# HashBit Mainnet - -HashBit Mainnet is a blockchain network with chain ID 11119. - -## Network Details - -- **Chain ID**: 11119 -- **Chain Name**: HBIT -- **Short Name**: hbit -- **Network ID**: 11119 -- **Currency**: - - **Name**: HashBit Native Token - - **Symbol**: HBIT - - **Decimals**: 18 - -## RPC URLs - -HashBit Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.hashbit.org -- https://rpc.hashbit.org - -## HashBit Mainnet Block Explorers - -- [hashbitscan](https://explorer.hashbit.org) - -## Additional Information - -- **Official Website**: https://hashbit.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hashfire.mdx b/docs/pages/solutions/chainlist/non-integrated/hashfire.mdx deleted file mode 100644 index ba2f7e29b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hashfire.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hashfire - Avalanche Blockchain Network -description: Explore Hashfire , a blockchain network with chain ID 4227. Learn about its native currency, Hashfire Token, and how to interact with the network. ---- - -# Hashfire - -Hashfire is a blockchain network with chain ID 4227. - -## Network Details - -- **Chain ID**: 4227 -- **Chain Name**: Avalanche -- **Short Name**: Hashfire -- **Network ID**: 4227 -- **Currency**: - - **Name**: Hashfire Token - - **Symbol**: HASHD - - **Decimals**: 18 - -## RPC URLs - -Hashfire can be accessed through the following RPC endpoints: - -- https://testnet-hashfire-a407c.avax-test.network/ext/bc/XfhdpSFy9nmPCFbc4a4HqPmeXssc1Hne4X4ZNwWrFmJJiThPt/rpc?token=8b86f11ebc93e2060cd73c78bd725e728f0b0376b705e5ffa9555551f217bcf4 - -## Hashfire Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hashfire Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet(discard).mdx b/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet(discard).mdx deleted file mode 100644 index f1b53f5495..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet(discard).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HashKey Chain Testnet(discard) - HashKey Blockchain Network -description: Explore HashKey Chain Testnet(discard), a blockchain network with chain ID 230315. Learn about its native currency, HashKey Token, and how to interact with the network. ---- - -# HashKey Chain Testnet(discard) - -HashKey Chain Testnet(discard) is a blockchain network with chain ID 230315. - -## Network Details - -- **Chain ID**: 230315 -- **Chain Name**: HashKey -- **Short Name**: hsktest -- **Network ID**: 230315 -- **Currency**: - - **Name**: HashKey Token - - **Symbol**: tHSK - - **Decimals**: 18 - -## RPC URLs - -HashKey Chain Testnet(discard) can be accessed through the following RPC endpoints: - -- https://testnet.hashkeychain/rpc - -## HashKey Chain Testnet(discard) Block Explorers - -- [HashKey Chain Testnet Explorer](https://testnet.hashkeyscan.io) - -## Additional Information - -- **Official Website**: https://www.hashkey.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HashKey Chain Testnet(discard) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet.mdx deleted file mode 100644 index 70ac5080e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hashkey-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HashKey Chain Testnet - HashKey Chain Testnet Blockchain Network -description: Explore HashKey Chain Testnet, a blockchain network with chain ID 133. Learn about its native currency, HashKey EcoPoints, and how to interact with the network. ---- - -# HashKey Chain Testnet - -HashKey Chain Testnet is a blockchain network with chain ID 133. - -## Network Details - -- **Chain ID**: 133 -- **Chain Name**: HashKey Chain Testnet -- **Short Name**: HSKT -- **Network ID**: 133 -- **Currency**: - - **Name**: HashKey EcoPoints - - **Symbol**: HSK - - **Decimals**: 18 - -## RPC URLs - -HashKey Chain Testnet can be accessed through the following RPC endpoints: - -- https://hashkeychain-testnet.alt.technology - -## HashKey Chain Testnet Block Explorers - -- [blockscout](https://hashkeychain-testnet-explorer.alt.technology) - -## Additional Information - -- **Official Website**: https://hashkey.cloud - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HashKey Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/haven1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/haven1-testnet.mdx deleted file mode 100644 index 06165a7a84..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haven1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haven1 Testnet - haven1 Blockchain Network -description: Explore Haven1 Testnet, a blockchain network with chain ID 810. Learn about its native currency, Haven1, and how to interact with the network. ---- - -# Haven1 Testnet - -Haven1 Testnet is a blockchain network with chain ID 810. - -## Network Details - -- **Chain ID**: 810 -- **Chain Name**: haven1 -- **Short Name**: h1 -- **Network ID**: 810 -- **Currency**: - - **Name**: Haven1 - - **Symbol**: H1 - - **Decimals**: 18 - -## RPC URLs - -Haven1 Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.haven1.org - -## Haven1 Testnet Block Explorers - -- [Haven1 Explorer](https://testnet-explorer.haven1.org) - -## Additional Information - -- **Official Website**: https://www.haven1.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Haven1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/haymo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/haymo-testnet.mdx deleted file mode 100644 index 5debc15fa7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/haymo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Haymo Testnet - tHYM Blockchain Network -description: Explore Haymo Testnet, a blockchain network with chain ID 234666. Learn about its native currency, HAYMO, and how to interact with the network. ---- - -# Haymo Testnet - -Haymo Testnet is a blockchain network with chain ID 234666. - -## Network Details - -- **Chain ID**: 234666 -- **Chain Name**: tHYM -- **Short Name**: hym -- **Network ID**: 234666 -- **Currency**: - - **Name**: HAYMO - - **Symbol**: HYM - - **Decimals**: 18 - -## RPC URLs - -Haymo Testnet can be accessed through the following RPC endpoints: - -- https://testnet1.haymo.network - -## Haymo Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://haymoswap.web.app/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Haymo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hazlor-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hazlor-testnet.mdx deleted file mode 100644 index 64663628dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hazlor-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Hazlor Testnet - SCAS Blockchain Network -description: Explore Hazlor Testnet, a blockchain network with chain ID 7878. Learn about its native currency, Hazlor Test Coin, and how to interact with the network. ---- - -# Hazlor Testnet - -Hazlor Testnet is a blockchain network with chain ID 7878. - -## Network Details - -- **Chain ID**: 7878 -- **Chain Name**: SCAS -- **Short Name**: tscas -- **Network ID**: 7878 -- **Currency**: - - **Name**: Hazlor Test Coin - - **Symbol**: TSCAS - - **Decimals**: 18 - -## RPC URLs - -Hazlor Testnet can be accessed through the following RPC endpoints: - -- https://hatlas.rpc.hazlor.com:8545 -- wss://hatlas.rpc.hazlor.com:8546 - -## Hazlor Testnet Block Explorers - -- [Hazlor Testnet Explorer](https://explorer.hazlor.com) - -## Additional Information - -- **Official Website**: https://hazlor.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hazlor Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hedera-localnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hedera-localnet.mdx deleted file mode 100644 index 9ea7b94b99..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hedera-localnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hedera Localnet - Hedera Blockchain Network -description: Explore Hedera Localnet, a blockchain network with chain ID 298. Learn about its native currency, hbar, and how to interact with the network. ---- - -# Hedera Localnet - -Hedera Localnet is a blockchain network with chain ID 298. - -## Network Details - -- **Chain ID**: 298 -- **Chain Name**: Hedera -- **Short Name**: hedera-localnet -- **Network ID**: 298 -- **Currency**: - - **Name**: hbar - - **Symbol**: HBAR - - **Decimals**: 18 - -## RPC URLs - -Hedera Localnet can be accessed through the following RPC endpoints: - - - -## Hedera Localnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://hedera.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hedera-previewnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hedera-previewnet.mdx deleted file mode 100644 index e8865bd6d7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hedera-previewnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hedera Previewnet - Hedera Blockchain Network -description: Explore Hedera Previewnet, a blockchain network with chain ID 297. Learn about its native currency, hbar, and how to interact with the network. ---- - -# Hedera Previewnet - -Hedera Previewnet is a blockchain network with chain ID 297. - -## Network Details - -- **Chain ID**: 297 -- **Chain Name**: Hedera -- **Short Name**: hedera-previewnet -- **Network ID**: 297 -- **Currency**: - - **Name**: hbar - - **Symbol**: HBAR - - **Decimals**: 18 - -## RPC URLs - -Hedera Previewnet can be accessed through the following RPC endpoints: - -- https://previewnet.hashio.io/api - -## Hedera Previewnet Block Explorers - -- [HashScan](https://hashscan.io/previewnet) - -## Additional Information - -- **Official Website**: https://hedera.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hedera-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hedera-testnet.mdx deleted file mode 100644 index 84ce96254b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hedera-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Hedera Testnet - Hedera Blockchain Network -description: Explore Hedera Testnet, a blockchain network with chain ID 296. Learn about its native currency, hbar, and how to interact with the network. ---- - -# Hedera Testnet - -Hedera Testnet is a blockchain network with chain ID 296. - -## Network Details - -- **Chain ID**: 296 -- **Chain Name**: Hedera -- **Short Name**: hedera-testnet -- **Network ID**: 296 -- **Currency**: - - **Name**: hbar - - **Symbol**: HBAR - - **Decimals**: 18 - -## RPC URLs - -Hedera Testnet can be accessed through the following RPC endpoints: - -- https://testnet.hashio.io/api - -## Hedera Testnet Block Explorers - -- [HashScan](https://hashscan.io/testnet) -- [Arkhia Explorer](https://explorer.arkhia.io) -- [DragonGlass](https://app.dragonglass.me) -- [Hedera Explorer](https://hederaexplorer.io) -- [Ledger Works Explore](https://explore.lworks.io) - -## Additional Information - -- **Official Website**: https://hedera.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hedera Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hedera.mdx b/docs/pages/solutions/chainlist/non-integrated/hedera.mdx deleted file mode 100644 index ba1726cc91..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hedera.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hedera Mainnet - Hedera Blockchain Network -description: Explore Hedera Mainnet, a blockchain network with chain ID 295. Learn about its native currency, hbar, and how to interact with the network. ---- - -# Hedera Mainnet - -Hedera Mainnet is a blockchain network with chain ID 295. - -## Network Details - -- **Chain ID**: 295 -- **Chain Name**: Hedera -- **Short Name**: hedera-mainnet -- **Network ID**: 295 -- **Currency**: - - **Name**: hbar - - **Symbol**: HBAR - - **Decimals**: 18 - -## RPC URLs - -Hedera Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.hashio.io/api - -## Hedera Mainnet Block Explorers - -- [HashScan](https://hashscan.io/mainnet) -- [Arkhia Explorer](https://explorer.arkhia.io) -- [DragonGlass](https://app.dragonglass.me) -- [Hedera Explorer](https://hederaexplorer.io) -- [Ledger Works Explore](https://explore.lworks.io) - -## Additional Information - -- **Official Website**: https://hedera.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hedwig-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hedwig-testnet.mdx deleted file mode 100644 index 2a11b3b136..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hedwig-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: hedwig-testnet - hedwig-testnet Blockchain Network -description: Explore hedwig-testnet, a blockchain network with chain ID 150150. Learn about its native currency, Ether, and how to interact with the network. ---- - -# hedwig-testnet - -hedwig-testnet is a blockchain network with chain ID 150150. - -## Network Details - -- **Chain ID**: 150150 -- **Chain Name**: hedwig-testnet -- **Short Name**: hedwig-testnet -- **Network ID**: 150150 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -hedwig-testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.hedwig.build - -## hedwig-testnet Block Explorers - -- [hedwig-testnet Explorer](https://explorer-testnet.hedwig.build) - -## Additional Information - -- **Official Website**: https://thirdweb.com/150150 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## hedwig-testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime-testnet.mdx deleted file mode 100644 index e3e2e70f07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hela Official Runtime Testnet - Hela Blockchain Network -description: Explore Hela Official Runtime Testnet, a blockchain network with chain ID 666888. Learn about its native currency, Hela HLUSD, and how to interact with the network. ---- - -# Hela Official Runtime Testnet - -Hela Official Runtime Testnet is a blockchain network with chain ID 666888. - -## Network Details - -- **Chain ID**: 666888 -- **Chain Name**: Hela -- **Short Name**: hela-testnet -- **Network ID**: 666888 -- **Currency**: - - **Name**: Hela HLUSD - - **Symbol**: HLUSD - - **Decimals**: 18 - -## RPC URLs - -Hela Official Runtime Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.helachain.com - -## Hela Official Runtime Testnet Block Explorers - -- [Hela Official Runtime Testnet Explorer](https://testnet-blockexplorer.helachain.com) - -## Additional Information - -- **Official Website**: https://helalabs.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hela Official Runtime Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime.mdx b/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime.mdx deleted file mode 100644 index 2294e5fe00..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hela-official-runtime.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hela Official Runtime Mainnet - Hela Blockchain Network -description: Explore Hela Official Runtime Mainnet, a blockchain network with chain ID 8668. Learn about its native currency, Hela HLUSD, and how to interact with the network. ---- - -# Hela Official Runtime Mainnet - -Hela Official Runtime Mainnet is a blockchain network with chain ID 8668. - -## Network Details - -- **Chain ID**: 8668 -- **Chain Name**: Hela -- **Short Name**: hela -- **Network ID**: 8668 -- **Currency**: - - **Name**: Hela HLUSD - - **Symbol**: HLUSD - - **Decimals**: 18 - -## RPC URLs - -Hela Official Runtime Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.helachain.com - -## Hela Official Runtime Mainnet Block Explorers - -- [Hela Official Runtime Mainnet Explorer](https://mainnet-blockexplorer.helachain.com) - -## Additional Information - -- **Official Website**: https://helalabs.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/help-the-homeless.mdx b/docs/pages/solutions/chainlist/non-integrated/help-the-homeless.mdx deleted file mode 100644 index e58980e891..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/help-the-homeless.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Help The Homeless - mainnet Blockchain Network -description: Explore Help The Homeless, a blockchain network with chain ID 7118. Learn about its native currency, Help The Homeless Coin, and how to interact with the network. ---- - -# Help The Homeless - -Help The Homeless is a blockchain network with chain ID 7118. - -## Network Details - -- **Chain ID**: 7118 -- **Chain Name**: mainnet -- **Short Name**: hth -- **Network ID**: 7118 -- **Currency**: - - **Name**: Help The Homeless Coin - - **Symbol**: HTH - - **Decimals**: 18 - -## RPC URLs - -Help The Homeless can be accessed through the following RPC endpoints: - - - -## Help The Homeless Block Explorers - - - -## Additional Information - -- **Official Website**: https://hth.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hemi-network.mdx b/docs/pages/solutions/chainlist/non-integrated/hemi-network.mdx deleted file mode 100644 index c8b8f74531..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hemi-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hemi Network - ETH Blockchain Network -description: Explore Hemi Network, a blockchain network with chain ID 43111. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Hemi Network - -Hemi Network is a blockchain network with chain ID 43111. - -## Network Details - -- **Chain ID**: 43111 -- **Chain Name**: ETH -- **Short Name**: hemi -- **Network ID**: 43111 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hemi Network can be accessed through the following RPC endpoints: - - - -## Hemi Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://hemi.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hemi-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/hemi-sepolia.mdx deleted file mode 100644 index 703660769d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hemi-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hemi Sepolia - ETH Blockchain Network -description: Explore Hemi Sepolia, a blockchain network with chain ID 743111. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Hemi Sepolia - -Hemi Sepolia is a blockchain network with chain ID 743111. - -## Network Details - -- **Chain ID**: 743111 -- **Chain Name**: ETH -- **Short Name**: hemi-sep -- **Network ID**: 743111 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hemi Sepolia can be accessed through the following RPC endpoints: - -- https://testnet.rpc.hemi.network/rpc - -## Hemi Sepolia Block Explorers - -- [blockscout](https://testnet.explorer.hemi.xyz) - -## Additional Information - -- **Official Website**: https://hemi.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hemi Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/henez.mdx b/docs/pages/solutions/chainlist/non-integrated/henez.mdx deleted file mode 100644 index 0445bbd249..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/henez.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Henez - Henez Blockchain Network -description: Explore Henez, a blockchain network with chain ID 911111. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Henez - -Henez is a blockchain network with chain ID 911111. - -## Network Details - -- **Chain ID**: 911111 -- **Chain Name**: Henez -- **Short Name**: ETH -- **Network ID**: 911111 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Henez can be accessed through the following RPC endpoints: - -- https://henez-testnet.rpc.caldera.xyz/http -- wss://henez-testnet.rpc.caldera.xyz/ws - -## Henez Block Explorers - -- [Henez Testnet explorer](https://henez-testnet.explorer.caldera.xyz/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Henez Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hertz-network.mdx b/docs/pages/solutions/chainlist/non-integrated/hertz-network.mdx deleted file mode 100644 index e8524f3093..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hertz-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hertz Network Mainnet - HTZ Blockchain Network -description: Explore Hertz Network Mainnet, a blockchain network with chain ID 26600. Learn about its native currency, Hertz, and how to interact with the network. ---- - -# Hertz Network Mainnet - -Hertz Network Mainnet is a blockchain network with chain ID 26600. - -## Network Details - -- **Chain ID**: 26600 -- **Chain Name**: HTZ -- **Short Name**: HTZ -- **Network ID**: 26600 -- **Currency**: - - **Name**: Hertz - - **Symbol**: HTZ - - **Decimals**: 18 - -## RPC URLs - -Hertz Network Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.hertzscan.com - -## Hertz Network Mainnet Block Explorers - -- [Hertz Scan](https://hertzscan.com) - -## Additional Information - -- **Official Website**: https://www.hertz-network.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/high-performance-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/high-performance-blockchain.mdx deleted file mode 100644 index 4f4f290637..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/high-performance-blockchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: High Performance Blockchain - HPB Blockchain Network -description: Explore High Performance Blockchain, a blockchain network with chain ID 269. Learn about its native currency, High Performance Blockchain Ether, and how to interact with the network. ---- - -# High Performance Blockchain - -High Performance Blockchain is a blockchain network with chain ID 269. - -## Network Details - -- **Chain ID**: 269 -- **Chain Name**: HPB -- **Short Name**: hpb -- **Network ID**: 269 -- **Currency**: - - **Name**: High Performance Blockchain Ether - - **Symbol**: HPB - - **Decimals**: 18 - -## RPC URLs - -High Performance Blockchain can be accessed through the following RPC endpoints: - -- https://hpbnode.com -- wss://ws.hpbnode.com - -## High Performance Blockchain Block Explorers - -- [hscan](https://hscan.org) - -## Additional Information - -- **Official Website**: https://hpb.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/highbury.mdx b/docs/pages/solutions/chainlist/non-integrated/highbury.mdx deleted file mode 100644 index 8d61c892da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/highbury.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Highbury - HIGHBURY Blockchain Network -description: Explore Highbury, a blockchain network with chain ID 710. Learn about its native currency, Fury, and how to interact with the network. ---- - -# Highbury - -Highbury is a blockchain network with chain ID 710. - -## Network Details - -- **Chain ID**: 710 -- **Chain Name**: HIGHBURY -- **Short Name**: fury -- **Network ID**: 710 -- **Currency**: - - **Name**: Fury - - **Symbol**: FURY - - **Decimals**: 18 - -## RPC URLs - -Highbury can be accessed through the following RPC endpoints: - -- https://highbury.furya.io -- https://rest.furya.io - -## Highbury Block Explorers - -- [Furya EVM Explorer](https://explorer.furya.io) - -## Additional Information - -- **Official Website**: https://www.fury.black - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/highoctane.mdx b/docs/pages/solutions/chainlist/non-integrated/highoctane.mdx deleted file mode 100644 index a45c1ca5fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/highoctane.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HighOctane - Avalanche Blockchain Network -description: Explore HighOctane, a blockchain network with chain ID 1853. Learn about its native currency, HighOctane Token, and how to interact with the network. ---- - -# HighOctane - -HighOctane is a blockchain network with chain ID 1853. - -## Network Details - -- **Chain ID**: 1853 -- **Chain Name**: Avalanche -- **Short Name**: HighOctane -- **Network ID**: 1853 -- **Currency**: - - **Name**: HighOctane Token - - **Symbol**: HO - - **Decimals**: 18 - -## RPC URLs - -HighOctane can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/highoctane/mainnet/rpc - -## HighOctane Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hika-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hika-network-testnet.mdx deleted file mode 100644 index 447cf8255f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hika-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hika Network Testnet - HIK Blockchain Network -description: Explore Hika Network Testnet, a blockchain network with chain ID 5729. Learn about its native currency, Hik Token, and how to interact with the network. ---- - -# Hika Network Testnet - -Hika Network Testnet is a blockchain network with chain ID 5729. - -## Network Details - -- **Chain ID**: 5729 -- **Chain Name**: HIK -- **Short Name**: hik -- **Network ID**: 5729 -- **Currency**: - - **Name**: Hik Token - - **Symbol**: HIK - - **Decimals**: 18 - -## RPC URLs - -Hika Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.hika.network/ - -## Hika Network Testnet Block Explorers - -- [Hika Network Testnet Explorer](https://scan-testnet.hika.network) - -## Additional Information - -- **Official Website**: https://hika.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hika Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hizoco.mdx b/docs/pages/solutions/chainlist/non-integrated/hizoco.mdx deleted file mode 100644 index 23803843c0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hizoco.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hizoco mainnet - HZC Blockchain Network -description: Explore Hizoco mainnet, a blockchain network with chain ID 80096. Learn about its native currency, Hizoco, and how to interact with the network. ---- - -# Hizoco mainnet - -Hizoco mainnet is a blockchain network with chain ID 80096. - -## Network Details - -- **Chain ID**: 80096 -- **Chain Name**: HZC -- **Short Name**: hzc -- **Network ID**: 80096 -- **Currency**: - - **Name**: Hizoco - - **Symbol**: HZC - - **Decimals**: 18 - -## RPC URLs - -Hizoco mainnet can be accessed through the following RPC endpoints: - -- https://hizoco.net/rpc - -## Hizoco mainnet Block Explorers - -- [blockscout](https://hizoco.net:38443) - -## Additional Information - -- **Official Website**: http://hizoco.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hokum-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hokum-testnet.mdx deleted file mode 100644 index bde6f037da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hokum-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hokum Testnet - HokumTestnet Blockchain Network -description: Explore Hokum Testnet, a blockchain network with chain ID 20482050. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Hokum Testnet - -Hokum Testnet is a blockchain network with chain ID 20482050. - -## Network Details - -- **Chain ID**: 20482050 -- **Chain Name**: HokumTestnet -- **Short Name**: hokum-testnet -- **Network ID**: 20482050 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hokum Testnet can be accessed through the following RPC endpoints: - -- https://testnet.hokum.gg - -## Hokum Testnet Block Explorers - -- [Hokum Explorer](https://testnet-explorer.hokum.gg) - -## Additional Information - -- **Official Website**: https://hokum.gg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hokum Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hokum.mdx b/docs/pages/solutions/chainlist/non-integrated/hokum.mdx deleted file mode 100644 index da0d21faf2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hokum.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hokum - Hokum Blockchain Network -description: Explore Hokum, a blockchain network with chain ID 8080808. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Hokum - -Hokum is a blockchain network with chain ID 8080808. - -## Network Details - -- **Chain ID**: 8080808 -- **Chain Name**: Hokum -- **Short Name**: hokum -- **Network ID**: 8080808 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hokum can be accessed through the following RPC endpoints: - -- https://mainnet.hokum.gg - -## Hokum Block Explorers - -- [Hokum Explorer](https://explorer.hokum.gg) - -## Additional Information - -- **Official Website**: https://hokum.gg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/holesky.mdx b/docs/pages/solutions/chainlist/non-integrated/holesky.mdx deleted file mode 100644 index c560f1929a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/holesky.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Holesky - ETH Blockchain Network -description: Explore Holesky, a blockchain network with chain ID 17000. Learn about its native currency, Testnet ETH, and how to interact with the network. ---- - -# Holesky - -Holesky is a blockchain network with chain ID 17000. - -## Network Details - -- **Chain ID**: 17000 -- **Chain Name**: ETH -- **Short Name**: holesky -- **Network ID**: 17000 -- **Currency**: - - **Name**: Testnet ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Holesky can be accessed through the following RPC endpoints: - -- 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 - -## Holesky Block Explorers - -- [Holesky Explorer](https://holesky.beaconcha.in) -- [otterscan-holesky](https://holesky.otterscan.io) -- [Holesky Etherscan](https://holesky.etherscan.io) - -## Additional Information - -- **Official Website**: https://holesky.ethpandaops.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Holesky Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hongkong.mdx b/docs/pages/solutions/chainlist/non-integrated/hongkong.mdx deleted file mode 100644 index 80286285cb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hongkong.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HongKong Mainnet - HONGKONG Blockchain Network -description: Explore HongKong Mainnet, a blockchain network with chain ID 852. Learn about its native currency, HongKong, and how to interact with the network. ---- - -# HongKong Mainnet - -HongKong Mainnet is a blockchain network with chain ID 852. - -## Network Details - -- **Chain ID**: 852 -- **Chain Name**: HONGKONG -- **Short Name**: HongKong -- **Network ID**: 852 -- **Currency**: - - **Name**: HongKong - - **Symbol**: HK - - **Decimals**: 18 - -## RPC URLs - -HongKong Mainnet can be accessed through the following RPC endpoints: - -- https://eth.jegotrip.net - -## HongKong Mainnet Block Explorers - -- [HongKong Mainnet Explorer](http://47.238.205.52) - -## Additional Information - -- **Official Website**: https://www.cmi.chinamobile.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain-testnet.mdx deleted file mode 100644 index 7f930db4bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HOO Smart Chain Testnet - ETH Blockchain Network -description: Explore HOO Smart Chain Testnet, a blockchain network with chain ID 170. Learn about its native currency, HOO, and how to interact with the network. ---- - -# HOO Smart Chain Testnet - -HOO Smart Chain Testnet is a blockchain network with chain ID 170. - -## Network Details - -- **Chain ID**: 170 -- **Chain Name**: ETH -- **Short Name**: hoosmartchain -- **Network ID**: 170 -- **Currency**: - - **Name**: HOO - - **Symbol**: HOO - - **Decimals**: 18 - -## RPC URLs - -HOO Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://http-testnet.hoosmartchain.com - -## HOO Smart Chain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.hoosmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HOO Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain.mdx deleted file mode 100644 index 8bfe78519e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hoo-smart-chain.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Hoo Smart Chain - HSC Blockchain Network -description: Explore Hoo Smart Chain, a blockchain network with chain ID 70. Learn about its native currency, Hoo Smart Chain Native Token, and how to interact with the network. ---- - -# Hoo Smart Chain - -Hoo Smart Chain is a blockchain network with chain ID 70. - -## Network Details - -- **Chain ID**: 70 -- **Chain Name**: HSC -- **Short Name**: hsc -- **Network ID**: 70 -- **Currency**: - - **Name**: Hoo Smart Chain Native Token - - **Symbol**: HOO - - **Decimals**: 18 - -## RPC URLs - -Hoo Smart Chain can be accessed through the following RPC endpoints: - -- https://http-mainnet.hoosmartchain.com -- https://http-mainnet2.hoosmartchain.com -- wss://ws-mainnet.hoosmartchain.com -- wss://ws-mainnet2.hoosmartchain.com - -## Hoo Smart Chain Block Explorers - -- [hooscan](https://www.hooscan.com) - -## Additional Information - -- **Official Website**: https://www.hoosmartchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/horizen-eon.mdx b/docs/pages/solutions/chainlist/non-integrated/horizen-eon.mdx deleted file mode 100644 index 326dc90bc4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/horizen-eon.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Horizen EON Mainnet - EON Blockchain Network -description: Explore Horizen EON Mainnet, a blockchain network with chain ID 7332. Learn about its native currency, Zencash, and how to interact with the network. ---- - -# Horizen EON Mainnet - -Horizen EON Mainnet is a blockchain network with chain ID 7332. - -## Network Details - -- **Chain ID**: 7332 -- **Chain Name**: EON -- **Short Name**: EON -- **Network ID**: 7332 -- **Currency**: - - **Name**: Zencash - - **Symbol**: ZEN - - **Decimals**: 18 - -## RPC URLs - -Horizen EON Mainnet can be accessed through the following RPC endpoints: - -- https://eon-rpc.horizenlabs.io/ethv1 -- https://rpc.ankr.com/horizen_eon - -## Horizen EON Mainnet Block Explorers - -- [Horizen EON Block Explorer](https://eon-explorer.horizenlabs.io) - -## Additional Information - -- **Official Website**: https://horizen.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/horizen-gobi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/horizen-gobi-testnet.mdx deleted file mode 100644 index 57030de6c0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/horizen-gobi-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Horizen Gobi Testnet - Gobi Blockchain Network -description: Explore Horizen Gobi Testnet, a blockchain network with chain ID 1663. Learn about its native currency, Testnet Zen, and how to interact with the network. ---- - -# Horizen Gobi Testnet - -Horizen Gobi Testnet is a blockchain network with chain ID 1663. - -## Network Details - -- **Chain ID**: 1663 -- **Chain Name**: Gobi -- **Short Name**: Gobi -- **Network ID**: 1663 -- **Currency**: - - **Name**: Testnet Zen - - **Symbol**: tZEN - - **Decimals**: 18 - -## RPC URLs - -Horizen Gobi Testnet can be accessed through the following RPC endpoints: - -- https://gobi-rpc.horizenlabs.io/ethv1 -- https://rpc.ankr.com/horizen_gobi_testnet - -## Horizen Gobi Testnet Block Explorers - -- [Gobi Testnet Block Explorer](https://gobi-explorer.horizen.io) - -## Additional Information - -- **Official Website**: https://horizen.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Horizen Gobi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/htmlcoin.mdx b/docs/pages/solutions/chainlist/non-integrated/htmlcoin.mdx deleted file mode 100644 index 63a0701c25..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/htmlcoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Htmlcoin Mainnet - mainnet Blockchain Network -description: Explore Htmlcoin Mainnet, a blockchain network with chain ID 4444. Learn about its native currency, Htmlcoin, and how to interact with the network. ---- - -# Htmlcoin Mainnet - -Htmlcoin Mainnet is a blockchain network with chain ID 4444. - -## Network Details - -- **Chain ID**: 4444 -- **Chain Name**: mainnet -- **Short Name**: html -- **Network ID**: 4444 -- **Currency**: - - **Name**: Htmlcoin - - **Symbol**: HTML - - **Decimals**: 8 - -## RPC URLs - -Htmlcoin Mainnet can be accessed through the following RPC endpoints: - -- https://janus.htmlcoin.com/api/ - -## Htmlcoin Mainnet Block Explorers - -- [htmlcoin](https://explorer.htmlcoin.com) - -## Additional Information - -- **Official Website**: https://htmlcoin.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hubble-exchange.mdx b/docs/pages/solutions/chainlist/non-integrated/hubble-exchange.mdx deleted file mode 100644 index c80587e404..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hubble-exchange.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Hubble Exchange - Hubblenet Blockchain Network -description: Explore Hubble Exchange, a blockchain network with chain ID 1992. Learn about its native currency, USD Coin, and how to interact with the network. ---- - -# Hubble Exchange - -Hubble Exchange is a blockchain network with chain ID 1992. - -## Network Details - -- **Chain ID**: 1992 -- **Chain Name**: Hubblenet -- **Short Name**: hubblenet -- **Network ID**: 1992 -- **Currency**: - - **Name**: USD Coin - - **Symbol**: USDC - - **Decimals**: 18 - -## RPC URLs - -Hubble Exchange can be accessed through the following RPC endpoints: - -- https://rpc.hubble.exchange -- wss://ws-rpc.hubble.exchange - -## Hubble Exchange Block Explorers - -- [routescan](https://explorer.hubble.exchange) - -## Additional Information - -- **Official Website**: https://www.hubble.exchange - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/human-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/human-protocol.mdx deleted file mode 100644 index 57ef43c1e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/human-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HUMAN Protocol - wan-red-ain Blockchain Network -description: Explore HUMAN Protocol, a blockchain network with chain ID 1273227453. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# HUMAN Protocol - -HUMAN Protocol is a blockchain network with chain ID 1273227453. - -## Network Details - -- **Chain ID**: 1273227453 -- **Chain Name**: wan-red-ain -- **Short Name**: human-mainnet -- **Network ID**: 1273227453 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -HUMAN Protocol can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/wan-red-ain - -## HUMAN Protocol Block Explorers - -- [Blockscout](https://wan-red-ain.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://www.humanprotocol.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/humanode-testnet-5-israfel.mdx b/docs/pages/solutions/chainlist/non-integrated/humanode-testnet-5-israfel.mdx deleted file mode 100644 index 97bbcb029e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/humanode-testnet-5-israfel.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Humanode Testnet 5 Israfel - Humanode Testnet 5 Blockchain Network -description: Explore Humanode Testnet 5 Israfel, a blockchain network with chain ID 14853. Learn about its native currency, eHMND, and how to interact with the network. ---- - -# Humanode Testnet 5 Israfel - -Humanode Testnet 5 Israfel is a blockchain network with chain ID 14853. - -## Network Details - -- **Chain ID**: 14853 -- **Chain Name**: Humanode Testnet 5 -- **Short Name**: hmnd-t5 -- **Network ID**: 14853 -- **Currency**: - - **Name**: eHMND - - **Symbol**: eHMND - - **Decimals**: 18 - -## RPC URLs - -Humanode Testnet 5 Israfel can be accessed through the following RPC endpoints: - -- https://explorer-rpc-http.testnet5.stages.humanode.io - -## Humanode Testnet 5 Israfel Block Explorers - - - -## Additional Information - -- **Official Website**: https://humanode.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Humanode Testnet 5 Israfel Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/humanode.mdx b/docs/pages/solutions/chainlist/non-integrated/humanode.mdx deleted file mode 100644 index 3a3b5803fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/humanode.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Humanode Mainnet - HMND Blockchain Network -description: Explore Humanode Mainnet, a blockchain network with chain ID 5234. Learn about its native currency, eHMND, and how to interact with the network. ---- - -# Humanode Mainnet - -Humanode Mainnet is a blockchain network with chain ID 5234. - -## Network Details - -- **Chain ID**: 5234 -- **Chain Name**: HMND -- **Short Name**: hmnd -- **Network ID**: 5234 -- **Currency**: - - **Name**: eHMND - - **Symbol**: eHMND - - **Decimals**: 18 - -## RPC URLs - -Humanode Mainnet can be accessed through the following RPC endpoints: - -- https://explorer-rpc-http.mainnet.stages.humanode.io - -## Humanode Mainnet Block Explorers - -- [Subscan](https://humanode.subscan.io) - -## Additional Information - -- **Official Website**: https://humanode.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/humans.ai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/humans.ai-testnet.mdx deleted file mode 100644 index 9256954c86..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/humans.ai-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Humans.ai Testnet - Humans Testnet Blockchain Network -description: Explore Humans.ai Testnet, a blockchain network with chain ID 4139. Learn about its native currency, HEART, and how to interact with the network. ---- - -# Humans.ai Testnet - -Humans.ai Testnet is a blockchain network with chain ID 4139. - -## Network Details - -- **Chain ID**: 4139 -- **Chain Name**: Humans Testnet -- **Short Name**: humans_testnet -- **Network ID**: 4139 -- **Currency**: - - **Name**: HEART - - **Symbol**: HEART - - **Decimals**: 18 - -## RPC URLs - -Humans.ai Testnet can be accessed through the following RPC endpoints: - -- https://evm-rpc.testnet.humans.zone - -## Humans.ai Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://humans.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Humans.ai Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/humans.ai.mdx b/docs/pages/solutions/chainlist/non-integrated/humans.ai.mdx deleted file mode 100644 index 366409729d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/humans.ai.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Humans.ai Mainnet - Humans Blockchain Network -description: Explore Humans.ai Mainnet, a blockchain network with chain ID 1089. Learn about its native currency, HEART, and how to interact with the network. ---- - -# Humans.ai Mainnet - -Humans.ai Mainnet is a blockchain network with chain ID 1089. - -## Network Details - -- **Chain ID**: 1089 -- **Chain Name**: Humans -- **Short Name**: humans -- **Network ID**: 1089 -- **Currency**: - - **Name**: HEART - - **Symbol**: HEART - - **Decimals**: 18 - -## RPC URLs - -Humans.ai Mainnet can be accessed through the following RPC endpoints: - -- https://jsonrpc.humans.nodestake.top -- https://humans-mainnet-evm.itrocket.net -- https://humans-evm-rpc.staketab.org:443 -- https://evm.humans.stakepool.dev.br -- https://mainnet-humans-evm.konsortech.xyz -- https://evm-rpc.mainnet.humans.zone -- https://json-rpc.humans.bh.rocks -- https://evm-rpc.humans.huginn.tech - -## Humans.ai Mainnet Block Explorers - -- [explorer.guru](https://humans.explorers.guru) - -## Additional Information - -- **Official Website**: https://humans.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain-testnet.mdx deleted file mode 100644 index 10209ffec7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Huobi ECO Chain Testnet - Heco Blockchain Network -description: Explore Huobi ECO Chain Testnet, a blockchain network with chain ID 256. Learn about its native currency, Huobi ECO Chain Test Native Token, and how to interact with the network. ---- - -# Huobi ECO Chain Testnet - -Huobi ECO Chain Testnet is a blockchain network with chain ID 256. - -## Network Details - -- **Chain ID**: 256 -- **Chain Name**: Heco -- **Short Name**: hecot -- **Network ID**: 256 -- **Currency**: - - **Name**: Huobi ECO Chain Test Native Token - - **Symbol**: htt - - **Decimals**: 18 - -## RPC URLs - -Huobi ECO Chain Testnet can be accessed through the following RPC endpoints: - -- https://http-testnet.hecochain.com -- wss://ws-testnet.hecochain.com - -## Huobi ECO Chain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://testnet.hecoinfo.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Huobi ECO Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain.mdx deleted file mode 100644 index f59fc872a2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/huobi-eco-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Huobi ECO Chain Mainnet - Heco Blockchain Network -description: Explore Huobi ECO Chain Mainnet, a blockchain network with chain ID 128. Learn about its native currency, Huobi ECO Chain Native Token, and how to interact with the network. ---- - -# Huobi ECO Chain Mainnet - -Huobi ECO Chain Mainnet is a blockchain network with chain ID 128. - -## Network Details - -- **Chain ID**: 128 -- **Chain Name**: Heco -- **Short Name**: heco -- **Network ID**: 128 -- **Currency**: - - **Name**: Huobi ECO Chain Native Token - - **Symbol**: HT - - **Decimals**: 18 - -## RPC URLs - -Huobi ECO Chain Mainnet can be accessed through the following RPC endpoints: - -- https://http-mainnet.hecochain.com -- wss://ws-mainnet.hecochain.com - -## Huobi ECO Chain Mainnet Block Explorers - -- [hecoinfo](https://hecoinfo.com) - -## Additional Information - -- **Official Website**: https://www.hecochain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network-testnet.mdx deleted file mode 100644 index ecd6ece885..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hybrid Chain Network Testnet - HYBRID Blockchain Network -description: Explore Hybrid Chain Network Testnet, a blockchain network with chain ID 2458. Learn about its native currency, Hybrid Chain Native Token, and how to interact with the network. ---- - -# Hybrid Chain Network Testnet - -Hybrid Chain Network Testnet is a blockchain network with chain ID 2458. - -## Network Details - -- **Chain ID**: 2458 -- **Chain Name**: HYBRID -- **Short Name**: thrc -- **Network ID**: 2458 -- **Currency**: - - **Name**: Hybrid Chain Native Token - - **Symbol**: tHRC - - **Decimals**: 18 - -## RPC URLs - -Hybrid Chain Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.hybridchain.ai/ - -## Hybrid Chain Network Testnet Block Explorers - -- [Hybrid Chain Explorer Testnet](https://testnet.hybridscan.ai) - -## Additional Information - -- **Official Website**: https://hybridchain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hybrid Chain Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network.mdx deleted file mode 100644 index fea7edc600..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hybrid-chain-network.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Hybrid Chain Network Mainnet - HYBRID Blockchain Network -description: Explore Hybrid Chain Network Mainnet, a blockchain network with chain ID 2468. Learn about its native currency, Hybrid Chain Native Token, and how to interact with the network. ---- - -# Hybrid Chain Network Mainnet - -Hybrid Chain Network Mainnet is a blockchain network with chain ID 2468. - -## Network Details - -- **Chain ID**: 2468 -- **Chain Name**: HYBRID -- **Short Name**: hrc -- **Network ID**: 2468 -- **Currency**: - - **Name**: Hybrid Chain Native Token - - **Symbol**: HRC - - **Decimals**: 18 - -## RPC URLs - -Hybrid Chain Network Mainnet can be accessed through the following RPC endpoints: - -- https://coredata-mainnet.hybridchain.ai/ -- https://rpc-mainnet.hybridchain.ai - -## Hybrid Chain Network Mainnet Block Explorers - -- [Hybrid Chain Explorer Mainnet](https://hybridscan.ai) - -## Additional Information - -- **Official Website**: https://hybridchain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hybrid Chain Network Mainnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet-(deprecated).mdx b/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet-(deprecated).mdx deleted file mode 100644 index 42b899c319..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet-(deprecated).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hybrid Testnet (Deprecated) - HYB Blockchain Network -description: Explore Hybrid Testnet (Deprecated), a blockchain network with chain ID 1224. Learn about its native currency, Hybrid, and how to interact with the network. ---- - -# Hybrid Testnet (Deprecated) - -Hybrid Testnet (Deprecated) is a blockchain network with chain ID 1224. - -## Network Details - -- **Chain ID**: 1224 -- **Chain Name**: HYB -- **Short Name**: hyb_deprecated -- **Network ID**: 1224 -- **Currency**: - - **Name**: Hybrid - - **Symbol**: HYB - - **Decimals**: 18 - -## RPC URLs - -Hybrid Testnet (Deprecated) can be accessed through the following RPC endpoints: - -- https://testnet-rpc.buildonhybrid.com - -## Hybrid Testnet (Deprecated) Block Explorers - -- [Hybrid Testnet](https://explorer.buildonhybrid.com) - -## Additional Information - -- **Official Website**: https://buildonhybrid.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hybrid Testnet (Deprecated) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet.mdx deleted file mode 100644 index 3abf3ea2d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hybrid-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Hybrid Testnet - HYB Blockchain Network -description: Explore Hybrid Testnet, a blockchain network with chain ID 1225. Learn about its native currency, Hybrid, and how to interact with the network. ---- - -# Hybrid Testnet - -Hybrid Testnet is a blockchain network with chain ID 1225. - -## Network Details - -- **Chain ID**: 1225 -- **Chain Name**: HYB -- **Short Name**: hyb -- **Network ID**: 1225 -- **Currency**: - - **Name**: Hybrid - - **Symbol**: HYB - - **Decimals**: 18 - -## RPC URLs - -Hybrid Testnet can be accessed through the following RPC endpoints: - -- https://hybrid-testnet.rpc.caldera.xyz/http -- wss://hybrid-testnet.rpc.caldera.xyz/ws - -## Hybrid Testnet Block Explorers - -- [Hybrid Testnet](https://explorer.buildonhybrid.com) - -## Additional Information - -- **Official Website**: https://buildonhybrid.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hybrid Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hychain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hychain-testnet.mdx deleted file mode 100644 index 508e7524f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hychain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HYCHAIN Testnet - ETH Blockchain Network -description: Explore HYCHAIN Testnet, a blockchain network with chain ID 29112. Learn about its native currency, TOPIA, and how to interact with the network. ---- - -# HYCHAIN Testnet - -HYCHAIN Testnet is a blockchain network with chain ID 29112. - -## Network Details - -- **Chain ID**: 29112 -- **Chain Name**: ETH -- **Short Name**: hychain-testnet -- **Network ID**: 29112 -- **Currency**: - - **Name**: TOPIA - - **Symbol**: TOPIA - - **Decimals**: 18 - -## RPC URLs - -HYCHAIN Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.hychain.com/http - -## HYCHAIN Testnet Block Explorers - -- [blockscout](https://testnet.explorer.hychain.com) - -## Additional Information - -- **Official Website**: https://www.hychain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HYCHAIN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hychain.mdx b/docs/pages/solutions/chainlist/non-integrated/hychain.mdx deleted file mode 100644 index a872344af8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hychain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: HYCHAIN - ETH Blockchain Network -description: Explore HYCHAIN, a blockchain network with chain ID 2911. Learn about its native currency, TOPIA, and how to interact with the network. ---- - -# HYCHAIN - -HYCHAIN is a blockchain network with chain ID 2911. - -## Network Details - -- **Chain ID**: 2911 -- **Chain Name**: ETH -- **Short Name**: hychain -- **Network ID**: 2911 -- **Currency**: - - **Name**: TOPIA - - **Symbol**: TOPIA - - **Decimals**: 18 - -## RPC URLs - -HYCHAIN can be accessed through the following RPC endpoints: - -- https://rpc.hychain.com/http - -## HYCHAIN Block Explorers - -- [blockscout](https://explorer.hychain.com) - -## Additional Information - -- **Official Website**: https://www.hychain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hydra-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hydra-chain-testnet.mdx deleted file mode 100644 index c134b8a61b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hydra-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hydra Chain Testnet - HYDRA Blockchain Network -description: Explore Hydra Chain Testnet, a blockchain network with chain ID 8844. Learn about its native currency, tHydra, and how to interact with the network. ---- - -# Hydra Chain Testnet - -Hydra Chain Testnet is a blockchain network with chain ID 8844. - -## Network Details - -- **Chain ID**: 8844 -- **Chain Name**: HYDRA -- **Short Name**: THYDRA -- **Network ID**: 8844 -- **Currency**: - - **Name**: tHydra - - **Symbol**: tHYDRA - - **Decimals**: 18 - -## RPC URLs - -Hydra Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.hydrachain.org - -## Hydra Chain Testnet Block Explorers - -- [Hydra Chain Testnet explorer](https://hydragon.hydrachain.org) - -## Additional Information - -- **Official Website**: https://hydrachain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hydra Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hydra-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/hydra-chain.mdx deleted file mode 100644 index dbaa7266be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hydra-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hydra Chain - HYDRA Blockchain Network -description: Explore Hydra Chain, a blockchain network with chain ID 4488. Learn about its native currency, Hydra, and how to interact with the network. ---- - -# Hydra Chain - -Hydra Chain is a blockchain network with chain ID 4488. - -## Network Details - -- **Chain ID**: 4488 -- **Chain Name**: HYDRA -- **Short Name**: HYDRA -- **Network ID**: 4488 -- **Currency**: - - **Name**: Hydra - - **Symbol**: HYDRA - - **Decimals**: 18 - -## RPC URLs - -Hydra Chain can be accessed through the following RPC endpoints: - - - -## Hydra Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://hydrachain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hydradx.mdx b/docs/pages/solutions/chainlist/non-integrated/hydradx.mdx deleted file mode 100644 index ae788da4e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hydradx.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: HydraDX - HDX Blockchain Network -description: Explore HydraDX, a blockchain network with chain ID 222222. Learn about its native currency, Wrapped ETH, and how to interact with the network. ---- - -# HydraDX - -HydraDX is a blockchain network with chain ID 222222. - -## Network Details - -- **Chain ID**: 222222 -- **Chain Name**: HDX -- **Short Name**: hdx -- **Network ID**: 222222 -- **Currency**: - - **Name**: Wrapped ETH - - **Symbol**: WETH - - **Decimals**: 18 - -## RPC URLs - -HydraDX can be accessed through the following RPC endpoints: - -- https://rpc.hydradx.cloud -- wss://rpc.hydradx.cloud - -## HydraDX Block Explorers - -- [blockscout](https://explorer.evm.hydration.cloud) - -## Additional Information - -- **Official Website**: https://hydradx.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hyperonchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hyperonchain-testnet.mdx deleted file mode 100644 index 9a07d11499..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hyperonchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: HyperonChain TestNet - HPN Blockchain Network -description: Explore HyperonChain TestNet, a blockchain network with chain ID 400. Learn about its native currency, HyperonChain, and how to interact with the network. ---- - -# HyperonChain TestNet - -HyperonChain TestNet is a blockchain network with chain ID 400. - -## Network Details - -- **Chain ID**: 400 -- **Chain Name**: HPN -- **Short Name**: hpn -- **Network ID**: 400 -- **Currency**: - - **Name**: HyperonChain - - **Symbol**: HPN - - **Decimals**: 18 - -## RPC URLs - -HyperonChain TestNet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.hyperonchain.com - -## HyperonChain TestNet Block Explorers - -- [blockscout](https://testnet.hyperonchain.com) - -## Additional Information - -- **Official Website**: https://docs.hyperonchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## HyperonChain TestNet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hypr-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/hypr-testnet.mdx deleted file mode 100644 index e27106764a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hypr-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Hypr Testnet - Hypr Blockchain Network -description: Explore Hypr Testnet, a blockchain network with chain ID 882. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Hypr Testnet - -Hypr Testnet is a blockchain network with chain ID 882. - -## Network Details - -- **Chain ID**: 882 -- **Chain Name**: Hypr -- **Short Name**: eth -- **Network ID**: 882 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hypr Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.hypr.network - -## Hypr Testnet Block Explorers - -- [Explorer](https://explorer-testnet.hypr.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Hypr Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/hypr.mdx b/docs/pages/solutions/chainlist/non-integrated/hypr.mdx deleted file mode 100644 index d984fb4870..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hypr.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Hypr Mainnet - Hypr Blockchain Network -description: Explore Hypr Mainnet, a blockchain network with chain ID 881. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Hypr Mainnet - -Hypr Mainnet is a blockchain network with chain ID 881. - -## Network Details - -- **Chain ID**: 881 -- **Chain Name**: Hypr -- **Short Name**: ether -- **Network ID**: 881 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Hypr Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.hypr.network - -## Hypr Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/hypra.mdx b/docs/pages/solutions/chainlist/non-integrated/hypra.mdx deleted file mode 100644 index bd110805b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/hypra.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Hypra Mainnet - HYP Blockchain Network -description: Explore Hypra Mainnet, a blockchain network with chain ID 622277. Learn about its native currency, Hypra, and how to interact with the network. ---- - -# Hypra Mainnet - -Hypra Mainnet is a blockchain network with chain ID 622277. - -## Network Details - -- **Chain ID**: 622277 -- **Chain Name**: HYP -- **Short Name**: hyp -- **Network ID**: 622277 -- **Currency**: - - **Name**: Hypra - - **Symbol**: HYP - - **Decimals**: 18 - -## RPC URLs - -Hypra Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.hypra.network -- https://rpc.rethereum.org -- https://rethereum.rpc.restratagem.com -- https://rpc.rthcentral.org - -## Hypra Mainnet Block Explorers - -- [hypra](https://explorer.hypra.network) - -## Additional Information - -- **Official Website**: https://www.hypra.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/icb-network.mdx b/docs/pages/solutions/chainlist/non-integrated/icb-network.mdx deleted file mode 100644 index a3bd684f28..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/icb-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ICB Network - ICB Blockchain Network -description: Explore ICB Network, a blockchain network with chain ID 73115. Learn about its native currency, ICB Native Token, and how to interact with the network. ---- - -# ICB Network - -ICB Network is a blockchain network with chain ID 73115. - -## Network Details - -- **Chain ID**: 73115 -- **Chain Name**: ICB -- **Short Name**: ICBX -- **Network ID**: 73115 -- **Currency**: - - **Name**: ICB Native Token - - **Symbol**: ICBX - - **Decimals**: 18 - -## RPC URLs - -ICB Network can be accessed through the following RPC endpoints: - -- https://rpc1-mainnet.icbnetwork.info/ -- https://rpc2-mainnet.icbnetwork.info/ - -## ICB Network Block Explorers - -- [ICB Explorer](https://icbscan.io) - -## Additional Information - -- **Official Website**: https://icb.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/icb-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/icb-testnet.mdx deleted file mode 100644 index c99f888772..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/icb-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: ICB Testnet - ICBT Blockchain Network -description: Explore ICB Testnet, a blockchain network with chain ID 73114. Learn about its native currency, ICB Testnet Token, and how to interact with the network. ---- - -# ICB Testnet - -ICB Testnet is a blockchain network with chain ID 73114. - -## Network Details - -- **Chain ID**: 73114 -- **Chain Name**: ICBT -- **Short Name**: ICBT -- **Network ID**: 73114 -- **Currency**: - - **Name**: ICB Testnet Token - - **Symbol**: ICBT - - **Decimals**: 18 - -## RPC URLs - -ICB Testnet can be accessed through the following RPC endpoints: - -- https://rpc1-testnet.icbnetwork.info/ -- https://rpc2-testnet.icbnetwork.info/ - -## ICB Testnet Block Explorers - -- [ICB Tesnet Explorer](https://testnet.icbscan.io) - -## Additional Information - -- **Official Website**: https://icb.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ICB Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ichain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/ichain-network.mdx deleted file mode 100644 index 83dc09abc3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ichain-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: iChain Network - iChain Blockchain Network -description: Explore iChain Network, a blockchain network with chain ID 3639. Learn about its native currency, ISLAMICOIN, and how to interact with the network. ---- - -# iChain Network - -iChain Network is a blockchain network with chain ID 3639. - -## Network Details - -- **Chain ID**: 3639 -- **Chain Name**: iChain -- **Short Name**: ISLAMI -- **Network ID**: 3639 -- **Currency**: - - **Name**: ISLAMICOIN - - **Symbol**: ISLAMI - - **Decimals**: 18 - -## RPC URLs - -iChain Network can be accessed through the following RPC endpoints: - -- https://rpc.ichainscan.com - -## iChain Network Block Explorers - -- [iChainscan](https://ichainscan.com) - -## Additional Information - -- **Official Website**: https://islamicoin.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ichain-testnet.mdx deleted file mode 100644 index 53f79e0fc7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: iChain Testnet - iChain Testnet Blockchain Network -description: Explore iChain Testnet, a blockchain network with chain ID 3645. Learn about its native currency, ISLAMICOIN, and how to interact with the network. ---- - -# iChain Testnet - -iChain Testnet is a blockchain network with chain ID 3645. - -## Network Details - -- **Chain ID**: 3645 -- **Chain Name**: iChain Testnet -- **Short Name**: ISLAMIT -- **Network ID**: 3645 -- **Currency**: - - **Name**: ISLAMICOIN - - **Symbol**: ISLAMI - - **Decimals**: 18 - -## RPC URLs - -iChain Testnet can be accessed through the following RPC endpoints: - -- https://istanbul.ichainscan.com - -## iChain Testnet Block Explorers - -- [iChainscan](https://test.ichainscan.com) - -## Additional Information - -- **Official Website**: https://islamicoin.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## iChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/icplaza.mdx b/docs/pages/solutions/chainlist/non-integrated/icplaza.mdx deleted file mode 100644 index ea93a35cff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/icplaza.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ICPlaza Mainnet - ICPlaza Blockchain Network -description: Explore ICPlaza Mainnet, a blockchain network with chain ID 142857. Learn about its native currency, ict, and how to interact with the network. ---- - -# ICPlaza Mainnet - -ICPlaza Mainnet is a blockchain network with chain ID 142857. - -## Network Details - -- **Chain ID**: 142857 -- **Chain Name**: ICPlaza -- **Short Name**: ICPlaza -- **Network ID**: 142857 -- **Currency**: - - **Name**: ict - - **Symbol**: ict - - **Decimals**: 18 - -## RPC URLs - -ICPlaza Mainnet can be accessed through the following RPC endpoints: - -- https://rpcmainnet.ic-plaza.org/ - -## ICPlaza Mainnet Block Explorers - -- [ICPlaza](https://browsemainnet.ic-plaza.org/index) - -## Additional Information - -- **Official Website**: https://docs.ic-plaza.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/idchain.mdx b/docs/pages/solutions/chainlist/non-integrated/idchain.mdx deleted file mode 100644 index 6bb797dd1e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/idchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: IDChain Mainnet - IDChain Blockchain Network -description: Explore IDChain Mainnet, a blockchain network with chain ID 74. Learn about its native currency, EIDI, and how to interact with the network. ---- - -# IDChain Mainnet - -IDChain Mainnet is a blockchain network with chain ID 74. - -## Network Details - -- **Chain ID**: 74 -- **Chain Name**: IDChain -- **Short Name**: idchain -- **Network ID**: 74 -- **Currency**: - - **Name**: EIDI - - **Symbol**: EIDI - - **Decimals**: 18 - -## RPC URLs - -IDChain Mainnet can be accessed through the following RPC endpoints: - -- https://idchain.one/rpc/ -- wss://idchain.one/ws/ - -## IDChain Mainnet Block Explorers - -- [explorer](https://explorer.idchain.one) - -## Additional Information - -- **Official Website**: https://idchain.one/begin/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/idos-games-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/idos-games-chain-testnet.mdx deleted file mode 100644 index a1cd620211..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/idos-games-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: iDos Games Chain Testnet - IGC Blockchain Network -description: Explore iDos Games Chain Testnet, a blockchain network with chain ID 1499. Learn about its native currency, iDos Games Coin, and how to interact with the network. ---- - -# iDos Games Chain Testnet - -iDos Games Chain Testnet is a blockchain network with chain ID 1499. - -## Network Details - -- **Chain ID**: 1499 -- **Chain Name**: IGC -- **Short Name**: IGC -- **Network ID**: 1499 -- **Currency**: - - **Name**: iDos Games Coin - - **Symbol**: IGC - - **Decimals**: 18 - -## RPC URLs - -iDos Games Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.idos.games - -## iDos Games Chain Testnet Block Explorers - -- [IGC-Scan](https://igcscan.com) - -## Additional Information - -- **Official Website**: https://idosgames.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## iDos Games Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/iexec-sidechain.mdx b/docs/pages/solutions/chainlist/non-integrated/iexec-sidechain.mdx deleted file mode 100644 index 98c1e39cc6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iexec-sidechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: iExec Sidechain - Bellecour Blockchain Network -description: Explore iExec Sidechain, a blockchain network with chain ID 134. Learn about its native currency, xRLC, and how to interact with the network. ---- - -# iExec Sidechain - -iExec Sidechain is a blockchain network with chain ID 134. - -## Network Details - -- **Chain ID**: 134 -- **Chain Name**: Bellecour -- **Short Name**: rlc -- **Network ID**: 134 -- **Currency**: - - **Name**: xRLC - - **Symbol**: xRLC - - **Decimals**: 18 - -## RPC URLs - -iExec Sidechain can be accessed through the following RPC endpoints: - -- https://bellecour.iex.ec - -## iExec Sidechain Block Explorers - -- [blockscout](https://blockscout.bellecour.iex.ec) - -## Additional Information - -- **Official Website**: https://iex.ec - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/immu3-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/immu3-evm.mdx deleted file mode 100644 index 38ac39b01b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/immu3-evm.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Immu3 EVM - EVMCC Blockchain Network -description: Explore Immu3 EVM, a blockchain network with chain ID 3100. Learn about its native currency, IMMU, and how to interact with the network. ---- - -# Immu3 EVM - -Immu3 EVM is a blockchain network with chain ID 3100. - -## Network Details - -- **Chain ID**: 3100 -- **Chain Name**: EVMCC -- **Short Name**: Immu3 -- **Network ID**: 3100 -- **Currency**: - - **Name**: IMMU - - **Symbol**: IMMU - - **Decimals**: 18 - -## RPC URLs - -Immu3 EVM can be accessed through the following RPC endpoints: - -- https://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network -- wss://fraa-flashbox-2800-rpc.a.stagenet.tanssi.network - -## Immu3 EVM Block Explorers - - - -## Additional Information - -- **Official Website**: https://immu3.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-devnet.mdx deleted file mode 100644 index 1763fb0dd6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Immutable zkEVM Devnet - Immutable zkEVM Blockchain Network -description: Explore Immutable zkEVM Devnet, a blockchain network with chain ID 15003. Learn about its native currency, Dev IMX, and how to interact with the network. ---- - -# Immutable zkEVM Devnet - -Immutable zkEVM Devnet is a blockchain network with chain ID 15003. - -## Network Details - -- **Chain ID**: 15003 -- **Chain Name**: Immutable zkEVM -- **Short Name**: imx-devnet -- **Network ID**: 15003 -- **Currency**: - - **Name**: Dev IMX - - **Symbol**: dIMX - - **Decimals**: 18 - -## RPC URLs - -Immutable zkEVM Devnet can be accessed through the following RPC endpoints: - -- https://rpc.dev.immutable.com - -## Immutable zkEVM Devnet Block Explorers - -- [Immutable Devnet explorer](https://explorer.dev.immutable.com) - -## Additional Information - -- **Official Website**: https://www.immutable.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-testnet.mdx deleted file mode 100644 index 9bd428d241..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Immutable zkEVM Testnet - Immutable zkEVM Blockchain Network -description: Explore Immutable zkEVM Testnet, a blockchain network with chain ID 13473. Learn about its native currency, Test IMX, and how to interact with the network. ---- - -# Immutable zkEVM Testnet - -Immutable zkEVM Testnet is a blockchain network with chain ID 13473. - -## Network Details - -- **Chain ID**: 13473 -- **Chain Name**: Immutable zkEVM -- **Short Name**: imx-testnet -- **Network ID**: 13473 -- **Currency**: - - **Name**: Test IMX - - **Symbol**: tIMX - - **Decimals**: 18 - -## RPC URLs - -Immutable zkEVM Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.immutable.com -- https://immutable-zkevm-testnet.drpc.org -- wss://immutable-zkevm-testnet.drpc.org - -## Immutable zkEVM Testnet Block Explorers - -- [Immutable Testnet explorer](https://explorer.testnet.immutable.com) - -## Additional Information - -- **Official Website**: https://www.immutable.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Immutable zkEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm.mdx b/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm.mdx deleted file mode 100644 index 021d75fc48..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/immutable-zkevm.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Immutable zkEVM - Immutable zkEVM Blockchain Network -description: Explore Immutable zkEVM, a blockchain network with chain ID 13371. Learn about its native currency, IMX, and how to interact with the network. ---- - -# Immutable zkEVM - -Immutable zkEVM is a blockchain network with chain ID 13371. - -## Network Details - -- **Chain ID**: 13371 -- **Chain Name**: Immutable zkEVM -- **Short Name**: imx -- **Network ID**: 13371 -- **Currency**: - - **Name**: IMX - - **Symbol**: IMX - - **Decimals**: 18 - -## RPC URLs - -Immutable zkEVM can be accessed through the following RPC endpoints: - -- https://rpc.immutable.com -- https://immutable-zkevm.drpc.org -- wss://immutable-zkevm.drpc.org - -## Immutable zkEVM Block Explorers - -- [Immutable explorer](https://explorer.immutable.com) - -## Additional Information - -- **Official Website**: https://www.immutable.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/imperium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/imperium-testnet.mdx deleted file mode 100644 index c04b677ba1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/imperium-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: IMPERIUM TESTNET - tIMP Blockchain Network -description: Explore IMPERIUM TESTNET, a blockchain network with chain ID 9818. Learn about its native currency, tIMP, and how to interact with the network. ---- - -# IMPERIUM TESTNET - -IMPERIUM TESTNET is a blockchain network with chain ID 9818. - -## Network Details - -- **Chain ID**: 9818 -- **Chain Name**: tIMP -- **Short Name**: tIMP -- **Network ID**: 9818 -- **Currency**: - - **Name**: tIMP - - **Symbol**: tIMP - - **Decimals**: 18 - -## RPC URLs - -IMPERIUM TESTNET can be accessed through the following RPC endpoints: - -- https://data-aws-testnet.imperiumchain.com -- https://data-aws2-testnet.imperiumchain.com - -## IMPERIUM TESTNET Block Explorers - -- [IMPERIUM TESTNET Explorer](https://network.impscan.com) - -## Additional Information - -- **Official Website**: https://imperiumchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## IMPERIUM TESTNET Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/imperium.mdx b/docs/pages/solutions/chainlist/non-integrated/imperium.mdx deleted file mode 100644 index 6a4914a042..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/imperium.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: IMPERIUM MAINNET - IMP Blockchain Network -description: Explore IMPERIUM MAINNET, a blockchain network with chain ID 9819. Learn about its native currency, IMP, and how to interact with the network. ---- - -# IMPERIUM MAINNET - -IMPERIUM MAINNET is a blockchain network with chain ID 9819. - -## Network Details - -- **Chain ID**: 9819 -- **Chain Name**: IMP -- **Short Name**: IMP -- **Network ID**: 9819 -- **Currency**: - - **Name**: IMP - - **Symbol**: IMP - - **Decimals**: 18 - -## RPC URLs - -IMPERIUM MAINNET can be accessed through the following RPC endpoints: - -- https://data-aws-mainnet.imperiumchain.com -- https://data-aws2-mainnet.imperiumchain.com - -## IMPERIUM MAINNET Block Explorers - -- [IMPERIUM Explorer](https://impscan.com) - -## Additional Information - -- **Official Website**: https://imperiumchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/imversed-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/imversed-testnet.mdx deleted file mode 100644 index 9b47624ec2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/imversed-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Imversed Testnet - Imversed Blockchain Network -description: Explore Imversed Testnet, a blockchain network with chain ID 5555558. Learn about its native currency, Imversed Token, and how to interact with the network. ---- - -# Imversed Testnet - -Imversed Testnet is a blockchain network with chain ID 5555558. - -## Network Details - -- **Chain ID**: 5555558 -- **Chain Name**: Imversed -- **Short Name**: imversed-testnet -- **Network ID**: 5555558 -- **Currency**: - - **Name**: Imversed Token - - **Symbol**: IMV - - **Decimals**: 18 - -## RPC URLs - -Imversed Testnet can be accessed through the following RPC endpoints: - -- https://jsonrpc-test.imversed.network -- https://ws-jsonrpc-test.imversed.network - -## Imversed Testnet Block Explorers - -- [Imversed EVM Explorer (Blockscout)](https://txe-test.imversed.network) -- [Imversed Cosmos Explorer (Big Dipper)](https://tex-t.imversed.com) - -## Additional Information - -- **Official Website**: https://imversed.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Imversed Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/imversed.mdx b/docs/pages/solutions/chainlist/non-integrated/imversed.mdx deleted file mode 100644 index 8f7b1bddac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/imversed.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Imversed Mainnet - Imversed Blockchain Network -description: Explore Imversed Mainnet, a blockchain network with chain ID 5555555. Learn about its native currency, Imversed Token, and how to interact with the network. ---- - -# Imversed Mainnet - -Imversed Mainnet is a blockchain network with chain ID 5555555. - -## Network Details - -- **Chain ID**: 5555555 -- **Chain Name**: Imversed -- **Short Name**: imversed -- **Network ID**: 5555555 -- **Currency**: - - **Name**: Imversed Token - - **Symbol**: IMV - - **Decimals**: 18 - -## RPC URLs - -Imversed Mainnet can be accessed through the following RPC endpoints: - -- https://jsonrpc.imversed.network -- https://ws-jsonrpc.imversed.network - -## Imversed Mainnet Block Explorers - -- [Imversed EVM explorer (Blockscout)](https://txe.imversed.network) -- [Imversed Cosmos Explorer (Big Dipper)](https://tex-c.imversed.com) - -## Additional Information - -- **Official Website**: https://imversed.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/incentiv-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/incentiv-devnet.mdx deleted file mode 100644 index d1a04993cd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/incentiv-devnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Incentiv Devnet - Incentiv Blockchain Network -description: Explore Incentiv Devnet, a blockchain network with chain ID 16350. Learn about its native currency, Testnet INC, and how to interact with the network. ---- - -# Incentiv Devnet - -Incentiv Devnet is a blockchain network with chain ID 16350. - -## Network Details - -- **Chain ID**: 16350 -- **Chain Name**: Incentiv -- **Short Name**: tIncentiv -- **Network ID**: 16350 -- **Currency**: - - **Name**: Testnet INC - - **Symbol**: INC - - **Decimals**: 18 - -## RPC URLs - -Incentiv Devnet can be accessed through the following RPC endpoints: - -- https://rpc.ankr.com/incentiv_devnet - -## Incentiv Devnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://incentiv.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Incentiv Devnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/inevm.mdx b/docs/pages/solutions/chainlist/non-integrated/inevm.mdx deleted file mode 100644 index 86e00dc783..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/inevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: inEVM Mainnet - inEVM Blockchain Network -description: Explore inEVM Mainnet, a blockchain network with chain ID 2525. Learn about its native currency, Injective, and how to interact with the network. ---- - -# inEVM Mainnet - -inEVM Mainnet is a blockchain network with chain ID 2525. - -## Network Details - -- **Chain ID**: 2525 -- **Chain Name**: inEVM -- **Short Name**: inevm -- **Network ID**: 2525 -- **Currency**: - - **Name**: Injective - - **Symbol**: INJ - - **Decimals**: 18 - -## RPC URLs - -inEVM Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.rpc.inevm.com/http - -## inEVM Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://inevm.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/infra-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/infra-testnet.mdx deleted file mode 100644 index 4bb1c13a2c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/infra-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: infra Testnet - Avalanche Blockchain Network -description: Explore infra Testnet, a blockchain network with chain ID 68007. Learn about its native currency, infra Testnet Token, and how to interact with the network. ---- - -# infra Testnet - -infra Testnet is a blockchain network with chain ID 68007. - -## Network Details - -- **Chain ID**: 68007 -- **Chain Name**: Avalanche -- **Short Name**: infra Testnet -- **Network ID**: 68007 -- **Currency**: - - **Name**: infra Testnet Token - - **Symbol**: ZPO - - **Decimals**: 18 - -## RPC URLs - -infra Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/infratestn/testnet/rpc - -## infra Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## infra Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/innovator-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/innovator-chain.mdx deleted file mode 100644 index efd17fbced..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/innovator-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Innovator Chain - INNOVATOR Blockchain Network -description: Explore Innovator Chain, a blockchain network with chain ID 129. Learn about its native currency, INOV8, and how to interact with the network. ---- - -# Innovator Chain - -Innovator Chain is a blockchain network with chain ID 129. - -## Network Details - -- **Chain ID**: 129 -- **Chain Name**: INNOVATOR -- **Short Name**: Innovator -- **Network ID**: 129 -- **Currency**: - - **Name**: INOV8 - - **Symbol**: INOV8 - - **Decimals**: 18 - -## RPC URLs - -Innovator Chain can be accessed through the following RPC endpoints: - -- https://rpc.innovatorchain.com - -## Innovator Chain Block Explorers - -- [Innovator Explorer](https://evm.innovatorchain.com) - -## Additional Information - -- **Official Website**: https://innovatorchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/innovo-markets-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/innovo-markets-testnet.mdx deleted file mode 100644 index e429e6f7d2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/innovo-markets-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Innovo Markets Testnet - Avalanche Blockchain Network -description: Explore Innovo Markets Testnet, a blockchain network with chain ID 54414. Learn about its native currency, Innovo Markets Testnet Token, and how to interact with the network. ---- - -# Innovo Markets Testnet - -Innovo Markets Testnet is a blockchain network with chain ID 54414. - -## Network Details - -- **Chain ID**: 54414 -- **Chain Name**: Avalanche -- **Short Name**: Innovo Markets Testnet -- **Network ID**: 54414 -- **Currency**: - - **Name**: Innovo Markets Testnet Token - - **Symbol**: INN - - **Decimals**: 18 - -## RPC URLs - -Innovo Markets Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/innovomark/testnet/rpc - -## Innovo Markets Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Innovo Markets Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/innovo-markets.mdx b/docs/pages/solutions/chainlist/non-integrated/innovo-markets.mdx deleted file mode 100644 index d0d21751d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/innovo-markets.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Innovo Markets Mainnet - Avalanche Blockchain Network -description: Explore Innovo Markets Mainnet, a blockchain network with chain ID 10036. Learn about its native currency, Innovo Markets Mainnet Token, and how to interact with the network. ---- - -# Innovo Markets Mainnet - -Innovo Markets Mainnet is a blockchain network with chain ID 10036. - -## Network Details - -- **Chain ID**: 10036 -- **Chain Name**: Avalanche -- **Short Name**: Innovo Markets Mainnet -- **Network ID**: 10036 -- **Currency**: - - **Name**: Innovo Markets Mainnet Token - - **Symbol**: INN - - **Decimals**: 18 - -## RPC URLs - -Innovo Markets Mainnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/innovo/mainnet/rpc - -## Innovo Markets Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/inoai-network.mdx b/docs/pages/solutions/chainlist/non-integrated/inoai-network.mdx deleted file mode 100644 index 1e1f87fd30..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/inoai-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: InoAi - INOAI Blockchain Network -description: Explore InoAi, a blockchain network with chain ID 88559. Learn about its native currency, InoAi, and how to interact with the network. ---- - -# InoAi - -InoAi is a blockchain network with chain ID 88559. - -## Network Details - -- **Chain ID**: 88559 -- **Chain Name**: INOAI -- **Short Name**: INO -- **Network ID**: 88559 -- **Currency**: - - **Name**: InoAi - - **Symbol**: INO - - **Decimals**: 18 - -## RPC URLs - -InoAi can be accessed through the following RPC endpoints: - -- https://inoai-network.com - -## InoAi Block Explorers - -- [inoai.live](https://inoai.live) - -## Additional Information - -- **Official Website**: https://docs.inoai.info/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/insomnia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/insomnia-testnet.mdx deleted file mode 100644 index 7af4493d92..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/insomnia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Insomnia Testnet - Avalanche Blockchain Network -description: Explore Insomnia Testnet, a blockchain network with chain ID 59932. Learn about its native currency, Insomnia Testnet Token, and how to interact with the network. ---- - -# Insomnia Testnet - -Insomnia Testnet is a blockchain network with chain ID 59932. - -## Network Details - -- **Chain ID**: 59932 -- **Chain Name**: Avalanche -- **Short Name**: Insomnia Testnet -- **Network ID**: 59932 -- **Currency**: - - **Name**: Insomnia Testnet Token - - **Symbol**: TECH - - **Decimals**: 18 - -## RPC URLs - -Insomnia Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/instest/testnet/rpc - -## Insomnia Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Insomnia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/intersect.mdx b/docs/pages/solutions/chainlist/non-integrated/intersect.mdx deleted file mode 100644 index 96f84f8cf5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/intersect.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: intersect - Avalanche Blockchain Network -description: Explore intersect, a blockchain network with chain ID 1216. Learn about its native currency, intersect Token, and how to interact with the network. ---- - -# intersect - -intersect is a blockchain network with chain ID 1216. - -## Network Details - -- **Chain ID**: 1216 -- **Chain Name**: Avalanche -- **Short Name**: intersect -- **Network ID**: 1216 -- **Currency**: - - **Name**: intersect Token - - **Symbol**: PEARL - - **Decimals**: 18 - -## RPC URLs - -intersect can be accessed through the following RPC endpoints: - -- https://mainnet-intersect-e86e3.avax.network/ext/bc/2Ec9g5vbwwoy7MEyjmjjEjuS6FzaeToBm1KVbvDU6HeKsSNVTF/rpc?token=248310a84cafb9f60b847f9928c6f7c0ec8703003d730bc02e3d7ca20724bb31 - -## intersect Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/iolite.mdx b/docs/pages/solutions/chainlist/non-integrated/iolite.mdx deleted file mode 100644 index ca0d1e03f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iolite.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: IOLite - ILT Blockchain Network -description: Explore IOLite, a blockchain network with chain ID 18289463. Learn about its native currency, IOLite Ether, and how to interact with the network. ---- - -# IOLite - -IOLite is a blockchain network with chain ID 18289463. - -## Network Details - -- **Chain ID**: 18289463 -- **Chain Name**: ILT -- **Short Name**: ilt -- **Network ID**: 18289463 -- **Currency**: - - **Name**: IOLite Ether - - **Symbol**: ILT - - **Decimals**: 18 - -## RPC URLs - -IOLite can be accessed through the following RPC endpoints: - -- https://net.iolite.io - -## IOLite Block Explorers - - - -## Additional Information - -- **Official Website**: https://iolite.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/iora-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/iora-chain.mdx deleted file mode 100644 index ef2e84bbb0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iora-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Iora Chain - IORA Blockchain Network -description: Explore Iora Chain, a blockchain network with chain ID 1197. Learn about its native currency, Iora, and how to interact with the network. ---- - -# Iora Chain - -Iora Chain is a blockchain network with chain ID 1197. - -## Network Details - -- **Chain ID**: 1197 -- **Chain Name**: IORA -- **Short Name**: iora -- **Network ID**: 1197 -- **Currency**: - - **Name**: Iora - - **Symbol**: IORA - - **Decimals**: 18 - -## RPC URLs - -Iora Chain can be accessed through the following RPC endpoints: - -- https://dataseed.iorachain.com - -## Iora Chain Block Explorers - -- [ioraexplorer](https://explorer.iorachain.com) - -## Additional Information - -- **Official Website**: https://iorachain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/iota-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/iota-evm-testnet.mdx deleted file mode 100644 index 155348ebfe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iota-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: IOTA EVM Testnet - IOTA EVM Blockchain Network -description: Explore IOTA EVM Testnet, a blockchain network with chain ID 1075. Learn about its native currency, IOTA, and how to interact with the network. ---- - -# IOTA EVM Testnet - -IOTA EVM Testnet is a blockchain network with chain ID 1075. - -## Network Details - -- **Chain ID**: 1075 -- **Chain Name**: IOTA EVM -- **Short Name**: iotaevm-testnet -- **Network ID**: 1075 -- **Currency**: - - **Name**: IOTA - - **Symbol**: IOTA - - **Decimals**: 18 - -## RPC URLs - -IOTA EVM Testnet can be accessed through the following RPC endpoints: - -- https://json-rpc.evm.testnet.iotaledger.net - -## IOTA EVM Testnet Block Explorers - -- [explorer](https://explorer.evm.testnet.iotaledger.net) - -## Additional Information - -- **Official Website**: https://www.iota.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## IOTA EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/iota-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/iota-evm.mdx deleted file mode 100644 index 461e952ad3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iota-evm.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: IOTA EVM - IOTA EVM Blockchain Network -description: Explore IOTA EVM, a blockchain network with chain ID 8822. Learn about its native currency, IOTA, and how to interact with the network. ---- - -# IOTA EVM - -IOTA EVM is a blockchain network with chain ID 8822. - -## Network Details - -- **Chain ID**: 8822 -- **Chain Name**: IOTA EVM -- **Short Name**: iotaevm -- **Network ID**: 8822 -- **Currency**: - - **Name**: IOTA - - **Symbol**: IOTA - - **Decimals**: 18 - -## RPC URLs - -IOTA EVM can be accessed through the following RPC endpoints: - -- https://json-rpc.evm.iotaledger.net -- https://ws.json-rpc.evm.iotaledger.net - -## IOTA EVM Block Explorers - -- [explorer](https://explorer.evm.iota.org) - -## Additional Information - -- **Official Website**: https://www.iota.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/iotex-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/iotex-network-testnet.mdx deleted file mode 100644 index c9eea06598..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iotex-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: IoTeX Network Testnet - iotex.io Blockchain Network -description: Explore IoTeX Network Testnet, a blockchain network with chain ID 4690. Learn about its native currency, IoTeX, and how to interact with the network. ---- - -# IoTeX Network Testnet - -IoTeX Network Testnet is a blockchain network with chain ID 4690. - -## Network Details - -- **Chain ID**: 4690 -- **Chain Name**: iotex.io -- **Short Name**: iotex-testnet -- **Network ID**: 4690 -- **Currency**: - - **Name**: IoTeX - - **Symbol**: IOTX - - **Decimals**: 18 - -## RPC URLs - -IoTeX Network Testnet can be accessed through the following RPC endpoints: - -- https://babel-api.testnet.iotex.io - -## IoTeX Network Testnet Block Explorers - -- [testnet iotexscan](https://testnet.iotexscan.io) - -## Additional Information - -- **Official Website**: https://iotex.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## IoTeX Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/iotex-network.mdx b/docs/pages/solutions/chainlist/non-integrated/iotex-network.mdx deleted file mode 100644 index b59fd9ec24..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/iotex-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: IoTeX Network Mainnet - iotex.io Blockchain Network -description: Explore IoTeX Network Mainnet, a blockchain network with chain ID 4689. Learn about its native currency, IoTeX, and how to interact with the network. ---- - -# IoTeX Network Mainnet - -IoTeX Network Mainnet is a blockchain network with chain ID 4689. - -## Network Details - -- **Chain ID**: 4689 -- **Chain Name**: iotex.io -- **Short Name**: iotex-mainnet -- **Network ID**: 4689 -- **Currency**: - - **Name**: IoTeX - - **Symbol**: IOTX - - **Decimals**: 18 - -## RPC URLs - -IoTeX Network Mainnet can be accessed through the following RPC endpoints: - -- https://babel-api.mainnet.iotex.io - -## IoTeX Network Mainnet Block Explorers - -- [iotexscan](https://iotexscan.io) - -## Additional Information - -- **Official Website**: https://iotex.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ipos-network.mdx b/docs/pages/solutions/chainlist/non-integrated/ipos-network.mdx deleted file mode 100644 index 3bfdeef4cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ipos-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: IPOS Network - IPOS Blockchain Network -description: Explore IPOS Network, a blockchain network with chain ID 1122334455. Learn about its native currency, IPOS Network Ether, and how to interact with the network. ---- - -# IPOS Network - -IPOS Network is a blockchain network with chain ID 1122334455. - -## Network Details - -- **Chain ID**: 1122334455 -- **Chain Name**: IPOS -- **Short Name**: ipos -- **Network ID**: 1122334455 -- **Currency**: - - **Name**: IPOS Network Ether - - **Symbol**: IPOS - - **Decimals**: 18 - -## RPC URLs - -IPOS Network can be accessed through the following RPC endpoints: - -- https://rpc.iposlab.com -- https://rpc2.iposlab.com - -## IPOS Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://iposlab.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/irishub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/irishub-testnet.mdx deleted file mode 100644 index 38cf11abb9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/irishub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: IRIShub Testnet - IRIShub Blockchain Network -description: Explore IRIShub Testnet, a blockchain network with chain ID 16688. Learn about its native currency, Eris, and how to interact with the network. ---- - -# IRIShub Testnet - -IRIShub Testnet is a blockchain network with chain ID 16688. - -## Network Details - -- **Chain ID**: 16688 -- **Chain Name**: IRIShub -- **Short Name**: nyancat -- **Network ID**: 16688 -- **Currency**: - - **Name**: Eris - - **Symbol**: ERIS - - **Decimals**: 18 - -## RPC URLs - -IRIShub Testnet can be accessed through the following RPC endpoints: - -- https://evmrpc.nyancat.irisnet.org - -## IRIShub Testnet Block Explorers - -- [IRISHub Testnet Cosmos Explorer (IOBScan)](https://nyancat.iobscan.io) - -## Additional Information - -- **Official Website**: https://www.irisnet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## IRIShub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/irishub.mdx b/docs/pages/solutions/chainlist/non-integrated/irishub.mdx deleted file mode 100644 index cf033dc763..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/irishub.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: IRIShub - IRIShub Blockchain Network -description: Explore IRIShub, a blockchain network with chain ID 6688. Learn about its native currency, Eris, and how to interact with the network. ---- - -# IRIShub - -IRIShub is a blockchain network with chain ID 6688. - -## Network Details - -- **Chain ID**: 6688 -- **Chain Name**: IRIShub -- **Short Name**: iris -- **Network ID**: 6688 -- **Currency**: - - **Name**: Eris - - **Symbol**: ERIS - - **Decimals**: 18 - -## RPC URLs - -IRIShub can be accessed through the following RPC endpoints: - -- https://evmrpc.irishub-1.irisnet.org -- https://iris-evm.publicnode.com -- wss://iris-evm.publicnode.com - -## IRIShub Block Explorers - -- [IRISHub Cosmos Explorer (IOBScan)](https://irishub.iobscan.io) - -## Additional Information - -- **Official Website**: https://www.irisnet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/itx-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/itx-testnet.mdx deleted file mode 100644 index 3df2e1b218..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/itx-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ITX Testnet - ITX Blockchain Network -description: Explore ITX Testnet, a blockchain network with chain ID 5321. Learn about its native currency, ITX, and how to interact with the network. ---- - -# ITX Testnet - -ITX Testnet is a blockchain network with chain ID 5321. - -## Network Details - -- **Chain ID**: 5321 -- **Chain Name**: ITX -- **Short Name**: itx-testnet -- **Network ID**: 5321 -- **Currency**: - - **Name**: ITX - - **Symbol**: ITX - - **Decimals**: 18 - -## RPC URLs - -ITX Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.itxchain.com - -## ITX Testnet Block Explorers - -- [ITX Testnet Explorer (Blockscout)](https://explorer.testnet.itxchain.com) - -## Additional Information - -- **Official Website**: https://explorer.testnet.itxchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ITX Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/itx.mdx b/docs/pages/solutions/chainlist/non-integrated/itx.mdx deleted file mode 100644 index 6c2d892e29..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/itx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ITX Mainnet - ITX Blockchain Network -description: Explore ITX Mainnet, a blockchain network with chain ID 1235. Learn about its native currency, ITX, and how to interact with the network. ---- - -# ITX Mainnet - -ITX Mainnet is a blockchain network with chain ID 1235. - -## Network Details - -- **Chain ID**: 1235 -- **Chain Name**: ITX -- **Short Name**: itx -- **Network ID**: 1235 -- **Currency**: - - **Name**: ITX - - **Symbol**: ITX - - **Decimals**: 18 - -## RPC URLs - -ITX Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.itxchain.com - -## ITX Mainnet Block Explorers - -- [ITX Mainnet Explorer (Blockscout)](https://explorer.itxchain.com) - -## Additional Information - -- **Official Website**: https://explorer.itxchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ivar-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ivar-chain-testnet.mdx deleted file mode 100644 index d230c99cc8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ivar-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: IVAR Chain Testnet - IVAR Blockchain Network -description: Explore IVAR Chain Testnet, a blockchain network with chain ID 16888. Learn about its native currency, tIvar, and how to interact with the network. ---- - -# IVAR Chain Testnet - -IVAR Chain Testnet is a blockchain network with chain ID 16888. - -## Network Details - -- **Chain ID**: 16888 -- **Chain Name**: IVAR -- **Short Name**: tivar -- **Network ID**: 16888 -- **Currency**: - - **Name**: tIvar - - **Symbol**: tIVAR - - **Decimals**: 18 - -## RPC URLs - -IVAR Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.ivarex.com - -## IVAR Chain Testnet Block Explorers - -- [ivarscan](https://testnet.ivarscan.com) - -## Additional Information - -- **Official Website**: https://ivarex.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## IVAR Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/j2o-taro.mdx b/docs/pages/solutions/chainlist/non-integrated/j2o-taro.mdx deleted file mode 100644 index b5f695b49e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/j2o-taro.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: J2O Taro - TARO Blockchain Network -description: Explore J2O Taro, a blockchain network with chain ID 35011. Learn about its native currency, TARO Coin, and how to interact with the network. ---- - -# J2O Taro - -J2O Taro is a blockchain network with chain ID 35011. - -## Network Details - -- **Chain ID**: 35011 -- **Chain Name**: TARO -- **Short Name**: j2o -- **Network ID**: 35011 -- **Currency**: - - **Name**: TARO Coin - - **Symbol**: taro - - **Decimals**: 18 - -## RPC URLs - -J2O Taro can be accessed through the following RPC endpoints: - -- https://rpc.j2o.io - -## J2O Taro Block Explorers - -- [J2O Taro Explorer](https://exp.j2o.io) - -## Additional Information - -- **Official Website**: https://j2o.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jaiho-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/jaiho-chain.mdx deleted file mode 100644 index 9f1252c3af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jaiho-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: JaiHo Chain - JaiHoChain Blockchain Network -description: Explore JaiHo Chain, a blockchain network with chain ID 1313. Learn about its native currency, JaiHo, and how to interact with the network. ---- - -# JaiHo Chain - -JaiHo Chain is a blockchain network with chain ID 1313. - -## Network Details - -- **Chain ID**: 1313 -- **Chain Name**: JaiHoChain -- **Short Name**: JHC -- **Network ID**: 1313 -- **Currency**: - - **Name**: JaiHo - - **Symbol**: JaiHo - - **Decimals**: 18 - -## RPC URLs - -JaiHo Chain can be accessed through the following RPC endpoints: - -- https://rpc.jaihochain.com - -## JaiHo Chain Block Explorers - -- [JaiHo Chain Explorer](https://jaihochain.com) - -## Additional Information - -- **Official Website**: https://jaihochain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon's-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon's-devnet.mdx deleted file mode 100644 index 0762a65773..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon's-devnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon's Devnet - Jambon's Devnet Blockchain Network -description: Explore Jambon's Devnet, a blockchain network with chain ID 72605. Learn about its native currency, Jambon's Devnet, and how to interact with the network. ---- - -# Jambon's Devnet - -Jambon's Devnet is a blockchain network with chain ID 72605. - -## Network Details - -- **Chain ID**: 72605 -- **Chain Name**: Jambon's Devnet -- **Short Name**: Jambon's Devnet -- **Network ID**: 72605 -- **Currency**: - - **Name**: Jambon's Devnet - - **Symbol**: DOB - - **Decimals**: 18 - -## RPC URLs - -Jambon's Devnet can be accessed through the following RPC endpoints: - - - -## Jambon's Devnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon's Devnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-30891.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-30891.mdx deleted file mode 100644 index 4befadeb4a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-30891.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon's Testnet - Avalanche Blockchain Network -description: Explore Jambon's Testnet, a blockchain network with chain ID 30891. Learn about its native currency, Jambon's Testnet Token, and how to interact with the network. ---- - -# Jambon's Testnet - -Jambon's Testnet is a blockchain network with chain ID 30891. - -## Network Details - -- **Chain ID**: 30891 -- **Chain Name**: Avalanche -- **Short Name**: Jambon's Testnet -- **Network ID**: 30891 -- **Currency**: - - **Name**: Jambon's Testnet Token - - **Symbol**: CXY - - **Decimals**: 18 - -## RPC URLs - -Jambon's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/e8b04790-d50c-4bb1-89ba-7bd140b674f3 - -## Jambon's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-53383.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-53383.mdx deleted file mode 100644 index 80e8382930..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-53383.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon's Testnet - Avalanche Blockchain Network -description: Explore Jambon's Testnet, a blockchain network with chain ID 53383. Learn about its native currency, Jambon's Testnet Token, and how to interact with the network. ---- - -# Jambon's Testnet - -Jambon's Testnet is a blockchain network with chain ID 53383. - -## Network Details - -- **Chain ID**: 53383 -- **Chain Name**: Avalanche -- **Short Name**: Jambon's Testnet -- **Network ID**: 53383 -- **Currency**: - - **Name**: Jambon's Testnet Token - - **Symbol**: GNF - - **Decimals**: 18 - -## RPC URLs - -Jambon's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c37c3f83-6d95-4473-b5c7-626fad519f50 - -## Jambon's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-54356.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-54356.mdx deleted file mode 100644 index c1a77f089c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet-54356.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon's Testnet - Avalanche Blockchain Network -description: Explore Jambon's Testnet, a blockchain network with chain ID 54356. Learn about its native currency, Jambon's Testnet Token, and how to interact with the network. ---- - -# Jambon's Testnet - -Jambon's Testnet is a blockchain network with chain ID 54356. - -## Network Details - -- **Chain ID**: 54356 -- **Chain Name**: Avalanche -- **Short Name**: Jambon's Testnet -- **Network ID**: 54356 -- **Currency**: - - **Name**: Jambon's Testnet Token - - **Symbol**: ZEG - - **Decimals**: 18 - -## RPC URLs - -Jambon's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/e6f00b45-8486-445d-b3b8-815708aab379 - -## Jambon's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet.mdx deleted file mode 100644 index 8256b46220..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon's Testnet - Avalanche Blockchain Network -description: Explore Jambon's Testnet, a blockchain network with chain ID 4905. Learn about its native currency, Jambon's Testnet Token, and how to interact with the network. ---- - -# Jambon's Testnet - -Jambon's Testnet is a blockchain network with chain ID 4905. - -## Network Details - -- **Chain ID**: 4905 -- **Chain Name**: Avalanche -- **Short Name**: Jambon's Testnet -- **Network ID**: 4905 -- **Currency**: - - **Name**: Jambon's Testnet Token - - **Symbol**: XFX - - **Decimals**: 18 - -## RPC URLs - -Jambon's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f4ceb0cc-0d11-4d49-888e-d744e333488a - -## Jambon's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jambon-universe.mdx b/docs/pages/solutions/chainlist/non-integrated/jambon-universe.mdx deleted file mode 100644 index ac69d8145f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jambon-universe.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jambon Universe - Avalanche Blockchain Network -description: Explore Jambon Universe, a blockchain network with chain ID 91513. Learn about its native currency, Jambon Universe Token, and how to interact with the network. ---- - -# Jambon Universe - -Jambon Universe is a blockchain network with chain ID 91513. - -## Network Details - -- **Chain ID**: 91513 -- **Chain Name**: Avalanche -- **Short Name**: Jambon Universe -- **Network ID**: 91513 -- **Currency**: - - **Name**: Jambon Universe Token - - **Symbol**: NIX - - **Decimals**: 18 - -## RPC URLs - -Jambon Universe can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jambonuvrs/testnet/rpc - -## Jambon Universe Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jambon Universe Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/janus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/janus-testnet.mdx deleted file mode 100644 index a1df94ff8e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/janus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Janus Testnet - JanusNetwork Blockchain Network -description: Explore Janus Testnet, a blockchain network with chain ID 66988. Learn about its native currency, Janus, and how to interact with the network. ---- - -# Janus Testnet - -Janus Testnet is a blockchain network with chain ID 66988. - -## Network Details - -- **Chain ID**: 66988 -- **Chain Name**: JanusNetwork -- **Short Name**: janusnetwork-testnet -- **Network ID**: 66988 -- **Currency**: - - **Name**: Janus - - **Symbol**: JNS - - **Decimals**: 18 - -## RPC URLs - -Janus Testnet can be accessed through the following RPC endpoints: - -- https://rpc.test.janusnetwork.io - -## Janus Testnet Block Explorers - -- [JanusNetwork Testnet Explorer](https://beta.scan.janusnetwork.io) - -## Additional Information - -- **Official Website**: https://janus-network.gitbook.io/janus - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Janus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/japan-open-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/japan-open-chain-testnet.mdx deleted file mode 100644 index 8ca23c922e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/japan-open-chain-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Japan Open Chain Testnet - JOCT Blockchain Network -description: Explore Japan Open Chain Testnet, a blockchain network with chain ID 10081. Learn about its native currency, Japan Open Chain Testnet Token, and how to interact with the network. ---- - -# Japan Open Chain Testnet - -Japan Open Chain Testnet is a blockchain network with chain ID 10081. - -## Network Details - -- **Chain ID**: 10081 -- **Chain Name**: JOCT -- **Short Name**: joct -- **Network ID**: 10081 -- **Currency**: - - **Name**: Japan Open Chain Testnet Token - - **Symbol**: JOCT - - **Decimals**: 18 - -## RPC URLs - -Japan Open Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-1.testnet.japanopenchain.org:8545 -- https://rpc-2.testnet.japanopenchain.org:8545 -- https://rpc-3.testnet.japanopenchain.org - -## Japan Open Chain Testnet Block Explorers - -- [Testnet Block Explorer](https://explorer.testnet.japanopenchain.org) - -## Additional Information - -- **Official Website**: https://www.japanopenchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Japan Open Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/japan-open-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/japan-open-chain.mdx deleted file mode 100644 index 7b374f5e01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/japan-open-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Japan Open Chain Mainnet - JOC Blockchain Network -description: Explore Japan Open Chain Mainnet, a blockchain network with chain ID 81. Learn about its native currency, Japan Open Chain Token, and how to interact with the network. ---- - -# Japan Open Chain Mainnet - -Japan Open Chain Mainnet is a blockchain network with chain ID 81. - -## Network Details - -- **Chain ID**: 81 -- **Chain Name**: JOC -- **Short Name**: joc -- **Network ID**: 81 -- **Currency**: - - **Name**: Japan Open Chain Token - - **Symbol**: JOC - - **Decimals**: 18 - -## RPC URLs - -Japan Open Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-1.japanopenchain.org:8545 -- https://rpc-2.japanopenchain.org:8545 -- https://rpc-3.japanopenchain.org - -## Japan Open Chain Mainnet Block Explorers - -- [Block Explorer](https://explorer.japanopenchain.org) - -## Additional Information - -- **Official Website**: https://www.japanopenchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jellie.mdx b/docs/pages/solutions/chainlist/non-integrated/jellie.mdx deleted file mode 100644 index 58801ac239..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jellie.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Jellie - ETH Blockchain Network -description: Explore Jellie, a blockchain network with chain ID 202624. Learn about its native currency, Twala Coin, and how to interact with the network. ---- - -# Jellie - -Jellie is a blockchain network with chain ID 202624. - -## Network Details - -- **Chain ID**: 202624 -- **Chain Name**: ETH -- **Short Name**: twl-jellie -- **Network ID**: 202624 -- **Currency**: - - **Name**: Twala Coin - - **Symbol**: TWL - - **Decimals**: 18 - -## RPC URLs - -Jellie can be accessed through the following RPC endpoints: - -- https://jellie-rpc.twala.io/ -- wss://jellie-rpc-wss.twala.io/ - -## Jellie Block Explorers - -- [Jellie Blockchain Explorer](https://jellie.twala.io) - -## Additional Information - -- **Official Website**: https://twala.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jellie Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jfin-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/jfin-chain.mdx deleted file mode 100644 index 19f331c244..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jfin-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: JFIN Chain - JFIN Blockchain Network -description: Explore JFIN Chain, a blockchain network with chain ID 3501. Learn about its native currency, JFIN Coin, and how to interact with the network. ---- - -# JFIN Chain - -JFIN Chain is a blockchain network with chain ID 3501. - -## Network Details - -- **Chain ID**: 3501 -- **Chain Name**: JFIN -- **Short Name**: JFIN -- **Network ID**: 3501 -- **Currency**: - - **Name**: JFIN Coin - - **Symbol**: JFIN - - **Decimals**: 18 - -## RPC URLs - -JFIN Chain can be accessed through the following RPC endpoints: - -- https://rpc.jfinchain.com - -## JFIN Chain Block Explorers - -- [JFIN Chain Explorer](https://exp.jfinchain.com) - -## Additional Information - -- **Official Website**: https://jfinchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jibchain-l1.mdx b/docs/pages/solutions/chainlist/non-integrated/jibchain-l1.mdx deleted file mode 100644 index 15e7ad99fa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jibchain-l1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: JIBCHAIN L1 - JBC Blockchain Network -description: Explore JIBCHAIN L1, a blockchain network with chain ID 8899. Learn about its native currency, JIBCOIN, and how to interact with the network. ---- - -# JIBCHAIN L1 - -JIBCHAIN L1 is a blockchain network with chain ID 8899. - -## Network Details - -- **Chain ID**: 8899 -- **Chain Name**: JBC -- **Short Name**: jbc -- **Network ID**: 8899 -- **Currency**: - - **Name**: JIBCOIN - - **Symbol**: JBC - - **Decimals**: 18 - -## RPC URLs - -JIBCHAIN L1 can be accessed through the following RPC endpoints: - -- https://rpc-l1.jibchain.net -- https://rpc-l1.inan.in.th - -## JIBCHAIN L1 Block Explorers - -- [JIBCHAIN Explorer](https://exp-l1.jibchain.net) - -## Additional Information - -- **Official Website**: https://jibchain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jiritsu-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jiritsu-testnet.mdx deleted file mode 100644 index 2f83b484ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jiritsu-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jiritsu Testnet Subnet - JIRITSUTES Blockchain Network -description: Explore Jiritsu Testnet Subnet, a blockchain network with chain ID 11227. Learn about its native currency, JIRI, and how to interact with the network. ---- - -# Jiritsu Testnet Subnet - -Jiritsu Testnet Subnet is a blockchain network with chain ID 11227. - -## Network Details - -- **Chain ID**: 11227 -- **Chain Name**: JIRITSUTES -- **Short Name**: jiritsutes -- **Network ID**: 11227 -- **Currency**: - - **Name**: JIRI - - **Symbol**: TZW - - **Decimals**: 18 - -## RPC URLs - -Jiritsu Testnet Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jiritsutes/testnet/rpc - -## Jiritsu Testnet Subnet Block Explorers - -- [JIRITSUTES Explorer](https://subnets-test.avax.network/jiritsutes) - -## Additional Information - -- **Official Website**: https://jiritsu.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jiritsu Testnet Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/john's-testnet-86602.mdx b/docs/pages/solutions/chainlist/non-integrated/john's-testnet-86602.mdx deleted file mode 100644 index 9becbcf29a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/john's-testnet-86602.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: John's Testnet - Avalanche Blockchain Network -description: Explore John's Testnet, a blockchain network with chain ID 86602. Learn about its native currency, John's Testnet Token, and how to interact with the network. ---- - -# John's Testnet - -John's Testnet is a blockchain network with chain ID 86602. - -## Network Details - -- **Chain ID**: 86602 -- **Chain Name**: Avalanche -- **Short Name**: John's Testnet -- **Network ID**: 86602 -- **Currency**: - - **Name**: John's Testnet Token - - **Symbol**: ABN - - **Decimals**: 18 - -## RPC URLs - -John's Testnet can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## John's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## John's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/john's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/john's-testnet.mdx deleted file mode 100644 index f885f3ff49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/john's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: John's Testnet - Avalanche Blockchain Network -description: Explore John's Testnet, a blockchain network with chain ID 70038. Learn about its native currency, John's Testnet Token, and how to interact with the network. ---- - -# John's Testnet - -John's Testnet is a blockchain network with chain ID 70038. - -## Network Details - -- **Chain ID**: 70038 -- **Chain Name**: Avalanche -- **Short Name**: John's Testnet -- **Network ID**: 70038 -- **Currency**: - - **Name**: John's Testnet Token - - **Symbol**: FLG - - **Decimals**: 18 - -## RPC URLs - -John's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## John's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## John's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jono11-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jono11-subnet.mdx deleted file mode 100644 index 0a8003bdd6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jono11-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jono11 Subnet - JONO11 Blockchain Network -description: Explore Jono11 Subnet, a blockchain network with chain ID 20765. Learn about its native currency, Jono11 Token, and how to interact with the network. ---- - -# Jono11 Subnet - -Jono11 Subnet is a blockchain network with chain ID 20765. - -## Network Details - -- **Chain ID**: 20765 -- **Chain Name**: JONO11 -- **Short Name**: jono11 -- **Network ID**: 20765 -- **Currency**: - - **Name**: Jono11 Token - - **Symbol**: JONO - - **Decimals**: 18 - -## RPC URLs - -Jono11 Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jono11/testnet/rpc - -## Jono11 Subnet Block Explorers - -- [JONO11 Explorer](https://subnets-test.avax.network/jono11) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jono11 Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jono12-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jono12-subnet.mdx deleted file mode 100644 index 78cb711423..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jono12-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jono12 Subnet - JONO12 Blockchain Network -description: Explore Jono12 Subnet, a blockchain network with chain ID 955081. Learn about its native currency, Jono12 Token, and how to interact with the network. ---- - -# Jono12 Subnet - -Jono12 Subnet is a blockchain network with chain ID 955081. - -## Network Details - -- **Chain ID**: 955081 -- **Chain Name**: JONO12 -- **Short Name**: jono12 -- **Network ID**: 955081 -- **Currency**: - - **Name**: Jono12 Token - - **Symbol**: JONO - - **Decimals**: 18 - -## RPC URLs - -Jono12 Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jono12/testnet/rpc - -## Jono12 Subnet Block Explorers - -- [JONO12 Explorer](https://subnets-test.avax.network/jono12) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jono12 Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jono122.mdx b/docs/pages/solutions/chainlist/non-integrated/jono122.mdx deleted file mode 100644 index 0402ee5005..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jono122.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: JONO122 - Avalanche Blockchain Network -description: Explore JONO122, a blockchain network with chain ID 5668. Learn about its native currency, JONO122 Token, and how to interact with the network. ---- - -# JONO122 - -JONO122 is a blockchain network with chain ID 5668. - -## Network Details - -- **Chain ID**: 5668 -- **Chain Name**: Avalanche -- **Short Name**: JONO122 -- **Network ID**: 5668 -- **Currency**: - - **Name**: JONO122 Token - - **Symbol**: JONO - - **Decimals**: 18 - -## RPC URLs - -JONO122 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jono122/testnet/rpc - -## JONO122 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## JONO122 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/jonoperf.mdx b/docs/pages/solutions/chainlist/non-integrated/jonoperf.mdx deleted file mode 100644 index 3cf05dbcbd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jonoperf.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: jonoperf - Avalanche Blockchain Network -description: Explore jonoperf, a blockchain network with chain ID 70157. Learn about its native currency, jonoperf Token, and how to interact with the network. ---- - -# jonoperf - -jonoperf is a blockchain network with chain ID 70157. - -## Network Details - -- **Chain ID**: 70157 -- **Chain Name**: Avalanche -- **Short Name**: jonoperf -- **Network ID**: 70157 -- **Currency**: - - **Name**: jonoperf Token - - **Symbol**: JONO - - **Decimals**: 18 - -## RPC URLs - -jonoperf can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jonoperf/testnet/rpc - -## jonoperf Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## jonoperf Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/joseon.mdx b/docs/pages/solutions/chainlist/non-integrated/joseon.mdx deleted file mode 100644 index dd4f93f97e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/joseon.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Joseon Mainnet - Joseon Blockchain Network -description: Explore Joseon Mainnet, a blockchain network with chain ID 1392. Learn about its native currency, Joseon Mun, and how to interact with the network. ---- - -# Joseon Mainnet - -Joseon Mainnet is a blockchain network with chain ID 1392. - -## Network Details - -- **Chain ID**: 1392 -- **Chain Name**: Joseon -- **Short Name**: mun -- **Network ID**: 1392 -- **Currency**: - - **Name**: Joseon Mun - - **Symbol**: JSM - - **Decimals**: 18 - -## RPC URLs - -Joseon Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.modchain.net/blockchain.joseon.com/rpc - -## Joseon Mainnet Block Explorers - -- [BlockExplorer](https://www.blockexplorer.com) - -## Additional Information - -- **Official Website**: https://www.joseon.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jouleverse.mdx b/docs/pages/solutions/chainlist/non-integrated/jouleverse.mdx deleted file mode 100644 index 351484488e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jouleverse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jouleverse Mainnet - Jouleverse Blockchain Network -description: Explore Jouleverse Mainnet, a blockchain network with chain ID 3666. Learn about its native currency, J, and how to interact with the network. ---- - -# Jouleverse Mainnet - -Jouleverse Mainnet is a blockchain network with chain ID 3666. - -## Network Details - -- **Chain ID**: 3666 -- **Chain Name**: Jouleverse -- **Short Name**: jouleverse -- **Network ID**: 3666 -- **Currency**: - - **Name**: J - - **Symbol**: J - - **Decimals**: 18 - -## RPC URLs - -Jouleverse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.jnsdao.com:8503 - -## Jouleverse Mainnet Block Explorers - -- [jscan](https://jscan.jnsdao.com) - -## Additional Information - -- **Official Website**: https://jnsdao.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jovica's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/jovica's-testnet.mdx deleted file mode 100644 index 622a6cfe8a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jovica's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Jovica's Testnet - Avalanche Blockchain Network -description: Explore Jovica's Testnet, a blockchain network with chain ID 84045. Learn about its native currency, Jovica's Testnet Token, and how to interact with the network. ---- - -# Jovica's Testnet - -Jovica's Testnet is a blockchain network with chain ID 84045. - -## Network Details - -- **Chain ID**: 84045 -- **Chain Name**: Avalanche -- **Short Name**: Jovica's Testnet -- **Network ID**: 84045 -- **Currency**: - - **Name**: Jovica's Testnet Token - - **Symbol**: ZQG - - **Decimals**: 18 - -## RPC URLs - -Jovica's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/jovicax/testnet/rpc - -## Jovica's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Jovica's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/joys-digital-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/joys-digital-testnet.mdx deleted file mode 100644 index 7eecbf2601..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/joys-digital-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Joys Digital TestNet - TOYS Blockchain Network -description: Explore Joys Digital TestNet, a blockchain network with chain ID 99415706. Learn about its native currency, TOYS, and how to interact with the network. ---- - -# Joys Digital TestNet - -Joys Digital TestNet is a blockchain network with chain ID 99415706. - -## Network Details - -- **Chain ID**: 99415706 -- **Chain Name**: TOYS -- **Short Name**: TOYS -- **Network ID**: 99415706 -- **Currency**: - - **Name**: TOYS - - **Symbol**: TOYS - - **Decimals**: 18 - -## RPC URLs - -Joys Digital TestNet can be accessed through the following RPC endpoints: - -- https://toys.joys.cash/ - -## Joys Digital TestNet Block Explorers - - - -## Additional Information - -- **Official Website**: https://joys.digital - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Joys Digital TestNet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/joys-digital.mdx b/docs/pages/solutions/chainlist/non-integrated/joys-digital.mdx deleted file mode 100644 index 6e2619fa9e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/joys-digital.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Joys Digital Mainnet - JOYS Blockchain Network -description: Explore Joys Digital Mainnet, a blockchain network with chain ID 35855456. Learn about its native currency, JOYS, and how to interact with the network. ---- - -# Joys Digital Mainnet - -Joys Digital Mainnet is a blockchain network with chain ID 35855456. - -## Network Details - -- **Chain ID**: 35855456 -- **Chain Name**: JOYS -- **Short Name**: JOYS -- **Network ID**: 35855456 -- **Currency**: - - **Name**: JOYS - - **Symbol**: JOYS - - **Decimals**: 18 - -## RPC URLs - -Joys Digital Mainnet can be accessed through the following RPC endpoints: - -- https://node.joys.digital - -## Joys Digital Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://joys.digital - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/jumbochain.mdx b/docs/pages/solutions/chainlist/non-integrated/jumbochain.mdx deleted file mode 100644 index 2d8260de30..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/jumbochain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Jumbochain Mainnet - Jumbo Blockchain Network -description: Explore Jumbochain Mainnet, a blockchain network with chain ID 1009. Learn about its native currency, JNFTC, and how to interact with the network. ---- - -# Jumbochain Mainnet - -Jumbochain Mainnet is a blockchain network with chain ID 1009. - -## Network Details - -- **Chain ID**: 1009 -- **Chain Name**: Jumbo -- **Short Name**: Jumboscan -- **Network ID**: 1009 -- **Currency**: - - **Name**: JNFTC - - **Symbol**: JNFTC - - **Decimals**: 18 - -## RPC URLs - -Jumbochain Mainnet can be accessed through the following RPC endpoints: - -- https://rpcpriv.jumbochain.org - -## Jumbochain Mainnet Block Explorers - -- [Jumboscan](https://jumboscan.jumbochain.org) - -## Additional Information - -- **Official Website**: https://jumbochain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/juncachain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/juncachain-testnet.mdx deleted file mode 100644 index b011b0077d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/juncachain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: JuncaChain testnet - JuncaChain testnet Blockchain Network -description: Explore JuncaChain testnet, a blockchain network with chain ID 669. Learn about its native currency, JuncaChain Testnet Native Token, and how to interact with the network. ---- - -# JuncaChain testnet - -JuncaChain testnet is a blockchain network with chain ID 669. - -## Network Details - -- **Chain ID**: 669 -- **Chain Name**: JuncaChain testnet -- **Short Name**: juncat -- **Network ID**: 669 -- **Currency**: - - **Name**: JuncaChain Testnet Native Token - - **Symbol**: JGCT - - **Decimals**: 18 - -## RPC URLs - -JuncaChain testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.juncachain.com -- wss://ws-testnet.juncachain.com - -## JuncaChain testnet Block Explorers - -- [JuncaScan](https://scan-testnet.juncachain.com) - -## Additional Information - -- **Official Website**: https://junca-cash.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## JuncaChain testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/juncachain.mdx b/docs/pages/solutions/chainlist/non-integrated/juncachain.mdx deleted file mode 100644 index 9bae582bf8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/juncachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: JuncaChain - JuncaChain Blockchain Network -description: Explore JuncaChain, a blockchain network with chain ID 668. Learn about its native currency, JuncaChain Native Token, and how to interact with the network. ---- - -# JuncaChain - -JuncaChain is a blockchain network with chain ID 668. - -## Network Details - -- **Chain ID**: 668 -- **Chain Name**: JuncaChain -- **Short Name**: junca -- **Network ID**: 668 -- **Currency**: - - **Name**: JuncaChain Native Token - - **Symbol**: JGC - - **Decimals**: 18 - -## RPC URLs - -JuncaChain can be accessed through the following RPC endpoints: - -- https://rpc.juncachain.com - -## JuncaChain Block Explorers - -- [JuncaScan](https://scan.juncachain.com) - -## Additional Information - -- **Official Website**: https://junca-cash.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/k-laos.mdx b/docs/pages/solutions/chainlist/non-integrated/k-laos.mdx deleted file mode 100644 index 3bc4856868..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/k-laos.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: K-LAOS - K-LAOS Blockchain Network -description: Explore K-LAOS, a blockchain network with chain ID 2718. Learn about its native currency, KLAOS, and how to interact with the network. ---- - -# K-LAOS - -K-LAOS is a blockchain network with chain ID 2718. - -## Network Details - -- **Chain ID**: 2718 -- **Chain Name**: K-LAOS -- **Short Name**: k-laos -- **Network ID**: 2718 -- **Currency**: - - **Name**: KLAOS - - **Symbol**: KLAOS - - **Decimals**: 18 - -## RPC URLs - -K-LAOS can be accessed through the following RPC endpoints: - -- https://rpc.klaos.laosfoundation.io -- wss://rpc.klaos.laosfoundation.io - -## K-LAOS Block Explorers - -- [blockscout](https://blockscout.klaos.laosfoundation.io) - -## Additional Information - -- **Official Website**: https://www.laosfoundation.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaia-testnet-kairos.mdx b/docs/pages/solutions/chainlist/non-integrated/kaia-testnet-kairos.mdx deleted file mode 100644 index 759bb08f04..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaia-testnet-kairos.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Kaia Testnet Kairos - KAIA Blockchain Network -description: Explore Kaia Testnet Kairos, a blockchain network with chain ID 1001. Learn about its native currency, KAIA, and how to interact with the network. ---- - -# Kaia Testnet Kairos - -Kaia Testnet Kairos is a blockchain network with chain ID 1001. - -## Network Details - -- **Chain ID**: 1001 -- **Chain Name**: KAIA -- **Short Name**: kaia-kairos -- **Network ID**: 1001 -- **Currency**: - - **Name**: KAIA - - **Symbol**: KLAY - - **Decimals**: 18 - -## RPC URLs - -Kaia Testnet Kairos can be accessed through the following RPC endpoints: - -- https://public-en.kairos.node.kaia.io - -## Kaia Testnet Kairos Block Explorers - -- [Klaytnscope](https://baobab.klaytnscope.com) -- [Klaytnfinder](https://baobab.klaytnfinder.io) - -## Additional Information - -- **Official Website**: https://kaia.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kaia Testnet Kairos Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaia.mdx b/docs/pages/solutions/chainlist/non-integrated/kaia.mdx deleted file mode 100644 index 77b8d07bdf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaia.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kaia Mainnet - KAIA Blockchain Network -description: Explore Kaia Mainnet, a blockchain network with chain ID 8217. Learn about its native currency, KAIA, and how to interact with the network. ---- - -# Kaia Mainnet - -Kaia Mainnet is a blockchain network with chain ID 8217. - -## Network Details - -- **Chain ID**: 8217 -- **Chain Name**: KAIA -- **Short Name**: kaia-mainnet -- **Network ID**: 8217 -- **Currency**: - - **Name**: KAIA - - **Symbol**: KLAY - - **Decimals**: 18 - -## RPC URLs - -Kaia Mainnet can be accessed through the following RPC endpoints: - -- https://public-en.node.kaia.io - -## Kaia Mainnet Block Explorers - -- [Klaytnscope](https://scope.klaytn.com) -- [Klaytnfinder](https://klaytnfinder.io) - -## Additional Information - -- **Official Website**: https://kaia.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaiba-lightning-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kaiba-lightning-chain-testnet.mdx deleted file mode 100644 index 579b9d0854..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaiba-lightning-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kaiba Lightning Chain Testnet - tKLC Blockchain Network -description: Explore Kaiba Lightning Chain Testnet, a blockchain network with chain ID 104. Learn about its native currency, Kaiba Testnet Token, and how to interact with the network. ---- - -# Kaiba Lightning Chain Testnet - -Kaiba Lightning Chain Testnet is a blockchain network with chain ID 104. - -## Network Details - -- **Chain ID**: 104 -- **Chain Name**: tKLC -- **Short Name**: tklc -- **Network ID**: 104 -- **Currency**: - - **Name**: Kaiba Testnet Token - - **Symbol**: tKAIBA - - **Decimals**: 18 - -## RPC URLs - -Kaiba Lightning Chain Testnet can be accessed through the following RPC endpoints: - -- https://klc.live/ - -## Kaiba Lightning Chain Testnet Block Explorers - -- [kaibascan](https://kaibascan.io) - -## Additional Information - -- **Official Website**: https://kaibadefi.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kaiba Lightning Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kaichain-testnet.mdx deleted file mode 100644 index 41fdf770fa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KaiChain Testnet - KaiChain Blockchain Network -description: Explore KaiChain Testnet, a blockchain network with chain ID 29536. Learn about its native currency, KaiChain Testnet Native Token, and how to interact with the network. ---- - -# KaiChain Testnet - -KaiChain Testnet is a blockchain network with chain ID 29536. - -## Network Details - -- **Chain ID**: 29536 -- **Chain Name**: KaiChain -- **Short Name**: tkec -- **Network ID**: 29536 -- **Currency**: - - **Name**: KaiChain Testnet Native Token - - **Symbol**: KEC - - **Decimals**: 18 - -## RPC URLs - -KaiChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.kaichain.net - -## KaiChain Testnet Block Explorers - -- [KaiChain Explorer](https://testnet-explorer.kaichain.net) - -## Additional Information - -- **Official Website**: https://kaichain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KaiChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaichain.mdx b/docs/pages/solutions/chainlist/non-integrated/kaichain.mdx deleted file mode 100644 index dc186e6f7d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: KaiChain - KaiChain Blockchain Network -description: Explore KaiChain, a blockchain network with chain ID 61406. Learn about its native currency, KaiChain Native Token, and how to interact with the network. ---- - -# KaiChain - -KaiChain is a blockchain network with chain ID 61406. - -## Network Details - -- **Chain ID**: 61406 -- **Chain Name**: KaiChain -- **Short Name**: kec -- **Network ID**: 61406 -- **Currency**: - - **Name**: KaiChain Native Token - - **Symbol**: KEC - - **Decimals**: 18 - -## RPC URLs - -KaiChain can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.kaichain.net - -## KaiChain Block Explorers - -- [KaiChain Explorer](https://explorer.kaichain.net) - -## Additional Information - -- **Official Website**: https://kaichain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia-deprecated.mdx deleted file mode 100644 index 6b35164153..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia-deprecated.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kakarot Sepolia Deprecated - ETH Blockchain Network -description: Explore Kakarot Sepolia Deprecated, a blockchain network with chain ID 107107114116. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Kakarot Sepolia Deprecated - -Kakarot Sepolia Deprecated is a blockchain network with chain ID 107107114116. - -## Network Details - -- **Chain ID**: 107107114116 -- **Chain Name**: ETH -- **Short Name**: kkrt-sepolia-deprecated -- **Network ID**: 107107114116 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kakarot Sepolia Deprecated can be accessed through the following RPC endpoints: - - - -## Kakarot Sepolia Deprecated Block Explorers - - - -## Additional Information - -- **Official Website**: https://kakarot.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia.mdx deleted file mode 100644 index fa4fc8b7d1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kakarot-sepolia.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kakarot Sepolia - ETH Blockchain Network -description: Explore Kakarot Sepolia, a blockchain network with chain ID 1802203764. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Kakarot Sepolia - -Kakarot Sepolia is a blockchain network with chain ID 1802203764. - -## Network Details - -- **Chain ID**: 1802203764 -- **Chain Name**: ETH -- **Short Name**: kkrt-sepolia -- **Network ID**: 1802203764 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kakarot Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia-rpc.kakarot.org - -## Kakarot Sepolia Block Explorers - -- [Kakarot Scan](https://sepolia.kakarotscan.org) -- [Kakarot Explorer](https://sepolia-explorer.kakarot.org) - -## Additional Information - -- **Official Website**: https://kakarot.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kalar-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/kalar-chain.mdx deleted file mode 100644 index ebf6d5eeac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kalar-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kalar Chain - KLC Blockchain Network -description: Explore Kalar Chain, a blockchain network with chain ID 1379. Learn about its native currency, Kalar, and how to interact with the network. ---- - -# Kalar Chain - -Kalar Chain is a blockchain network with chain ID 1379. - -## Network Details - -- **Chain ID**: 1379 -- **Chain Name**: KLC -- **Short Name**: KLC -- **Network ID**: 1379 -- **Currency**: - - **Name**: Kalar - - **Symbol**: KLC - - **Decimals**: 18 - -## RPC URLs - -Kalar Chain can be accessed through the following RPC endpoints: - -- https://rpc-api.kalarchain.tech - -## Kalar Chain Block Explorers - -- [kalarscan](https://explorer.kalarchain.tech) - -## Additional Information - -- **Official Website**: https://kalarchain.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kalichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kalichain-testnet.mdx deleted file mode 100644 index cff3b227f3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kalichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kalichain Testnet - Kalichain Blockchain Network -description: Explore Kalichain Testnet, a blockchain network with chain ID 653. Learn about its native currency, kalis, and how to interact with the network. ---- - -# Kalichain Testnet - -Kalichain Testnet is a blockchain network with chain ID 653. - -## Network Details - -- **Chain ID**: 653 -- **Chain Name**: Kalichain -- **Short Name**: kalichain -- **Network ID**: 653 -- **Currency**: - - **Name**: kalis - - **Symbol**: KALIS - - **Decimals**: 18 - -## RPC URLs - -Kalichain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.kalichain.com - -## Kalichain Testnet Block Explorers - -- [kalichain explorer](https://explorer.kalichain.com) - -## Additional Information - -- **Official Website**: https://kalichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kalichain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kalichain.mdx b/docs/pages/solutions/chainlist/non-integrated/kalichain.mdx deleted file mode 100644 index 6a980ce236..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kalichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kalichain - Kalichain Blockchain Network -description: Explore Kalichain, a blockchain network with chain ID 654. Learn about its native currency, kalis, and how to interact with the network. ---- - -# Kalichain - -Kalichain is a blockchain network with chain ID 654. - -## Network Details - -- **Chain ID**: 654 -- **Chain Name**: Kalichain -- **Short Name**: kalichainMainnet -- **Network ID**: 654 -- **Currency**: - - **Name**: kalis - - **Symbol**: KALIS - - **Decimals**: 18 - -## RPC URLs - -Kalichain can be accessed through the following RPC endpoints: - -- https://mainnet.kalichain.com - -## Kalichain Block Explorers - -- [kalichain explorer](https://explorer.kalichain.com) - -## Additional Information - -- **Official Website**: https://kalichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kalychain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kalychain-testnet.mdx deleted file mode 100644 index 50d2442c1e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kalychain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KalyChain Testnet - KLC Blockchain Network -description: Explore KalyChain Testnet, a blockchain network with chain ID 3889. Learn about its native currency, KalyCoin, and how to interact with the network. ---- - -# KalyChain Testnet - -KalyChain Testnet is a blockchain network with chain ID 3889. - -## Network Details - -- **Chain ID**: 3889 -- **Chain Name**: KLC -- **Short Name**: kalytestnet -- **Network ID**: 3889 -- **Currency**: - - **Name**: KalyCoin - - **Symbol**: KLC - - **Decimals**: 18 - -## RPC URLs - -KalyChain Testnet can be accessed through the following RPC endpoints: - -- https://testnetrpc.kalychain.io/rpc - -## KalyChain Testnet Block Explorers - -- [KalyScan](https://testnet.kalyscan.io) - -## Additional Information - -- **Official Website**: https://kalychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KalyChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kalychain.mdx b/docs/pages/solutions/chainlist/non-integrated/kalychain.mdx deleted file mode 100644 index 53d617fb12..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kalychain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: KalyChain Mainnet - KLC Blockchain Network -description: Explore KalyChain Mainnet, a blockchain network with chain ID 3888. Learn about its native currency, KalyCoin, and how to interact with the network. ---- - -# KalyChain Mainnet - -KalyChain Mainnet is a blockchain network with chain ID 3888. - -## Network Details - -- **Chain ID**: 3888 -- **Chain Name**: KLC -- **Short Name**: kalymainnet -- **Network ID**: 3888 -- **Currency**: - - **Name**: KalyCoin - - **Symbol**: KLC - - **Decimals**: 18 - -## RPC URLs - -KalyChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.kalychain.io/rpc - -## KalyChain Mainnet Block Explorers - -- [KalyScan](https://kalyscan.io) - -## Additional Information - -- **Official Website**: https://kalychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kanazawa.mdx b/docs/pages/solutions/chainlist/non-integrated/kanazawa.mdx deleted file mode 100644 index 3124eb7c75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kanazawa.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Kanazawa - Kanazawa Blockchain Network -description: Explore Kanazawa, a blockchain network with chain ID 222000222. Learn about its native currency, gMeld, and how to interact with the network. ---- - -# Kanazawa - -Kanazawa is a blockchain network with chain ID 222000222. - -## Network Details - -- **Chain ID**: 222000222 -- **Chain Name**: Kanazawa -- **Short Name**: kanazawa -- **Network ID**: 222000222 -- **Currency**: - - **Name**: gMeld - - **Symbol**: gMELD - - **Decimals**: 18 - -## RPC URLs - -Kanazawa can be accessed through the following RPC endpoints: - -- https://testnet-rpc.meld.com - -## Kanazawa Block Explorers - -- [explorer](https://testnet.meldscan.io) -- [explorer](https://subnets-test.avax.network/meld) - -## Additional Information - -- **Official Website**: https://meld.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kanazawa Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/karak-goerli.mdx b/docs/pages/solutions/chainlist/non-integrated/karak-goerli.mdx deleted file mode 100644 index c5076093cd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/karak-goerli.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Karak Goerli - Karak Blockchain Network -description: Explore Karak Goerli, a blockchain network with chain ID 2511. Learn about its native currency, Karak, and how to interact with the network. ---- - -# Karak Goerli - -Karak Goerli is a blockchain network with chain ID 2511. - -## Network Details - -- **Chain ID**: 2511 -- **Chain Name**: Karak -- **Short Name**: karak-goerli -- **Network ID**: 2511 -- **Currency**: - - **Name**: Karak - - **Symbol**: KRK - - **Decimals**: 18 - -## RPC URLs - -Karak Goerli can be accessed through the following RPC endpoints: - -- https://goerli.node1.karak.network - -## Karak Goerli Block Explorers - -- [Karak Goerli Explorer](https://goerli.scan.karak.network) - -## Additional Information - -- **Official Website**: https://karak.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/karak-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/karak-sepolia.mdx deleted file mode 100644 index 6dc8955323..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/karak-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Karak Sepolia - Karak Blockchain Network -description: Explore Karak Sepolia, a blockchain network with chain ID 8054. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Karak Sepolia - -Karak Sepolia is a blockchain network with chain ID 8054. - -## Network Details - -- **Chain ID**: 8054 -- **Chain Name**: Karak -- **Short Name**: karak-sepolia -- **Network ID**: 8054 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Karak Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.sepolia.karak.network - -## Karak Sepolia Block Explorers - -- [Karak Sepolia Explorer](https://explorer.sepolia.karak.network) - -## Additional Information - -- **Official Website**: https://karak.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Karak Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/karak.mdx b/docs/pages/solutions/chainlist/non-integrated/karak.mdx deleted file mode 100644 index 02813b9cfe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/karak.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Karak Mainnet - Karak Blockchain Network -description: Explore Karak Mainnet, a blockchain network with chain ID 2410. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Karak Mainnet - -Karak Mainnet is a blockchain network with chain ID 2410. - -## Network Details - -- **Chain ID**: 2410 -- **Chain Name**: Karak -- **Short Name**: karak-mainnet -- **Network ID**: 2410 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Karak Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.karak.network - -## Karak Mainnet Block Explorers - -- [Karak Mainnet Explorer](https://explorer.karak.network) - -## Additional Information - -- **Official Website**: https://karak.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kardiachain.mdx b/docs/pages/solutions/chainlist/non-integrated/kardiachain.mdx deleted file mode 100644 index fad5604162..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kardiachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: KardiaChain Mainnet - KAI Blockchain Network -description: Explore KardiaChain Mainnet, a blockchain network with chain ID 24. Learn about its native currency, KardiaChain, and how to interact with the network. ---- - -# KardiaChain Mainnet - -KardiaChain Mainnet is a blockchain network with chain ID 24. - -## Network Details - -- **Chain ID**: 24 -- **Chain Name**: KAI -- **Short Name**: kardiachain -- **Network ID**: 24 -- **Currency**: - - **Name**: KardiaChain - - **Symbol**: KAI - - **Decimals**: 18 - -## RPC URLs - -KardiaChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.kardiachain.io - -## KardiaChain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://kardiachain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/karura-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/karura-network-testnet.mdx deleted file mode 100644 index 32ea9870eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/karura-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Karura Network Testnet - KAR Blockchain Network -description: Explore Karura Network Testnet, a blockchain network with chain ID 596. Learn about its native currency, Karura Token, and how to interact with the network. ---- - -# Karura Network Testnet - -Karura Network Testnet is a blockchain network with chain ID 596. - -## Network Details - -- **Chain ID**: 596 -- **Chain Name**: KAR -- **Short Name**: tkar -- **Network ID**: 596 -- **Currency**: - - **Name**: Karura Token - - **Symbol**: KAR - - **Decimals**: 18 - -## RPC URLs - -Karura Network Testnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-karura-testnet.aca-staging.network -- wss://eth-rpc-karura-testnet.aca-staging.network - -## Karura Network Testnet Block Explorers - -- [blockscout](https://blockscout.karura-testnet.aca-staging.network) - -## Additional Information - -- **Official Website**: https://karura.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Karura Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/karura-network.mdx b/docs/pages/solutions/chainlist/non-integrated/karura-network.mdx deleted file mode 100644 index 76c47ef0b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/karura-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Karura Network - KAR Blockchain Network -description: Explore Karura Network, a blockchain network with chain ID 686. Learn about its native currency, Karura Token, and how to interact with the network. ---- - -# Karura Network - -Karura Network is a blockchain network with chain ID 686. - -## Network Details - -- **Chain ID**: 686 -- **Chain Name**: KAR -- **Short Name**: kar -- **Network ID**: 686 -- **Currency**: - - **Name**: Karura Token - - **Symbol**: KAR - - **Decimals**: 18 - -## RPC URLs - -Karura Network can be accessed through the following RPC endpoints: - -- https://eth-rpc-karura.aca-api.network -- wss://eth-rpc-karura.aca-api.network - -## Karura Network Block Explorers - -- [blockscout](https://blockscout.karura.network) - -## Additional Information - -- **Official Website**: https://acala.network/karura - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kaspaclassic.mdx b/docs/pages/solutions/chainlist/non-integrated/kaspaclassic.mdx deleted file mode 100644 index e8ad935e87..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kaspaclassic.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: KaspaClassic Mainnet - KaspaClassic Blockchain Network -description: Explore KaspaClassic Mainnet, a blockchain network with chain ID 104566. Learn about its native currency, KaspaClassic, and how to interact with the network. ---- - -# KaspaClassic Mainnet - -KaspaClassic Mainnet is a blockchain network with chain ID 104566. - -## Network Details - -- **Chain ID**: 104566 -- **Chain Name**: KaspaClassic -- **Short Name**: cas -- **Network ID**: 104566 -- **Currency**: - - **Name**: KaspaClassic - - **Symbol**: CAS - - **Decimals**: 18 - -## RPC URLs - -KaspaClassic Mainnet can be accessed through the following RPC endpoints: - -- https://api.kaspaclassic.world/ -- http://80.178.101.118:8000/ - -## KaspaClassic Mainnet Block Explorers - -- [KaspaClassic Explorer](https://explorer.kaspaclassic.world) - -## Additional Information - -- **Official Website**: https://kaspaclassic.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kava-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kava-testnet.mdx deleted file mode 100644 index 8964b47017..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kava-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Kava Testnet - KAVA Blockchain Network -description: Explore Kava Testnet, a blockchain network with chain ID 2221. Learn about its native currency, TKava, and how to interact with the network. ---- - -# Kava Testnet - -Kava Testnet is a blockchain network with chain ID 2221. - -## Network Details - -- **Chain ID**: 2221 -- **Chain Name**: KAVA -- **Short Name**: tkava -- **Network ID**: 2221 -- **Currency**: - - **Name**: TKava - - **Symbol**: TKAVA - - **Decimals**: 18 - -## RPC URLs - -Kava Testnet can be accessed through the following RPC endpoints: - -- https://evm.testnet.kava.io -- wss://wevm.testnet.kava.io -- https://kava-testnet.drpc.org -- wss://kava-testnet.drpc.org - -## Kava Testnet Block Explorers - -- [Kava Testnet Explorer](http://testnet.kavascan.com) - -## Additional Information - -- **Official Website**: https://www.kava.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kava Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kava.mdx b/docs/pages/solutions/chainlist/non-integrated/kava.mdx deleted file mode 100644 index a3bacde161..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kava.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Kava - KAVA Blockchain Network -description: Explore Kava, a blockchain network with chain ID 2222. Learn about its native currency, Kava, and how to interact with the network. ---- - -# Kava - -Kava is a blockchain network with chain ID 2222. - -## Network Details - -- **Chain ID**: 2222 -- **Chain Name**: KAVA -- **Short Name**: kava -- **Network ID**: 2222 -- **Currency**: - - **Name**: Kava - - **Symbol**: KAVA - - **Decimals**: 18 - -## RPC URLs - -Kava can be accessed through the following RPC endpoints: - -- https://evm.kava.io -- https://kava-rpc.gateway.pokt.network -- 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 - -## Kava Block Explorers - -- [Kava EVM Explorer](https://kavascan.com) - -## Additional Information - -- **Official Website**: https://www.kava.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kcc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kcc-testnet.mdx deleted file mode 100644 index 2c5d567ec5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kcc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KCC Testnet - KCC Blockchain Network -description: Explore KCC Testnet, a blockchain network with chain ID 322. Learn about its native currency, KuCoin Testnet Token, and how to interact with the network. ---- - -# KCC Testnet - -KCC Testnet is a blockchain network with chain ID 322. - -## Network Details - -- **Chain ID**: 322 -- **Chain Name**: KCC -- **Short Name**: kcst -- **Network ID**: 322 -- **Currency**: - - **Name**: KuCoin Testnet Token - - **Symbol**: tKCS - - **Decimals**: 18 - -## RPC URLs - -KCC Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.kcc.network - -## KCC Testnet Block Explorers - -- [kcc-scan-testnet](https://scan-testnet.kcc.network) - -## Additional Information - -- **Official Website**: https://scan-testnet.kcc.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KCC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kcc.mdx b/docs/pages/solutions/chainlist/non-integrated/kcc.mdx deleted file mode 100644 index 1b0e92ee41..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kcc.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: KCC Mainnet - KCC Blockchain Network -description: Explore KCC Mainnet, a blockchain network with chain ID 321. Learn about its native currency, KuCoin Token, and how to interact with the network. ---- - -# KCC Mainnet - -KCC Mainnet is a blockchain network with chain ID 321. - -## Network Details - -- **Chain ID**: 321 -- **Chain Name**: KCC -- **Short Name**: kcs -- **Network ID**: 321 -- **Currency**: - - **Name**: KuCoin Token - - **Symbol**: KCS - - **Decimals**: 18 - -## RPC URLs - -KCC Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.kcc.network -- https://kcc.mytokenpocket.vip -- https://public-rpc.blockpi.io/http/kcc - -## KCC Mainnet Block Explorers - -- [KCC Explorer](https://explorer.kcc.io/en) - -## Additional Information - -- **Official Website**: https://kcc.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kekchain-(kektest).mdx b/docs/pages/solutions/chainlist/non-integrated/kekchain-(kektest).mdx deleted file mode 100644 index fa7b8edb6b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kekchain-(kektest).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kekchain (kektest) - kek Blockchain Network -description: Explore Kekchain (kektest), a blockchain network with chain ID 420666. Learn about its native currency, tKEK, and how to interact with the network. ---- - -# Kekchain (kektest) - -Kekchain (kektest) is a blockchain network with chain ID 420666. - -## Network Details - -- **Chain ID**: 420666 -- **Chain Name**: kek -- **Short Name**: tKEK -- **Network ID**: 420666 -- **Currency**: - - **Name**: tKEK - - **Symbol**: tKEK - - **Decimals**: 18 - -## RPC URLs - -Kekchain (kektest) can be accessed through the following RPC endpoints: - -- https://testnet.kekchain.com - -## Kekchain (kektest) Block Explorers - -- [blockscout](https://testnet-explorer.kekchain.com) - -## Additional Information - -- **Official Website**: https://kekchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kekchain (kektest) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kekchain.mdx b/docs/pages/solutions/chainlist/non-integrated/kekchain.mdx deleted file mode 100644 index 1a23ebc8d3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kekchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kekchain - kek Blockchain Network -description: Explore Kekchain, a blockchain network with chain ID 420420. Learn about its native currency, KEK, and how to interact with the network. ---- - -# Kekchain - -Kekchain is a blockchain network with chain ID 420420. - -## Network Details - -- **Chain ID**: 420420 -- **Chain Name**: kek -- **Short Name**: KEK -- **Network ID**: 420420 -- **Currency**: - - **Name**: KEK - - **Symbol**: KEK - - **Decimals**: 18 - -## RPC URLs - -Kekchain can be accessed through the following RPC endpoints: - -- https://mainnet.kekchain.com - -## Kekchain Block Explorers - -- [blockscout](https://mainnet-explorer.kekchain.com) - -## Additional Information - -- **Official Website**: https://kekchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kerleano.mdx b/docs/pages/solutions/chainlist/non-integrated/kerleano.mdx deleted file mode 100644 index ff01374db3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kerleano.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Kerleano - CRC Blockchain Network -description: Explore Kerleano, a blockchain network with chain ID 1804. Learn about its native currency, Climate awaReness Coin, and how to interact with the network. ---- - -# Kerleano - -Kerleano is a blockchain network with chain ID 1804. - -## Network Details - -- **Chain ID**: 1804 -- **Chain Name**: CRC -- **Short Name**: kerleano -- **Network ID**: 1804 -- **Currency**: - - **Name**: Climate awaReness Coin - - **Symbol**: CRC - - **Decimals**: 18 - -## RPC URLs - -Kerleano can be accessed through the following RPC endpoints: - -- https://cacib-saturn-test.francecentral.cloudapp.azure.com -- wss://cacib-saturn-test.francecentral.cloudapp.azure.com:9443 - -## Kerleano Block Explorers - -- [Lite Explorer](https://ethereum-pocr.github.io/explorer/kerleano) - -## Additional Information - -- **Official Website**: https://github.com/ethereum-pocr/kerleano - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kerleano Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kiln.mdx b/docs/pages/solutions/chainlist/non-integrated/kiln.mdx deleted file mode 100644 index 731d4df31b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kiln.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kiln - ETH Blockchain Network -description: Explore Kiln, a blockchain network with chain ID 1337802. Learn about its native currency, Testnet ETH, and how to interact with the network. ---- - -# Kiln - -Kiln is a blockchain network with chain ID 1337802. - -## Network Details - -- **Chain ID**: 1337802 -- **Chain Name**: ETH -- **Short Name**: kiln -- **Network ID**: 1337802 -- **Currency**: - - **Name**: Testnet ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kiln can be accessed through the following RPC endpoints: - -- https://rpc.kiln.themerge.dev - -## Kiln Block Explorers - -- [Kiln Explorer](https://explorer.kiln.themerge.dev) - -## Additional Information - -- **Official Website**: https://kiln.themerge.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kiln Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/king-of-legends.mdx b/docs/pages/solutions/chainlist/non-integrated/king-of-legends.mdx deleted file mode 100644 index 286ef6723e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/king-of-legends.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: King Of Legends Mainnet - KCC Blockchain Network -description: Explore King Of Legends Mainnet, a blockchain network with chain ID 2425. Learn about its native currency, King Of Legends, and how to interact with the network. ---- - -# King Of Legends Mainnet - -King Of Legends Mainnet is a blockchain network with chain ID 2425. - -## Network Details - -- **Chain ID**: 2425 -- **Chain Name**: KCC -- **Short Name**: kcc -- **Network ID**: 2425 -- **Currency**: - - **Name**: King Of Legends - - **Symbol**: KCC - - **Decimals**: 18 - -## RPC URLs - -King Of Legends Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.kinggamer.org/ - -## King Of Legends Mainnet Block Explorers - -- [King Of Legends Mainnet Explorer](https://kingscan.org) - -## Additional Information - -- **Official Website**: https://kingoflegends.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kingdom-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/kingdom-chain.mdx deleted file mode 100644 index 58212a9001..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kingdom-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kingdom Chain - KingdomChain Blockchain Network -description: Explore Kingdom Chain, a blockchain network with chain ID 39916801. Learn about its native currency, Kozi, and how to interact with the network. ---- - -# Kingdom Chain - -Kingdom Chain is a blockchain network with chain ID 39916801. - -## Network Details - -- **Chain ID**: 39916801 -- **Chain Name**: KingdomChain -- **Short Name**: kchain -- **Network ID**: 39916801 -- **Currency**: - - **Name**: Kozi - - **Symbol**: KOZI - - **Decimals**: 18 - -## RPC URLs - -Kingdom Chain can be accessed through the following RPC endpoints: - -- https://kingdomchain.observer/rpc - -## Kingdom Chain Block Explorers - -- [TravelSong](https://www.beastkingdom.io/travelsong) - -## Additional Information - -- **Official Website**: https://www.beastkingdom.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kinto-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kinto-testnet.mdx deleted file mode 100644 index 698d46d587..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kinto-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kinto Testnet - ETH Blockchain Network -description: Explore Kinto Testnet, a blockchain network with chain ID 42888. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Kinto Testnet - -Kinto Testnet is a blockchain network with chain ID 42888. - -## Network Details - -- **Chain ID**: 42888 -- **Chain Name**: ETH -- **Short Name**: keth -- **Network ID**: 42888 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kinto Testnet can be accessed through the following RPC endpoints: - -- http://35.215.120.180:8545 - -## Kinto Testnet Block Explorers - -- [kintoscan](http://35.215.120.180:4000) - -## Additional Information - -- **Official Website**: https://ethereum.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kinto Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kinto.mdx b/docs/pages/solutions/chainlist/non-integrated/kinto.mdx deleted file mode 100644 index f701bdf4bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kinto.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kinto Mainnet - Kinto Mainnet Blockchain Network -description: Explore Kinto Mainnet, a blockchain network with chain ID 7887. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# Kinto Mainnet - -Kinto Mainnet is a blockchain network with chain ID 7887. - -## Network Details - -- **Chain ID**: 7887 -- **Chain Name**: Kinto Mainnet -- **Short Name**: kintoMainnet -- **Network ID**: 7887 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kinto Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.kinto.xyz/http -- https://kinto-mainnet.calderachain.xyz/http - -## Kinto Mainnet Block Explorers - -- [Kinto Explorer](https://explorer.kinto.xyz) - -## Additional Information - -- **Official Website**: https://kinto.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kintsugi.mdx b/docs/pages/solutions/chainlist/non-integrated/kintsugi.mdx deleted file mode 100644 index 25342be0f3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kintsugi.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kintsugi - ETH Blockchain Network -description: Explore Kintsugi, a blockchain network with chain ID 1337702. Learn about its native currency, kintsugi Ethere, and how to interact with the network. ---- - -# Kintsugi - -Kintsugi is a blockchain network with chain ID 1337702. - -## Network Details - -- **Chain ID**: 1337702 -- **Chain Name**: ETH -- **Short Name**: kintsugi -- **Network ID**: 1337702 -- **Currency**: - - **Name**: kintsugi Ethere - - **Symbol**: kiETH - - **Decimals**: 18 - -## RPC URLs - -Kintsugi can be accessed through the following RPC endpoints: - -- https://rpc.kintsugi.themerge.dev - -## Kintsugi Block Explorers - -- [kintsugi explorer](https://explorer.kintsugi.themerge.dev) - -## Additional Information - -- **Official Website**: https://kintsugi.themerge.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kintsugi Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kiwi-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kiwi-subnet.mdx deleted file mode 100644 index 13ef8c502e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kiwi-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kiwi Subnet - KIWI Blockchain Network -description: Explore Kiwi Subnet, a blockchain network with chain ID 2037. Learn about its native currency, Shrapgas, and how to interact with the network. ---- - -# Kiwi Subnet - -Kiwi Subnet is a blockchain network with chain ID 2037. - -## Network Details - -- **Chain ID**: 2037 -- **Chain Name**: KIWI -- **Short Name**: kiwi -- **Network ID**: 2037 -- **Currency**: - - **Name**: Shrapgas - - **Symbol**: SHRAP - - **Decimals**: 18 - -## RPC URLs - -Kiwi Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/kiwi/testnet/rpc - -## Kiwi Subnet Block Explorers - -- [KIWI Explorer](https://subnets-test.avax.network/kiwi) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kiwi Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kjcohan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kjcohan-testnet.mdx deleted file mode 100644 index 05f1c48095..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kjcohan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: kjCohan Testnet - Avalanche Blockchain Network -description: Explore kjCohan Testnet, a blockchain network with chain ID 23812. Learn about its native currency, kjCohan Testnet Token, and how to interact with the network. ---- - -# kjCohan Testnet - -kjCohan Testnet is a blockchain network with chain ID 23812. - -## Network Details - -- **Chain ID**: 23812 -- **Chain Name**: Avalanche -- **Short Name**: kjCohan Testnet -- **Network ID**: 23812 -- **Currency**: - - **Name**: kjCohan Testnet Token - - **Symbol**: DBM - - **Decimals**: 18 - -## RPC URLs - -kjCohan Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/d2b6bd35-89f7-4019-bc88-643c31221e5c - -## kjCohan Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## kjCohan Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kk1223.mdx b/docs/pages/solutions/chainlist/non-integrated/kk1223.mdx deleted file mode 100644 index 8d46fdeae4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kk1223.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KK1223 - Avalanche Blockchain Network -description: Explore KK1223, a blockchain network with chain ID 56914. Learn about its native currency, KK1223 Token, and how to interact with the network. ---- - -# KK1223 - -KK1223 is a blockchain network with chain ID 56914. - -## Network Details - -- **Chain ID**: 56914 -- **Chain Name**: Avalanche -- **Short Name**: KK1223 -- **Network ID**: 56914 -- **Currency**: - - **Name**: KK1223 Token - - **Symbol**: KLK - - **Decimals**: 18 - -## RPC URLs - -KK1223 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/bf540c23-4601-4768-9e26-f2e5f0f89c18 - -## KK1223 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KK1223 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/klaos-nova.mdx b/docs/pages/solutions/chainlist/non-integrated/klaos-nova.mdx deleted file mode 100644 index eb15e42b58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/klaos-nova.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: KLAOS Nova - KLAOS Nova Blockchain Network -description: Explore KLAOS Nova, a blockchain network with chain ID 27181. Learn about its native currency, KLAOS, and how to interact with the network. ---- - -# KLAOS Nova - -KLAOS Nova is a blockchain network with chain ID 27181. - -## Network Details - -- **Chain ID**: 27181 -- **Chain Name**: KLAOS Nova -- **Short Name**: klaosnova -- **Network ID**: 27181 -- **Currency**: - - **Name**: KLAOS - - **Symbol**: KLAOS - - **Decimals**: 18 - -## RPC URLs - -KLAOS Nova can be accessed through the following RPC endpoints: - -- https://rpc.klaosnova.laosfoundation.io -- wss://rpc.klaosnova.laosfoundation.io - -## KLAOS Nova Block Explorers - -- [blockscout](https://blockscout.klaosnova.laosfoundation.io) - -## Additional Information - -- **Official Website**: https://www.laosfoundation.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KLAOS Nova Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/klcohan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/klcohan-testnet.mdx deleted file mode 100644 index 4b2074bf4c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/klcohan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: klCohan Testnet - Avalanche Blockchain Network -description: Explore klCohan Testnet, a blockchain network with chain ID 44808. Learn about its native currency, klCohan Testnet Token, and how to interact with the network. ---- - -# klCohan Testnet - -klCohan Testnet is a blockchain network with chain ID 44808. - -## Network Details - -- **Chain ID**: 44808 -- **Chain Name**: Avalanche -- **Short Name**: klCohan Testnet -- **Network ID**: 44808 -- **Currency**: - - **Name**: klCohan Testnet Token - - **Symbol**: DBM - - **Decimals**: 18 - -## RPC URLs - -klCohan Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/d2b6bd35-89f7-4019-bc88-643c31221e5c - -## klCohan Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## klCohan Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/klyntar.mdx b/docs/pages/solutions/chainlist/non-integrated/klyntar.mdx deleted file mode 100644 index 56e202bcb6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/klyntar.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: KLYNTAR - KLY Blockchain Network -description: Explore KLYNTAR, a blockchain network with chain ID 7331. Learn about its native currency, KLYNTAR, and how to interact with the network. ---- - -# KLYNTAR - -KLYNTAR is a blockchain network with chain ID 7331. - -## Network Details - -- **Chain ID**: 7331 -- **Chain Name**: KLY -- **Short Name**: kly -- **Network ID**: 7331 -- **Currency**: - - **Name**: KLYNTAR - - **Symbol**: KLY - - **Decimals**: 18 - -## RPC URLs - -KLYNTAR can be accessed through the following RPC endpoints: - -- https://evm.klyntar.org/kly_evm_rpc -- https://evm.klyntarscan.org/kly_evm_rpc - -## KLYNTAR Block Explorers - - - -## Additional Information - -- **Official Website**: https://klyntar.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/konet.mdx b/docs/pages/solutions/chainlist/non-integrated/konet.mdx deleted file mode 100644 index 7298c51293..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/konet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: KONET Mainnet - KONET Blockchain Network -description: Explore KONET Mainnet, a blockchain network with chain ID 17217. Learn about its native currency, KONET, and how to interact with the network. ---- - -# KONET Mainnet - -KONET Mainnet is a blockchain network with chain ID 17217. - -## Network Details - -- **Chain ID**: 17217 -- **Chain Name**: KONET -- **Short Name**: KONET -- **Network ID**: 17217 -- **Currency**: - - **Name**: KONET - - **Symbol**: KONET - - **Decimals**: 18 - -## RPC URLs - -KONET Mainnet can be accessed through the following RPC endpoints: - -- https://api.kon-wallet.com - -## KONET Mainnet Block Explorers - -- [konet-explorer](https://explorer.kon-wallet.com) - -## Additional Information - -- **Official Website**: https://konetmain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kortho.mdx b/docs/pages/solutions/chainlist/non-integrated/kortho.mdx deleted file mode 100644 index cfccbc64dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kortho.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kortho Mainnet - Kortho Chain Blockchain Network -description: Explore Kortho Mainnet, a blockchain network with chain ID 2559. Learn about its native currency, KorthoChain, and how to interact with the network. ---- - -# Kortho Mainnet - -Kortho Mainnet is a blockchain network with chain ID 2559. - -## Network Details - -- **Chain ID**: 2559 -- **Chain Name**: Kortho Chain -- **Short Name**: ktoc -- **Network ID**: 2559 -- **Currency**: - - **Name**: KorthoChain - - **Symbol**: KTO - - **Decimals**: 11 - -## RPC URLs - -Kortho Mainnet can be accessed through the following RPC endpoints: - -- https://www.kortho-chain.com - -## Kortho Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.kortho.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/korthotest.mdx b/docs/pages/solutions/chainlist/non-integrated/korthotest.mdx deleted file mode 100644 index 5e45cd85f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/korthotest.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KorthoTest - Kortho Blockchain Network -description: Explore KorthoTest, a blockchain network with chain ID 8285. Learn about its native currency, Kortho Test, and how to interact with the network. ---- - -# KorthoTest - -KorthoTest is a blockchain network with chain ID 8285. - -## Network Details - -- **Chain ID**: 8285 -- **Chain Name**: Kortho -- **Short Name**: Kortho -- **Network ID**: 8285 -- **Currency**: - - **Name**: Kortho Test - - **Symbol**: KTO - - **Decimals**: 11 - -## RPC URLs - -KorthoTest can be accessed through the following RPC endpoints: - -- https://www.krotho-test.net - -## KorthoTest Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.kortho.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KorthoTest Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kotti-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kotti-testnet.mdx deleted file mode 100644 index 907f135a25..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kotti-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kotti Testnet - ETC Blockchain Network -description: Explore Kotti Testnet, a blockchain network with chain ID 6. Learn about its native currency, Kotti Ether, and how to interact with the network. ---- - -# Kotti Testnet - -Kotti Testnet is a blockchain network with chain ID 6. - -## Network Details - -- **Chain ID**: 6 -- **Chain Name**: ETC -- **Short Name**: kot -- **Network ID**: 6 -- **Currency**: - - **Name**: Kotti Ether - - **Symbol**: KOT - - **Decimals**: 18 - -## RPC URLs - -Kotti Testnet can be accessed through the following RPC endpoints: - - - -## Kotti Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethereumclassic.org/development/testnets - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kotti Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/krest-network.mdx b/docs/pages/solutions/chainlist/non-integrated/krest-network.mdx deleted file mode 100644 index a55ff51256..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/krest-network.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Krest Network - Krest Blockchain Network -description: Explore Krest Network, a blockchain network with chain ID 2241. Learn about its native currency, Krest, and how to interact with the network. ---- - -# Krest Network - -Krest Network is a blockchain network with chain ID 2241. - -## Network Details - -- **Chain ID**: 2241 -- **Chain Name**: Krest -- **Short Name**: KRST -- **Network ID**: 2241 -- **Currency**: - - **Name**: Krest - - **Symbol**: KRST - - **Decimals**: 18 - -## RPC URLs - -Krest Network can be accessed through the following RPC endpoints: - -- https://erpc-krest.peaq.network -- https://krest.unitedbloc.com - -## Krest Network Block Explorers - -- [Polkadot.js](https://polkadot.js.org/apps/?rpc=wss://wss-krest.peaq.network#/explorer) -- [Subscan](https://krest.subscan.io) - -## Additional Information - -- **Official Website**: https://www.peaq.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kroma-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/kroma-sepolia.mdx deleted file mode 100644 index 66cc328389..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kroma-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kroma Sepolia - ETH Blockchain Network -description: Explore Kroma Sepolia, a blockchain network with chain ID 2358. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Kroma Sepolia - -Kroma Sepolia is a blockchain network with chain ID 2358. - -## Network Details - -- **Chain ID**: 2358 -- **Chain Name**: ETH -- **Short Name**: kroma-sepolia -- **Network ID**: 2358 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kroma Sepolia can be accessed through the following RPC endpoints: - -- https://api.sepolia.kroma.network - -## Kroma Sepolia Block Explorers - -- [blockscout](https://blockscout.sepolia.kroma.network) - -## Additional Information - -- **Official Website**: https://kroma.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kroma Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kroma.mdx b/docs/pages/solutions/chainlist/non-integrated/kroma.mdx deleted file mode 100644 index 1985adb3d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kroma.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Kroma - ETH Blockchain Network -description: Explore Kroma, a blockchain network with chain ID 255. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Kroma - -Kroma is a blockchain network with chain ID 255. - -## Network Details - -- **Chain ID**: 255 -- **Chain Name**: ETH -- **Short Name**: kroma -- **Network ID**: 255 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Kroma can be accessed through the following RPC endpoints: - -- https://api.kroma.network -- https://rpc-kroma.rockx.com - -## Kroma Block Explorers - -- [blockscout](https://blockscout.kroma.network) - -## Additional Information - -- **Official Website**: https://kroma.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kronobit.mdx b/docs/pages/solutions/chainlist/non-integrated/kronobit.mdx deleted file mode 100644 index 458c30abcc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kronobit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kronobit Mainnet - KNB Blockchain Network -description: Explore Kronobit Mainnet, a blockchain network with chain ID 13600. Learn about its native currency, Kronobit, and how to interact with the network. ---- - -# Kronobit Mainnet - -Kronobit Mainnet is a blockchain network with chain ID 13600. - -## Network Details - -- **Chain ID**: 13600 -- **Chain Name**: KNB -- **Short Name**: KNB -- **Network ID**: 13600 -- **Currency**: - - **Name**: Kronobit - - **Symbol**: KNB - - **Decimals**: 18 - -## RPC URLs - -Kronobit Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.qbitscan.com - -## Kronobit Mainnet Block Explorers - -- [qbitscan](https://explorer.qbitscan.com) - -## Additional Information - -- **Official Website**: https://kronobit.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kymtc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kymtc-testnet.mdx deleted file mode 100644 index e222294a17..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kymtc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: KYMTC Testnet - KYMTC Blockchain Network -description: Explore KYMTC Testnet, a blockchain network with chain ID 24076. Learn about its native currency, KYMTC, and how to interact with the network. ---- - -# KYMTC Testnet - -KYMTC Testnet is a blockchain network with chain ID 24076. - -## Network Details - -- **Chain ID**: 24076 -- **Chain Name**: KYMTC -- **Short Name**: tKYMTC -- **Network ID**: 24076 -- **Currency**: - - **Name**: KYMTC - - **Symbol**: KYMTC - - **Decimals**: 18 - -## RPC URLs - -KYMTC Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.kymaticscan.online - -## KYMTC Testnet Block Explorers - -- [KYMTC Testnet Explorer](https://testnet-explorer.kymaticscan.online) - -## Additional Information - -- **Official Website**: https://testnet-explorer.kymaticscan.online - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## KYMTC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kymtc.mdx b/docs/pages/solutions/chainlist/non-integrated/kymtc.mdx deleted file mode 100644 index 1f58694c26..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kymtc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: KYMTC Mainnet - KYMTC Blockchain Network -description: Explore KYMTC Mainnet, a blockchain network with chain ID 15430. Learn about its native currency, KYMTC, and how to interact with the network. ---- - -# KYMTC Mainnet - -KYMTC Mainnet is a blockchain network with chain ID 15430. - -## Network Details - -- **Chain ID**: 15430 -- **Chain Name**: KYMTC -- **Short Name**: KYMTC -- **Network ID**: 15430 -- **Currency**: - - **Name**: KYMTC - - **Symbol**: KYMTC - - **Decimals**: 18 - -## RPC URLs - -KYMTC Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.kymaticscan.online - -## KYMTC Mainnet Block Explorers - -- [KYMTC Mainnet Explorer](https://kymaticscan.online) - -## Additional Information - -- **Official Website**: https://kymaticscan.online - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/kyoto-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/kyoto-testnet.mdx deleted file mode 100644 index 4624becd6f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kyoto-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Kyoto Testnet - KYOTO Blockchain Network -description: Explore Kyoto Testnet, a blockchain network with chain ID 1998. Learn about its native currency, Kyoto, and how to interact with the network. ---- - -# Kyoto Testnet - -Kyoto Testnet is a blockchain network with chain ID 1998. - -## Network Details - -- **Chain ID**: 1998 -- **Chain Name**: KYOTO -- **Short Name**: kyoto-testnet -- **Network ID**: 1998 -- **Currency**: - - **Name**: Kyoto - - **Symbol**: KYOTO - - **Decimals**: 18 - -## RPC URLs - -Kyoto Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.kyotoprotocol.io:8545 - -## Kyoto Testnet Block Explorers - -- [Kyotoscan](https://testnet.kyotoscan.io) - -## Additional Information - -- **Official Website**: https://kyotoprotocol.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Kyoto Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/kyoto.mdx b/docs/pages/solutions/chainlist/non-integrated/kyoto.mdx deleted file mode 100644 index 3bed1362ab..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/kyoto.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Kyoto - KYOTO Blockchain Network -description: Explore Kyoto, a blockchain network with chain ID 1997. Learn about its native currency, Kyoto, and how to interact with the network. ---- - -# Kyoto - -Kyoto is a blockchain network with chain ID 1997. - -## Network Details - -- **Chain ID**: 1997 -- **Chain Name**: KYOTO -- **Short Name**: kyoto -- **Network ID**: 1997 -- **Currency**: - - **Name**: Kyoto - - **Symbol**: KYOTO - - **Decimals**: 18 - -## RPC URLs - -Kyoto can be accessed through the following RPC endpoints: - -- https://rpc.kyotochain.io - -## Kyoto Block Explorers - -- [Kyotoscan](https://kyotoscan.io) - -## Additional Information - -- **Official Website**: https://kyotoprotocol.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/l3x-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/l3x-protocol-testnet.mdx deleted file mode 100644 index 7197c7cc8d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/l3x-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: L3X Protocol Testnet - L3X Blockchain Network -description: Explore L3X Protocol Testnet, a blockchain network with chain ID 12325. Learn about its native currency, Ether, and how to interact with the network. ---- - -# L3X Protocol Testnet - -L3X Protocol Testnet is a blockchain network with chain ID 12325. - -## Network Details - -- **Chain ID**: 12325 -- **Chain Name**: L3X -- **Short Name**: l3x-testnet -- **Network ID**: 12325 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -L3X Protocol Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.l3x.com - -## L3X Protocol Testnet Block Explorers - -- [L3X Testnet Explorer](https://explorer-testnet.l3x.com) - -## Additional Information - -- **Official Website**: https://l3x.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## L3X Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/l3x-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/l3x-protocol.mdx deleted file mode 100644 index 5a83ea1275..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/l3x-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: L3X Protocol - L3X Blockchain Network -description: Explore L3X Protocol, a blockchain network with chain ID 12324. Learn about its native currency, Ether, and how to interact with the network. ---- - -# L3X Protocol - -L3X Protocol is a blockchain network with chain ID 12324. - -## Network Details - -- **Chain ID**: 12324 -- **Chain Name**: L3X -- **Short Name**: l3x -- **Network ID**: 12324 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -L3X Protocol can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.l3x.com - -## L3X Protocol Block Explorers - -- [L3X Mainnet Explorer](https://explorer.l3x.com) - -## Additional Information - -- **Official Website**: https://l3x.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lachain-274.mdx b/docs/pages/solutions/chainlist/non-integrated/lachain-274.mdx deleted file mode 100644 index 704eb68ab4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lachain-274.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: LaChain - LaChain Blockchain Network -description: Explore LaChain, a blockchain network with chain ID 274. Learn about its native currency, LaCoin, and how to interact with the network. ---- - -# LaChain - -LaChain is a blockchain network with chain ID 274. - -## Network Details - -- **Chain ID**: 274 -- **Chain Name**: LaChain -- **Short Name**: lachain -- **Network ID**: 274 -- **Currency**: - - **Name**: LaCoin - - **Symbol**: LAC - - **Decimals**: 18 - -## RPC URLs - -LaChain can be accessed through the following RPC endpoints: - -- https://rpc1.mainnet.lachain.network -- https://rpc2.mainnet.lachain.network -- https://lachain.rpc-nodes.cedalio.dev - -## LaChain Block Explorers - -- [LaChain Explorer](https://explorer.lachain.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lachain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lachain-testnet.mdx deleted file mode 100644 index bbdae8895e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lachain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LACHAIN Testnet - TLA Blockchain Network -description: Explore LACHAIN Testnet, a blockchain network with chain ID 226. Learn about its native currency, TLA, and how to interact with the network. ---- - -# LACHAIN Testnet - -LACHAIN Testnet is a blockchain network with chain ID 226. - -## Network Details - -- **Chain ID**: 226 -- **Chain Name**: TLA -- **Short Name**: TLA -- **Network ID**: 226 -- **Currency**: - - **Name**: TLA - - **Symbol**: TLA - - **Decimals**: 18 - -## RPC URLs - -LACHAIN Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.lachain.io - -## LACHAIN Testnet Block Explorers - -- [blockscout](https://scan-test.lachain.io) - -## Additional Information - -- **Official Website**: https://lachain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LACHAIN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lachain.mdx b/docs/pages/solutions/chainlist/non-integrated/lachain.mdx deleted file mode 100644 index 5da284e115..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LACHAIN Mainnet - LA Blockchain Network -description: Explore LACHAIN Mainnet, a blockchain network with chain ID 225. Learn about its native currency, LA, and how to interact with the network. ---- - -# LACHAIN Mainnet - -LACHAIN Mainnet is a blockchain network with chain ID 225. - -## Network Details - -- **Chain ID**: 225 -- **Chain Name**: LA -- **Short Name**: LA -- **Network ID**: 225 -- **Currency**: - - **Name**: LA - - **Symbol**: LA - - **Decimals**: 18 - -## RPC URLs - -LACHAIN Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.lachain.io - -## LACHAIN Mainnet Block Explorers - -- [blockscout](https://scan.lachain.io) - -## Additional Information - -- **Official Website**: https://lachain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lambda-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lambda-chain-testnet.mdx deleted file mode 100644 index b28b7ed0e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lambda-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lambda Chain Testnet - Lambda Chain Blockchain Network -description: Explore Lambda Chain Testnet, a blockchain network with chain ID 17000920. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Lambda Chain Testnet - -Lambda Chain Testnet is a blockchain network with chain ID 17000920. - -## Network Details - -- **Chain ID**: 17000920 -- **Chain Name**: Lambda Chain -- **Short Name**: tlambda -- **Network ID**: 17000920 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lambda Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnrpc.lambda.im/ - -## Lambda Chain Testnet Block Explorers - -- [Lambda Chain Testnet Explorer](https://testscan.lambda.im) - -## Additional Information - -- **Official Website**: https://lambda.im - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lambda Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lambda-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/lambda-chain.mdx deleted file mode 100644 index 45d9858af5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lambda-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lambda Chain Mainnet - Lambda Chain Blockchain Network -description: Explore Lambda Chain Mainnet, a blockchain network with chain ID 56026. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Lambda Chain Mainnet - -Lambda Chain Mainnet is a blockchain network with chain ID 56026. - -## Network Details - -- **Chain ID**: 56026 -- **Chain Name**: Lambda Chain -- **Short Name**: lambda -- **Network ID**: 56026 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lambda Chain Mainnet can be accessed through the following RPC endpoints: - -- https://nrpc.lambda.im/ - -## Lambda Chain Mainnet Block Explorers - -- [Lambda Chain Mainnet Explorer](https://scan.lambda.im) - -## Additional Information - -- **Official Website**: https://lambda.im - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lambda-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lambda-testnet.mdx deleted file mode 100644 index ecc667adc1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lambda-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lambda Testnet - Lambda Blockchain Network -description: Explore Lambda Testnet, a blockchain network with chain ID 92001. Learn about its native currency, test-Lamb, and how to interact with the network. ---- - -# Lambda Testnet - -Lambda Testnet is a blockchain network with chain ID 92001. - -## Network Details - -- **Chain ID**: 92001 -- **Chain Name**: Lambda -- **Short Name**: lambda-testnet -- **Network ID**: 92001 -- **Currency**: - - **Name**: test-Lamb - - **Symbol**: LAMB - - **Decimals**: 18 - -## RPC URLs - -Lambda Testnet can be accessed through the following RPC endpoints: - -- https://evm.lambda.top/ - -## Lambda Testnet Block Explorers - -- [Lambda EVM Explorer](https://explorer.lambda.top) - -## Additional Information - -- **Official Website**: https://lambda.im - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lambda Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lamina1-identity-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lamina1-identity-testnet.mdx deleted file mode 100644 index 4457c967a9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lamina1-identity-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lamina1 Identity Testnet - Lamina1 Identity Testnet Blockchain Network -description: Explore Lamina1 Identity Testnet, a blockchain network with chain ID 767368. Learn about its native currency, L1ID Test, and how to interact with the network. ---- - -# Lamina1 Identity Testnet - -Lamina1 Identity Testnet is a blockchain network with chain ID 767368. - -## Network Details - -- **Chain ID**: 767368 -- **Chain Name**: Lamina1 Identity Testnet -- **Short Name**: lamina1idtest -- **Network ID**: 767368 -- **Currency**: - - **Name**: L1ID Test - - **Symbol**: L1IDT - - **Decimals**: 18 - -## RPC URLs - -Lamina1 Identity Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lamina1id/testnet/rpc - -## Lamina1 Identity Testnet Block Explorers - -- [Lamina1 Identity Testnet Explorer](https://subnets-test.avax.network/lamina1id) - -## Additional Information - -- **Official Website**: https://fuji.lamina1.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lamina1 Identity Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lamina1-identity.mdx b/docs/pages/solutions/chainlist/non-integrated/lamina1-identity.mdx deleted file mode 100644 index 3d416182d4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lamina1-identity.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lamina1 Identity - Lamina1 Identity Blockchain Network -description: Explore Lamina1 Identity, a blockchain network with chain ID 10850. Learn about its native currency, L1 ID, and how to interact with the network. ---- - -# Lamina1 Identity - -Lamina1 Identity is a blockchain network with chain ID 10850. - -## Network Details - -- **Chain ID**: 10850 -- **Chain Name**: Lamina1 Identity -- **Short Name**: lamina1id -- **Network ID**: 10850 -- **Currency**: - - **Name**: L1 ID - - **Symbol**: L1ID - - **Decimals**: 18 - -## RPC URLs - -Lamina1 Identity can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lamina1id/mainnet/rpc - -## Lamina1 Identity Block Explorers - -- [Lamina1 Identity Explorer](https://subnets.avax.network/lamina1id) - -## Additional Information - -- **Official Website**: https://www.lamina1.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lamina1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lamina1-testnet.mdx deleted file mode 100644 index 8cfd4e7094..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lamina1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lamina1 Testnet - Lamina1 Testnet Blockchain Network -description: Explore Lamina1 Testnet, a blockchain network with chain ID 764984. Learn about its native currency, Lamina1 Test, and how to interact with the network. ---- - -# Lamina1 Testnet - -Lamina1 Testnet is a blockchain network with chain ID 764984. - -## Network Details - -- **Chain ID**: 764984 -- **Chain Name**: Lamina1 Testnet -- **Short Name**: lamina1test -- **Network ID**: 764984 -- **Currency**: - - **Name**: Lamina1 Test - - **Symbol**: L1T - - **Decimals**: 18 - -## RPC URLs - -Lamina1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lamina1tes/testnet/rpc - -## Lamina1 Testnet Block Explorers - -- [Lamina1 Test Explorer](https://subnets-test.avax.network/lamina1tes) - -## Additional Information - -- **Official Website**: https://fuji.lamina1.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lamina1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lamina1.mdx b/docs/pages/solutions/chainlist/non-integrated/lamina1.mdx deleted file mode 100644 index a49188ab08..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lamina1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lamina1 - Lamina1 Blockchain Network -description: Explore Lamina1, a blockchain network with chain ID 10849. Learn about its native currency, L1, and how to interact with the network. ---- - -# Lamina1 - -Lamina1 is a blockchain network with chain ID 10849. - -## Network Details - -- **Chain ID**: 10849 -- **Chain Name**: Lamina1 -- **Short Name**: lamina1 -- **Network ID**: 10849 -- **Currency**: - - **Name**: L1 - - **Symbol**: L1 - - **Decimals**: 18 - -## RPC URLs - -Lamina1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lamina1/mainnet/rpc - -## Lamina1 Block Explorers - -- [Lamina1 Explorer](https://subnets.avax.network/lamina1) - -## Additional Information - -- **Official Website**: https://www.lamina1.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/laos-arrakis.mdx b/docs/pages/solutions/chainlist/non-integrated/laos-arrakis.mdx deleted file mode 100644 index 90b852d03b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/laos-arrakis.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: LAOS Arrakis - LAOS Blockchain Network -description: Explore LAOS Arrakis, a blockchain network with chain ID 667. Learn about its native currency, LAOS, and how to interact with the network. ---- - -# LAOS Arrakis - -LAOS Arrakis is a blockchain network with chain ID 667. - -## Network Details - -- **Chain ID**: 667 -- **Chain Name**: LAOS -- **Short Name**: laos -- **Network ID**: 667 -- **Currency**: - - **Name**: LAOS - - **Symbol**: LAOS - - **Decimals**: 18 - -## RPC URLs - -LAOS Arrakis can be accessed through the following RPC endpoints: - -- https://arrakis.gorengine.com/own -- wss://arrakis.gorengine.com/own - -## LAOS Arrakis Block Explorers - -- [blockscout](https://arrakis.gorengine.com) - -## Additional Information - -- **Official Website**: https://www.laosfoundation.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LAOS Arrakis Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/laos-sigma-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/laos-sigma-testnet.mdx deleted file mode 100644 index af2cf6297d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/laos-sigma-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: LAOS Sigma Testnet - LAOS Sigma Testnet Blockchain Network -description: Explore LAOS Sigma Testnet, a blockchain network with chain ID 62850. Learn about its native currency, SIGMA, and how to interact with the network. ---- - -# LAOS Sigma Testnet - -LAOS Sigma Testnet is a blockchain network with chain ID 62850. - -## Network Details - -- **Chain ID**: 62850 -- **Chain Name**: LAOS Sigma Testnet -- **Short Name**: laossigma -- **Network ID**: 62850 -- **Currency**: - - **Name**: SIGMA - - **Symbol**: SIGMA - - **Decimals**: 18 - -## RPC URLs - -LAOS Sigma Testnet can be accessed through the following RPC endpoints: - -- https://rpc.laossigma.laosfoundation.io -- wss://rpc.laossigma.laosfoundation.io - -## LAOS Sigma Testnet Block Explorers - -- [blockscout](https://sigma.explorer.laosnetwork.io) - -## Additional Information - -- **Official Website**: https://laosnetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LAOS Sigma Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/laos.mdx b/docs/pages/solutions/chainlist/non-integrated/laos.mdx deleted file mode 100644 index 949d12a2fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/laos.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: LAOS - LAOS Blockchain Network -description: Explore LAOS, a blockchain network with chain ID 6283. Learn about its native currency, LAOS, and how to interact with the network. ---- - -# LAOS - -LAOS is a blockchain network with chain ID 6283. - -## Network Details - -- **Chain ID**: 6283 -- **Chain Name**: LAOS -- **Short Name**: laosnetwork -- **Network ID**: 6283 -- **Currency**: - - **Name**: LAOS - - **Symbol**: LAOS - - **Decimals**: 18 - -## RPC URLs - -LAOS can be accessed through the following RPC endpoints: - -- https://rpc.laos.laosfoundation.io -- wss://rpc.laos.laosfoundation.io - -## LAOS Block Explorers - -- [blockscout](https://blockscout.laos.laosfoundation.io) - -## Additional Information - -- **Official Website**: https://laosnetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/larissa-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/larissa-chain.mdx deleted file mode 100644 index 88de9fe9af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/larissa-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Larissa Chain - Larissa Blockchain Network -description: Explore Larissa Chain, a blockchain network with chain ID 9898. Learn about its native currency, Larissa, and how to interact with the network. ---- - -# Larissa Chain - -Larissa Chain is a blockchain network with chain ID 9898. - -## Network Details - -- **Chain ID**: 9898 -- **Chain Name**: Larissa -- **Short Name**: lrs -- **Network ID**: 9898 -- **Currency**: - - **Name**: Larissa - - **Symbol**: LRS - - **Decimals**: 18 - -## RPC URLs - -Larissa Chain can be accessed through the following RPC endpoints: - -- https://rpc.larissa.network - -## Larissa Chain Block Explorers - -- [Larissa Scan](https://scan.larissa.network) - -## Additional Information - -- **Official Website**: https://larissa.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/latam-blockchain-resil-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/latam-blockchain-resil-testnet.mdx deleted file mode 100644 index 10e970eec8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/latam-blockchain-resil-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Latam-Blockchain Resil Testnet - Resil Blockchain Network -description: Explore Latam-Blockchain Resil Testnet, a blockchain network with chain ID 172. Learn about its native currency, Latam-Blockchain Resil Test Native Token, and how to interact with the network. ---- - -# Latam-Blockchain Resil Testnet - -Latam-Blockchain Resil Testnet is a blockchain network with chain ID 172. - -## Network Details - -- **Chain ID**: 172 -- **Chain Name**: Resil -- **Short Name**: resil -- **Network ID**: 172 -- **Currency**: - - **Name**: Latam-Blockchain Resil Test Native Token - - **Symbol**: usd - - **Decimals**: 18 - -## RPC URLs - -Latam-Blockchain Resil Testnet can be accessed through the following RPC endpoints: - -- https://rpc.latam-blockchain.com -- wss://ws.latam-blockchain.com - -## Latam-Blockchain Resil Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://latam-blockchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Latam-Blockchain Resil Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/latest-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/latest-chain-testnet.mdx deleted file mode 100644 index 9ef8420d7c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/latest-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Latest Chain Testnet - LATEST Blockchain Network -description: Explore Latest Chain Testnet, a blockchain network with chain ID 6660. Learn about its native currency, Latest, and how to interact with the network. ---- - -# Latest Chain Testnet - -Latest Chain Testnet is a blockchain network with chain ID 6660. - -## Network Details - -- **Chain ID**: 6660 -- **Chain Name**: LATEST -- **Short Name**: LATESTt -- **Network ID**: 6660 -- **Currency**: - - **Name**: Latest - - **Symbol**: LATEST - - **Decimals**: 18 - -## RPC URLs - -Latest Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.latestcoin.io - -## Latest Chain Testnet Block Explorers - -- [Latest Chain](http://testnet.latestchain.io) - -## Additional Information - -- **Official Website**: https://latestcoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Latest Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/latestnet.mdx b/docs/pages/solutions/chainlist/non-integrated/latestnet.mdx deleted file mode 100644 index 13d750fae2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/latestnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: LaTestnet - LaTestnet Blockchain Network -description: Explore LaTestnet, a blockchain network with chain ID 418. Learn about its native currency, Test LaCoin, and how to interact with the network. ---- - -# LaTestnet - -LaTestnet is a blockchain network with chain ID 418. - -## Network Details - -- **Chain ID**: 418 -- **Chain Name**: LaTestnet -- **Short Name**: latestnet -- **Network ID**: 418 -- **Currency**: - - **Name**: Test LaCoin - - **Symbol**: TLA - - **Decimals**: 18 - -## RPC URLs - -LaTestnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.lachain.network -- https://lachain-testnet.rpc-nodes.cedalio.dev - -## LaTestnet Block Explorers - -- [LaTestnet Explorer](https://testexplorer.lachain.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LaTestnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lavita.mdx b/docs/pages/solutions/chainlist/non-integrated/lavita.mdx deleted file mode 100644 index f4d38184ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lavita.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LAVITA Mainnet - LAVITA Blockchain Network -description: Explore LAVITA Mainnet, a blockchain network with chain ID 360890. Learn about its native currency, vTFUEL, and how to interact with the network. ---- - -# LAVITA Mainnet - -LAVITA Mainnet is a blockchain network with chain ID 360890. - -## Network Details - -- **Chain ID**: 360890 -- **Chain Name**: LAVITA -- **Short Name**: lavita-mainnet -- **Network ID**: 360890 -- **Currency**: - - **Name**: vTFUEL - - **Symbol**: vTFUEL - - **Decimals**: 18 - -## RPC URLs - -LAVITA Mainnet can be accessed through the following RPC endpoints: - -- https://tsub360890-eth-rpc.thetatoken.org/rpc - -## LAVITA Mainnet Block Explorers - -- [LAVITA Mainnet Explorer](https://tsub360890-explorer.thetatoken.org) - -## Additional Information - -- **Official Website**: https://www.lavita.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/layeredge-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/layeredge-testnet.mdx deleted file mode 100644 index ab1c7f7089..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/layeredge-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LayerEdge testnet - LayerEdge Blockchain Network -description: Explore LayerEdge testnet, a blockchain network with chain ID 3456. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# LayerEdge testnet - -LayerEdge testnet is a blockchain network with chain ID 3456. - -## Network Details - -- **Chain ID**: 3456 -- **Chain Name**: LayerEdge -- **Short Name**: LayerEdge-testnet -- **Network ID**: 3456 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -LayerEdge testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.layeredge.io - -## LayerEdge testnet Block Explorers - -- [LayerEdge Testnet Explorer](https://testnet-explorer.layeredge.io) - -## Additional Information - -- **Official Website**: https://www.layeredge.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LayerEdge testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lazy-crimson-coral.mdx b/docs/pages/solutions/chainlist/non-integrated/lazy-crimson-coral.mdx deleted file mode 100644 index 34793703a9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lazy-crimson-coral.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: lazy-crimson-coral - ETH Blockchain Network -description: Explore lazy-crimson-coral, a blockchain network with chain ID 17186. Learn about its native currency, Ether, and how to interact with the network. ---- - -# lazy-crimson-coral - -lazy-crimson-coral is a blockchain network with chain ID 17186. - -## Network Details - -- **Chain ID**: 17186 -- **Chain Name**: ETH -- **Short Name**: lazy-crimson-coral -- **Network ID**: 17186 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -lazy-crimson-coral can be accessed through the following RPC endpoints: - -- https://l2-lazy-crimson-coral-cotlv0ftqf.t.conduit.xyz - -## lazy-crimson-coral Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## lazy-crimson-coral Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lbry.mdx b/docs/pages/solutions/chainlist/non-integrated/lbry.mdx deleted file mode 100644 index 41f364196a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lbry.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LBRY Mainnet - LBRY Blockchain Network -description: Explore LBRY Mainnet, a blockchain network with chain ID 19600. Learn about its native currency, LBRY Credits, and how to interact with the network. ---- - -# LBRY Mainnet - -LBRY Mainnet is a blockchain network with chain ID 19600. - -## Network Details - -- **Chain ID**: 19600 -- **Chain Name**: LBRY -- **Short Name**: LBRY -- **Network ID**: 19600 -- **Currency**: - - **Name**: LBRY Credits - - **Symbol**: LBC - - **Decimals**: 8 - -## RPC URLs - -LBRY Mainnet can be accessed through the following RPC endpoints: - -- https://lbry.nl/rpc - -## LBRY Mainnet Block Explorers - -- [LBRY Block Explorer](https://explorer.lbry.com) - -## Additional Information - -- **Official Website**: https://lbry.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/level-coral-jackal.mdx b/docs/pages/solutions/chainlist/non-integrated/level-coral-jackal.mdx deleted file mode 100644 index 54e55eb227..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/level-coral-jackal.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: level-coral-jackal - level-coral-jackal Blockchain Network -description: Explore level-coral-jackal, a blockchain network with chain ID 93279. Learn about its native currency, Ether, and how to interact with the network. ---- - -# level-coral-jackal - -level-coral-jackal is a blockchain network with chain ID 93279. - -## Network Details - -- **Chain ID**: 93279 -- **Chain Name**: level-coral-jackal -- **Short Name**: level-coral-jackal -- **Network ID**: 93279 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -level-coral-jackal can be accessed through the following RPC endpoints: - -- https://rpc-level-coral-jackal-b00pjnfd90.t.conduit.xyz - -## level-coral-jackal Block Explorers - -- [level-coral-jackal Explorer](https://explorer-level-coral-jackal-b00pjnfd90.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/93279 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## level-coral-jackal Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/liberal-harlequin-mouse.mdx b/docs/pages/solutions/chainlist/non-integrated/liberal-harlequin-mouse.mdx deleted file mode 100644 index 0bd30569f6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/liberal-harlequin-mouse.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: liberal-harlequin-mouse - Avalanche Blockchain Network -description: Explore liberal-harlequin-mouse, a blockchain network with chain ID 49023. Learn about its native currency, liberal-harlequin-mouse Token, and how to interact with the network. ---- - -# liberal-harlequin-mouse - -liberal-harlequin-mouse is a blockchain network with chain ID 49023. - -## Network Details - -- **Chain ID**: 49023 -- **Chain Name**: Avalanche -- **Short Name**: liberal-harlequin-mouse -- **Network ID**: 49023 -- **Currency**: - - **Name**: liberal-harlequin-mouse Token - - **Symbol**: MJI - - **Decimals**: 18 - -## RPC URLs - -liberal-harlequin-mouse can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## liberal-harlequin-mouse Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## liberal-harlequin-mouse Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lif3-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lif3-chain-testnet.mdx deleted file mode 100644 index 235e551b5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lif3-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lif3 Chain Testnet - lif3chain Blockchain Network -description: Explore Lif3 Chain Testnet, a blockchain network with chain ID 1811. Learn about its native currency, LIF3, and how to interact with the network. ---- - -# Lif3 Chain Testnet - -Lif3 Chain Testnet is a blockchain network with chain ID 1811. - -## Network Details - -- **Chain ID**: 1811 -- **Chain Name**: lif3chain -- **Short Name**: lif3-testnet -- **Network ID**: 1811 -- **Currency**: - - **Name**: LIF3 - - **Symbol**: LIF3 - - **Decimals**: 18 - -## RPC URLs - -Lif3 Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-evm.lif3.com - -## Lif3 Chain Testnet Block Explorers - -- [lif3scout](https://testnet.lif3scout.com) - -## Additional Information - -- **Official Website**: https://docs.lif3.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lif3 Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lif3-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/lif3-chain.mdx deleted file mode 100644 index 318fd014f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lif3-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lif3 Chain - lif3chain Blockchain Network -description: Explore Lif3 Chain, a blockchain network with chain ID 8869. Learn about its native currency, LIF3, and how to interact with the network. ---- - -# Lif3 Chain - -Lif3 Chain is a blockchain network with chain ID 8869. - -## Network Details - -- **Chain ID**: 8869 -- **Chain Name**: lif3chain -- **Short Name**: lif3-mainnet -- **Network ID**: 8869 -- **Currency**: - - **Name**: LIF3 - - **Symbol**: LIF3 - - **Decimals**: 18 - -## RPC URLs - -Lif3 Chain can be accessed through the following RPC endpoints: - -- https://rpc.lif3.com - -## Lif3 Chain Block Explorers - -- [lif3scout](https://lif3scout.com) - -## Additional Information - -- **Official Website**: https://docs.lif3.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lightlink-pegasus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lightlink-pegasus-testnet.mdx deleted file mode 100644 index 93dffdc367..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lightlink-pegasus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lightlink Pegasus Testnet - Lightlink Pegasus Testnet Blockchain Network -description: Explore Lightlink Pegasus Testnet, a blockchain network with chain ID 1891. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# Lightlink Pegasus Testnet - -Lightlink Pegasus Testnet is a blockchain network with chain ID 1891. - -## Network Details - -- **Chain ID**: 1891 -- **Chain Name**: Lightlink Pegasus Testnet -- **Short Name**: lightlink_pegasus -- **Network ID**: 1891 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lightlink Pegasus Testnet can be accessed through the following RPC endpoints: - -- https://replicator.pegasus.lightlink.io/rpc/v1 - -## Lightlink Pegasus Testnet Block Explorers - -- [pegasus](https://pegasus.lightlink.io) - -## Additional Information - -- **Official Website**: https://lightlink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lightlink Pegasus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lightlink-phoenix.mdx b/docs/pages/solutions/chainlist/non-integrated/lightlink-phoenix.mdx deleted file mode 100644 index d9494c761c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lightlink-phoenix.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lightlink Phoenix Mainnet - Lightlink Phoenix Mainnet Blockchain Network -description: Explore Lightlink Phoenix Mainnet, a blockchain network with chain ID 1890. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# Lightlink Phoenix Mainnet - -Lightlink Phoenix Mainnet is a blockchain network with chain ID 1890. - -## Network Details - -- **Chain ID**: 1890 -- **Chain Name**: Lightlink Phoenix Mainnet -- **Short Name**: lightlink_phoenix -- **Network ID**: 1890 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lightlink Phoenix Mainnet can be accessed through the following RPC endpoints: - -- https://replicator.phoenix.lightlink.io/rpc/v1 - -## Lightlink Phoenix Mainnet Block Explorers - -- [phoenix](https://phoenix.lightlink.io) - -## Additional Information - -- **Official Website**: https://lightlink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lightstreams-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lightstreams-testnet.mdx deleted file mode 100644 index 129fc29290..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lightstreams-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lightstreams Testnet - PHT Blockchain Network -description: Explore Lightstreams Testnet, a blockchain network with chain ID 162. Learn about its native currency, Lightstreams PHT, and how to interact with the network. ---- - -# Lightstreams Testnet - -Lightstreams Testnet is a blockchain network with chain ID 162. - -## Network Details - -- **Chain ID**: 162 -- **Chain Name**: PHT -- **Short Name**: tpht -- **Network ID**: 162 -- **Currency**: - - **Name**: Lightstreams PHT - - **Symbol**: PHT - - **Decimals**: 18 - -## RPC URLs - -Lightstreams Testnet can be accessed through the following RPC endpoints: - -- https://node.sirius.lightstreams.io - -## Lightstreams Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://explorer.sirius.lightstreams.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lightstreams Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lightstreams.mdx b/docs/pages/solutions/chainlist/non-integrated/lightstreams.mdx deleted file mode 100644 index 01c4935ff3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lightstreams.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lightstreams Mainnet - PHT Blockchain Network -description: Explore Lightstreams Mainnet, a blockchain network with chain ID 163. Learn about its native currency, Lightstreams PHT, and how to interact with the network. ---- - -# Lightstreams Mainnet - -Lightstreams Mainnet is a blockchain network with chain ID 163. - -## Network Details - -- **Chain ID**: 163 -- **Chain Name**: PHT -- **Short Name**: pht -- **Network ID**: 163 -- **Currency**: - - **Name**: Lightstreams PHT - - **Symbol**: PHT - - **Decimals**: 18 - -## RPC URLs - -Lightstreams Mainnet can be accessed through the following RPC endpoints: - -- https://node.mainnet.lightstreams.io - -## Lightstreams Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://explorer.lightstreams.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/linea-goerli.mdx b/docs/pages/solutions/chainlist/non-integrated/linea-goerli.mdx deleted file mode 100644 index 7706de09b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/linea-goerli.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Linea Goerli - ETH Blockchain Network -description: Explore Linea Goerli, a blockchain network with chain ID 59140. Learn about its native currency, Linea Ether, and how to interact with the network. ---- - -# Linea Goerli - -Linea Goerli is a blockchain network with chain ID 59140. - -## Network Details - -- **Chain ID**: 59140 -- **Chain Name**: ETH -- **Short Name**: linea-goerli -- **Network ID**: 59140 -- **Currency**: - - **Name**: Linea Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Linea Goerli can be accessed through the following RPC endpoints: - -- https://rpc.goerli.linea.build -- wss://rpc.goerli.linea.build - -## Linea Goerli Block Explorers - -- [Etherscan](https://goerli.lineascan.build) -- [Blockscout](https://explorer.goerli.linea.build) - -## Additional Information - -- **Official Website**: https://linea.build - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Linea Goerli Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/linea-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/linea-sepolia.mdx deleted file mode 100644 index fff8752e88..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/linea-sepolia.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Linea Sepolia - ETH Blockchain Network -description: Explore Linea Sepolia, a blockchain network with chain ID 59141. Learn about its native currency, Linea Ether, and how to interact with the network. ---- - -# Linea Sepolia - -Linea Sepolia is a blockchain network with chain ID 59141. - -## Network Details - -- **Chain ID**: 59141 -- **Chain Name**: ETH -- **Short Name**: linea-sepolia -- **Network ID**: 59141 -- **Currency**: - - **Name**: Linea Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Linea Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.sepolia.linea.build -- wss://rpc.sepolia.linea.build - -## Linea Sepolia Block Explorers - -- [Etherscan](https://sepolia.lineascan.build) -- [Blockscout](https://explorer.sepolia.linea.build) - -## Additional Information - -- **Official Website**: https://linea.build - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Linea Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/linea.mdx b/docs/pages/solutions/chainlist/non-integrated/linea.mdx deleted file mode 100644 index fea6b3de06..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/linea.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Linea - ETH Blockchain Network -description: Explore Linea, a blockchain network with chain ID 59144. Learn about its native currency, Linea Ether, and how to interact with the network. ---- - -# Linea - -Linea is a blockchain network with chain ID 59144. - -## Network Details - -- **Chain ID**: 59144 -- **Chain Name**: ETH -- **Short Name**: linea -- **Network ID**: 59144 -- **Currency**: - - **Name**: Linea Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Linea can be accessed through the following RPC endpoints: - -- https://rpc.linea.build -- wss://rpc.linea.build - -## Linea Block Explorers - -- [Etherscan](https://lineascan.build) -- [Blockscout](https://explorer.linea.build) -- [L2scan](https://linea.l2scan.co) - -## Additional Information - -- **Official Website**: https://linea.build - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/linqto-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/linqto-devnet.mdx deleted file mode 100644 index eac6c1a8ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/linqto-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Linqto Devnet - LNQ Blockchain Network -description: Explore Linqto Devnet, a blockchain network with chain ID 84. Learn about its native currency, XRP, and how to interact with the network. ---- - -# Linqto Devnet - -Linqto Devnet is a blockchain network with chain ID 84. - -## Network Details - -- **Chain ID**: 84 -- **Chain Name**: LNQ -- **Short Name**: linqto-devnet -- **Network ID**: 84 -- **Currency**: - - **Name**: XRP - - **Symbol**: XRP - - **Decimals**: 18 - -## RPC URLs - -Linqto Devnet can be accessed through the following RPC endpoints: - -- https://linqto-dev.com - -## Linqto Devnet Block Explorers - -- [Linqto Devnet Explorer](https://explorer.linqto-dev.com) - -## Additional Information - -- **Official Website**: https://linqto.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/liquichain.mdx b/docs/pages/solutions/chainlist/non-integrated/liquichain.mdx deleted file mode 100644 index fb01ab80a2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/liquichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Liquichain - LQC Blockchain Network -description: Explore Liquichain, a blockchain network with chain ID 1662. Learn about its native currency, Licoin, and how to interact with the network. ---- - -# Liquichain - -Liquichain is a blockchain network with chain ID 1662. - -## Network Details - -- **Chain ID**: 1662 -- **Chain Name**: LQC -- **Short Name**: Liquichain -- **Network ID**: 1662 -- **Currency**: - - **Name**: Licoin - - **Symbol**: LCN - - **Decimals**: 18 - -## RPC URLs - -Liquichain can be accessed through the following RPC endpoints: - - - -## Liquichain Block Explorers - -- [Liquichain Mainnet](https://mainnet.liquichain.io) - -## Additional Information - -- **Official Website**: https://liquichain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/liquidlayer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/liquidlayer-testnet.mdx deleted file mode 100644 index 655709b149..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/liquidlayer-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LiquidLayer Testnet - LILA Blockchain Network -description: Explore LiquidLayer Testnet, a blockchain network with chain ID 93572. Learn about its native currency, LiquidLayer Testnet, and how to interact with the network. ---- - -# LiquidLayer Testnet - -LiquidLayer Testnet is a blockchain network with chain ID 93572. - -## Network Details - -- **Chain ID**: 93572 -- **Chain Name**: LILA -- **Short Name**: tLILA -- **Network ID**: 93572 -- **Currency**: - - **Name**: LiquidLayer Testnet - - **Symbol**: LILA - - **Decimals**: 18 - -## RPC URLs - -LiquidLayer Testnet can be accessed through the following RPC endpoints: - -- https://testnet.liquidlayer.network - -## LiquidLayer Testnet Block Explorers - -- [LiquidLayer Testnet Explorer](https://testnet-scan.liquidlayer.network) - -## Additional Information - -- **Official Website**: https://testnet-scan.liquidlayer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LiquidLayer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/liquidlayer.mdx b/docs/pages/solutions/chainlist/non-integrated/liquidlayer.mdx deleted file mode 100644 index 4f8cc88655..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/liquidlayer.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LiquidLayer Mainnet - LiquidLayer Blockchain Network -description: Explore LiquidLayer Mainnet, a blockchain network with chain ID 25186. Learn about its native currency, LiquidLayer, and how to interact with the network. ---- - -# LiquidLayer Mainnet - -LiquidLayer Mainnet is a blockchain network with chain ID 25186. - -## Network Details - -- **Chain ID**: 25186 -- **Chain Name**: LiquidLayer -- **Short Name**: LILA -- **Network ID**: 25186 -- **Currency**: - - **Name**: LiquidLayer - - **Symbol**: LILA - - **Decimals**: 18 - -## RPC URLs - -LiquidLayer Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.liquidlayer.network - -## LiquidLayer Mainnet Block Explorers - -- [LiquidLayer Mainnet Explorer](https://scan.liquidlayer.network) - -## Additional Information - -- **Official Website**: https://scan.liquidlayer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lisinski.mdx b/docs/pages/solutions/chainlist/non-integrated/lisinski.mdx deleted file mode 100644 index 32eff078f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lisinski.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lisinski - CRO Blockchain Network -description: Explore Lisinski, a blockchain network with chain ID 385. Learn about its native currency, Lisinski Ether, and how to interact with the network. ---- - -# Lisinski - -Lisinski is a blockchain network with chain ID 385. - -## Network Details - -- **Chain ID**: 385 -- **Chain Name**: CRO -- **Short Name**: lisinski -- **Network ID**: 385 -- **Currency**: - - **Name**: Lisinski Ether - - **Symbol**: LISINS - - **Decimals**: 18 - -## RPC URLs - -Lisinski can be accessed through the following RPC endpoints: - -- https://rpc-bitfalls1.lisinski.online - -## Lisinski Block Explorers - - - -## Additional Information - -- **Official Website**: https://lisinski.online - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lisk-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lisk-sepolia-testnet.mdx deleted file mode 100644 index bff81f4ddf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lisk-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lisk Sepolia Testnet - ETH Blockchain Network -description: Explore Lisk Sepolia Testnet, a blockchain network with chain ID 4202. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Lisk Sepolia Testnet - -Lisk Sepolia Testnet is a blockchain network with chain ID 4202. - -## Network Details - -- **Chain ID**: 4202 -- **Chain Name**: ETH -- **Short Name**: lisksep -- **Network ID**: 4202 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lisk Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://rpc.sepolia-api.lisk.com - -## Lisk Sepolia Testnet Block Explorers - -- [liskscout](https://sepolia-blockscout.lisk.com) - -## Additional Information - -- **Official Website**: https://lisk.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lisk Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lisk.mdx b/docs/pages/solutions/chainlist/non-integrated/lisk.mdx deleted file mode 100644 index 704f8eb204..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lisk.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lisk - ETH Blockchain Network -description: Explore Lisk, a blockchain network with chain ID 1135. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Lisk - -Lisk is a blockchain network with chain ID 1135. - -## Network Details - -- **Chain ID**: 1135 -- **Chain Name**: ETH -- **Short Name**: lisk -- **Network ID**: 1135 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lisk can be accessed through the following RPC endpoints: - -- https://rpc.api.lisk.com - -## Lisk Block Explorers - -- [blockscout](https://blockscout.lisk.com) - -## Additional Information - -- **Official Website**: https://lisk.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lith.mdx b/docs/pages/solutions/chainlist/non-integrated/lith.mdx deleted file mode 100644 index 8ba40ba40c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lith.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lith - Avalanche Blockchain Network -description: Explore Lith, a blockchain network with chain ID 60118. Learn about its native currency, Lith Token, and how to interact with the network. ---- - -# Lith - -Lith is a blockchain network with chain ID 60118. - -## Network Details - -- **Chain ID**: 60118 -- **Chain Name**: Avalanche -- **Short Name**: Lith -- **Network ID**: 60118 -- **Currency**: - - **Name**: Lith Token - - **Symbol**: NXPC - - **Decimals**: 18 - -## RPC URLs - -Lith can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lith/testnet/rpc - -## Lith Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lith Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/live-stripe-test.mdx b/docs/pages/solutions/chainlist/non-integrated/live-stripe-test.mdx deleted file mode 100644 index 2641a705f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/live-stripe-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Live Stripe Test - Avalanche Blockchain Network -description: Explore Live Stripe Test, a blockchain network with chain ID 65622. Learn about its native currency, Live Stripe Test Token, and how to interact with the network. ---- - -# Live Stripe Test - -Live Stripe Test is a blockchain network with chain ID 65622. - -## Network Details - -- **Chain ID**: 65622 -- **Chain Name**: Avalanche -- **Short Name**: Live Stripe Test -- **Network ID**: 65622 -- **Currency**: - - **Name**: Live Stripe Test Token - - **Symbol**: LST - - **Decimals**: 18 - -## RPC URLs - -Live Stripe Test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/livestripe/testnet/rpc - -## Live Stripe Test Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Live Stripe Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/liveplex-oracleevm.mdx b/docs/pages/solutions/chainlist/non-integrated/liveplex-oracleevm.mdx deleted file mode 100644 index ccd9aec21f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/liveplex-oracleevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Liveplex OracleEVM - Liveplex OracleEVM Network Blockchain Network -description: Explore Liveplex OracleEVM, a blockchain network with chain ID 50001. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Liveplex OracleEVM - -Liveplex OracleEVM is a blockchain network with chain ID 50001. - -## Network Details - -- **Chain ID**: 50001 -- **Chain Name**: Liveplex OracleEVM Network -- **Short Name**: LOE -- **Network ID**: 50001 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Liveplex OracleEVM can be accessed through the following RPC endpoints: - -- https://rpc.oracle.liveplex.io - -## Liveplex OracleEVM Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/living-assets.mdx b/docs/pages/solutions/chainlist/non-integrated/living-assets.mdx deleted file mode 100644 index 2a9d2c5b38..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/living-assets.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Living Assets Mainnet - LAS Blockchain Network -description: Explore Living Assets Mainnet, a blockchain network with chain ID 1440. Learn about its native currency, LAS, and how to interact with the network. ---- - -# Living Assets Mainnet - -Living Assets Mainnet is a blockchain network with chain ID 1440. - -## Network Details - -- **Chain ID**: 1440 -- **Chain Name**: LAS -- **Short Name**: LAS -- **Network ID**: 1440 -- **Currency**: - - **Name**: LAS - - **Symbol**: LAS - - **Decimals**: 18 - -## RPC URLs - -Living Assets Mainnet can be accessed through the following RPC endpoints: - -- https://beta.mainnet.livingassets.io/rpc -- https://gamma.mainnet.livingassets.io/rpc - -## Living Assets Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://dev.livingassets.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/localhost.mdx b/docs/pages/solutions/chainlist/non-integrated/localhost.mdx deleted file mode 100644 index ba00e6fe73..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/localhost.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Localhost - ETH Blockchain Network -description: Explore Localhost, a blockchain network with chain ID 1337. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Localhost - -Localhost is a blockchain network with chain ID 1337. - -## Network Details - -- **Chain ID**: 1337 -- **Chain Name**: ETH -- **Short Name**: local -- **Network ID**: 1337 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Localhost can be accessed through the following RPC endpoints: - -- http://localhost:8545 - -## Localhost Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Localhost Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/loopnetwork.mdx b/docs/pages/solutions/chainlist/non-integrated/loopnetwork.mdx deleted file mode 100644 index 79a22d5c35..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/loopnetwork.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LoopNetwork Mainnet - LoopNetwork Blockchain Network -description: Explore LoopNetwork Mainnet, a blockchain network with chain ID 15551. Learn about its native currency, LOOP, and how to interact with the network. ---- - -# LoopNetwork Mainnet - -LoopNetwork Mainnet is a blockchain network with chain ID 15551. - -## Network Details - -- **Chain ID**: 15551 -- **Chain Name**: LoopNetwork -- **Short Name**: loop -- **Network ID**: 15551 -- **Currency**: - - **Name**: LOOP - - **Symbol**: LOOP - - **Decimals**: 18 - -## RPC URLs - -LoopNetwork Mainnet can be accessed through the following RPC endpoints: - -- https://api.mainnetloop.com - -## LoopNetwork Mainnet Block Explorers - -- [loopscan](http://explorer.mainnetloop.com) - -## Additional Information - -- **Official Website**: http://theloopnetwork.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/loot-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/loot-chain.mdx deleted file mode 100644 index 87cf4074db..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/loot-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Loot Chain Mainnet - ETH Blockchain Network -description: Explore Loot Chain Mainnet, a blockchain network with chain ID 5151706. Learn about its native currency, AGLD, and how to interact with the network. ---- - -# Loot Chain Mainnet - -Loot Chain Mainnet is a blockchain network with chain ID 5151706. - -## Network Details - -- **Chain ID**: 5151706 -- **Chain Name**: ETH -- **Short Name**: AGLD -- **Network ID**: 5151706 -- **Currency**: - - **Name**: AGLD - - **Symbol**: AGLD - - **Decimals**: 18 - -## RPC URLs - -Loot Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.lootchain.com/http - -## Loot Chain Mainnet Block Explorers - -- [Explorer](https://explorer.lootchain.com/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Loot Chain Mainnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lorenzo.mdx b/docs/pages/solutions/chainlist/non-integrated/lorenzo.mdx deleted file mode 100644 index a7537a1ede..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lorenzo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lorenzo - Lorenzo Blockchain Network -description: Explore Lorenzo, a blockchain network with chain ID 8329. Learn about its native currency, Lorenzo stBTC, and how to interact with the network. ---- - -# Lorenzo - -Lorenzo is a blockchain network with chain ID 8329. - -## Network Details - -- **Chain ID**: 8329 -- **Chain Name**: Lorenzo -- **Short Name**: lrz -- **Network ID**: 8329 -- **Currency**: - - **Name**: Lorenzo stBTC - - **Symbol**: stBTC - - **Decimals**: 18 - -## RPC URLs - -Lorenzo can be accessed through the following RPC endpoints: - -- https://rpc.lorenzo-protocol.xyz - -## Lorenzo Block Explorers - -- [Lorenzo Explorer](https://scan.lorenzo-protocol.xyz) - -## Additional Information - -- **Official Website**: https://www.lorenzo-protocol.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lovely-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lovely-network-testnet.mdx deleted file mode 100644 index b154be18be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lovely-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lovely Network Testnet - Lovely Blockchain Network -description: Explore Lovely Network Testnet, a blockchain network with chain ID 307. Learn about its native currency, Lovely, and how to interact with the network. ---- - -# Lovely Network Testnet - -Lovely Network Testnet is a blockchain network with chain ID 307. - -## Network Details - -- **Chain ID**: 307 -- **Chain Name**: Lovely -- **Short Name**: LOVELY-Testnet -- **Network ID**: 307 -- **Currency**: - - **Name**: Lovely - - **Symbol**: LOVELY - - **Decimals**: 18 - -## RPC URLs - -Lovely Network Testnet can be accessed through the following RPC endpoints: - -- https://trpc.lovely.network - -## Lovely Network Testnet Block Explorers - -- [Lovely Network Testnet](https://tscan.lovely.network) - -## Additional Information - -- **Official Website**: https://lovely.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lovely Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lovely-network.mdx b/docs/pages/solutions/chainlist/non-integrated/lovely-network.mdx deleted file mode 100644 index 554cee7e8c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lovely-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lovely Network Mainnet - Lovely Blockchain Network -description: Explore Lovely Network Mainnet, a blockchain network with chain ID 730. Learn about its native currency, Lovely, and how to interact with the network. ---- - -# Lovely Network Mainnet - -Lovely Network Mainnet is a blockchain network with chain ID 730. - -## Network Details - -- **Chain ID**: 730 -- **Chain Name**: Lovely -- **Short Name**: LOVELY -- **Network ID**: 730 -- **Currency**: - - **Name**: Lovely - - **Symbol**: LOVELY - - **Decimals**: 18 - -## RPC URLs - -Lovely Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.lovely.network - -## Lovely Network Mainnet Block Explorers - -- [Lovely Network Mainnet](https://scan.lovely.network) - -## Additional Information - -- **Official Website**: https://lovely.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lt10.mdx b/docs/pages/solutions/chainlist/non-integrated/lt10.mdx deleted file mode 100644 index 20ad9f4d7e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lt10.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LT10 - Avalanche Blockchain Network -description: Explore LT10, a blockchain network with chain ID 313310. Learn about its native currency, LT10 Token, and how to interact with the network. ---- - -# LT10 - -LT10 is a blockchain network with chain ID 313310. - -## Network Details - -- **Chain ID**: 313310 -- **Chain Name**: Avalanche -- **Short Name**: LT10 -- **Network ID**: 313310 -- **Currency**: - - **Name**: LT10 Token - - **Symbol**: LT - - **Decimals**: 18 - -## RPC URLs - -LT10 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lt10/testnet/rpc - -## LT10 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LT10 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lt11.mdx b/docs/pages/solutions/chainlist/non-integrated/lt11.mdx deleted file mode 100644 index e46e50f0bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lt11.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LT11 - Avalanche Blockchain Network -description: Explore LT11, a blockchain network with chain ID 313311. Learn about its native currency, LT11 Token, and how to interact with the network. ---- - -# LT11 - -LT11 is a blockchain network with chain ID 313311. - -## Network Details - -- **Chain ID**: 313311 -- **Chain Name**: Avalanche -- **Short Name**: LT11 -- **Network ID**: 313311 -- **Currency**: - - **Name**: LT11 Token - - **Symbol**: LT - - **Decimals**: 18 - -## RPC URLs - -LT11 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lt11/testnet/rpc - -## LT11 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LT11 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lt8-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lt8-testnet.mdx deleted file mode 100644 index 6124a149df..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lt8-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LT8 Testnet - Avalanche Blockchain Network -description: Explore LT8 Testnet, a blockchain network with chain ID 31338. Learn about its native currency, LT8 Testnet Token, and how to interact with the network. ---- - -# LT8 Testnet - -LT8 Testnet is a blockchain network with chain ID 31338. - -## Network Details - -- **Chain ID**: 31338 -- **Chain Name**: Avalanche -- **Short Name**: LT8 Testnet -- **Network ID**: 31338 -- **Currency**: - - **Name**: LT8 Testnet Token - - **Symbol**: LT - - **Decimals**: 18 - -## RPC URLs - -LT8 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lt8/testnet/rpc - -## LT8 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LT8 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lt9.mdx b/docs/pages/solutions/chainlist/non-integrated/lt9.mdx deleted file mode 100644 index 0284f0af61..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lt9.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: LT9 - Avalanche Blockchain Network -description: Explore LT9, a blockchain network with chain ID 31339. Learn about its native currency, LT9 Token, and how to interact with the network. ---- - -# LT9 - -LT9 is a blockchain network with chain ID 31339. - -## Network Details - -- **Chain ID**: 31339 -- **Chain Name**: Avalanche -- **Short Name**: LT9 -- **Network ID**: 31339 -- **Currency**: - - **Name**: LT9 Token - - **Symbol**: LT - - **Decimals**: 18 - -## RPC URLs - -LT9 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/lt9/testnet/rpc - -## LT9 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LT9 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lucid-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/lucid-blockchain.mdx deleted file mode 100644 index f43dc081f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lucid-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lucid Blockchain - Lucid Blockchain Network -description: Explore Lucid Blockchain, a blockchain network with chain ID 800. Learn about its native currency, LUCID, and how to interact with the network. ---- - -# Lucid Blockchain - -Lucid Blockchain is a blockchain network with chain ID 800. - -## Network Details - -- **Chain ID**: 800 -- **Chain Name**: Lucid -- **Short Name**: LUCID -- **Network ID**: 800 -- **Currency**: - - **Name**: LUCID - - **Symbol**: LUCID - - **Decimals**: 18 - -## RPC URLs - -Lucid Blockchain can be accessed through the following RPC endpoints: - -- https://rpc.lucidcoin.io - -## Lucid Blockchain Block Explorers - -- [Lucid Explorer](https://explorer.lucidcoin.io) - -## Additional Information - -- **Official Website**: https://lucidcoin.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lucky-network.mdx b/docs/pages/solutions/chainlist/non-integrated/lucky-network.mdx deleted file mode 100644 index eb4620b9eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lucky-network.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Lucky Network - LN Blockchain Network -description: Explore Lucky Network, a blockchain network with chain ID 998. Learn about its native currency, Lucky, and how to interact with the network. ---- - -# Lucky Network - -Lucky Network is a blockchain network with chain ID 998. - -## Network Details - -- **Chain ID**: 998 -- **Chain Name**: LN -- **Short Name**: ln -- **Network ID**: 998 -- **Currency**: - - **Name**: Lucky - - **Symbol**: L99 - - **Decimals**: 18 - -## RPC URLs - -Lucky Network can be accessed through the following RPC endpoints: - -- https://rpc.luckynetwork.org -- wss://ws.lnscan.org -- https://rpc.lnscan.org - -## Lucky Network Block Explorers - -- [blockscout](https://explorer.luckynetwork.org) -- [expedition](https://lnscan.org) - -## Additional Information - -- **Official Website**: https://luckynetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ludan.mdx b/docs/pages/solutions/chainlist/non-integrated/ludan.mdx deleted file mode 100644 index b0f1fdf6aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ludan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: LUDAN Mainnet - LUDAN Blockchain Network -description: Explore LUDAN Mainnet, a blockchain network with chain ID 1688. Learn about its native currency, LUDAN, and how to interact with the network. ---- - -# LUDAN Mainnet - -LUDAN Mainnet is a blockchain network with chain ID 1688. - -## Network Details - -- **Chain ID**: 1688 -- **Chain Name**: LUDAN -- **Short Name**: LUDAN -- **Network ID**: 1688 -- **Currency**: - - **Name**: LUDAN - - **Symbol**: LUDAN - - **Decimals**: 18 - -## RPC URLs - -LUDAN Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.ludan.org/ - -## LUDAN Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.ludan.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lukso-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lukso-testnet.mdx deleted file mode 100644 index 08f52a7a09..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lukso-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: LUKSO Testnet - LUKSO Testnet Blockchain Network -description: Explore LUKSO Testnet, a blockchain network with chain ID 4201. Learn about its native currency, TestLYX, and how to interact with the network. ---- - -# LUKSO Testnet - -LUKSO Testnet is a blockchain network with chain ID 4201. - -## Network Details - -- **Chain ID**: 4201 -- **Chain Name**: LUKSO Testnet -- **Short Name**: lukso-testnet -- **Network ID**: 4201 -- **Currency**: - - **Name**: TestLYX - - **Symbol**: LYXt - - **Decimals**: 18 - -## RPC URLs - -LUKSO Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.lukso.network -- wss://ws-rpc.testnet.lukso.network - -## LUKSO Testnet Block Explorers - -- [Blockscout](https://explorer.execution.testnet.lukso.network) - -## Additional Information - -- **Official Website**: https://lukso.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## LUKSO Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lukso.mdx b/docs/pages/solutions/chainlist/non-integrated/lukso.mdx deleted file mode 100644 index edc85059f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lukso.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: LUKSO Mainnet - LUKSO Blockchain Network -description: Explore LUKSO Mainnet, a blockchain network with chain ID 42. Learn about its native currency, LUKSO, and how to interact with the network. ---- - -# LUKSO Mainnet - -LUKSO Mainnet is a blockchain network with chain ID 42. - -## Network Details - -- **Chain ID**: 42 -- **Chain Name**: LUKSO -- **Short Name**: lukso -- **Network ID**: 42 -- **Currency**: - - **Name**: LUKSO - - **Symbol**: LYX - - **Decimals**: 18 - -## RPC URLs - -LUKSO Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.lukso.network -- wss://ws-rpc.mainnet.lukso.network - -## LUKSO Mainnet Block Explorers - -- [Blockscout](https://explorer.execution.mainnet.lukso.network) - -## Additional Information - -- **Official Website**: https://lukso.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lumia-prism.mdx b/docs/pages/solutions/chainlist/non-integrated/lumia-prism.mdx deleted file mode 100644 index ba34010173..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lumia-prism.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lumia Prism - LUMIA Blockchain Network -description: Explore Lumia Prism, a blockchain network with chain ID 994873017. Learn about its native currency, LUMIA, and how to interact with the network. ---- - -# Lumia Prism - -Lumia Prism is a blockchain network with chain ID 994873017. - -## Network Details - -- **Chain ID**: 994873017 -- **Chain Name**: LUMIA -- **Short Name**: LUMIA -- **Network ID**: 994873017 -- **Currency**: - - **Name**: LUMIA - - **Symbol**: LUMIA - - **Decimals**: 18 - -## RPC URLs - -Lumia Prism can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.lumia.org - -## Lumia Prism Block Explorers - -- [Blockscout](https://explorer.lumia.org/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lumia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/lumia-testnet.mdx deleted file mode 100644 index 4dd60b3dd9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lumia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Lumia Testnet - LUMIA Blockchain Network -description: Explore Lumia Testnet, a blockchain network with chain ID 1952959480. Learn about its native currency, LUMIA, and how to interact with the network. ---- - -# Lumia Testnet - -Lumia Testnet is a blockchain network with chain ID 1952959480. - -## Network Details - -- **Chain ID**: 1952959480 -- **Chain Name**: LUMIA -- **Short Name**: LUMIA -- **Network ID**: 1952959480 -- **Currency**: - - **Name**: LUMIA - - **Symbol**: LUMIA - - **Decimals**: 18 - -## RPC URLs - -Lumia Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.lumia.org - -## Lumia Testnet Block Explorers - -- [Blockscout](https://testnet-explorer.lumia.org/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lumia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lumoz-testnet-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/lumoz-testnet-alpha.mdx deleted file mode 100644 index c4c82d86ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lumoz-testnet-alpha.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Lumoz Testnet Alpha - ETH Blockchain Network -description: Explore Lumoz Testnet Alpha, a blockchain network with chain ID 51178. Learn about its native currency, Lumoz Test Token, and how to interact with the network. ---- - -# Lumoz Testnet Alpha - -Lumoz Testnet Alpha is a blockchain network with chain ID 51178. - -## Network Details - -- **Chain ID**: 51178 -- **Chain Name**: ETH -- **Short Name**: Lumoz-Testnet -- **Network ID**: 51178 -- **Currency**: - - **Name**: Lumoz Test Token - - **Symbol**: MOZ - - **Decimals**: 18 - -## RPC URLs - -Lumoz Testnet Alpha can be accessed through the following RPC endpoints: - -- https://alpha-us-http-geth.lumoz.org -- https://alpha-hk-http-geth.lumoz.org - -## Lumoz Testnet Alpha Block Explorers - -- [LumozTestnetInfo](https://lumoz.info) - -## Additional Information - -- **Official Website**: https://lumoz.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Lumoz Testnet Alpha Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/lycan-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/lycan-chain.mdx deleted file mode 100644 index 2e9e7233db..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lycan-chain.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Lycan Chain - LYC Blockchain Network -description: Explore Lycan Chain, a blockchain network with chain ID 721. Learn about its native currency, Lycan, and how to interact with the network. ---- - -# Lycan Chain - -Lycan Chain is a blockchain network with chain ID 721. - -## Network Details - -- **Chain ID**: 721 -- **Chain Name**: LYC -- **Short Name**: LYC -- **Network ID**: 721 -- **Currency**: - - **Name**: Lycan - - **Symbol**: LYC - - **Decimals**: 18 - -## RPC URLs - -Lycan Chain can be accessed through the following RPC endpoints: - -- https://rpc.lycanchain.com/ -- https://us-east.lycanchain.com -- https://us-west.lycanchain.com -- https://eu-north.lycanchain.com -- https://eu-west.lycanchain.com -- https://asia-southeast.lycanchain.com - -## Lycan Chain Block Explorers - -- [blockscout](https://explorer.lycanchain.com) - -## Additional Information - -- **Official Website**: https://lycanchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/lyra-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/lyra-chain.mdx deleted file mode 100644 index 085b7a3d34..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/lyra-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Lyra Chain - Lyra Blockchain Network -description: Explore Lyra Chain, a blockchain network with chain ID 957. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Lyra Chain - -Lyra Chain is a blockchain network with chain ID 957. - -## Network Details - -- **Chain ID**: 957 -- **Chain Name**: Lyra -- **Short Name**: lyra -- **Network ID**: 957 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Lyra Chain can be accessed through the following RPC endpoints: - -- https://rpc.lyra.finance - -## Lyra Chain Block Explorers - -- [Lyra Explorer](https://explorer.lyra.finance) - -## Additional Information - -- **Official Website**: https://lyra.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/m-test-1103-2.mdx b/docs/pages/solutions/chainlist/non-integrated/m-test-1103-2.mdx deleted file mode 100644 index 7aaa21791c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/m-test-1103-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Catena Mainnet - CMCX Blockchain Network -description: Explore Catena Mainnet, a blockchain network with chain ID 2121. Learn about its native currency, Catena, and how to interact with the network. ---- - -# Catena Mainnet - -Catena Mainnet is a blockchain network with chain ID 2121. - -## Network Details - -- **Chain ID**: 2121 -- **Chain Name**: CMCX -- **Short Name**: cmcx -- **Network ID**: 2121 -- **Currency**: - - **Name**: Catena - - **Symbol**: CMCX - - **Decimals**: 18 - -## RPC URLs - -Catena Mainnet can be accessed through the following RPC endpoints: - -- https://rpc1.catenarpc.com - -## Catena Mainnet Block Explorers - -- [catenascan](https://catenascan.com) - -## Additional Information - -- **Official Website**: https://catena.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/maal-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/maal-chain.mdx deleted file mode 100644 index dbfc213a11..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maal-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: MAAL Chain - MAAL Blockchain Network -description: Explore MAAL Chain, a blockchain network with chain ID 786. Learn about its native currency, MAAL, and how to interact with the network. ---- - -# MAAL Chain - -MAAL Chain is a blockchain network with chain ID 786. - -## Network Details - -- **Chain ID**: 786 -- **Chain Name**: MAAL -- **Short Name**: maal -- **Network ID**: 786 -- **Currency**: - - **Name**: MAAL - - **Symbol**: MAAL - - **Decimals**: 18 - -## RPC URLs - -MAAL Chain can be accessed through the following RPC endpoints: - -- https://node1-mainnet.maalscan.io/ -- https://node2-mainnet.maalscan.io/ -- https://node3-mainnet.maalscan.io/ - -## MAAL Chain Block Explorers - -- [maalscan](https://maalscan.io) - -## Additional Information - -- **Official Website**: https://www.maalchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet-v2.mdx deleted file mode 100644 index a67a9662c5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet-v2.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: MaalChain Testnet V2 - MaalChain Testnet V2 Blockchain Network -description: Explore MaalChain Testnet V2, a blockchain network with chain ID 7863. Learn about its native currency, MAAL, and how to interact with the network. ---- - -# MaalChain Testnet V2 - -MaalChain Testnet V2 is a blockchain network with chain ID 7863. - -## Network Details - -- **Chain ID**: 7863 -- **Chain Name**: MaalChain Testnet V2 -- **Short Name**: maal-test-v2 -- **Network ID**: 7863 -- **Currency**: - - **Name**: MAAL - - **Symbol**: MAAL - - **Decimals**: 18 - -## RPC URLs - -MaalChain Testnet V2 can be accessed through the following RPC endpoints: - -- https://node-testnet.maalscan.io/ -- https://node2-testnet.maalscan.io/ - -## MaalChain Testnet V2 Block Explorers - -- [maalscan testnet](https://new-testnet.maalscan.io) - -## Additional Information - -- **Official Website**: https://www.maalchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MaalChain Testnet V2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet.mdx deleted file mode 100644 index 5f9f6f4de0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maalchain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: MaalChain Testnet - MaalChain Testnet Blockchain Network -description: Explore MaalChain Testnet, a blockchain network with chain ID 7860. Learn about its native currency, MAAL, and how to interact with the network. ---- - -# MaalChain Testnet - -MaalChain Testnet is a blockchain network with chain ID 7860. - -## Network Details - -- **Chain ID**: 7860 -- **Chain Name**: MaalChain Testnet -- **Short Name**: maal-test -- **Network ID**: 7860 -- **Currency**: - - **Name**: MAAL - - **Symbol**: MAAL - - **Decimals**: 18 - -## RPC URLs - -MaalChain Testnet can be accessed through the following RPC endpoints: - -- https://node1.maalscan.io/ -- https://rpc-bntest.maalscan.io/ - -## MaalChain Testnet Block Explorers - -- [maalscan testnet](https://testnet.maalscan.io) - -## Additional Information - -- **Official Website**: https://www.maalchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MaalChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/maalchain-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/maalchain-v2.mdx deleted file mode 100644 index e796830e0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maalchain-v2.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: MaalChain V2 - MAAL Blockchain Network -description: Explore MaalChain V2, a blockchain network with chain ID 7862. Learn about its native currency, MAAL, and how to interact with the network. ---- - -# MaalChain V2 - -MaalChain V2 is a blockchain network with chain ID 7862. - -## Network Details - -- **Chain ID**: 7862 -- **Chain Name**: MAAL -- **Short Name**: maal-v2 -- **Network ID**: 7862 -- **Currency**: - - **Name**: MAAL - - **Symbol**: MAAL - - **Decimals**: 18 - -## RPC URLs - -MaalChain V2 can be accessed through the following RPC endpoints: - -- https://node1-mainnet-new.maalscan.io/ -- https://node2-mainnet-new.maalscan.io/ -- https://node3-mainnet-new.maalscan.io/ - -## MaalChain V2 Block Explorers - -- [maalscan](https://maalscan.io) - -## Additional Information - -- **Official Website**: https://www.maalchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/magape-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/magape-testnet.mdx deleted file mode 100644 index 6b0f2c156d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/magape-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MagApe Testnet - MagApe Blockchain Network -description: Explore MagApe Testnet, a blockchain network with chain ID 141319. Learn about its native currency, MagApe, and how to interact with the network. ---- - -# MagApe Testnet - -MagApe Testnet is a blockchain network with chain ID 141319. - -## Network Details - -- **Chain ID**: 141319 -- **Chain Name**: MagApe -- **Short Name**: mag -- **Network ID**: 141319 -- **Currency**: - - **Name**: MagApe - - **Symbol**: MAG - - **Decimals**: 18 - -## RPC URLs - -MagApe Testnet can be accessed through the following RPC endpoints: - -- https://testnet-api.magape.io/chain/ - -## MagApe Testnet Block Explorers - -- [etherscan](http://testnet-api.magape.io:81) - -## Additional Information - -- **Official Website**: https://magape.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MagApe Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/magnet-network.mdx b/docs/pages/solutions/chainlist/non-integrated/magnet-network.mdx deleted file mode 100644 index 9a4bc51eff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/magnet-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Magnet Network - Magnet Blockchain Network -description: Explore Magnet Network, a blockchain network with chain ID 19527. Learn about its native currency, Magnet Network, and how to interact with the network. ---- - -# Magnet Network - -Magnet Network is a blockchain network with chain ID 19527. - -## Network Details - -- **Chain ID**: 19527 -- **Chain Name**: Magnet -- **Short Name**: mgt -- **Network ID**: 19527 -- **Currency**: - - **Name**: Magnet Network - - **Symbol**: DOT - - **Decimals**: 18 - -## RPC URLs - -Magnet Network can be accessed through the following RPC endpoints: - -- https://magnet-rpc.magport.io/ - -## Magnet Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://magnet.magport.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/magnetic-azure-barnacle.mdx b/docs/pages/solutions/chainlist/non-integrated/magnetic-azure-barnacle.mdx deleted file mode 100644 index f95e699c2f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/magnetic-azure-barnacle.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: magnetic-azure-barnacle - Avalanche Blockchain Network -description: Explore magnetic-azure-barnacle, a blockchain network with chain ID 41711. Learn about its native currency, magnetic-azure-barnacle Token, and how to interact with the network. ---- - -# magnetic-azure-barnacle - -magnetic-azure-barnacle is a blockchain network with chain ID 41711. - -## Network Details - -- **Chain ID**: 41711 -- **Chain Name**: Avalanche -- **Short Name**: magnetic-azure-barnacle -- **Network ID**: 41711 -- **Currency**: - - **Name**: magnetic-azure-barnacle Token - - **Symbol**: TBJ - - **Decimals**: 18 - -## RPC URLs - -magnetic-azure-barnacle can be accessed through the following RPC endpoints: - -- https://testnet-magneticaz-y24e7.avax-test.network/ext/bc/2qZp1Cbdhuqg9fENe5Y1qmZ78jcr7fjKbZ1roHMoTXWgrumzmQ/rpc?token=a9f7132488f5e47db09e8cc0e5a6d088dcd35750a56d326c04261653369a0fc6 - -## magnetic-azure-barnacle Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## magnetic-azure-barnacle Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/maistestsubnet.mdx b/docs/pages/solutions/chainlist/non-integrated/maistestsubnet.mdx deleted file mode 100644 index a8a67522d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maistestsubnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: maistestsubnet - MAI Blockchain Network -description: Explore maistestsubnet, a blockchain network with chain ID 43214913. Learn about its native currency, maistestsubnet, and how to interact with the network. ---- - -# maistestsubnet - -maistestsubnet is a blockchain network with chain ID 43214913. - -## Network Details - -- **Chain ID**: 43214913 -- **Chain Name**: MAI -- **Short Name**: mais -- **Network ID**: 43214913 -- **Currency**: - - **Name**: maistestsubnet - - **Symbol**: MAI - - **Decimals**: 18 - -## RPC URLs - -maistestsubnet can be accessed through the following RPC endpoints: - -- http://174.138.9.169:9650/ext/bc/VUKSzFZKckx4PoZF9gX5QAqLPxbLzvu1vcssPG5QuodaJtdHT/rpc - -## maistestsubnet Block Explorers - -- [maistesntet](http://174.138.9.169:3006/?network=maistesntet) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## maistestsubnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mammoth.mdx b/docs/pages/solutions/chainlist/non-integrated/mammoth.mdx deleted file mode 100644 index 4d4dfc9b84..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mammoth.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Mammoth Mainnet - MMT Blockchain Network -description: Explore Mammoth Mainnet, a blockchain network with chain ID 8898. Learn about its native currency, Mammoth Token, and how to interact with the network. ---- - -# Mammoth Mainnet - -Mammoth Mainnet is a blockchain network with chain ID 8898. - -## Network Details - -- **Chain ID**: 8898 -- **Chain Name**: MMT -- **Short Name**: mmt -- **Network ID**: 8898 -- **Currency**: - - **Name**: Mammoth Token - - **Symbol**: MMT - - **Decimals**: 18 - -## RPC URLs - -Mammoth Mainnet can be accessed through the following RPC endpoints: - -- https://dataseed.mmtscan.io -- https://dataseed1.mmtscan.io -- https://dataseed2.mmtscan.io - -## Mammoth Mainnet Block Explorers - -- [mmtscan](https://mmtscan.io) - -## Additional Information - -- **Official Website**: https://mmtchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mande-network.mdx b/docs/pages/solutions/chainlist/non-integrated/mande-network.mdx deleted file mode 100644 index bbee5fc8c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mande-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mande Network Mainnet - Mande Blockchain Network -description: Explore Mande Network Mainnet, a blockchain network with chain ID 18071918. Learn about its native currency, Mand, and how to interact with the network. ---- - -# Mande Network Mainnet - -Mande Network Mainnet is a blockchain network with chain ID 18071918. - -## Network Details - -- **Chain ID**: 18071918 -- **Chain Name**: Mande -- **Short Name**: Mande -- **Network ID**: 18071918 -- **Currency**: - - **Name**: Mand - - **Symbol**: MAND - - **Decimals**: 18 - -## RPC URLs - -Mande Network Mainnet can be accessed through the following RPC endpoints: - -- https://mande-mainnet.public.blastapi.io - -## Mande Network Mainnet Block Explorers - -- [FYI](https://dym.fyi/r/mande) - -## Additional Information - -- **Official Website**: https://mande.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/manta-pacific-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/manta-pacific-sepolia-testnet.mdx deleted file mode 100644 index f068946c5a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/manta-pacific-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Manta Pacific Sepolia Testnet - Manta Pacific Blockchain Network -description: Explore Manta Pacific Sepolia Testnet, a blockchain network with chain ID 3441006. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Manta Pacific Sepolia Testnet - -Manta Pacific Sepolia Testnet is a blockchain network with chain ID 3441006. - -## Network Details - -- **Chain ID**: 3441006 -- **Chain Name**: Manta Pacific -- **Short Name**: mantaSepoliaTestnet -- **Network ID**: 3441006 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Manta Pacific Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://pacific-rpc.sepolia-testnet.manta.network/http - -## Manta Pacific Sepolia Testnet Block Explorers - -- [manta-testnet Explorer](https://pacific-explorer.sepolia-testnet.manta.network) - -## Additional Information - -- **Official Website**: https://manta-testnet.caldera.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Manta Pacific Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/manta-pacific-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/manta-pacific-testnet.mdx deleted file mode 100644 index 8e9bc7908a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/manta-pacific-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Manta Pacific Testnet - Manta Pacific Blockchain Network -description: Explore Manta Pacific Testnet, a blockchain network with chain ID 3441005. Learn about its native currency, Manta, and how to interact with the network. ---- - -# Manta Pacific Testnet - -Manta Pacific Testnet is a blockchain network with chain ID 3441005. - -## Network Details - -- **Chain ID**: 3441005 -- **Chain Name**: Manta Pacific -- **Short Name**: mantaTestnet -- **Network ID**: 3441005 -- **Currency**: - - **Name**: Manta - - **Symbol**: MANTA - - **Decimals**: 18 - -## RPC URLs - -Manta Pacific Testnet can be accessed through the following RPC endpoints: - -- https://manta-testnet.calderachain.xyz/http -- https://manta-pacific-testnet.drpc.org -- wss://manta-pacific-testnet.drpc.org - -## Manta Pacific Testnet Block Explorers - -- [manta-testnet Explorer](https://manta-testnet.calderaexplorer.xyz) - -## Additional Information - -- **Official Website**: https://manta-testnet.caldera.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Manta Pacific Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/manta-pacific.mdx b/docs/pages/solutions/chainlist/non-integrated/manta-pacific.mdx deleted file mode 100644 index 7e1ebf5e1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/manta-pacific.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Manta Pacific Mainnet - Manta Pacific Blockchain Network -description: Explore Manta Pacific Mainnet, a blockchain network with chain ID 169. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Manta Pacific Mainnet - -Manta Pacific Mainnet is a blockchain network with chain ID 169. - -## Network Details - -- **Chain ID**: 169 -- **Chain Name**: Manta Pacific -- **Short Name**: manta -- **Network ID**: 169 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Manta Pacific Mainnet can be accessed through the following RPC endpoints: - -- https://pacific-rpc.manta.network/http -- https://manta-pacific.drpc.org -- wss://manta-pacific.drpc.org - -## Manta Pacific Mainnet Block Explorers - -- [manta-pacific Explorer](https://pacific-explorer.manta.network) - -## Additional Information - -- **Official Website**: https://pacific-info.manta.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mantis-testnet-(hexapod).mdx b/docs/pages/solutions/chainlist/non-integrated/mantis-testnet-(hexapod).mdx deleted file mode 100644 index e816fd9d8d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mantis-testnet-(hexapod).mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Mantis Testnet (Hexapod) - Mantis Blockchain Network -description: Explore Mantis Testnet (Hexapod), a blockchain network with chain ID 96970. Learn about its native currency, Mantis, and how to interact with the network. ---- - -# Mantis Testnet (Hexapod) - -Mantis Testnet (Hexapod) is a blockchain network with chain ID 96970. - -## Network Details - -- **Chain ID**: 96970 -- **Chain Name**: Mantis -- **Short Name**: mantis -- **Network ID**: 96970 -- **Currency**: - - **Name**: Mantis - - **Symbol**: MANTIS - - **Decimals**: 18 - -## RPC URLs - -Mantis Testnet (Hexapod) can be accessed through the following RPC endpoints: - -- https://mantis-rpc.switch.ch -- https://mantis-rpc.kore-technologies.ch -- https://mantis-rpc.phoenix-systems.io - -## Mantis Testnet (Hexapod) Block Explorers - -- [Mantis Blockscout](https://blockscout.mantis.hexapod.network) - -## Additional Information - -- **Official Website**: https://hexapod.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mantis Testnet (Hexapod) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mantle-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mantle-sepolia-testnet.mdx deleted file mode 100644 index b4784a1b7f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mantle-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mantle Sepolia Testnet - ETH Blockchain Network -description: Explore Mantle Sepolia Testnet, a blockchain network with chain ID 5003. Learn about its native currency, Sepolia Mantle, and how to interact with the network. ---- - -# Mantle Sepolia Testnet - -Mantle Sepolia Testnet is a blockchain network with chain ID 5003. - -## Network Details - -- **Chain ID**: 5003 -- **Chain Name**: ETH -- **Short Name**: mnt-sep -- **Network ID**: 5003 -- **Currency**: - - **Name**: Sepolia Mantle - - **Symbol**: MNT - - **Decimals**: 18 - -## RPC URLs - -Mantle Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://rpc.sepolia.mantle.xyz - -## Mantle Sepolia Testnet Block Explorers - -- [blockscout](https://explorer.sepolia.mantle.xyz) - -## Additional Information - -- **Official Website**: https://mantle.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mantle Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mantle-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mantle-testnet.mdx deleted file mode 100644 index 62ec3c4058..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mantle-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mantle Testnet - ETH Blockchain Network -description: Explore Mantle Testnet, a blockchain network with chain ID 5001. Learn about its native currency, Testnet Mantle, and how to interact with the network. ---- - -# Mantle Testnet - -Mantle Testnet is a blockchain network with chain ID 5001. - -## Network Details - -- **Chain ID**: 5001 -- **Chain Name**: ETH -- **Short Name**: mantle-testnet -- **Network ID**: 5001 -- **Currency**: - - **Name**: Testnet Mantle - - **Symbol**: MNT - - **Decimals**: 18 - -## RPC URLs - -Mantle Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.mantle.xyz - -## Mantle Testnet Block Explorers - -- [Mantle Testnet Explorer](https://explorer.testnet.mantle.xyz) - -## Additional Information - -- **Official Website**: https://mantle.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mantle Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mantle.mdx b/docs/pages/solutions/chainlist/non-integrated/mantle.mdx deleted file mode 100644 index 29ca66cd32..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mantle.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Mantle - ETH Blockchain Network -description: Explore Mantle, a blockchain network with chain ID 5000. Learn about its native currency, Mantle, and how to interact with the network. ---- - -# Mantle - -Mantle is a blockchain network with chain ID 5000. - -## Network Details - -- **Chain ID**: 5000 -- **Chain Name**: ETH -- **Short Name**: mantle -- **Network ID**: 5000 -- **Currency**: - - **Name**: Mantle - - **Symbol**: MNT - - **Decimals**: 18 - -## RPC URLs - -Mantle can be accessed through the following RPC endpoints: - -- https://rpc.mantle.xyz -- https://mantle-rpc.publicnode.com -- wss://mantle-rpc.publicnode.com - -## Mantle Block Explorers - -- [mantlescan](https://mantlescan.xyz) -- [Mantle Explorer](https://explorer.mantle.xyz) - -## Additional Information - -- **Official Website**: https://mantle.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/map-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/map-protocol.mdx deleted file mode 100644 index 39883ec4b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/map-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MAP Protocol - MAPO Blockchain Network -description: Explore MAP Protocol, a blockchain network with chain ID 22776. Learn about its native currency, MAPO, and how to interact with the network. ---- - -# MAP Protocol - -MAP Protocol is a blockchain network with chain ID 22776. - -## Network Details - -- **Chain ID**: 22776 -- **Chain Name**: MAPO -- **Short Name**: mapo -- **Network ID**: 22776 -- **Currency**: - - **Name**: MAPO - - **Symbol**: MAPO - - **Decimals**: 18 - -## RPC URLs - -MAP Protocol can be accessed through the following RPC endpoints: - -- https://rpc.maplabs.io - -## MAP Protocol Block Explorers - -- [maposcan](https://maposcan.io) - -## Additional Information - -- **Official Website**: https://mapprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mapo-makalu.mdx b/docs/pages/solutions/chainlist/non-integrated/mapo-makalu.mdx deleted file mode 100644 index be0be09dd8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mapo-makalu.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MAPO Makalu - MAPO Blockchain Network -description: Explore MAPO Makalu, a blockchain network with chain ID 212. Learn about its native currency, Makalu MAPO, and how to interact with the network. ---- - -# MAPO Makalu - -MAPO Makalu is a blockchain network with chain ID 212. - -## Network Details - -- **Chain ID**: 212 -- **Chain Name**: MAPO -- **Short Name**: makalu -- **Network ID**: 212 -- **Currency**: - - **Name**: Makalu MAPO - - **Symbol**: MAPO - - **Decimals**: 18 - -## RPC URLs - -MAPO Makalu can be accessed through the following RPC endpoints: - -- https://testnet-rpc.maplabs.io - -## MAPO Makalu Block Explorers - -- [maposcan](https://testnet.maposcan.io) - -## Additional Information - -- **Official Website**: https://mapprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MAPO Makalu Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/markr-go.mdx b/docs/pages/solutions/chainlist/non-integrated/markr-go.mdx deleted file mode 100644 index 0c78cf8b04..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/markr-go.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Markr Go - Unified Blockchain Network -description: Explore Markr Go, a blockchain network with chain ID 431140. Learn about its native currency, Avalanche, and how to interact with the network. ---- - -# Markr Go - -Markr Go is a blockchain network with chain ID 431140. - -## Network Details - -- **Chain ID**: 431140 -- **Chain Name**: Unified -- **Short Name**: markr-go -- **Network ID**: 431140 -- **Currency**: - - **Name**: Avalanche - - **Symbol**: AVAX - - **Decimals**: 18 - -## RPC URLs - -Markr Go can be accessed through the following RPC endpoints: - -- https://rpc.markr.io/ext/ - -## Markr Go Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.markr.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/maro-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/maro-blockchain.mdx deleted file mode 100644 index 5c868be882..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maro-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MARO Blockchain Mainnet - MARO Blockchain Blockchain Network -description: Explore MARO Blockchain Mainnet, a blockchain network with chain ID 8848. Learn about its native currency, MARO, and how to interact with the network. ---- - -# MARO Blockchain Mainnet - -MARO Blockchain Mainnet is a blockchain network with chain ID 8848. - -## Network Details - -- **Chain ID**: 8848 -- **Chain Name**: MARO Blockchain -- **Short Name**: maro -- **Network ID**: 8848 -- **Currency**: - - **Name**: MARO - - **Symbol**: MARO - - **Decimals**: 18 - -## RPC URLs - -MARO Blockchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.ma.ro - -## MARO Blockchain Mainnet Block Explorers - -- [MARO Scan](https://scan.ma.ro/#) - -## Additional Information - -- **Official Website**: https://ma.ro/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mars-credit.mdx b/docs/pages/solutions/chainlist/non-integrated/mars-credit.mdx deleted file mode 100644 index 7e9cc3ade0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mars-credit.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Mars Credit - MARS Blockchain Network -description: Explore Mars Credit, a blockchain network with chain ID 110110. Learn about its native currency, Mars Credit, and how to interact with the network. ---- - -# Mars Credit - -Mars Credit is a blockchain network with chain ID 110110. - -## Network Details - -- **Chain ID**: 110110 -- **Chain Name**: MARS -- **Short Name**: mars -- **Network ID**: 110110 -- **Currency**: - - **Name**: Mars Credit - - **Symbol**: MARS - - **Decimals**: 18 - -## RPC URLs - -Mars Credit can be accessed through the following RPC endpoints: - -- https://node99-production-dd5f.up.railway.app:443 -- https://rpc.marscredit.xyz:443 - -## Mars Credit Block Explorers - - - -## Additional Information - -- **Official Website**: https://marscredit.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mas.mdx b/docs/pages/solutions/chainlist/non-integrated/mas.mdx deleted file mode 100644 index 13074048b8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mas.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mas Mainnet - MAS Blockchain Network -description: Explore Mas Mainnet, a blockchain network with chain ID 220315. Learn about its native currency, Master Bank, and how to interact with the network. ---- - -# Mas Mainnet - -Mas Mainnet is a blockchain network with chain ID 220315. - -## Network Details - -- **Chain ID**: 220315 -- **Chain Name**: MAS -- **Short Name**: mas -- **Network ID**: 220315 -- **Currency**: - - **Name**: Master Bank - - **Symbol**: MAS - - **Decimals**: 18 - -## RPC URLs - -Mas Mainnet can be accessed through the following RPC endpoints: - -- http://node.masnet.ai:8545 - -## Mas Mainnet Block Explorers - -- [explorer masnet](https://explorer.masnet.ai) - -## Additional Information - -- **Official Website**: https://masterbank.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/masa-network.mdx b/docs/pages/solutions/chainlist/non-integrated/masa-network.mdx deleted file mode 100644 index 0327f0c83b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/masa-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Masa - MASA Blockchain Network -description: Explore Masa, a blockchain network with chain ID 13396. Learn about its native currency, Masa Token, and how to interact with the network. ---- - -# Masa - -Masa is a blockchain network with chain ID 13396. - -## Network Details - -- **Chain ID**: 13396 -- **Chain Name**: MASA -- **Short Name**: masa -- **Network ID**: 13396 -- **Currency**: - - **Name**: Masa Token - - **Symbol**: MASA - - **Decimals**: 18 - -## RPC URLs - -Masa can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/masanetwork/mainnet/rpc - -## Masa Block Explorers - -- [Masa Explorer](https://subnets.avax.network/masa) - -## Additional Information - -- **Official Website**: https://masa.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/masa-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/masa-testnet.mdx deleted file mode 100644 index 97ec4022e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/masa-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Masa Testnet - MASA Blockchain Network -description: Explore Masa Testnet, a blockchain network with chain ID 103454. Learn about its native currency, Masa Token, and how to interact with the network. ---- - -# Masa Testnet - -Masa Testnet is a blockchain network with chain ID 103454. - -## Network Details - -- **Chain ID**: 103454 -- **Chain Name**: MASA -- **Short Name**: masatest -- **Network ID**: 103454 -- **Currency**: - - **Name**: Masa Token - - **Symbol**: MASA - - **Decimals**: 18 - -## RPC URLs - -Masa Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/masatestne/testnet/rpc - -## Masa Testnet Block Explorers - -- [Masa Testnet Explorer](https://subnets-test.avax.network/masatestnet) - -## Additional Information - -- **Official Website**: https://masa.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Masa Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/masa.mdx b/docs/pages/solutions/chainlist/non-integrated/masa.mdx deleted file mode 100644 index d4f5921970..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/masa.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Masa - Avalanche Blockchain Network -description: Explore Masa, a blockchain network with chain ID 3454. Learn about its native currency, Masa Token, and how to interact with the network. ---- - -# Masa - -Masa is a blockchain network with chain ID 3454. - -## Network Details - -- **Chain ID**: 3454 -- **Chain Name**: Avalanche -- **Short Name**: Masa -- **Network ID**: 3454 -- **Currency**: - - **Name**: Masa Token - - **Symbol**: MASA - - **Decimals**: 18 - -## RPC URLs - -Masa can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/masa/mainnet/rpc - -## Masa Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mathchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mathchain-testnet.mdx deleted file mode 100644 index 7719595121..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mathchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MathChain Testnet - MATH Blockchain Network -description: Explore MathChain Testnet, a blockchain network with chain ID 1140. Learn about its native currency, MathChain, and how to interact with the network. ---- - -# MathChain Testnet - -MathChain Testnet is a blockchain network with chain ID 1140. - -## Network Details - -- **Chain ID**: 1140 -- **Chain Name**: MATH -- **Short Name**: tMATH -- **Network ID**: 1140 -- **Currency**: - - **Name**: MathChain - - **Symbol**: MATH - - **Decimals**: 18 - -## RPC URLs - -MathChain Testnet can be accessed through the following RPC endpoints: - -- https://galois-hk.maiziqianbao.net/rpc - -## MathChain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://mathchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MathChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mathchain.mdx b/docs/pages/solutions/chainlist/non-integrated/mathchain.mdx deleted file mode 100644 index 9638d91e62..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mathchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MathChain - MATH Blockchain Network -description: Explore MathChain, a blockchain network with chain ID 1139. Learn about its native currency, MathChain, and how to interact with the network. ---- - -# MathChain - -MathChain is a blockchain network with chain ID 1139. - -## Network Details - -- **Chain ID**: 1139 -- **Chain Name**: MATH -- **Short Name**: MATH -- **Network ID**: 1139 -- **Currency**: - - **Name**: MathChain - - **Symbol**: MATH - - **Decimals**: 18 - -## RPC URLs - -MathChain can be accessed through the following RPC endpoints: - -- https://mathchain-asia.maiziqianbao.net/rpc -- https://mathchain-us.maiziqianbao.net/rpc - -## MathChain Block Explorers - - - -## Additional Information - -- **Official Website**: https://mathchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/maxi-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/maxi-chain-testnet.mdx deleted file mode 100644 index 97f56a2a5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maxi-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MAXI Chain Testnet - MAXI Blockchain Network -description: Explore MAXI Chain Testnet, a blockchain network with chain ID 898. Learn about its native currency, MAXI GAS, and how to interact with the network. ---- - -# MAXI Chain Testnet - -MAXI Chain Testnet is a blockchain network with chain ID 898. - -## Network Details - -- **Chain ID**: 898 -- **Chain Name**: MAXI -- **Short Name**: maxi-testnet -- **Network ID**: 898 -- **Currency**: - - **Name**: MAXI GAS - - **Symbol**: MGAS - - **Decimals**: 18 - -## RPC URLs - -MAXI Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.maxi.network - -## MAXI Chain Testnet Block Explorers - -- [Maxi Chain Testnet Explorer](https://testnet.maxi.network) - -## Additional Information - -- **Official Website**: https://maxi.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MAXI Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/maxi-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/maxi-chain.mdx deleted file mode 100644 index 818a711464..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maxi-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MAXI Chain Mainnet - MAXI Blockchain Network -description: Explore MAXI Chain Mainnet, a blockchain network with chain ID 899. Learn about its native currency, MAXI GAS, and how to interact with the network. ---- - -# MAXI Chain Mainnet - -MAXI Chain Mainnet is a blockchain network with chain ID 899. - -## Network Details - -- **Chain ID**: 899 -- **Chain Name**: MAXI -- **Short Name**: maxi-mainnet -- **Network ID**: 899 -- **Currency**: - - **Name**: MAXI GAS - - **Symbol**: MGAS - - **Decimals**: 18 - -## RPC URLs - -MAXI Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.maxi.network - -## MAXI Chain Mainnet Block Explorers - -- [Maxi Chain Mainnet Explorer](https://mainnet.maxi.network) - -## Additional Information - -- **Official Website**: https://maxi.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/maxxchain.mdx b/docs/pages/solutions/chainlist/non-integrated/maxxchain.mdx deleted file mode 100644 index dab4ba94a5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/maxxchain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: MaxxChain Mainnet - MaxxChain Blockchain Network -description: Explore MaxxChain Mainnet, a blockchain network with chain ID 10201. Learn about its native currency, Power, and how to interact with the network. ---- - -# MaxxChain Mainnet - -MaxxChain Mainnet is a blockchain network with chain ID 10201. - -## Network Details - -- **Chain ID**: 10201 -- **Chain Name**: MaxxChain -- **Short Name**: PWR -- **Network ID**: 10201 -- **Currency**: - - **Name**: Power - - **Symbol**: PWR - - **Decimals**: 18 - -## RPC URLs - -MaxxChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.maxxchain.org -- https://rpc1.maxxchain.org -- https://rpc2.maxxchain.org - -## MaxxChain Mainnet Block Explorers - -- [MaxxChain Block Explorer](https://explorer.maxxchain.org) - -## Additional Information - -- **Official Website**: https://www.maxxchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mazze-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mazze-testnet.mdx deleted file mode 100644 index 238a6e4a88..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mazze-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MAZZE Testnet - MAZZE Testnet Blockchain Network -description: Explore MAZZE Testnet, a blockchain network with chain ID 199991. Learn about its native currency, MAZZE Testnet, and how to interact with the network. ---- - -# MAZZE Testnet - -MAZZE Testnet is a blockchain network with chain ID 199991. - -## Network Details - -- **Chain ID**: 199991 -- **Chain Name**: MAZZE Testnet -- **Short Name**: MAZZE -- **Network ID**: 199991 -- **Currency**: - - **Name**: MAZZE Testnet - - **Symbol**: MAZZE - - **Decimals**: 18 - -## RPC URLs - -MAZZE Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.mazze.io/ - -## MAZZE Testnet Block Explorers - -- [MAZZE Testnet Explorer](https://mazzescan.io) - -## Additional Information - -- **Official Website**: https://mazze.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MAZZE Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mch-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/mch-verse.mdx deleted file mode 100644 index b25b23c2f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mch-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MCH Verse Mainnet - MCH Verse Blockchain Network -description: Explore MCH Verse Mainnet, a blockchain network with chain ID 29548. Learn about its native currency, OAS, and how to interact with the network. ---- - -# MCH Verse Mainnet - -MCH Verse Mainnet is a blockchain network with chain ID 29548. - -## Network Details - -- **Chain ID**: 29548 -- **Chain Name**: MCH Verse -- **Short Name**: MCHV -- **Network ID**: 29548 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -MCH Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.oasys.mycryptoheroes.net - -## MCH Verse Mainnet Block Explorers - -- [MCH Verse Explorer](https://explorer.oasys.mycryptoheroes.net) - -## Additional Information - -- **Official Website**: https://www.mycryptoheroes.net/verse - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mdgl-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mdgl-testnet.mdx deleted file mode 100644 index a9c6ae323a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mdgl-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MDGL Testnet - MDGL Blockchain Network -description: Explore MDGL Testnet, a blockchain network with chain ID 8029. Learn about its native currency, MDGL Token, and how to interact with the network. ---- - -# MDGL Testnet - -MDGL Testnet is a blockchain network with chain ID 8029. - -## Network Details - -- **Chain ID**: 8029 -- **Chain Name**: MDGL -- **Short Name**: mdgl -- **Network ID**: 8029 -- **Currency**: - - **Name**: MDGL Token - - **Symbol**: MDGLT - - **Decimals**: 18 - -## RPC URLs - -MDGL Testnet can be accessed through the following RPC endpoints: - -- https://testnet.mdgl.io - -## MDGL Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://mdgl.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MDGL Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/meld.mdx b/docs/pages/solutions/chainlist/non-integrated/meld.mdx deleted file mode 100644 index 4141ed335f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meld.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Meld - MELD Blockchain Network -description: Explore Meld, a blockchain network with chain ID 333000333. Learn about its native currency, gMeld, and how to interact with the network. ---- - -# Meld - -Meld is a blockchain network with chain ID 333000333. - -## Network Details - -- **Chain ID**: 333000333 -- **Chain Name**: MELD -- **Short Name**: meld -- **Network ID**: 333000333 -- **Currency**: - - **Name**: gMeld - - **Symbol**: gMELD - - **Decimals**: 18 - -## RPC URLs - -Meld can be accessed through the following RPC endpoints: - -- https://rpc-1.meld.com - -## Meld Block Explorers - -- [explorer](https://meldscan.io) -- [explorer](https://subnets.avax.network/meld) - -## Additional Information - -- **Official Website**: https://meld.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/memecoin-2.mdx b/docs/pages/solutions/chainlist/non-integrated/memecoin-2.mdx deleted file mode 100644 index 3bdc6c5aa9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/memecoin-2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: memecoin-2 - memecoin-2 Blockchain Network -description: Explore memecoin-2, a blockchain network with chain ID 71041. Learn about its native currency, Ether, and how to interact with the network. ---- - -# memecoin-2 - -memecoin-2 is a blockchain network with chain ID 71041. - -## Network Details - -- **Chain ID**: 71041 -- **Chain Name**: memecoin-2 -- **Short Name**: memecoin-2 -- **Network ID**: 71041 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -memecoin-2 can be accessed through the following RPC endpoints: - -- https://rpc-memecoin-2-7m5e84e2pz.t.conduit.xyz - -## memecoin-2 Block Explorers - -- [memecoin-2 Explorer](https://explorer-memecoin-2-7m5e84e2pz.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## memecoin-2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/memecoin-3.mdx b/docs/pages/solutions/chainlist/non-integrated/memecoin-3.mdx deleted file mode 100644 index 5a5f34786e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/memecoin-3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: memecoin-3 - memecoin-3 Blockchain Network -description: Explore memecoin-3, a blockchain network with chain ID 12049. Learn about its native currency, Ether, and how to interact with the network. ---- - -# memecoin-3 - -memecoin-3 is a blockchain network with chain ID 12049. - -## Network Details - -- **Chain ID**: 12049 -- **Chain Name**: memecoin-3 -- **Short Name**: memecoin-3 -- **Network ID**: 12049 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -memecoin-3 can be accessed through the following RPC endpoints: - -- https://rpc-memecoin-3-gy4apoe5lp.t.conduit.xyz - -## memecoin-3 Block Explorers - -- [memecoin-3 Explorer](https://explorer-memecoin-3-gy4apoe5lp.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## memecoin-3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/memento-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/memento-testnet.mdx deleted file mode 100644 index 0661ebc0f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/memento-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Memento Testnet - Memento Blockchain Network -description: Explore Memento Testnet, a blockchain network with chain ID 12052024. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Memento Testnet - -Memento Testnet is a blockchain network with chain ID 12052024. - -## Network Details - -- **Chain ID**: 12052024 -- **Chain Name**: Memento -- **Short Name**: memento-test -- **Network ID**: 12052024 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Memento Testnet can be accessed through the following RPC endpoints: - -- https://test-rpc.mementoblockchain.com/IRkghvI3FfEArEJMr4zC/rpc - -## Memento Testnet Block Explorers - -- [Tracehawk](https://test-explorer.mementoblockchain.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Memento Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/memo-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/memo-smart-chain.mdx deleted file mode 100644 index dac66222bd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/memo-smart-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Memo Smart Chain Mainnet - MEMO Blockchain Network -description: Explore Memo Smart Chain Mainnet, a blockchain network with chain ID 985. Learn about its native currency, Memo, and how to interact with the network. ---- - -# Memo Smart Chain Mainnet - -Memo Smart Chain Mainnet is a blockchain network with chain ID 985. - -## Network Details - -- **Chain ID**: 985 -- **Chain Name**: MEMO -- **Short Name**: memochain -- **Network ID**: 985 -- **Currency**: - - **Name**: Memo - - **Symbol**: CMEMO - - **Decimals**: 18 - -## RPC URLs - -Memo Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://chain.metamemo.one:8501 -- wss://chain.metamemo.one:16801 - -## Memo Smart Chain Mainnet Block Explorers - -- [Memo Mainnet Explorer](https://scan.metamemo.one:8080) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/merkle-scan.mdx b/docs/pages/solutions/chainlist/non-integrated/merkle-scan.mdx deleted file mode 100644 index b6f08e2290..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/merkle-scan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Merkle Scan - MRK Blockchain Network -description: Explore Merkle Scan, a blockchain network with chain ID 1909. Learn about its native currency, Merkle, and how to interact with the network. ---- - -# Merkle Scan - -Merkle Scan is a blockchain network with chain ID 1909. - -## Network Details - -- **Chain ID**: 1909 -- **Chain Name**: MRK -- **Short Name**: MRK -- **Network ID**: 1909 -- **Currency**: - - **Name**: Merkle - - **Symbol**: MRK - - **Decimals**: 18 - -## RPC URLs - -Merkle Scan can be accessed through the following RPC endpoints: - -- https://marklechain-rpc.merklescan.com - -## Merkle Scan Block Explorers - -- [blockscout](https://merklescan.com) - -## Additional Information - -- **Official Website**: https://merklescan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/merlin.mdx b/docs/pages/solutions/chainlist/non-integrated/merlin.mdx deleted file mode 100644 index 7a91b45a65..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/merlin.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Merlin Mainnet - Merlin Blockchain Network -description: Explore Merlin Mainnet, a blockchain network with chain ID 4200. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Merlin Mainnet - -Merlin Mainnet is a blockchain network with chain ID 4200. - -## Network Details - -- **Chain ID**: 4200 -- **Chain Name**: Merlin -- **Short Name**: Merlin-Mainnet -- **Network ID**: 4200 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Merlin Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.merlinchain.io -- https://merlin-mainnet-enterprise.unifra.io -- https://rpc-merlin.rockx.com - -## Merlin Mainnet Block Explorers - -- [L2scan](https://scan.merlinchain.io) - -## Additional Information - -- **Official Website**: https://merlinchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/meshnyan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/meshnyan-testnet.mdx deleted file mode 100644 index 75f181294e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meshnyan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Meshnyan testnet - MeshTestChain Blockchain Network -description: Explore Meshnyan testnet, a blockchain network with chain ID 600. Learn about its native currency, Meshnyan Testnet Native Token, and how to interact with the network. ---- - -# Meshnyan testnet - -Meshnyan testnet is a blockchain network with chain ID 600. - -## Network Details - -- **Chain ID**: 600 -- **Chain Name**: MeshTestChain -- **Short Name**: mesh-chain-testnet -- **Network ID**: 600 -- **Currency**: - - **Name**: Meshnyan Testnet Native Token - - **Symbol**: MESHT - - **Decimals**: 18 - -## RPC URLs - -Meshnyan testnet can be accessed through the following RPC endpoints: - - - -## Meshnyan testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Meshnyan testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metachain-istanbul.mdx b/docs/pages/solutions/chainlist/non-integrated/metachain-istanbul.mdx deleted file mode 100644 index 5d70471f5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metachain-istanbul.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MetaChain Istanbul - MTC Blockchain Network -description: Explore MetaChain Istanbul, a blockchain network with chain ID 1453. Learn about its native currency, Metatime Coin, and how to interact with the network. ---- - -# MetaChain Istanbul - -MetaChain Istanbul is a blockchain network with chain ID 1453. - -## Network Details - -- **Chain ID**: 1453 -- **Chain Name**: MTC -- **Short Name**: metatimeistanbul -- **Network ID**: 1453 -- **Currency**: - - **Name**: Metatime Coin - - **Symbol**: MTC - - **Decimals**: 18 - -## RPC URLs - -MetaChain Istanbul can be accessed through the following RPC endpoints: - -- https://istanbul-rpc.metachain.dev - -## MetaChain Istanbul Block Explorers - -- [MetaExplorer](https://istanbul-explorer.metachain.dev) - -## Additional Information - -- **Official Website**: https://metatime.com/en - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MetaChain Istanbul Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metachain-one.mdx b/docs/pages/solutions/chainlist/non-integrated/metachain-one.mdx deleted file mode 100644 index 4b165e233e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metachain-one.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Metachain One Mainnet - METAO Blockchain Network -description: Explore Metachain One Mainnet, a blockchain network with chain ID 112358. Learn about its native currency, Metao, and how to interact with the network. ---- - -# Metachain One Mainnet - -Metachain One Mainnet is a blockchain network with chain ID 112358. - -## Network Details - -- **Chain ID**: 112358 -- **Chain Name**: METAO -- **Short Name**: metao -- **Network ID**: 112358 -- **Currency**: - - **Name**: Metao - - **Symbol**: METAO - - **Decimals**: 18 - -## RPC URLs - -Metachain One Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.metachain.one -- https://rpc2.metachain.one - -## Metachain One Mainnet Block Explorers - -- [blockscout](https://explorer.metachain.one) - -## Additional Information - -- **Official Website**: https://metachain.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metachain.mdx b/docs/pages/solutions/chainlist/non-integrated/metachain.mdx deleted file mode 100644 index a32be60e80..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MetaChain Mainnet - MTC Blockchain Network -description: Explore MetaChain Mainnet, a blockchain network with chain ID 571. Learn about its native currency, Metatime Coin, and how to interact with the network. ---- - -# MetaChain Mainnet - -MetaChain Mainnet is a blockchain network with chain ID 571. - -## Network Details - -- **Chain ID**: 571 -- **Chain Name**: MTC -- **Short Name**: metatime -- **Network ID**: 571 -- **Currency**: - - **Name**: Metatime Coin - - **Symbol**: MTC - - **Decimals**: 18 - -## RPC URLs - -MetaChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.metatime.com - -## MetaChain Mainnet Block Explorers - -- [MetaExplorer](https://explorer.metatime.com) - -## Additional Information - -- **Official Website**: https://metatime.com/en - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise-testnet.mdx deleted file mode 100644 index cddc92f4cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: MetaDAP Enterprise Testnet - MetaDAP Blockchain Network -description: Explore MetaDAP Enterprise Testnet, a blockchain network with chain ID 119139. Learn about its native currency, DAP, and how to interact with the network. ---- - -# MetaDAP Enterprise Testnet - -MetaDAP Enterprise Testnet is a blockchain network with chain ID 119139. - -## Network Details - -- **Chain ID**: 119139 -- **Chain Name**: MetaDAP -- **Short Name**: MetaDAP-T -- **Network ID**: 119139 -- **Currency**: - - **Name**: DAP - - **Symbol**: DAP - - **Decimals**: 18 - -## RPC URLs - -MetaDAP Enterprise Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.chain.metadap.io -- wss://rpc-ws.testnet.chain.metadap.io - -## MetaDAP Enterprise Testnet Block Explorers - -- [MetaDAP Enterprise Testnet explorer](https://explorer.testnet.chain.metadap.io) - -## Additional Information - -- **Official Website**: https://metadap.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MetaDAP Enterprise Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise.mdx b/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise.mdx deleted file mode 100644 index e35cbfb5a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadap-enterprise.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MetaDAP Enterprise Mainnet - MetaDAP Blockchain Network -description: Explore MetaDAP Enterprise Mainnet, a blockchain network with chain ID 91120. Learn about its native currency, DAP, and how to interact with the network. ---- - -# MetaDAP Enterprise Mainnet - -MetaDAP Enterprise Mainnet is a blockchain network with chain ID 91120. - -## Network Details - -- **Chain ID**: 91120 -- **Chain Name**: MetaDAP -- **Short Name**: MetaDAP -- **Network ID**: 91120 -- **Currency**: - - **Name**: DAP - - **Symbol**: DAP - - **Decimals**: 18 - -## RPC URLs - -MetaDAP Enterprise Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.chain.metadap.io -- wss://rpc-ws.chain.metadap.io - -## MetaDAP Enterprise Mainnet Block Explorers - -- [MetaDAP Enterprise Mainnet explorer](https://explorer.chain.metadap.io) - -## Additional Information - -- **Official Website**: https://metadap.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metadium-testnet.mdx deleted file mode 100644 index 9af4e83a37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadium-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metadium Testnet - META Blockchain Network -description: Explore Metadium Testnet, a blockchain network with chain ID 12. Learn about its native currency, Metadium Testnet Ether, and how to interact with the network. ---- - -# Metadium Testnet - -Metadium Testnet is a blockchain network with chain ID 12. - -## Network Details - -- **Chain ID**: 12 -- **Chain Name**: META -- **Short Name**: kal -- **Network ID**: 12 -- **Currency**: - - **Name**: Metadium Testnet Ether - - **Symbol**: KAL - - **Decimals**: 18 - -## RPC URLs - -Metadium Testnet can be accessed through the following RPC endpoints: - -- https://api.metadium.com/dev - -## Metadium Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://metadium.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metadium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadium.mdx b/docs/pages/solutions/chainlist/non-integrated/metadium.mdx deleted file mode 100644 index ffe56879ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Metadium Mainnet - META Blockchain Network -description: Explore Metadium Mainnet, a blockchain network with chain ID 11. Learn about its native currency, Metadium Mainnet Ether, and how to interact with the network. ---- - -# Metadium Mainnet - -Metadium Mainnet is a blockchain network with chain ID 11. - -## Network Details - -- **Chain ID**: 11 -- **Chain Name**: META -- **Short Name**: meta -- **Network ID**: 11 -- **Currency**: - - **Name**: Metadium Mainnet Ether - - **Symbol**: META - - **Decimals**: 18 - -## RPC URLs - -Metadium Mainnet can be accessed through the following RPC endpoints: - -- https://api.metadium.com/prod - -## Metadium Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://metadium.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadot-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metadot-testnet.mdx deleted file mode 100644 index 3c9b5edc59..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadot-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MetaDot Testnet - MTTTest Blockchain Network -description: Explore MetaDot Testnet, a blockchain network with chain ID 16001. Learn about its native currency, MetaDot Token TestNet, and how to interact with the network. ---- - -# MetaDot Testnet - -MetaDot Testnet is a blockchain network with chain ID 16001. - -## Network Details - -- **Chain ID**: 16001 -- **Chain Name**: MTTTest -- **Short Name**: mtttest -- **Network ID**: 16001 -- **Currency**: - - **Name**: MetaDot Token TestNet - - **Symbol**: MTTest - - **Decimals**: 18 - -## RPC URLs - -MetaDot Testnet can be accessed through the following RPC endpoints: - -- https://testnet.metadot.network - -## MetaDot Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://metadot.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MetaDot Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metadot.mdx b/docs/pages/solutions/chainlist/non-integrated/metadot.mdx deleted file mode 100644 index 32e4957199..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metadot.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MetaDot Mainnet - MTT Blockchain Network -description: Explore MetaDot Mainnet, a blockchain network with chain ID 16000. Learn about its native currency, MetaDot Token, and how to interact with the network. ---- - -# MetaDot Mainnet - -MetaDot Mainnet is a blockchain network with chain ID 16000. - -## Network Details - -- **Chain ID**: 16000 -- **Chain Name**: MTT -- **Short Name**: mtt -- **Network ID**: 16000 -- **Currency**: - - **Name**: MetaDot Token - - **Symbol**: MTT - - **Decimals**: 18 - -## RPC URLs - -MetaDot Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.metadot.network - -## MetaDot Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://metadot.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metal-c-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/metal-c-chain.mdx deleted file mode 100644 index 71fac47a10..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metal-c-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Metal C-Chain - Metal Blockchain Network -description: Explore Metal C-Chain, a blockchain network with chain ID 381931. Learn about its native currency, Metal, and how to interact with the network. ---- - -# Metal C-Chain - -Metal C-Chain is a blockchain network with chain ID 381931. - -## Network Details - -- **Chain ID**: 381931 -- **Chain Name**: Metal -- **Short Name**: metal -- **Network ID**: 381931 -- **Currency**: - - **Name**: Metal - - **Symbol**: METAL - - **Decimals**: 18 - -## RPC URLs - -Metal C-Chain can be accessed through the following RPC endpoints: - -- https://api.metalblockchain.org/ext/bc/C/rpc - -## Metal C-Chain Block Explorers - -- [metalscan](https://metalscan.io) - -## Additional Information - -- **Official Website**: https://www.metalblockchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metal-l2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metal-l2-testnet.mdx deleted file mode 100644 index aefe2616b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metal-l2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metal L2 Testnet - Metal L2 Testnet Blockchain Network -description: Explore Metal L2 Testnet, a blockchain network with chain ID 1740. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Metal L2 Testnet - -Metal L2 Testnet is a blockchain network with chain ID 1740. - -## Network Details - -- **Chain ID**: 1740 -- **Chain Name**: Metal L2 Testnet -- **Short Name**: metall2-testnet -- **Network ID**: 1740 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Metal L2 Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rpc.metall2.com - -## Metal L2 Testnet Block Explorers - -- [blockscout](https://testnet.explorer.metall2.com) - -## Additional Information - -- **Official Website**: https://metall2.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metal L2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metal-l2.mdx b/docs/pages/solutions/chainlist/non-integrated/metal-l2.mdx deleted file mode 100644 index f9011a6093..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metal-l2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Metal L2 - Metal L2 Blockchain Network -description: Explore Metal L2, a blockchain network with chain ID 1750. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Metal L2 - -Metal L2 is a blockchain network with chain ID 1750. - -## Network Details - -- **Chain ID**: 1750 -- **Chain Name**: Metal L2 -- **Short Name**: metall2 -- **Network ID**: 1750 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Metal L2 can be accessed through the following RPC endpoints: - -- https://rpc.metall2.com - -## Metal L2 Block Explorers - -- [blockscout](https://explorer.metall2.com) - -## Additional Information - -- **Official Website**: https://metall2.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metal-tahoe-c-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/metal-tahoe-c-chain.mdx deleted file mode 100644 index 023091ea57..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metal-tahoe-c-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Metal Tahoe C-Chain - Metal Blockchain Network -description: Explore Metal Tahoe C-Chain, a blockchain network with chain ID 381932. Learn about its native currency, Metal, and how to interact with the network. ---- - -# Metal Tahoe C-Chain - -Metal Tahoe C-Chain is a blockchain network with chain ID 381932. - -## Network Details - -- **Chain ID**: 381932 -- **Chain Name**: Metal -- **Short Name**: Tahoe -- **Network ID**: 381932 -- **Currency**: - - **Name**: Metal - - **Symbol**: METAL - - **Decimals**: 18 - -## RPC URLs - -Metal Tahoe C-Chain can be accessed through the following RPC endpoints: - -- https://tahoe.metalblockchain.org/ext/bc/C/rpc - -## Metal Tahoe C-Chain Block Explorers - -- [metalscan](https://tahoe.metalscan.io) - -## Additional Information - -- **Official Website**: https://www.metalblockchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metalink-network.mdx b/docs/pages/solutions/chainlist/non-integrated/metalink-network.mdx deleted file mode 100644 index 412bf4809f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metalink-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MetaLink Network - MetaLink Blockchain Network -description: Explore MetaLink Network, a blockchain network with chain ID 2004. Learn about its native currency, MetaLink, and how to interact with the network. ---- - -# MetaLink Network - -MetaLink Network is a blockchain network with chain ID 2004. - -## Network Details - -- **Chain ID**: 2004 -- **Chain Name**: MetaLink -- **Short Name**: mtl -- **Network ID**: 2004 -- **Currency**: - - **Name**: MetaLink - - **Symbol**: MTL - - **Decimals**: 18 - -## RPC URLs - -MetaLink Network can be accessed through the following RPC endpoints: - -- http://77.237.237.69:9933 - -## MetaLink Network Block Explorers - -- [MetaScan](http://twoto3.com:3000) - -## Additional Information - -- **Official Website**: http://totwo3.com:3000 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metanova-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/metanova-verse.mdx deleted file mode 100644 index 0a4be51975..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metanova-verse.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MetaNova Verse - MNV Blockchain Network -description: Explore MetaNova Verse, a blockchain network with chain ID 10096. Learn about its native currency, MNV, and how to interact with the network. ---- - -# MetaNova Verse - -MetaNova Verse is a blockchain network with chain ID 10096. - -## Network Details - -- **Chain ID**: 10096 -- **Chain Name**: MNV -- **Short Name**: mnv -- **Network ID**: 10096 -- **Currency**: - - **Name**: MNV - - **Symbol**: MNV - - **Decimals**: 18 - -## RPC URLs - -MetaNova Verse can be accessed through the following RPC endpoints: - -- https://web3.metanovaverse.com - -## MetaNova Verse Block Explorers - -- [Blockscout](https://explorer.metanovaverse.com) -- [Cosmos Explorer (Ping)](https://ping.metanovaverse.com/metanovaverse) - -## Additional Information - -- **Official Website**: https://metanovaverse.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metaplayerone-dubai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metaplayerone-dubai-testnet.mdx deleted file mode 100644 index 0463e3cede..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metaplayerone-dubai-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metaplayerone Dubai Testnet - MP1 Dubai-Testnet Blockchain Network -description: Explore Metaplayerone Dubai Testnet, a blockchain network with chain ID 2124. Learn about its native currency, Metaunit, and how to interact with the network. ---- - -# Metaplayerone Dubai Testnet - -Metaplayerone Dubai Testnet is a blockchain network with chain ID 2124. - -## Network Details - -- **Chain ID**: 2124 -- **Chain Name**: MP1 Dubai-Testnet -- **Short Name**: MEU -- **Network ID**: 2124 -- **Currency**: - - **Name**: Metaunit - - **Symbol**: MEU - - **Decimals**: 18 - -## RPC URLs - -Metaplayerone Dubai Testnet can be accessed through the following RPC endpoints: - -- https://rpc-dubai.mp1network.com/ - -## Metaplayerone Dubai Testnet Block Explorers - -- [MP1Scan](https://dubai.mp1scan.io) - -## Additional Information - -- **Official Website**: https://docs.metaplayer.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metaplayerone Dubai Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metaplayerone.mdx b/docs/pages/solutions/chainlist/non-integrated/metaplayerone.mdx deleted file mode 100644 index 858c90bdb5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metaplayerone.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Metaplayerone Mainnet - METAD Blockchain Network -description: Explore Metaplayerone Mainnet, a blockchain network with chain ID 2122. Learn about its native currency, METAD, and how to interact with the network. ---- - -# Metaplayerone Mainnet - -Metaplayerone Mainnet is a blockchain network with chain ID 2122. - -## Network Details - -- **Chain ID**: 2122 -- **Chain Name**: METAD -- **Short Name**: Metad -- **Network ID**: 2122 -- **Currency**: - - **Name**: METAD - - **Symbol**: METAD - - **Decimals**: 18 - -## RPC URLs - -Metaplayerone Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.metaplayer.one/ - -## Metaplayerone Mainnet Block Explorers - -- [Metad Scan](https://scan.metaplayer.one) - -## Additional Information - -- **Official Website**: https://docs.metaplayer.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metasky.mdx b/docs/pages/solutions/chainlist/non-integrated/metasky.mdx deleted file mode 100644 index 4a2e0eef9f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metasky.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metasky - Avalanche Blockchain Network -description: Explore Metasky, a blockchain network with chain ID 53123. Learn about its native currency, Metasky Token, and how to interact with the network. ---- - -# Metasky - -Metasky is a blockchain network with chain ID 53123. - -## Network Details - -- **Chain ID**: 53123 -- **Chain Name**: Avalanche -- **Short Name**: Metasky -- **Network ID**: 53123 -- **Currency**: - - **Name**: Metasky Token - - **Symbol**: MSK - - **Decimals**: 18 - -## RPC URLs - -Metasky can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/metasky/testnet/rpc - -## Metasky Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metasky Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/meter-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/meter-testnet.mdx deleted file mode 100644 index 603284b179..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meter-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Meter Testnet - METER Testnet Blockchain Network -description: Explore Meter Testnet, a blockchain network with chain ID 83. Learn about its native currency, Meter, and how to interact with the network. ---- - -# Meter Testnet - -Meter Testnet is a blockchain network with chain ID 83. - -## Network Details - -- **Chain ID**: 83 -- **Chain Name**: METER Testnet -- **Short Name**: MeterTest -- **Network ID**: 83 -- **Currency**: - - **Name**: Meter - - **Symbol**: MTR - - **Decimals**: 18 - -## RPC URLs - -Meter Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.meter.io - -## Meter Testnet Block Explorers - -- [Meter Testnet Scan](https://scan-warringstakes.meter.io) - -## Additional Information - -- **Official Website**: https://www.meter.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Meter Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/meter.mdx b/docs/pages/solutions/chainlist/non-integrated/meter.mdx deleted file mode 100644 index f5b61079ea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meter.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Meter Mainnet - METER Blockchain Network -description: Explore Meter Mainnet, a blockchain network with chain ID 82. Learn about its native currency, Meter, and how to interact with the network. ---- - -# Meter Mainnet - -Meter Mainnet is a blockchain network with chain ID 82. - -## Network Details - -- **Chain ID**: 82 -- **Chain Name**: METER -- **Short Name**: Meter -- **Network ID**: 82 -- **Currency**: - - **Name**: Meter - - **Symbol**: MTR - - **Decimals**: 18 - -## RPC URLs - -Meter Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.meter.io - -## Meter Mainnet Block Explorers - -- [Meter Mainnet Scan](https://scan.meter.io) - -## Additional Information - -- **Official Website**: https://www.meter.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metis-andromeda.mdx b/docs/pages/solutions/chainlist/non-integrated/metis-andromeda.mdx deleted file mode 100644 index 5998ee31ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metis-andromeda.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Metis Andromeda Mainnet - ETH Blockchain Network -description: Explore Metis Andromeda Mainnet, a blockchain network with chain ID 1088. Learn about its native currency, Metis, and how to interact with the network. ---- - -# Metis Andromeda Mainnet - -Metis Andromeda Mainnet is a blockchain network with chain ID 1088. - -## Network Details - -- **Chain ID**: 1088 -- **Chain Name**: ETH -- **Short Name**: metis-andromeda -- **Network ID**: 1088 -- **Currency**: - - **Name**: Metis - - **Symbol**: METIS - - **Decimals**: 18 - -## RPC URLs - -Metis Andromeda Mainnet can be accessed through the following RPC endpoints: - -- https://andromeda.metis.io/?owner=1088 -- https://metis.drpc.org -- wss://metis.drpc.org - -## Metis Andromeda Mainnet Block Explorers - -- [blockscout](https://andromeda-explorer.metis.io) - -## Additional Information - -- **Official Website**: https://www.metis.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/metis-goerli-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metis-goerli-testnet.mdx deleted file mode 100644 index 13d75d4a61..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metis-goerli-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metis Goerli Testnet - ETH Blockchain Network -description: Explore Metis Goerli Testnet, a blockchain network with chain ID 599. Learn about its native currency, Goerli Metis, and how to interact with the network. ---- - -# Metis Goerli Testnet - -Metis Goerli Testnet is a blockchain network with chain ID 599. - -## Network Details - -- **Chain ID**: 599 -- **Chain Name**: ETH -- **Short Name**: metis-goerli -- **Network ID**: 599 -- **Currency**: - - **Name**: Goerli Metis - - **Symbol**: METIS - - **Decimals**: 18 - -## RPC URLs - -Metis Goerli Testnet can be accessed through the following RPC endpoints: - -- https://goerli.gateway.metisdevops.link - -## Metis Goerli Testnet Block Explorers - -- [blockscout](https://goerli.explorer.metisdevops.link) - -## Additional Information - -- **Official Website**: https://www.metis.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metis Goerli Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metis-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metis-sepolia-testnet.mdx deleted file mode 100644 index 6a07c6026c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metis-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metis Sepolia Testnet - ETH Blockchain Network -description: Explore Metis Sepolia Testnet, a blockchain network with chain ID 59902. Learn about its native currency, tMetis, and how to interact with the network. ---- - -# Metis Sepolia Testnet - -Metis Sepolia Testnet is a blockchain network with chain ID 59902. - -## Network Details - -- **Chain ID**: 59902 -- **Chain Name**: ETH -- **Short Name**: metis-sepolia -- **Network ID**: 59902 -- **Currency**: - - **Name**: tMetis - - **Symbol**: tMETIS - - **Decimals**: 18 - -## RPC URLs - -Metis Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.metisdevops.link - -## Metis Sepolia Testnet Block Explorers - -- [blockscout](https://sepolia-explorer.metisdevops.link) - -## Additional Information - -- **Official Website**: https://www.metis.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metis Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/metis-stardust-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/metis-stardust-testnet.mdx deleted file mode 100644 index 9dcde209a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/metis-stardust-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Metis Stardust Testnet - ETH Blockchain Network -description: Explore Metis Stardust Testnet, a blockchain network with chain ID 588. Learn about its native currency, tMetis, and how to interact with the network. ---- - -# Metis Stardust Testnet - -Metis Stardust Testnet is a blockchain network with chain ID 588. - -## Network Details - -- **Chain ID**: 588 -- **Chain Name**: ETH -- **Short Name**: metis-stardust -- **Network ID**: 588 -- **Currency**: - - **Name**: tMetis - - **Symbol**: METIS - - **Decimals**: 18 - -## RPC URLs - -Metis Stardust Testnet can be accessed through the following RPC endpoints: - -- https://stardust.metis.io/?owner=588 - -## Metis Stardust Testnet Block Explorers - -- [blockscout](https://stardust-explorer.metis.io) - -## Additional Information - -- **Official Website**: https://www.metis.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Metis Stardust Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/meverse-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/meverse-chain-testnet.mdx deleted file mode 100644 index a32b6b18f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meverse-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MEVerse Chain Testnet - MEVerse Blockchain Network -description: Explore MEVerse Chain Testnet, a blockchain network with chain ID 4759. Learn about its native currency, MEVerse, and how to interact with the network. ---- - -# MEVerse Chain Testnet - -MEVerse Chain Testnet is a blockchain network with chain ID 4759. - -## Network Details - -- **Chain ID**: 4759 -- **Chain Name**: MEVerse -- **Short Name**: TESTMEV -- **Network ID**: 4759 -- **Currency**: - - **Name**: MEVerse - - **Symbol**: MEV - - **Decimals**: 18 - -## RPC URLs - -MEVerse Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.meversetestnet.io - -## MEVerse Chain Testnet Block Explorers - -- [MEVerse Chain Testnet Explorer](https://testnet.meversescan.io) - -## Additional Information - -- **Official Website**: https://www.meverse.sg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MEVerse Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/meverse-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/meverse-chain.mdx deleted file mode 100644 index db1e7f4ede..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/meverse-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MEVerse Chain Mainnet - MEVerse Blockchain Network -description: Explore MEVerse Chain Mainnet, a blockchain network with chain ID 7518. Learn about its native currency, MEVerse, and how to interact with the network. ---- - -# MEVerse Chain Mainnet - -MEVerse Chain Mainnet is a blockchain network with chain ID 7518. - -## Network Details - -- **Chain ID**: 7518 -- **Chain Name**: MEVerse -- **Short Name**: MEV -- **Network ID**: 7518 -- **Currency**: - - **Name**: MEVerse - - **Symbol**: MEV - - **Decimals**: 18 - -## RPC URLs - -MEVerse Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.meversemainnet.io - -## MEVerse Chain Mainnet Block Explorers - -- [MEVerse Chain Explorer](https://www.meversescan.io) - -## Additional Information - -- **Official Website**: https://www.meverse.sg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mezzanine-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mezzanine-testnet.mdx deleted file mode 100644 index 8b6128b0f9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mezzanine-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mezzanine Testnet - Avalanche Blockchain Network -description: Explore Mezzanine Testnet, a blockchain network with chain ID 28106. Learn about its native currency, Mezzanine Testnet Token, and how to interact with the network. ---- - -# Mezzanine Testnet - -Mezzanine Testnet is a blockchain network with chain ID 28106. - -## Network Details - -- **Chain ID**: 28106 -- **Chain Name**: Avalanche -- **Short Name**: Mezzanine Testnet -- **Network ID**: 28106 -- **Currency**: - - **Name**: Mezzanine Testnet Token - - **Symbol**: OWQ - - **Decimals**: 18 - -## RPC URLs - -Mezzanine Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/mezzaninet/testnet/rpc - -## Mezzanine Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mezzanine Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/miexs-smartchain.mdx b/docs/pages/solutions/chainlist/non-integrated/miexs-smartchain.mdx deleted file mode 100644 index 85519ec7b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/miexs-smartchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Miexs Smartchain - MiexsSmartchain Blockchain Network -description: Explore Miexs Smartchain, a blockchain network with chain ID 761412. Learn about its native currency, Miexs Coin, and how to interact with the network. ---- - -# Miexs Smartchain - -Miexs Smartchain is a blockchain network with chain ID 761412. - -## Network Details - -- **Chain ID**: 761412 -- **Chain Name**: MiexsSmartchain -- **Short Name**: Miexs -- **Network ID**: 761412 -- **Currency**: - - **Name**: Miexs Coin - - **Symbol**: MIX - - **Decimals**: 18 - -## RPC URLs - -Miexs Smartchain can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.miexs.com - -## Miexs Smartchain Block Explorers - -- [Miexs Smartchain Explorer](https://miexs.com) - -## Additional Information - -- **Official Website**: https://miexs.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mikias's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mikias's-testnet.mdx deleted file mode 100644 index a104936e4d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mikias's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Fuse Testnet - Fuse Blockchain Network -description: Explore Fuse Testnet, a blockchain network with chain ID 12001. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Fuse Testnet - -Fuse Testnet is a blockchain network with chain ID 12001. - -## Network Details - -- **Chain ID**: 12001 -- **Chain Name**: Fuse -- **Short Name**: fuseZK -- **Network ID**: 12001 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Fuse Testnet can be accessed through the following RPC endpoints: - -- https://rpc.flash.fuse.io - -## Fuse Testnet Block Explorers - -- [Blockscout](https://explorer.flash.fuse.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Fuse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1-testnet.mdx deleted file mode 100644 index 173e77d50d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Milkomeda A1 Testnet - milkTAlgo Blockchain Network -description: Explore Milkomeda A1 Testnet, a blockchain network with chain ID 200202. Learn about its native currency, milkTAlgo, and how to interact with the network. ---- - -# Milkomeda A1 Testnet - -Milkomeda A1 Testnet is a blockchain network with chain ID 200202. - -## Network Details - -- **Chain ID**: 200202 -- **Chain Name**: milkTAlgo -- **Short Name**: milkTAlgo -- **Network ID**: 200202 -- **Currency**: - - **Name**: milkTAlgo - - **Symbol**: mTAlgo - - **Decimals**: 18 - -## RPC URLs - -Milkomeda A1 Testnet can be accessed through the following RPC endpoints: - -- https://rpc-devnet-algorand-rollup.a1.milkomeda.com - -## Milkomeda A1 Testnet Block Explorers - -- [Blockscout](https://explorer-devnet-algorand-rollup.a1.milkomeda.com) - -## Additional Information - -- **Official Website**: https://milkomeda.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Milkomeda A1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1.mdx b/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1.mdx deleted file mode 100644 index 10eb4ee145..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/milkomeda-a1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Milkomeda A1 Mainnet - milkALGO Blockchain Network -description: Explore Milkomeda A1 Mainnet, a blockchain network with chain ID 2002. Learn about its native currency, milkALGO, and how to interact with the network. ---- - -# Milkomeda A1 Mainnet - -Milkomeda A1 Mainnet is a blockchain network with chain ID 2002. - -## Network Details - -- **Chain ID**: 2002 -- **Chain Name**: milkALGO -- **Short Name**: milkALGO -- **Network ID**: 2002 -- **Currency**: - - **Name**: milkALGO - - **Symbol**: mALGO - - **Decimals**: 18 - -## RPC URLs - -Milkomeda A1 Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet-algorand-rollup.a1.milkomeda.com -- wss://rpc-mainnet-algorand-rollup.a1.milkomeda.com/ws - -## Milkomeda A1 Mainnet Block Explorers - -- [Blockscout](https://explorer-mainnet-algorand-rollup.a1.milkomeda.com) - -## Additional Information - -- **Official Website**: https://milkomeda.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1-testnet.mdx deleted file mode 100644 index 2b96118a47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Milkomeda C1 Testnet - milkTAda Blockchain Network -description: Explore Milkomeda C1 Testnet, a blockchain network with chain ID 200101. Learn about its native currency, milkTAda, and how to interact with the network. ---- - -# Milkomeda C1 Testnet - -Milkomeda C1 Testnet is a blockchain network with chain ID 200101. - -## Network Details - -- **Chain ID**: 200101 -- **Chain Name**: milkTAda -- **Short Name**: milkTAda -- **Network ID**: 200101 -- **Currency**: - - **Name**: milkTAda - - **Symbol**: mTAda - - **Decimals**: 18 - -## RPC URLs - -Milkomeda C1 Testnet can be accessed through the following RPC endpoints: - -- https://rpc-devnet-cardano-evm.c1.milkomeda.com -- wss://rpc-devnet-cardano-evm.c1.milkomeda.com - -## Milkomeda C1 Testnet Block Explorers - -- [Blockscout](https://explorer-devnet-cardano-evm.c1.milkomeda.com) - -## Additional Information - -- **Official Website**: https://milkomeda.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Milkomeda C1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1.mdx b/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1.mdx deleted file mode 100644 index c0d0e3976a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/milkomeda-c1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Milkomeda C1 Mainnet - milkAda Blockchain Network -description: Explore Milkomeda C1 Mainnet, a blockchain network with chain ID 2001. Learn about its native currency, milkAda, and how to interact with the network. ---- - -# Milkomeda C1 Mainnet - -Milkomeda C1 Mainnet is a blockchain network with chain ID 2001. - -## Network Details - -- **Chain ID**: 2001 -- **Chain Name**: milkAda -- **Short Name**: milkAda -- **Network ID**: 2001 -- **Currency**: - - **Name**: milkAda - - **Symbol**: mADA - - **Decimals**: 18 - -## RPC URLs - -Milkomeda C1 Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet-cardano-evm.c1.milkomeda.com -- wss://rpc-mainnet-cardano-evm.c1.milkomeda.com - -## Milkomeda C1 Mainnet Block Explorers - -- [Blockscout](https://explorer-mainnet-cardano-evm.c1.milkomeda.com) - -## Additional Information - -- **Official Website**: https://milkomeda.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/milvine.mdx b/docs/pages/solutions/chainlist/non-integrated/milvine.mdx deleted file mode 100644 index 42fe09b245..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/milvine.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Milvine - XCAP Blockchain Network -description: Explore Milvine, a blockchain network with chain ID 9322253. Learn about its native currency, Gas, and how to interact with the network. ---- - -# Milvine - -Milvine is a blockchain network with chain ID 9322253. - -## Network Details - -- **Chain ID**: 9322253 -- **Chain Name**: XCAP -- **Short Name**: milv -- **Network ID**: 9322253 -- **Currency**: - - **Name**: Gas - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -Milvine can be accessed through the following RPC endpoints: - -- https://xcap-milvine.relay.xcap.network/zj5l55ftsgi027kz4nf14vs8d89inego/rpc1 - -## Milvine Block Explorers - -- [blockscout](https://xcap-milvine.explorer.xcap.network) - -## Additional Information - -- **Official Website**: https://xcap.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Milvine Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mind-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mind-network-testnet.mdx deleted file mode 100644 index 78fb98a163..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mind-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Mind Network Testnet - FHET Blockchain Network -description: Explore Mind Network Testnet, a blockchain network with chain ID 192940. Learn about its native currency, FHE, and how to interact with the network. ---- - -# Mind Network Testnet - -Mind Network Testnet is a blockchain network with chain ID 192940. - -## Network Details - -- **Chain ID**: 192940 -- **Chain Name**: FHET -- **Short Name**: fhet -- **Network ID**: 192940 -- **Currency**: - - **Name**: FHE - - **Symbol**: FHE - - **Decimals**: 18 - -## RPC URLs - -Mind Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.mindnetwork.xyz -- wss://rpc-testnet.mindnetwork.xyz - -## Mind Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://mindnetwork.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mind Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mind-network.mdx b/docs/pages/solutions/chainlist/non-integrated/mind-network.mdx deleted file mode 100644 index bfa4d53ef8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mind-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Mind Network Mainnet - FHE Blockchain Network -description: Explore Mind Network Mainnet, a blockchain network with chain ID 228. Learn about its native currency, FHE, and how to interact with the network. ---- - -# Mind Network Mainnet - -Mind Network Mainnet is a blockchain network with chain ID 228. - -## Network Details - -- **Chain ID**: 228 -- **Chain Name**: FHE -- **Short Name**: fhe -- **Network ID**: 228 -- **Currency**: - - **Name**: FHE - - **Symbol**: FHE - - **Decimals**: 18 - -## RPC URLs - -Mind Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc_mainnet.mindnetwork.xyz -- wss://rpc_mainnet.mindnetwork.xyz - -## Mind Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://mindnetwork.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain-testnet.mdx deleted file mode 100644 index 2c8426073d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Mind Smart Chain Testnet - tMIND Blockchain Network -description: Explore Mind Smart Chain Testnet, a blockchain network with chain ID 9977. Learn about its native currency, MIND Coin, and how to interact with the network. ---- - -# Mind Smart Chain Testnet - -Mind Smart Chain Testnet is a blockchain network with chain ID 9977. - -## Network Details - -- **Chain ID**: 9977 -- **Chain Name**: tMIND -- **Short Name**: tMIND -- **Network ID**: 9977 -- **Currency**: - - **Name**: MIND Coin - - **Symbol**: tMIND - - **Decimals**: 18 - -## RPC URLs - -Mind Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-msc.mindchain.info/ -- wss://testnet-msc.mindchain.info/ws - -## Mind Smart Chain Testnet Block Explorers - -- [Mind Chain explorer](https://testnet.mindscan.info) - -## Additional Information - -- **Official Website**: https://mindchain.info - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mind Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain.mdx deleted file mode 100644 index 042b2a38b7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mind-smart-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mind Smart Chain Mainnet - MIND Blockchain Network -description: Explore Mind Smart Chain Mainnet, a blockchain network with chain ID 9996. Learn about its native currency, MIND Coin, and how to interact with the network. ---- - -# Mind Smart Chain Mainnet - -Mind Smart Chain Mainnet is a blockchain network with chain ID 9996. - -## Network Details - -- **Chain ID**: 9996 -- **Chain Name**: MIND -- **Short Name**: MIND -- **Network ID**: 9996 -- **Currency**: - - **Name**: MIND Coin - - **Symbol**: MIND - - **Decimals**: 18 - -## RPC URLs - -Mind Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-msc.mindchain.info/ -- https://seednode.mindchain.info -- https://archive.mindchain.info/ -- wss://archive.mindchain.info/ws -- wss://seednode.mindchain.info/ws - -## Mind Smart Chain Mainnet Block Explorers - -- [Mind Chain explorer](https://mainnet.mindscan.info) - -## Additional Information - -- **Official Website**: https://mindchain.info - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mint-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mint-sepolia-testnet.mdx deleted file mode 100644 index acdb7ae718..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mint-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mint Sepolia Testnet - ETH Blockchain Network -description: Explore Mint Sepolia Testnet, a blockchain network with chain ID 1687. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Mint Sepolia Testnet - -Mint Sepolia Testnet is a blockchain network with chain ID 1687. - -## Network Details - -- **Chain ID**: 1687 -- **Chain Name**: ETH -- **Short Name**: mintsepoliatest -- **Network ID**: 1687 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mint Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia-testnet-rpc.mintchain.io - -## Mint Sepolia Testnet Block Explorers - -- [blockscout](https://sepolia-testnet-explorer.mintchain.io) - -## Additional Information - -- **Official Website**: https://www.mintchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mint Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mint-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mint-testnet.mdx deleted file mode 100644 index b663199538..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mint-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mint Testnet - ETH Blockchain Network -description: Explore Mint Testnet, a blockchain network with chain ID 1686. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Mint Testnet - -Mint Testnet is a blockchain network with chain ID 1686. - -## Network Details - -- **Chain ID**: 1686 -- **Chain Name**: ETH -- **Short Name**: minttest -- **Network ID**: 1686 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mint Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.mintchain.io - -## Mint Testnet Block Explorers - -- [blockscout](https://testnet-explorer.mintchain.io) - -## Additional Information - -- **Official Website**: https://www.mintchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mint Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mint.mdx b/docs/pages/solutions/chainlist/non-integrated/mint.mdx deleted file mode 100644 index a9c9da4c7d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mint.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Mint Mainnet - ETH Blockchain Network -description: Explore Mint Mainnet, a blockchain network with chain ID 185. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Mint Mainnet - -Mint Mainnet is a blockchain network with chain ID 185. - -## Network Details - -- **Chain ID**: 185 -- **Chain Name**: ETH -- **Short Name**: mint -- **Network ID**: 185 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mint Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mintchain.io -- https://global.rpc.mintchain.io -- https://asia.rpc.mintchain.io - -## Mint Mainnet Block Explorers - -- [blockscout](https://explorer.mintchain.io) - -## Additional Information - -- **Official Website**: https://www.mintchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mintara-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mintara-testnet.mdx deleted file mode 100644 index 57b0723265..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mintara-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mintara Testnet - Mintara Blockchain Network -description: Explore Mintara Testnet, a blockchain network with chain ID 1079. Learn about its native currency, MINTARA, and how to interact with the network. ---- - -# Mintara Testnet - -Mintara Testnet is a blockchain network with chain ID 1079. - -## Network Details - -- **Chain ID**: 1079 -- **Chain Name**: Mintara -- **Short Name**: mintara-testnet -- **Network ID**: 1079 -- **Currency**: - - **Name**: MINTARA - - **Symbol**: MNTR - - **Decimals**: 18 - -## RPC URLs - -Mintara Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/mintara/testnet/rpc - -## Mintara Testnet Block Explorers - -- [explorer](https://subnets-test.avax.network/mintara) - -## Additional Information - -- **Official Website**: https://playthink.co.jp - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mintara Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mintara.mdx b/docs/pages/solutions/chainlist/non-integrated/mintara.mdx deleted file mode 100644 index 3a1663719e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mintara.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mintara Mainnet - Mintara Blockchain Network -description: Explore Mintara Mainnet, a blockchain network with chain ID 1080. Learn about its native currency, MINTARA, and how to interact with the network. ---- - -# Mintara Mainnet - -Mintara Mainnet is a blockchain network with chain ID 1080. - -## Network Details - -- **Chain ID**: 1080 -- **Chain Name**: Mintara -- **Short Name**: mintara -- **Network ID**: 1080 -- **Currency**: - - **Name**: MINTARA - - **Symbol**: MNTR - - **Decimals**: 18 - -## RPC URLs - -Mintara Mainnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/mintara/mainnet/rpc - -## Mintara Mainnet Block Explorers - -- [explorer](https://subnets.avax.network/mintara) - -## Additional Information - -- **Official Website**: https://playthink.co.jp - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mintme.com-coin.mdx b/docs/pages/solutions/chainlist/non-integrated/mintme.com-coin.mdx deleted file mode 100644 index c82a84c24f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mintme.com-coin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MintMe.com Coin - MINTME Blockchain Network -description: Explore MintMe.com Coin, a blockchain network with chain ID 24734. Learn about its native currency, MintMe.com Coin, and how to interact with the network. ---- - -# MintMe.com Coin - -MintMe.com Coin is a blockchain network with chain ID 24734. - -## Network Details - -- **Chain ID**: 24734 -- **Chain Name**: MINTME -- **Short Name**: mintme -- **Network ID**: 24734 -- **Currency**: - - **Name**: MintMe.com Coin - - **Symbol**: MINTME - - **Decimals**: 18 - -## RPC URLs - -MintMe.com Coin can be accessed through the following RPC endpoints: - -- https://node1.mintme.com - -## MintMe.com Coin Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.mintme.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mix.mdx b/docs/pages/solutions/chainlist/non-integrated/mix.mdx deleted file mode 100644 index 61f3c40663..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mix.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mix - MIX Blockchain Network -description: Explore Mix, a blockchain network with chain ID 76. Learn about its native currency, Mix Ether, and how to interact with the network. ---- - -# Mix - -Mix is a blockchain network with chain ID 76. - -## Network Details - -- **Chain ID**: 76 -- **Chain Name**: MIX -- **Short Name**: mix -- **Network ID**: 76 -- **Currency**: - - **Name**: Mix Ether - - **Symbol**: MIX - - **Decimals**: 18 - -## RPC URLs - -Mix can be accessed through the following RPC endpoints: - -- https://rpc2.mix-blockchain.org:8647 - -## Mix Block Explorers - - - -## Additional Information - -- **Official Website**: https://mix-blockchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mixin-virtual-machine.mdx b/docs/pages/solutions/chainlist/non-integrated/mixin-virtual-machine.mdx deleted file mode 100644 index 33d64a7289..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mixin-virtual-machine.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mixin Virtual Machine - MVM Blockchain Network -description: Explore Mixin Virtual Machine, a blockchain network with chain ID 73927. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Mixin Virtual Machine - -Mixin Virtual Machine is a blockchain network with chain ID 73927. - -## Network Details - -- **Chain ID**: 73927 -- **Chain Name**: MVM -- **Short Name**: mvm -- **Network ID**: 73927 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mixin Virtual Machine can be accessed through the following RPC endpoints: - -- https://geth.mvm.dev - -## Mixin Virtual Machine Block Explorers - -- [mvmscan](https://scan.mvm.dev) - -## Additional Information - -- **Official Website**: https://mvm.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/miyou.mdx b/docs/pages/solutions/chainlist/non-integrated/miyou.mdx deleted file mode 100644 index 7ee356fb20..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/miyou.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MiYou Mainnet - MiYou Chain Blockchain Network -description: Explore MiYou Mainnet, a blockchain network with chain ID 30088. Learn about its native currency, Miyou, and how to interact with the network. ---- - -# MiYou Mainnet - -MiYou Mainnet is a blockchain network with chain ID 30088. - -## Network Details - -- **Chain ID**: 30088 -- **Chain Name**: MiYou Chain -- **Short Name**: MiYou -- **Network ID**: 30088 -- **Currency**: - - **Name**: Miyou - - **Symbol**: MY - - **Decimals**: 18 - -## RPC URLs - -MiYou Mainnet can be accessed through the following RPC endpoints: - -- https://blockchain.miyou.io -- https://blockchain.miyoulab.com - -## MiYou Mainnet Block Explorers - -- [MiYou block explorer](https://myscan.miyou.io) - -## Additional Information - -- **Official Website**: https://www.miyou.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mizana-mixnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mizana-mixnet.mdx deleted file mode 100644 index 205bfcdc17..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mizana-mixnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mizana Mixnet - MEER Blockchain Network -description: Explore Mizana Mixnet, a blockchain network with chain ID 81362. Learn about its native currency, Mizana Mixnet, and how to interact with the network. ---- - -# Mizana Mixnet - -Mizana Mixnet is a blockchain network with chain ID 81362. - -## Network Details - -- **Chain ID**: 81362 -- **Chain Name**: MEER -- **Short Name**: mizanamix -- **Network ID**: 81362 -- **Currency**: - - **Name**: Mizana Mixnet - - **Symbol**: MEER-M - - **Decimals**: 18 - -## RPC URLs - -Mizana Mixnet can be accessed through the following RPC endpoints: - - - -## Mizana Mixnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mizana-privnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mizana-privnet.mdx deleted file mode 100644 index a774b5356d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mizana-privnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mizana Privnet - MEER Blockchain Network -description: Explore Mizana Privnet, a blockchain network with chain ID 81363. Learn about its native currency, Mizana Privnet, and how to interact with the network. ---- - -# Mizana Privnet - -Mizana Privnet is a blockchain network with chain ID 81363. - -## Network Details - -- **Chain ID**: 81363 -- **Chain Name**: MEER -- **Short Name**: mizanapriv -- **Network ID**: 81363 -- **Currency**: - - **Name**: Mizana Privnet - - **Symbol**: MEER-P - - **Decimals**: 18 - -## RPC URLs - -Mizana Privnet can be accessed through the following RPC endpoints: - - - -## Mizana Privnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mizana-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mizana-testnet.mdx deleted file mode 100644 index 30e87205bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mizana-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mizana Testnet - MEER Blockchain Network -description: Explore Mizana Testnet, a blockchain network with chain ID 81361. Learn about its native currency, Mizana Testnet, and how to interact with the network. ---- - -# Mizana Testnet - -Mizana Testnet is a blockchain network with chain ID 81361. - -## Network Details - -- **Chain ID**: 81361 -- **Chain Name**: MEER -- **Short Name**: mizanatest -- **Network ID**: 81361 -- **Currency**: - - **Name**: Mizana Testnet - - **Symbol**: MEER-T - - **Decimals**: 18 - -## RPC URLs - -Mizana Testnet can be accessed through the following RPC endpoints: - - - -## Mizana Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mizana Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mizana.mdx b/docs/pages/solutions/chainlist/non-integrated/mizana.mdx deleted file mode 100644 index c951c8f413..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mizana.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mizana - MEER Blockchain Network -description: Explore Mizana, a blockchain network with chain ID 8136. Learn about its native currency, Mizana Mainnet, and how to interact with the network. ---- - -# Mizana - -Mizana is a blockchain network with chain ID 8136. - -## Network Details - -- **Chain ID**: 8136 -- **Chain Name**: MEER -- **Short Name**: mizana -- **Network ID**: 8136 -- **Currency**: - - **Name**: Mizana Mainnet - - **Symbol**: MEER - - **Decimals**: 18 - -## RPC URLs - -Mizana can be accessed through the following RPC endpoints: - - - -## Mizana Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mo.mdx b/docs/pages/solutions/chainlist/non-integrated/mo.mdx deleted file mode 100644 index 8fd2f0041c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MO Mainnet - MO Blockchain Network -description: Explore MO Mainnet, a blockchain network with chain ID 7924. Learn about its native currency, MO, and how to interact with the network. ---- - -# MO Mainnet - -MO Mainnet is a blockchain network with chain ID 7924. - -## Network Details - -- **Chain ID**: 7924 -- **Chain Name**: MO -- **Short Name**: MO -- **Network ID**: 7924 -- **Currency**: - - **Name**: MO - - **Symbol**: MO - - **Decimals**: 18 - -## RPC URLs - -MO Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.mochain.app/ - -## MO Mainnet Block Explorers - -- [MO Explorer](https://moscan.app) - -## Additional Information - -- **Official Website**: https://mochain.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moac-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/moac-testnet.mdx deleted file mode 100644 index e4bf3b5179..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moac-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MOAC testnet - MOAC Blockchain Network -description: Explore MOAC testnet, a blockchain network with chain ID 201. Learn about its native currency, MOAC, and how to interact with the network. ---- - -# MOAC testnet - -MOAC testnet is a blockchain network with chain ID 201. - -## Network Details - -- **Chain ID**: 201 -- **Chain Name**: MOAC -- **Short Name**: moactest -- **Network ID**: 201 -- **Currency**: - - **Name**: MOAC - - **Symbol**: mc - - **Decimals**: 18 - -## RPC URLs - -MOAC testnet can be accessed through the following RPC endpoints: - -- https://gateway.moac.io/testnet - -## MOAC testnet Block Explorers - -- [moac testnet explorer](https://testnet.moac.io) - -## Additional Information - -- **Official Website**: https://moac.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MOAC testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/moac.mdx b/docs/pages/solutions/chainlist/non-integrated/moac.mdx deleted file mode 100644 index 8a201eeea3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moac.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MOAC mainnet - MOAC Blockchain Network -description: Explore MOAC mainnet, a blockchain network with chain ID 1099. Learn about its native currency, MOAC, and how to interact with the network. ---- - -# MOAC mainnet - -MOAC mainnet is a blockchain network with chain ID 1099. - -## Network Details - -- **Chain ID**: 1099 -- **Chain Name**: MOAC -- **Short Name**: moac -- **Network ID**: 1099 -- **Currency**: - - **Name**: MOAC - - **Symbol**: mc - - **Decimals**: 18 - -## RPC URLs - -MOAC mainnet can be accessed through the following RPC endpoints: - - - -## MOAC mainnet Block Explorers - -- [moac explorer](https://explorer.moac.io) - -## Additional Information - -- **Official Website**: https://moac.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mobl3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mobl3-testnet.mdx deleted file mode 100644 index d50c0d6911..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mobl3-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MOBL3 testnet - MOBL3 testnet Blockchain Network -description: Explore MOBL3 testnet, a blockchain network with chain ID 79685. Learn about its native currency, Ether, and how to interact with the network. ---- - -# MOBL3 testnet - -MOBL3 testnet is a blockchain network with chain ID 79685. - -## Network Details - -- **Chain ID**: 79685 -- **Chain Name**: MOBL3 testnet -- **Short Name**: MOBL3 testnet -- **Network ID**: 79685 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -MOBL3 testnet can be accessed through the following RPC endpoints: - -- https://sepolia.mobl3.xyz - -## MOBL3 testnet Block Explorers - -- [MOBL3 testnet Explorer](https://testnet.mobl3.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/79685 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MOBL3 testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mode-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mode-testnet.mdx deleted file mode 100644 index ab45486730..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mode-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Mode Testnet - ETH Blockchain Network -description: Explore Mode Testnet, a blockchain network with chain ID 919. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Mode Testnet - -Mode Testnet is a blockchain network with chain ID 919. - -## Network Details - -- **Chain ID**: 919 -- **Chain Name**: ETH -- **Short Name**: modesep -- **Network ID**: 919 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mode Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.mode.network - -## Mode Testnet Block Explorers - -- [modescout](https://sepolia.explorer.mode.network) - -## Additional Information - -- **Official Website**: https://docs.mode.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mode Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mode.mdx b/docs/pages/solutions/chainlist/non-integrated/mode.mdx deleted file mode 100644 index 265976aef3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mode.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Mode - ETH Blockchain Network -description: Explore Mode, a blockchain network with chain ID 34443. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Mode - -Mode is a blockchain network with chain ID 34443. - -## Network Details - -- **Chain ID**: 34443 -- **Chain Name**: ETH -- **Short Name**: mode -- **Network ID**: 34443 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Mode can be accessed through the following RPC endpoints: - -- https://mainnet.mode.network -- https://mode.drpc.org -- wss://mode.drpc.org - -## Mode Block Explorers - -- [modescout](https://explorer.mode.network) - -## Additional Information - -- **Official Website**: https://docs.mode.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/modularium.mdx b/docs/pages/solutions/chainlist/non-integrated/modularium.mdx deleted file mode 100644 index d8299ef405..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/modularium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Modularium - EVMCC Blockchain Network -description: Explore Modularium, a blockchain network with chain ID 776877. Learn about its native currency, Modularium, and how to interact with the network. ---- - -# Modularium - -Modularium is a blockchain network with chain ID 776877. - -## Network Details - -- **Chain ID**: 776877 -- **Chain Name**: EVMCC -- **Short Name**: mdlrm -- **Network ID**: 776877 -- **Currency**: - - **Name**: Modularium - - **Symbol**: MDM - - **Decimals**: 18 - -## RPC URLs - -Modularium can be accessed through the following RPC endpoints: - -- https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network - -## Modularium Block Explorers - -- [Tanssi Explorer](https://tanssi-evmexplorer.netlify.app/?rpcUrl=https://fraa-dancebox-3035-rpc.a.dancebox.tanssi.network) - -## Additional Information - -- **Official Website**: https://www.rmrk.app/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/molecular-peach-marlin.mdx b/docs/pages/solutions/chainlist/non-integrated/molecular-peach-marlin.mdx deleted file mode 100644 index a785754970..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/molecular-peach-marlin.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: molecular-peach-marlin - Avalanche Blockchain Network -description: Explore molecular-peach-marlin, a blockchain network with chain ID 9853. Learn about its native currency, molecular-peach-marlin Token, and how to interact with the network. ---- - -# molecular-peach-marlin - -molecular-peach-marlin is a blockchain network with chain ID 9853. - -## Network Details - -- **Chain ID**: 9853 -- **Chain Name**: Avalanche -- **Short Name**: molecular-peach-marlin -- **Network ID**: 9853 -- **Currency**: - - **Name**: molecular-peach-marlin Token - - **Symbol**: WOOOOOOOO - - **Decimals**: 18 - -## RPC URLs - -molecular-peach-marlin can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## molecular-peach-marlin Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## molecular-peach-marlin Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/molereum-network.mdx b/docs/pages/solutions/chainlist/non-integrated/molereum-network.mdx deleted file mode 100644 index bb5c2bfbcf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/molereum-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Molereum Network - ETH Blockchain Network -description: Explore Molereum Network, a blockchain network with chain ID 6022140761023. Learn about its native currency, Molereum Ether, and how to interact with the network. ---- - -# Molereum Network - -Molereum Network is a blockchain network with chain ID 6022140761023. - -## Network Details - -- **Chain ID**: 6022140761023 -- **Chain Name**: ETH -- **Short Name**: mole -- **Network ID**: 6022140761023 -- **Currency**: - - **Name**: Molereum Ether - - **Symbol**: MOLE - - **Decimals**: 18 - -## RPC URLs - -Molereum Network can be accessed through the following RPC endpoints: - -- https://molereum.jdubedition.com - -## Molereum Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Jdubedition/molereum - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonbase-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/moonbase-alpha.mdx deleted file mode 100644 index 7ef977e9d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonbase-alpha.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Moonbase Alpha - MOON Blockchain Network -description: Explore Moonbase Alpha, a blockchain network with chain ID 1287. Learn about its native currency, Dev, and how to interact with the network. ---- - -# Moonbase Alpha - -Moonbase Alpha is a blockchain network with chain ID 1287. - -## Network Details - -- **Chain ID**: 1287 -- **Chain Name**: MOON -- **Short Name**: mbase -- **Network ID**: 1287 -- **Currency**: - - **Name**: Dev - - **Symbol**: DEV - - **Decimals**: 18 - -## RPC URLs - -Moonbase Alpha can be accessed through the following RPC endpoints: - -- 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 - -## Moonbase Alpha Block Explorers - -- [moonscan](https://moonbase.moonscan.io) - -## Additional Information - -- **Official Website**: https://docs.moonbeam.network/learn/platform/networks/moonbase/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonbeam.mdx b/docs/pages/solutions/chainlist/non-integrated/moonbeam.mdx deleted file mode 100644 index 671f57e017..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonbeam.mdx +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Moonbeam - MOON Blockchain Network -description: Explore Moonbeam, a blockchain network with chain ID 1284. Learn about its native currency, Glimmer, and how to interact with the network. ---- - -# Moonbeam - -Moonbeam is a blockchain network with chain ID 1284. - -## Network Details - -- **Chain ID**: 1284 -- **Chain Name**: MOON -- **Short Name**: mbeam -- **Network ID**: 1284 -- **Currency**: - - **Name**: Glimmer - - **Symbol**: GLMR - - **Decimals**: 18 - -## RPC URLs - -Moonbeam can be accessed through the following RPC endpoints: - -- 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 - -## Moonbeam Block Explorers - -- [moonscan](https://moonbeam.moonscan.io) - -## Additional Information - -- **Official Website**: https://moonbeam.network/networks/moonbeam/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonchain-geneva-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/moonchain-geneva-testnet.mdx deleted file mode 100644 index 50f2cfb516..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonchain-geneva-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Moonchain Geneva Testnet - MXC zkEVM Blockchain Network -description: Explore Moonchain Geneva Testnet, a blockchain network with chain ID 5167004. Learn about its native currency, Moonchain Geneva Testnet, and how to interact with the network. ---- - -# Moonchain Geneva Testnet - -Moonchain Geneva Testnet is a blockchain network with chain ID 5167004. - -## Network Details - -- **Chain ID**: 5167004 -- **Chain Name**: MXC zkEVM -- **Short Name**: MXC -- **Network ID**: 5167004 -- **Currency**: - - **Name**: Moonchain Geneva Testnet - - **Symbol**: MXC - - **Decimals**: 18 - -## RPC URLs - -Moonchain Geneva Testnet can be accessed through the following RPC endpoints: - -- https://geneva-rpc.moonchain.com - -## Moonchain Geneva Testnet Block Explorers - -- [Moonchain Geneva Testnet](https://geneva-explorer.moonchain.com) - -## Additional Information - -- **Official Website**: https://doc.mxc.com/docs/intro - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Moonchain Geneva Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonriver.mdx b/docs/pages/solutions/chainlist/non-integrated/moonriver.mdx deleted file mode 100644 index 15c68514f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonriver.mdx +++ /dev/null @@ -1,50 +0,0 @@ ---- -title: Moonriver - MOON Blockchain Network -description: Explore Moonriver, a blockchain network with chain ID 1285. Learn about its native currency, Moonriver, and how to interact with the network. ---- - -# Moonriver - -Moonriver is a blockchain network with chain ID 1285. - -## Network Details - -- **Chain ID**: 1285 -- **Chain Name**: MOON -- **Short Name**: mriver -- **Network ID**: 1285 -- **Currency**: - - **Name**: Moonriver - - **Symbol**: MOVR - - **Decimals**: 18 - -## RPC URLs - -Moonriver can be accessed through the following RPC endpoints: - -- 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 - -## Moonriver Block Explorers - -- [moonscan](https://moonriver.moonscan.io) - -## Additional Information - -- **Official Website**: https://moonbeam.network/networks/moonriver/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonrock-old.mdx b/docs/pages/solutions/chainlist/non-integrated/moonrock-old.mdx deleted file mode 100644 index 9731991e19..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonrock-old.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Moonrock old - MOON Blockchain Network -description: Explore Moonrock old, a blockchain network with chain ID 1286. Learn about its native currency, Rocs, and how to interact with the network. ---- - -# Moonrock old - -Moonrock old is a blockchain network with chain ID 1286. - -## Network Details - -- **Chain ID**: 1286 -- **Chain Name**: MOON -- **Short Name**: mrock-old -- **Network ID**: 1286 -- **Currency**: - - **Name**: Rocs - - **Symbol**: ROC - - **Decimals**: 18 - -## RPC URLs - -Moonrock old can be accessed through the following RPC endpoints: - - - -## Moonrock old Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonrock.mdx b/docs/pages/solutions/chainlist/non-integrated/moonrock.mdx deleted file mode 100644 index 139ac0ff8e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonrock.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Moonrock - MOON Blockchain Network -description: Explore Moonrock, a blockchain network with chain ID 1288. Learn about its native currency, Rocs, and how to interact with the network. ---- - -# Moonrock - -Moonrock is a blockchain network with chain ID 1288. - -## Network Details - -- **Chain ID**: 1288 -- **Chain Name**: MOON -- **Short Name**: mrock -- **Network ID**: 1288 -- **Currency**: - - **Name**: Rocs - - **Symbol**: ROC - - **Decimals**: 18 - -## RPC URLs - -Moonrock can be accessed through the following RPC endpoints: - -- https://rpc.api.moonrock.moonbeam.network -- wss://wss.api.moonrock.moonbeam.network - -## Moonrock Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.moonbeam.network/learn/platform/networks/overview/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/moonsama-network.mdx b/docs/pages/solutions/chainlist/non-integrated/moonsama-network.mdx deleted file mode 100644 index abe7e73583..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/moonsama-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Moonsama Network - MSN Blockchain Network -description: Explore Moonsama Network, a blockchain network with chain ID 2199. Learn about its native currency, Sama Token, and how to interact with the network. ---- - -# Moonsama Network - -Moonsama Network is a blockchain network with chain ID 2199. - -## Network Details - -- **Chain ID**: 2199 -- **Chain Name**: MSN -- **Short Name**: msn -- **Network ID**: 2199 -- **Currency**: - - **Name**: Sama Token - - **Symbol**: SAMA - - **Decimals**: 18 - -## RPC URLs - -Moonsama Network can be accessed through the following RPC endpoints: - -- https://rpc.moonsama.com -- wss://rpc.moonsama.com/ws - -## Moonsama Network Block Explorers - -- [blockscout](https://explorer.moonsama.com) - -## Additional Information - -- **Official Website**: https://moonsama.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/morden-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/morden-testnet.mdx deleted file mode 100644 index caa8543d4d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/morden-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Morden Testnet - ETC Blockchain Network -description: Explore Morden Testnet, a blockchain network with chain ID 62. Learn about its native currency, Morden Ether, and how to interact with the network. ---- - -# Morden Testnet - -Morden Testnet is a blockchain network with chain ID 62. - -## Network Details - -- **Chain ID**: 62 -- **Chain Name**: ETC -- **Short Name**: tetc -- **Network ID**: 62 -- **Currency**: - - **Name**: Morden Ether - - **Symbol**: TETC - - **Decimals**: 18 - -## RPC URLs - -Morden Testnet can be accessed through the following RPC endpoints: - - - -## Morden Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethereumclassic.org/development/testnets - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Morden Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mordor-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mordor-testnet.mdx deleted file mode 100644 index 198aacadaa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mordor-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Mordor Testnet - ETC Blockchain Network -description: Explore Mordor Testnet, a blockchain network with chain ID 63. Learn about its native currency, Mordor Ether, and how to interact with the network. ---- - -# Mordor Testnet - -Mordor Testnet is a blockchain network with chain ID 63. - -## Network Details - -- **Chain ID**: 63 -- **Chain Name**: ETC -- **Short Name**: metc -- **Network ID**: 63 -- **Currency**: - - **Name**: Mordor Ether - - **Symbol**: METC - - **Decimals**: 18 - -## RPC URLs - -Mordor Testnet can be accessed through the following RPC endpoints: - -- https://rpc.mordor.etccooperative.org -- https://geth-mordor.etc-network.info - -## Mordor Testnet Block Explorers - -- [blockscout-mordor](https://etc-mordor.blockscout.com) -- [etcnetworkinfo-expedition-mordor](https://explorer-expedition.etc-network.info/?network=Ethereum+Classic+at+etc-network.info+GETH+Mordor) - -## Additional Information - -- **Official Website**: https://ethereumclassic.org/development/testnets - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mordor Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/morph-holesky.mdx b/docs/pages/solutions/chainlist/non-integrated/morph-holesky.mdx deleted file mode 100644 index 6905faa073..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/morph-holesky.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Morph Holesky - ETH Blockchain Network -description: Explore Morph Holesky, a blockchain network with chain ID 2810. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Morph Holesky - -Morph Holesky is a blockchain network with chain ID 2810. - -## Network Details - -- **Chain ID**: 2810 -- **Chain Name**: ETH -- **Short Name**: hmorph -- **Network ID**: 2810 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Morph Holesky can be accessed through the following RPC endpoints: - -- https://rpc-quicknode-holesky.morphl2.io -- wss://rpc-quicknode-holesky.morphl2.io -- https://rpc-holesky.morphl2.io - -## Morph Holesky Block Explorers - -- [Morph Holesky Testnet Explorer](https://explorer-holesky.morphl2.io) - -## Additional Information - -- **Official Website**: https://morphl2.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Morph Holesky Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/morph-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/morph-testnet.mdx deleted file mode 100644 index 2e64a443ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/morph-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Morph Testnet - ETH Blockchain Network -description: Explore Morph Testnet, a blockchain network with chain ID 2710. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Morph Testnet - -Morph Testnet is a blockchain network with chain ID 2710. - -## Network Details - -- **Chain ID**: 2710 -- **Chain Name**: ETH -- **Short Name**: tmorph -- **Network ID**: 2710 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Morph Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.morphl2.io - -## Morph Testnet Block Explorers - -- [Morph Testnet Explorer](https://explorer-testnet.morphl2.io) - -## Additional Information - -- **Official Website**: https://morphl2.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Morph Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/movement-evm-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/movement-evm-devnet.mdx deleted file mode 100644 index 0fb55373dd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/movement-evm-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Movement EVM Devnet - MOVE Blockchain Network -description: Explore Movement EVM Devnet, a blockchain network with chain ID 30731. Learn about its native currency, Move, and how to interact with the network. ---- - -# Movement EVM Devnet - -Movement EVM Devnet is a blockchain network with chain ID 30731. - -## Network Details - -- **Chain ID**: 30731 -- **Chain Name**: MOVE -- **Short Name**: movedev -- **Network ID**: 30731 -- **Currency**: - - **Name**: Move - - **Symbol**: MOVE - - **Decimals**: 18 - -## RPC URLs - -Movement EVM Devnet can be accessed through the following RPC endpoints: - - - -## Movement EVM Devnet Block Explorers - -- [mevm explorer](https://explorer.movementlabs.xyz) - -## Additional Information - -- **Official Website**: https://movementlabs.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/movement-evm-legacy.mdx b/docs/pages/solutions/chainlist/non-integrated/movement-evm-legacy.mdx deleted file mode 100644 index 0675325e2c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/movement-evm-legacy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Movement EVM Legacy - MOVE Blockchain Network -description: Explore Movement EVM Legacy, a blockchain network with chain ID 30730. Learn about its native currency, Move, and how to interact with the network. ---- - -# Movement EVM Legacy - -Movement EVM Legacy is a blockchain network with chain ID 30730. - -## Network Details - -- **Chain ID**: 30730 -- **Chain Name**: MOVE -- **Short Name**: moveleg -- **Network ID**: 30730 -- **Currency**: - - **Name**: Move - - **Symbol**: MOVE - - **Decimals**: 18 - -## RPC URLs - -Movement EVM Legacy can be accessed through the following RPC endpoints: - - - -## Movement EVM Legacy Block Explorers - -- [mevm explorer](https://explorer.movementlabs.xyz) - -## Additional Information - -- **Official Website**: https://movementlabs.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/movement-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/movement-evm-testnet.mdx deleted file mode 100644 index 02ac617db4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/movement-evm-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Movement EVM Testnet - MOVE Blockchain Network -description: Explore Movement EVM Testnet, a blockchain network with chain ID 30732. Learn about its native currency, Move, and how to interact with the network. ---- - -# Movement EVM Testnet - -Movement EVM Testnet is a blockchain network with chain ID 30732. - -## Network Details - -- **Chain ID**: 30732 -- **Chain Name**: MOVE -- **Short Name**: movetest -- **Network ID**: 30732 -- **Currency**: - - **Name**: Move - - **Symbol**: MOVE - - **Decimals**: 18 - -## RPC URLs - -Movement EVM Testnet can be accessed through the following RPC endpoints: - -- https://mevm.devnet.imola.movementlabs.xyz -- https://mevm.testnet.imola.movementlabs.xyz - -## Movement EVM Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://movementlabs.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Movement EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/movement-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/movement-evm.mdx deleted file mode 100644 index ee764b24bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/movement-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Movement EVM - MOVE Blockchain Network -description: Explore Movement EVM, a blockchain network with chain ID 3073. Learn about its native currency, Move, and how to interact with the network. ---- - -# Movement EVM - -Movement EVM is a blockchain network with chain ID 3073. - -## Network Details - -- **Chain ID**: 3073 -- **Chain Name**: MOVE -- **Short Name**: move -- **Network ID**: 3073 -- **Currency**: - - **Name**: Move - - **Symbol**: MOVE - - **Decimals**: 18 - -## RPC URLs - -Movement EVM can be accessed through the following RPC endpoints: - - - -## Movement EVM Block Explorers - -- [mevm explorer](https://explorer.movementlabs.xyz) - -## Additional Information - -- **Official Website**: https://movementlabs.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/movo-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/movo-smart-chain.mdx deleted file mode 100644 index 387afec414..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/movo-smart-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Movo Smart Chain Mainnet - MOVO Blockchain Network -description: Explore Movo Smart Chain Mainnet, a blockchain network with chain ID 2049. Learn about its native currency, Movo Smart Chain, and how to interact with the network. ---- - -# Movo Smart Chain Mainnet - -Movo Smart Chain Mainnet is a blockchain network with chain ID 2049. - -## Network Details - -- **Chain ID**: 2049 -- **Chain Name**: MOVO -- **Short Name**: movo -- **Network ID**: 2049 -- **Currency**: - - **Name**: Movo Smart Chain - - **Symbol**: MOVO - - **Decimals**: 18 - -## RPC URLs - -Movo Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://msc-rpc.movoscan.com -- https://msc-rpc.movochain.org -- https://msc-rpc.movoswap.com - -## Movo Smart Chain Mainnet Block Explorers - -- [movoscan](https://movoscan.com) - -## Additional Information - -- **Official Website**: https://movo.uk - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mt-1121-2.mdx b/docs/pages/solutions/chainlist/non-integrated/mt-1121-2.mdx deleted file mode 100644 index 9b7a51ee97..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mt-1121-2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MT 1121-2 - Avalanche Blockchain Network -description: Explore MT 1121-2, a blockchain network with chain ID 63079. Learn about its native currency, MT 1121-2 Token, and how to interact with the network. ---- - -# MT 1121-2 - -MT 1121-2 is a blockchain network with chain ID 63079. - -## Network Details - -- **Chain ID**: 63079 -- **Chain Name**: Avalanche -- **Short Name**: MT 1121-2 -- **Network ID**: 63079 -- **Currency**: - - **Name**: MT 1121-2 Token - - **Symbol**: RCE - - **Decimals**: 18 - -## RPC URLs - -MT 1121-2 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/d76ea66a-e423-49f6-8ef1-4355260b47f1 - -## MT 1121-2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MT 1121-2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mugen-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mugen-testnet.mdx deleted file mode 100644 index cbea76cb35..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mugen-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MUGEN Testnet - Avalanche Blockchain Network -description: Explore MUGEN Testnet, a blockchain network with chain ID 30406. Learn about its native currency, MUGEN Testnet Token, and how to interact with the network. ---- - -# MUGEN Testnet - -MUGEN Testnet is a blockchain network with chain ID 30406. - -## Network Details - -- **Chain ID**: 30406 -- **Chain Name**: Avalanche -- **Short Name**: MUGEN Testnet -- **Network ID**: 30406 -- **Currency**: - - **Name**: MUGEN Testnet Token - - **Symbol**: MGN - - **Decimals**: 18 - -## RPC URLs - -MUGEN Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/mugen/testnet/rpc - -## MUGEN Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MUGEN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/multivac.mdx b/docs/pages/solutions/chainlist/non-integrated/multivac.mdx deleted file mode 100644 index 3ac01210c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/multivac.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MultiVAC Mainnet - MultiVAC Blockchain Network -description: Explore MultiVAC Mainnet, a blockchain network with chain ID 62621. Learn about its native currency, MultiVAC, and how to interact with the network. ---- - -# MultiVAC Mainnet - -MultiVAC Mainnet is a blockchain network with chain ID 62621. - -## Network Details - -- **Chain ID**: 62621 -- **Chain Name**: MultiVAC -- **Short Name**: mtv -- **Network ID**: 62621 -- **Currency**: - - **Name**: MultiVAC - - **Symbol**: MTV - - **Decimals**: 18 - -## RPC URLs - -MultiVAC Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mtv.ac -- https://rpc-eu.mtv.ac - -## MultiVAC Mainnet Block Explorers - -- [MultiVAC Explorer](https://e.mtv.ac) - -## Additional Information - -- **Official Website**: https://mtv.ac - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mumbai.mdx b/docs/pages/solutions/chainlist/non-integrated/mumbai.mdx deleted file mode 100644 index 42756f2d5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mumbai.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Mumbai - Polygon Blockchain Network -description: Explore Mumbai, a blockchain network with chain ID 80001. Learn about its native currency, MATIC, and how to interact with the network. ---- - -# Mumbai - -Mumbai is a blockchain network with chain ID 80001. - -## Network Details - -- **Chain ID**: 80001 -- **Chain Name**: Polygon -- **Short Name**: maticmum -- **Network ID**: 80001 -- **Currency**: - - **Name**: MATIC - - **Symbol**: MATIC - - **Decimals**: 18 - -## RPC URLs - -Mumbai can be accessed through the following RPC endpoints: - -- 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 - -## Mumbai Block Explorers - -- [polygonscan](https://mumbai.polygonscan.com) - -## Additional Information - -- **Official Website**: https://polygon.technology/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Mumbai Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/munode-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/munode-testnet.mdx deleted file mode 100644 index 22437ae583..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/munode-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: muNode Testnet - munode Blockchain Network -description: Explore muNode Testnet, a blockchain network with chain ID 956. Learn about its native currency, Ether, and how to interact with the network. ---- - -# muNode Testnet - -muNode Testnet is a blockchain network with chain ID 956. - -## Network Details - -- **Chain ID**: 956 -- **Chain Name**: munode -- **Short Name**: munode -- **Network ID**: 956 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -muNode Testnet can be accessed through the following RPC endpoints: - - - -## muNode Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://munode.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## muNode Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/musicoin.mdx b/docs/pages/solutions/chainlist/non-integrated/musicoin.mdx deleted file mode 100644 index baa95c07b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/musicoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Musicoin - MUSIC Blockchain Network -description: Explore Musicoin, a blockchain network with chain ID 7762959. Learn about its native currency, Musicoin, and how to interact with the network. ---- - -# Musicoin - -Musicoin is a blockchain network with chain ID 7762959. - -## Network Details - -- **Chain ID**: 7762959 -- **Chain Name**: MUSIC -- **Short Name**: music -- **Network ID**: 7762959 -- **Currency**: - - **Name**: Musicoin - - **Symbol**: MUSIC - - **Decimals**: 18 - -## RPC URLs - -Musicoin can be accessed through the following RPC endpoints: - -- https://mewapi.musicoin.tw - -## Musicoin Block Explorers - - - -## Additional Information - -- **Official Website**: https://musicoin.tw - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/muster.mdx b/docs/pages/solutions/chainlist/non-integrated/muster.mdx deleted file mode 100644 index 470cff910f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/muster.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Muster Mainnet - Muster Blockchain Network -description: Explore Muster Mainnet, a blockchain network with chain ID 4078. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Muster Mainnet - -Muster Mainnet is a blockchain network with chain ID 4078. - -## Network Details - -- **Chain ID**: 4078 -- **Chain Name**: Muster -- **Short Name**: muster -- **Network ID**: 4078 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Muster Mainnet can be accessed through the following RPC endpoints: - -- https://muster.alt.technology - -## Muster Mainnet Block Explorers - -- [Musterscan](https://muster-explorer.alt.technology) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mxc-wannsee-zkevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mxc-wannsee-zkevm-testnet.mdx deleted file mode 100644 index 4a250690e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mxc-wannsee-zkevm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MXC Wannsee zkEVM Testnet - MXC zkEVM Blockchain Network -description: Explore MXC Wannsee zkEVM Testnet, a blockchain network with chain ID 5167003. Learn about its native currency, MXC Wannsee zkEVM Testnet, and how to interact with the network. ---- - -# MXC Wannsee zkEVM Testnet - -MXC Wannsee zkEVM Testnet is a blockchain network with chain ID 5167003. - -## Network Details - -- **Chain ID**: 5167003 -- **Chain Name**: MXC zkEVM -- **Short Name**: MXCdiscontinued -- **Network ID**: 5167003 -- **Currency**: - - **Name**: MXC Wannsee zkEVM Testnet - - **Symbol**: MXC - - **Decimals**: 18 - -## RPC URLs - -MXC Wannsee zkEVM Testnet can be accessed through the following RPC endpoints: - -- https://wannsee-rpc.mxc.com - -## MXC Wannsee zkEVM Testnet Block Explorers - -- [MXC Wannsee zkEVM Testnet](https://wannsee-explorer.mxc.com) - -## Additional Information - -- **Official Website**: https://wannsee.mxc.com/docs/intro - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MXC Wannsee zkEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mxc-zkevm-moonchain.mdx b/docs/pages/solutions/chainlist/non-integrated/mxc-zkevm-moonchain.mdx deleted file mode 100644 index 774a426cf5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mxc-zkevm-moonchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: MXC zkEVM Moonchain - MXC zkEVM Blockchain Network -description: Explore MXC zkEVM Moonchain, a blockchain network with chain ID 18686. Learn about its native currency, MXC zkEVM Moonchain, and how to interact with the network. ---- - -# MXC zkEVM Moonchain - -MXC zkEVM Moonchain is a blockchain network with chain ID 18686. - -## Network Details - -- **Chain ID**: 18686 -- **Chain Name**: MXC zkEVM -- **Short Name**: MXCzkEVM -- **Network ID**: 18686 -- **Currency**: - - **Name**: MXC zkEVM Moonchain - - **Symbol**: MXC - - **Decimals**: 18 - -## RPC URLs - -MXC zkEVM Moonchain can be accessed through the following RPC endpoints: - -- https://rpc.mxc.com - -## MXC zkEVM Moonchain Block Explorers - -- [MXC zkEVM Moonchain](https://explorer.moonchain.com) - -## Additional Information - -- **Official Website**: https://doc.mxc.com/docs/intro - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/mxs-games-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/mxs-games-testnet.mdx deleted file mode 100644 index 0539ec56cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mxs-games-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MXS Games Testnet - Avalanche Blockchain Network -description: Explore MXS Games Testnet, a blockchain network with chain ID 78170. Learn about its native currency, MXS Games Testnet Token, and how to interact with the network. ---- - -# MXS Games Testnet - -MXS Games Testnet is a blockchain network with chain ID 78170. - -## Network Details - -- **Chain ID**: 78170 -- **Chain Name**: Avalanche -- **Short Name**: MXS Games Testnet -- **Network ID**: 78170 -- **Currency**: - - **Name**: MXS Games Testnet Token - - **Symbol**: XSEED - - **Decimals**: 18 - -## RPC URLs - -MXS Games Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/mxsgameste/testnet/rpc - -## MXS Games Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MXS Games Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/my-test-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/my-test-chain.mdx deleted file mode 100644 index a7cd819391..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/my-test-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: my-test-chain - my-test-chain Blockchain Network -description: Explore my-test-chain, a blockchain network with chain ID 32833. Learn about its native currency, Ether, and how to interact with the network. ---- - -# my-test-chain - -my-test-chain is a blockchain network with chain ID 32833. - -## Network Details - -- **Chain ID**: 32833 -- **Chain Name**: my-test-chain -- **Short Name**: my-test-chain -- **Network ID**: 32833 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -my-test-chain can be accessed through the following RPC endpoints: - -- https://rpc-my-test-chain-tq9esy4qf1.t.conduit.xyz - -## my-test-chain Block Explorers - -- [my-test-chain Explorer](https://explorer-my-test-chain-tq9esy4qf1.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/32833 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## my-test-chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/myown-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/myown-testnet.mdx deleted file mode 100644 index 780f0404b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/myown-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: myOwn Testnet - myOwn Blockchain Network -description: Explore myOwn Testnet, a blockchain network with chain ID 9999. Learn about its native currency, MYN, and how to interact with the network. ---- - -# myOwn Testnet - -myOwn Testnet is a blockchain network with chain ID 9999. - -## Network Details - -- **Chain ID**: 9999 -- **Chain Name**: myOwn -- **Short Name**: myn -- **Network ID**: 9999 -- **Currency**: - - **Name**: MYN - - **Symbol**: MYN - - **Decimals**: 18 - -## RPC URLs - -myOwn Testnet can be accessed through the following RPC endpoints: - -- https://geth.dev.bccloud.net - -## myOwn Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.bccloud.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## myOwn Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/mythical-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/mythical-chain.mdx deleted file mode 100644 index acc1acf047..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/mythical-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Mythical Chain - MYTH Blockchain Network -description: Explore Mythical Chain, a blockchain network with chain ID 201804. Learn about its native currency, Mythos, and how to interact with the network. ---- - -# Mythical Chain - -Mythical Chain is a blockchain network with chain ID 201804. - -## Network Details - -- **Chain ID**: 201804 -- **Chain Name**: MYTH -- **Short Name**: myth -- **Network ID**: 201804 -- **Currency**: - - **Name**: Mythos - - **Symbol**: MYTH - - **Decimals**: 18 - -## RPC URLs - -Mythical Chain can be accessed through the following RPC endpoints: - -- https://chain-rpc.mythicalgames.com - -## Mythical Chain Block Explorers - -- [Mythical Chain Explorer](https://explorer.mythicalgames.com) - -## Additional Information - -- **Official Website**: https://mythicalgames.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nahmii-2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nahmii-2-testnet.mdx deleted file mode 100644 index 7511c3de16..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nahmii-2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nahmii 2 Testnet - Nahmii Blockchain Network -description: Explore Nahmii 2 Testnet, a blockchain network with chain ID 5553. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nahmii 2 Testnet - -Nahmii 2 Testnet is a blockchain network with chain ID 5553. - -## Network Details - -- **Chain ID**: 5553 -- **Chain Name**: Nahmii -- **Short Name**: NahmiiTestnet -- **Network ID**: 5553 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nahmii 2 Testnet can be accessed through the following RPC endpoints: - -- https://l2.testnet.nahmii.io - -## Nahmii 2 Testnet Block Explorers - -- [blockscout](https://explorer.testnet.nahmii.io) - -## Additional Information - -- **Official Website**: https://nahmii.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nahmii 2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nahmii-2.mdx b/docs/pages/solutions/chainlist/non-integrated/nahmii-2.mdx deleted file mode 100644 index b75302c0b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nahmii-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nahmii 2 Mainnet - Nahmii Blockchain Network -description: Explore Nahmii 2 Mainnet, a blockchain network with chain ID 5551. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nahmii 2 Mainnet - -Nahmii 2 Mainnet is a blockchain network with chain ID 5551. - -## Network Details - -- **Chain ID**: 5551 -- **Chain Name**: Nahmii -- **Short Name**: Nahmii -- **Network ID**: 5551 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nahmii 2 Mainnet can be accessed through the following RPC endpoints: - -- https://l2.nahmii.io - -## Nahmii 2 Mainnet Block Explorers - -- [Nahmii 2 Mainnet Explorer](https://explorer.n2.nahmii.io) - -## Additional Information - -- **Official Website**: https://nahmii.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nahmii-3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nahmii-3-testnet.mdx deleted file mode 100644 index a88d586823..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nahmii-3-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nahmii 3 Testnet - Nahmii Blockchain Network -description: Explore Nahmii 3 Testnet, a blockchain network with chain ID 4062. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Nahmii 3 Testnet - -Nahmii 3 Testnet is a blockchain network with chain ID 4062. - -## Network Details - -- **Chain ID**: 4062 -- **Chain Name**: Nahmii -- **Short Name**: Nahmii3Testnet -- **Network ID**: 4062 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nahmii 3 Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.nahmii.io - -## Nahmii 3 Testnet Block Explorers - -- [Nahmii 3 Testnet Explorer](https://explorer.testnet.nahmii.io) - -## Additional Information - -- **Official Website**: https://nahmii.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nahmii 3 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nahmii-3.mdx b/docs/pages/solutions/chainlist/non-integrated/nahmii-3.mdx deleted file mode 100644 index 5e24381c7d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nahmii-3.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nahmii 3 Mainnet - Nahmii Blockchain Network -description: Explore Nahmii 3 Mainnet, a blockchain network with chain ID 4061. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nahmii 3 Mainnet - -Nahmii 3 Mainnet is a blockchain network with chain ID 4061. - -## Network Details - -- **Chain ID**: 4061 -- **Chain Name**: Nahmii -- **Short Name**: Nahmii3Mainnet -- **Network ID**: 4061 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nahmii 3 Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.n3.nahmii.io - -## Nahmii 3 Mainnet Block Explorers - -- [Nahmii 3 Mainnet Explorer](https://explorer.nahmii.io) - -## Additional Information - -- **Official Website**: https://nahmii.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nal-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nal-sepolia-testnet.mdx deleted file mode 100644 index 8b4c861212..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nal-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nal Sepolia Testnet - ETH Blockchain Network -description: Explore Nal Sepolia Testnet, a blockchain network with chain ID 328527624. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Nal Sepolia Testnet - -Nal Sepolia Testnet is a blockchain network with chain ID 328527624. - -## Network Details - -- **Chain ID**: 328527624 -- **Chain Name**: ETH -- **Short Name**: nalsep -- **Network ID**: 328527624 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nal Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.nal.network - -## Nal Sepolia Testnet Block Explorers - -- [Nal Sepolia Testnet Network Explorer](https://testnet-scan.nal.network) - -## Additional Information - -- **Official Website**: https://www.nal.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nal Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nal.mdx b/docs/pages/solutions/chainlist/non-integrated/nal.mdx deleted file mode 100644 index cf27108b47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nal.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nal Mainnet - ETH Blockchain Network -description: Explore Nal Mainnet, a blockchain network with chain ID 328527. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nal Mainnet - -Nal Mainnet is a blockchain network with chain ID 328527. - -## Network Details - -- **Chain ID**: 328527 -- **Chain Name**: ETH -- **Short Name**: nal -- **Network ID**: 328527 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nal Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.nal.network -- wss://wss.nal.network - -## Nal Mainnet Block Explorers - -- [Nal Network Explorer](https://scan.nal.network) - -## Additional Information - -- **Official Website**: https://www.nal.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/namefi-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/namefi-chain.mdx deleted file mode 100644 index 691fbfecd0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/namefi-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Namefi Chain Mainnet - NFIC Blockchain Network -description: Explore Namefi Chain Mainnet, a blockchain network with chain ID 132. Learn about its native currency, Namefi Coin, and how to interact with the network. ---- - -# Namefi Chain Mainnet - -Namefi Chain Mainnet is a blockchain network with chain ID 132. - -## Network Details - -- **Chain ID**: 132 -- **Chain Name**: NFIC -- **Short Name**: nfic -- **Network ID**: 132 -- **Currency**: - - **Name**: Namefi Coin - - **Symbol**: NFIC - - **Decimals**: 18 - -## RPC URLs - -Namefi Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.chain.namefi.io - -## Namefi Chain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://namefi.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nanon-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/nanon-sepolia.mdx deleted file mode 100644 index ff6eab3c6e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nanon-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nanon Sepolia - ETH Blockchain Network -description: Explore Nanon Sepolia, a blockchain network with chain ID 27483. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Nanon Sepolia - -Nanon Sepolia is a blockchain network with chain ID 27483. - -## Network Details - -- **Chain ID**: 27483 -- **Chain Name**: ETH -- **Short Name**: Nanon-Testnet -- **Network ID**: 27483 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nanon Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia-rpc.nanon.network - -## Nanon Sepolia Block Explorers - -- [Nanon Sepolia Rollup Testnet Explorer](https://sepolia-explorer.nanon.network) - -## Additional Information - -- **Official Website**: https://www.nanon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nanon Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nanon.mdx b/docs/pages/solutions/chainlist/non-integrated/nanon.mdx deleted file mode 100644 index a6dce24287..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nanon.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nanon - ETH Blockchain Network -description: Explore Nanon, a blockchain network with chain ID 2748. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nanon - -Nanon is a blockchain network with chain ID 2748. - -## Network Details - -- **Chain ID**: 2748 -- **Chain Name**: ETH -- **Short Name**: Nanon -- **Network ID**: 2748 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nanon can be accessed through the following RPC endpoints: - -- https://rpc.nanon.network - -## Nanon Block Explorers - -- [Nanon Rollup Explorer](https://explorer.nanon.network) - -## Additional Information - -- **Official Website**: https://www.nanon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nativ3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nativ3-testnet.mdx deleted file mode 100644 index 63dc06a70b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nativ3-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Nativ3 Testnet - N3-Test Blockchain Network -description: Explore Nativ3 Testnet, a blockchain network with chain ID 333333. Learn about its native currency, USNT, and how to interact with the network. ---- - -# Nativ3 Testnet - -Nativ3 Testnet is a blockchain network with chain ID 333333. - -## Network Details - -- **Chain ID**: 333333 -- **Chain Name**: N3-Test -- **Short Name**: N3-Test -- **Network ID**: 333333 -- **Currency**: - - **Name**: USNT - - **Symbol**: USNT - - **Decimals**: 18 - -## RPC URLs - -Nativ3 Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.nativ3.network -- wss://wstest.nativ3.network - -## Nativ3 Testnet Block Explorers - -- [Nativ3 Test Explorer](https://scantest.nativ3.network) - -## Additional Information - -- **Official Website**: https://nativ3.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nativ3 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nativ3.mdx b/docs/pages/solutions/chainlist/non-integrated/nativ3.mdx deleted file mode 100644 index cfdc9c54b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nativ3.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nativ3 Mainnet - Nativ3 Blockchain Network -description: Explore Nativ3 Mainnet, a blockchain network with chain ID 399. Learn about its native currency, USNT, and how to interact with the network. ---- - -# Nativ3 Mainnet - -Nativ3 Mainnet is a blockchain network with chain ID 399. - -## Network Details - -- **Chain ID**: 399 -- **Chain Name**: Nativ3 -- **Short Name**: N3 -- **Network ID**: 399 -- **Currency**: - - **Name**: USNT - - **Symbol**: USNT - - **Decimals**: 18 - -## RPC URLs - -Nativ3 Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.nativ3.network -- wss://ws.nativ3.network - -## Nativ3 Mainnet Block Explorers - -- [N3scan](https://scan.nativ3.network) - -## Additional Information - -- **Official Website**: https://nativ3.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nautilus-proteus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nautilus-proteus-testnet.mdx deleted file mode 100644 index 6b62a09752..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nautilus-proteus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nautilus Proteus Testnet - ETH Blockchain Network -description: Explore Nautilus Proteus Testnet, a blockchain network with chain ID 88002. Learn about its native currency, Zebec Test Token, and how to interact with the network. ---- - -# Nautilus Proteus Testnet - -Nautilus Proteus Testnet is a blockchain network with chain ID 88002. - -## Network Details - -- **Chain ID**: 88002 -- **Chain Name**: ETH -- **Short Name**: NAUTTest -- **Network ID**: 88002 -- **Currency**: - - **Name**: Zebec Test Token - - **Symbol**: tZBC - - **Decimals**: 18 - -## RPC URLs - -Nautilus Proteus Testnet can be accessed through the following RPC endpoints: - -- https://api.proteus.nautchain.xyz/solana - -## Nautilus Proteus Testnet Block Explorers - -- [Nautscan](https://proteus.nautscan.com) - -## Additional Information - -- **Official Website**: https://docs.nautchain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nautilus Proteus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nautilus-trition-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/nautilus-trition-chain.mdx deleted file mode 100644 index 34e151d641..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nautilus-trition-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nautilus Trition Chain - ETH Blockchain Network -description: Explore Nautilus Trition Chain, a blockchain network with chain ID 91002. Learn about its native currency, Nautilus Zebec Testnet Tokens, and how to interact with the network. ---- - -# Nautilus Trition Chain - -Nautilus Trition Chain is a blockchain network with chain ID 91002. - -## Network Details - -- **Chain ID**: 91002 -- **Chain Name**: ETH -- **Short Name**: NAUT -- **Network ID**: 91002 -- **Currency**: - - **Name**: Nautilus Zebec Testnet Tokens - - **Symbol**: tZBC - - **Decimals**: 18 - -## RPC URLs - -Nautilus Trition Chain can be accessed through the following RPC endpoints: - -- https://triton.api.nautchain.xyz - -## Nautilus Trition Chain Block Explorers - -- [Nautscan](https://triton.nautscan.com) - -## Additional Information - -- **Official Website**: https://docs.nautchain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nautilus Trition Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nautilus.mdx b/docs/pages/solutions/chainlist/non-integrated/nautilus.mdx deleted file mode 100644 index 4446cf9a33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nautilus.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nautilus Mainnet - ETH Blockchain Network -description: Explore Nautilus Mainnet, a blockchain network with chain ID 22222. Learn about its native currency, Zebec, and how to interact with the network. ---- - -# Nautilus Mainnet - -Nautilus Mainnet is a blockchain network with chain ID 22222. - -## Network Details - -- **Chain ID**: 22222 -- **Chain Name**: ETH -- **Short Name**: NAUTCHAIN -- **Network ID**: 22222 -- **Currency**: - - **Name**: Zebec - - **Symbol**: ZBC - - **Decimals**: 18 - -## RPC URLs - -Nautilus Mainnet can be accessed through the following RPC endpoints: - -- https://api.nautilus.nautchain.xyz - -## Nautilus Mainnet Block Explorers - -- [Nautscan](https://nautscan.com) - -## Additional Information - -- **Official Website**: https://docs.nautchain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/near-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/near-testnet.mdx deleted file mode 100644 index c11bdea9a3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/near-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Near Testnet - NEAR Blockchain Network -description: Explore Near Testnet, a blockchain network with chain ID 398. Learn about its native currency, Testnet NEAR, and how to interact with the network. ---- - -# Near Testnet - -Near Testnet is a blockchain network with chain ID 398. - -## Network Details - -- **Chain ID**: 398 -- **Chain Name**: NEAR -- **Short Name**: near-testnet -- **Network ID**: 398 -- **Currency**: - - **Name**: Testnet NEAR - - **Symbol**: NEAR - - **Decimals**: 18 - -## RPC URLs - -Near Testnet can be accessed through the following RPC endpoints: - - - -## Near Testnet Block Explorers - -- [Near blocks](https://testnet.nearblocks.io) - -## Additional Information - -- **Official Website**: https://aurora.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Near Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/near.mdx b/docs/pages/solutions/chainlist/non-integrated/near.mdx deleted file mode 100644 index fcf1937da1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/near.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Near Mainnet - NEAR Blockchain Network -description: Explore Near Mainnet, a blockchain network with chain ID 397. Learn about its native currency, NEAR, and how to interact with the network. ---- - -# Near Mainnet - -Near Mainnet is a blockchain network with chain ID 397. - -## Network Details - -- **Chain ID**: 397 -- **Chain Name**: NEAR -- **Short Name**: near -- **Network ID**: 397 -- **Currency**: - - **Name**: NEAR - - **Symbol**: NEAR - - **Decimals**: 18 - -## RPC URLs - -Near Mainnet can be accessed through the following RPC endpoints: - -- https://near.drpc.org/ -- https://1rpc.io/near -- https://near.lava.build/ -- https://api.blockeden.xyz/near/8UuXzatAZYDBJC6YZTKD -- https://rpc.mainnet.near.org - -## Near Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://near.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nebula-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nebula-testnet.mdx deleted file mode 100644 index 9ef7c00fc9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nebula-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nebula Testnet - NTN Blockchain Network -description: Explore Nebula Testnet, a blockchain network with chain ID 107. Learn about its native currency, Nebula X, and how to interact with the network. ---- - -# Nebula Testnet - -Nebula Testnet is a blockchain network with chain ID 107. - -## Network Details - -- **Chain ID**: 107 -- **Chain Name**: NTN -- **Short Name**: ntn -- **Network ID**: 107 -- **Currency**: - - **Name**: Nebula X - - **Symbol**: NBX - - **Decimals**: 18 - -## RPC URLs - -Nebula Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rpc.novanetwork.io - -## Nebula Testnet Block Explorers - -- [nebulatestnet](https://explorer.novanetwork.io) - -## Additional Information - -- **Official Website**: https://novanetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nebula Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nebula.mdx b/docs/pages/solutions/chainlist/non-integrated/nebula.mdx deleted file mode 100644 index 767b1d34c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nebula.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nebula - Avalanche Blockchain Network -description: Explore Nebula, a blockchain network with chain ID 92146. Learn about its native currency, Nebula Token, and how to interact with the network. ---- - -# Nebula - -Nebula is a blockchain network with chain ID 92146. - -## Network Details - -- **Chain ID**: 92146 -- **Chain Name**: Avalanche -- **Short Name**: Nebula -- **Network ID**: 92146 -- **Currency**: - - **Name**: Nebula Token - - **Symbol**: NBL - - **Decimals**: 18 - -## RPC URLs - -Nebula can be accessed through the following RPC endpoints: - -- https://testnet-nebula-yfc8f.avax-test.network/ext/bc/2nsyDo357RyqCe9A9LNhx562z3fbGeQdN3hNP6jUewBP4RPHB6/rpc?token=8d3e15c200ac90ff01eb9daf87d67481f4ce73654f4c441cfb8cedf23320bf79 - -## Nebula Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nebula Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neo-x.mdx b/docs/pages/solutions/chainlist/non-integrated/neo-x.mdx deleted file mode 100644 index c7c19f6b4f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neo-x.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Neo X Mainnet - Neo X Blockchain Network -description: Explore Neo X Mainnet, a blockchain network with chain ID 47763. Learn about its native currency, Gas, and how to interact with the network. ---- - -# Neo X Mainnet - -Neo X Mainnet is a blockchain network with chain ID 47763. - -## Network Details - -- **Chain ID**: 47763 -- **Chain Name**: Neo X -- **Short Name**: neox-mainnet -- **Network ID**: 47763 -- **Currency**: - - **Name**: Gas - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -Neo X Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-1.rpc.banelabs.org -- https://mainnet-2.rpc.banelabs.org - -## Neo X Mainnet Block Explorers - -- [Neo X - Explorer](https://xexplorer.neo.org) - -## Additional Information - -- **Official Website**: https://neo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet-rollup.mdx b/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet-rollup.mdx deleted file mode 100644 index 7822c07a71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet-rollup.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Neon EVM Devnet Rollup - Solana Blockchain Network -description: Explore Neon EVM Devnet Rollup, a blockchain network with chain ID 245022929. Learn about its native currency, Neon, and how to interact with the network. ---- - -# Neon EVM Devnet Rollup - -Neon EVM Devnet Rollup is a blockchain network with chain ID 245022929. - -## Network Details - -- **Chain ID**: 245022929 -- **Chain Name**: Solana -- **Short Name**: neonevm-devnet-rollup -- **Network ID**: 245022929 -- **Currency**: - - **Name**: Neon - - **Symbol**: NEON - - **Decimals**: 18 - -## RPC URLs - -Neon EVM Devnet Rollup can be accessed through the following RPC endpoints: - -- https://devnet.rollup.neonevm.org/ - -## Neon EVM Devnet Rollup Block Explorers - - - -## Additional Information - -- **Official Website**: https://neonevm.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet.mdx deleted file mode 100644 index f96c7abd82..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neon-evm-devnet.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Neon EVM Devnet - Solana Blockchain Network -description: Explore Neon EVM Devnet, a blockchain network with chain ID 245022926. Learn about its native currency, Neon, and how to interact with the network. ---- - -# Neon EVM Devnet - -Neon EVM Devnet is a blockchain network with chain ID 245022926. - -## Network Details - -- **Chain ID**: 245022926 -- **Chain Name**: Solana -- **Short Name**: neonevm-devnet -- **Network ID**: 245022926 -- **Currency**: - - **Name**: Neon - - **Symbol**: NEON - - **Decimals**: 18 - -## RPC URLs - -Neon EVM Devnet can be accessed through the following RPC endpoints: - -- https://devnet.neonevm.org -- https://neon-evm-devnet.drpc.org -- wss://neon-evm-devnet.drpc.org - -## Neon EVM Devnet Block Explorers - -- [blockscout](https://neon-devnet.blockscout.com) -- [neonscan](https://devnet.neonscan.org) - -## Additional Information - -- **Official Website**: https://neon-labs.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neon-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neon-evm-testnet.mdx deleted file mode 100644 index 5959103aa5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neon-evm-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Neon EVM TestNet - Solana Blockchain Network -description: Explore Neon EVM TestNet, a blockchain network with chain ID 245022940. Learn about its native currency, Neon, and how to interact with the network. ---- - -# Neon EVM TestNet - -Neon EVM TestNet is a blockchain network with chain ID 245022940. - -## Network Details - -- **Chain ID**: 245022940 -- **Chain Name**: Solana -- **Short Name**: neonevm-testnet -- **Network ID**: 245022940 -- **Currency**: - - **Name**: Neon - - **Symbol**: NEON - - **Decimals**: 18 - -## RPC URLs - -Neon EVM TestNet can be accessed through the following RPC endpoints: - -- https://testnet.neonevm.org - -## Neon EVM TestNet Block Explorers - -- [native](https://testnet.explorer.neon-labs.org) -- [neonscan](https://testnet.neonscan.org) - -## Additional Information - -- **Official Website**: https://neon-labs.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Neon EVM TestNet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neon-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/neon-evm.mdx deleted file mode 100644 index ea41a4947e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neon-evm.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Neon EVM Mainnet - Solana Blockchain Network -description: Explore Neon EVM Mainnet, a blockchain network with chain ID 245022934. Learn about its native currency, Neon, and how to interact with the network. ---- - -# Neon EVM Mainnet - -Neon EVM Mainnet is a blockchain network with chain ID 245022934. - -## Network Details - -- **Chain ID**: 245022934 -- **Chain Name**: Solana -- **Short Name**: neonevm-mainnet -- **Network ID**: 245022934 -- **Currency**: - - **Name**: Neon - - **Symbol**: NEON - - **Decimals**: 18 - -## RPC URLs - -Neon EVM Mainnet can be accessed through the following RPC endpoints: - -- https://neon-proxy-mainnet.solana.p2p.org -- https://neon-evm.drpc.org -- wss://neon-evm.drpc.org - -## Neon EVM Mainnet Block Explorers - -- [neonscan](https://neonscan.org) -- [native](https://neon.blockscout.com) - -## Additional Information - -- **Official Website**: https://neonevm.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neonlink-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neonlink-testnet.mdx deleted file mode 100644 index 26bb2150a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neonlink-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Neonlink Testnet - Neonlink Blockchain Network -description: Explore Neonlink Testnet, a blockchain network with chain ID 9559. Learn about its native currency, Neonlink Native Token, and how to interact with the network. ---- - -# Neonlink Testnet - -Neonlink Testnet is a blockchain network with chain ID 9559. - -## Network Details - -- **Chain ID**: 9559 -- **Chain Name**: Neonlink -- **Short Name**: testneon -- **Network ID**: 9559 -- **Currency**: - - **Name**: Neonlink Native Token - - **Symbol**: tNEON - - **Decimals**: 18 - -## RPC URLs - -Neonlink Testnet can be accessed through the following RPC endpoints: - -- https://testnet.neonlink.io - -## Neonlink Testnet Block Explorers - -- [Neon Blockchain Explorer](https://testnet-scan.neonlink.io) - -## Additional Information - -- **Official Website**: https://neonlink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Neonlink Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neonlink.mdx b/docs/pages/solutions/chainlist/non-integrated/neonlink.mdx deleted file mode 100644 index 8e59ec872d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neonlink.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Neonlink Mainnet - Neonlink Blockchain Network -description: Explore Neonlink Mainnet, a blockchain network with chain ID 259. Learn about its native currency, Neonlink Native Token, and how to interact with the network. ---- - -# Neonlink Mainnet - -Neonlink Mainnet is a blockchain network with chain ID 259. - -## Network Details - -- **Chain ID**: 259 -- **Chain Name**: Neonlink -- **Short Name**: neon -- **Network ID**: 259 -- **Currency**: - - **Name**: Neonlink Native Token - - **Symbol**: NEON - - **Decimals**: 18 - -## RPC URLs - -Neonlink Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.neonlink.io - -## Neonlink Mainnet Block Explorers - -- [Neon Blockchain Explorer](https://scan.neonlink.io) - -## Additional Information - -- **Official Website**: https://neonlink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t3.mdx b/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t3.mdx deleted file mode 100644 index af55420c23..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: NeoX Testnet T3 - NeoX Blockchain Network -description: Explore NeoX Testnet T3, a blockchain network with chain ID 12227331. Learn about its native currency, Gas, and how to interact with the network. ---- - -# NeoX Testnet T3 - -NeoX Testnet T3 is a blockchain network with chain ID 12227331. - -## Network Details - -- **Chain ID**: 12227331 -- **Chain Name**: NeoX -- **Short Name**: neox -- **Network ID**: 12227331 -- **Currency**: - - **Name**: Gas - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -NeoX Testnet T3 can be accessed through the following RPC endpoints: - -- https://neoxseed1.ngd.network/ - -## NeoX Testnet T3 Block Explorers - -- [neox-scan](https://testnet.scan.banelabs.org) - -## Additional Information - -- **Official Website**: https://neo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## NeoX Testnet T3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t4.mdx b/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t4.mdx deleted file mode 100644 index b4269a739b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neox-testnet-t4.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: NeoX Testnet T4 - NeoX Blockchain Network -description: Explore NeoX Testnet T4, a blockchain network with chain ID 12227332. Learn about its native currency, Gas, and how to interact with the network. ---- - -# NeoX Testnet T4 - -NeoX Testnet T4 is a blockchain network with chain ID 12227332. - -## Network Details - -- **Chain ID**: 12227332 -- **Chain Name**: NeoX -- **Short Name**: neox-t4 -- **Network ID**: 12227332 -- **Currency**: - - **Name**: Gas - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -NeoX Testnet T4 can be accessed through the following RPC endpoints: - -- https://testnet.rpc.banelabs.org/ - -## NeoX Testnet T4 Block Explorers - -- [neox-scan](https://testnet.scan.banelabs.org) - -## Additional Information - -- **Official Website**: https://neo.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## NeoX Testnet T4 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nepal-blockchain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/nepal-blockchain-network.mdx deleted file mode 100644 index f1ec241997..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nepal-blockchain-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nepal Blockchain Network - YETI Blockchain Network -description: Explore Nepal Blockchain Network, a blockchain network with chain ID 977. Learn about its native currency, Nepal Blockchain Network Ether, and how to interact with the network. ---- - -# Nepal Blockchain Network - -Nepal Blockchain Network is a blockchain network with chain ID 977. - -## Network Details - -- **Chain ID**: 977 -- **Chain Name**: YETI -- **Short Name**: yeti -- **Network ID**: 977 -- **Currency**: - - **Name**: Nepal Blockchain Network Ether - - **Symbol**: YETI - - **Decimals**: 18 - -## RPC URLs - -Nepal Blockchain Network can be accessed through the following RPC endpoints: - -- https://api.nepalblockchain.dev -- https://api.nepalblockchain.network - -## Nepal Blockchain Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://nepalblockchain.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/netmind-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/netmind-chain-testnet.mdx deleted file mode 100644 index 2da2c089ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/netmind-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Netmind Chain Testnet - NetMind Blockchain Network -description: Explore Netmind Chain Testnet, a blockchain network with chain ID 1100789. Learn about its native currency, NMT, and how to interact with the network. ---- - -# Netmind Chain Testnet - -Netmind Chain Testnet is a blockchain network with chain ID 1100789. - -## Network Details - -- **Chain ID**: 1100789 -- **Chain Name**: NetMind -- **Short Name**: nmtTest -- **Network ID**: 1100789 -- **Currency**: - - **Name**: NMT - - **Symbol**: NMT - - **Decimals**: 18 - -## RPC URLs - -Netmind Chain Testnet can be accessed through the following RPC endpoints: - -- https://testblock.protago-dev.com - -## Netmind Chain Testnet Block Explorers - -- [NetMind Testnet Explorer](https://testbrower.protago-dev.com) - -## Additional Information - -- **Official Website**: https://netmind.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Netmind Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/netsbo.mdx b/docs/pages/solutions/chainlist/non-integrated/netsbo.mdx deleted file mode 100644 index beb0d016e4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/netsbo.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Netsbo - NETSBO Blockchain Network -description: Explore Netsbo, a blockchain network with chain ID 5333. Learn about its native currency, Netsbo, and how to interact with the network. ---- - -# Netsbo - -Netsbo is a blockchain network with chain ID 5333. - -## Network Details - -- **Chain ID**: 5333 -- **Chain Name**: NETSBO -- **Short Name**: nets -- **Network ID**: 5333 -- **Currency**: - - **Name**: Netsbo - - **Symbol**: NETS - - **Decimals**: 18 - -## RPC URLs - -Netsbo can be accessed through the following RPC endpoints: - -- https://rpc1.netsbo.io -- https://rpc2.netsbo.io - -## Netsbo Block Explorers - -- [netsbo](https://explorer.netsbo.io) - -## Additional Information - -- **Official Website**: https://netsbo.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neura-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neura-devnet.mdx deleted file mode 100644 index 8149135d8c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neura-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Neura Devnet - NEURA Blockchain Network -description: Explore Neura Devnet, a blockchain network with chain ID 268. Learn about its native currency, Devnet Ankr, and how to interact with the network. ---- - -# Neura Devnet - -Neura Devnet is a blockchain network with chain ID 268. - -## Network Details - -- **Chain ID**: 268 -- **Chain Name**: NEURA -- **Short Name**: dneura -- **Network ID**: 268 -- **Currency**: - - **Name**: Devnet Ankr - - **Symbol**: ANKR - - **Decimals**: 18 - -## RPC URLs - -Neura Devnet can be accessed through the following RPC endpoints: - - - -## Neura Devnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.neuraprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neura-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neura-testnet.mdx deleted file mode 100644 index 789efdf94e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neura-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Neura Testnet - NEURA Blockchain Network -description: Explore Neura Testnet, a blockchain network with chain ID 267. Learn about its native currency, Testnet Ankr, and how to interact with the network. ---- - -# Neura Testnet - -Neura Testnet is a blockchain network with chain ID 267. - -## Network Details - -- **Chain ID**: 267 -- **Chain Name**: NEURA -- **Short Name**: tneura -- **Network ID**: 267 -- **Currency**: - - **Name**: Testnet Ankr - - **Symbol**: ANKR - - **Decimals**: 18 - -## RPC URLs - -Neura Testnet can be accessed through the following RPC endpoints: - -- https://rpc.ankr.com/neura_testnet - -## Neura Testnet Block Explorers - -- [blockscout](https://explorer.neura-testnet.ankr.com) -- [ankrscan-neura](https://testnet.explorer.neuraprotocol.io) - -## Additional Information - -- **Official Website**: https://www.neuraprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Neura Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neura.mdx b/docs/pages/solutions/chainlist/non-integrated/neura.mdx deleted file mode 100644 index c402902239..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neura.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Neura - NEURA Blockchain Network -description: Explore Neura, a blockchain network with chain ID 266. Learn about its native currency, Ankr, and how to interact with the network. ---- - -# Neura - -Neura is a blockchain network with chain ID 266. - -## Network Details - -- **Chain ID**: 266 -- **Chain Name**: NEURA -- **Short Name**: neura -- **Network ID**: 266 -- **Currency**: - - **Name**: Ankr - - **Symbol**: ANKR - - **Decimals**: 18 - -## RPC URLs - -Neura can be accessed through the following RPC endpoints: - - - -## Neura Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.neuraprotocol.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neurochain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neurochain-testnet.mdx deleted file mode 100644 index e038af8bf6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neurochain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Neurochain Testnet - NCN Blockchain Network -description: Explore Neurochain Testnet, a blockchain network with chain ID 303. Learn about its native currency, Neurochain, and how to interact with the network. ---- - -# Neurochain Testnet - -Neurochain Testnet is a blockchain network with chain ID 303. - -## Network Details - -- **Chain ID**: 303 -- **Chain Name**: NCN -- **Short Name**: ncnt -- **Network ID**: 303 -- **Currency**: - - **Name**: Neurochain - - **Symbol**: tNCN - - **Decimals**: 18 - -## RPC URLs - -Neurochain Testnet can be accessed through the following RPC endpoints: - -- https://nc-rpc-test1.neurochain.io - -## Neurochain Testnet Block Explorers - -- [neuroscan](https://testnet.ncnscan.com) - -## Additional Information - -- **Official Website**: https://www.neurochain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Neurochain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/neurochain.mdx b/docs/pages/solutions/chainlist/non-integrated/neurochain.mdx deleted file mode 100644 index d9a8a11ad7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neurochain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: NCN Chain - NCN Blockchain Network -description: Explore NCN Chain, a blockchain network with chain ID 313. Learn about its native currency, Neurochain, and how to interact with the network. ---- - -# NCN Chain - -NCN Chain is a blockchain network with chain ID 313. - -## Network Details - -- **Chain ID**: 313 -- **Chain Name**: NCN -- **Short Name**: ncn -- **Network ID**: 313 -- **Currency**: - - **Name**: Neurochain - - **Symbol**: NCN - - **Decimals**: 18 - -## RPC URLs - -NCN Chain can be accessed through the following RPC endpoints: - -- https://nc-rpc-prd1.neurochain.io -- https://nc-rpc-prd2.neurochain.io - -## NCN Chain Block Explorers - -- [neuroscan](https://ncnscan.com) - -## Additional Information - -- **Official Website**: https://www.neurochain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neuroweb.mdx b/docs/pages/solutions/chainlist/non-integrated/neuroweb.mdx deleted file mode 100644 index ec1b1710a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neuroweb.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: NeuroWeb - NEUROWEB Blockchain Network -description: Explore NeuroWeb, a blockchain network with chain ID 2043. Learn about its native currency, NeuroWeb Token, and how to interact with the network. ---- - -# NeuroWeb - -NeuroWeb is a blockchain network with chain ID 2043. - -## Network Details - -- **Chain ID**: 2043 -- **Chain Name**: NEUROWEB -- **Short Name**: NEURO -- **Network ID**: 2043 -- **Currency**: - - **Name**: NeuroWeb Token - - **Symbol**: NEURO - - **Decimals**: 12 - -## RPC URLs - -NeuroWeb can be accessed through the following RPC endpoints: - -- https://astrosat.origintrail.network -- wss://parachain-rpc.origin-trail.network - -## NeuroWeb Block Explorers - - - -## Additional Information - -- **Official Website**: https://neuroweb.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/neutrinos-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/neutrinos-testnet.mdx deleted file mode 100644 index 0a4cc65b37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/neutrinos-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Neutrinos TestNet - NEUTR Blockchain Network -description: Explore Neutrinos TestNet, a blockchain network with chain ID 197. Learn about its native currency, Neutrinos, and how to interact with the network. ---- - -# Neutrinos TestNet - -Neutrinos TestNet is a blockchain network with chain ID 197. - -## Network Details - -- **Chain ID**: 197 -- **Chain Name**: NEUTR -- **Short Name**: NEUTR -- **Network ID**: 197 -- **Currency**: - - **Name**: Neutrinos - - **Symbol**: NEUTR - - **Decimals**: 18 - -## RPC URLs - -Neutrinos TestNet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.neutrinoschain.com - -## Neutrinos TestNet Block Explorers - -- [blockscout](https://testnet.neutrinoschain.com) - -## Additional Information - -- **Official Website**: https://docs.neutrinoschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Neutrinos TestNet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/new-will's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/new-will's-testnet.mdx deleted file mode 100644 index 7f5efcb804..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/new-will's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: New Will's Testnet - Avalanche Blockchain Network -description: Explore New Will's Testnet, a blockchain network with chain ID 91132. Learn about its native currency, New Will's Testnet Token, and how to interact with the network. ---- - -# New Will's Testnet - -New Will's Testnet is a blockchain network with chain ID 91132. - -## Network Details - -- **Chain ID**: 91132 -- **Chain Name**: Avalanche -- **Short Name**: New Will's Testnet -- **Network ID**: 91132 -- **Currency**: - - **Name**: New Will's Testnet Token - - **Symbol**: MBM - - **Decimals**: 18 - -## RPC URLs - -New Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## New Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## New Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/newton-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/newton-testnet.mdx deleted file mode 100644 index 6cdd4ac245..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/newton-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Newton Testnet - NEW Blockchain Network -description: Explore Newton Testnet, a blockchain network with chain ID 1007. Learn about its native currency, Newton, and how to interact with the network. ---- - -# Newton Testnet - -Newton Testnet is a blockchain network with chain ID 1007. - -## Network Details - -- **Chain ID**: 1007 -- **Chain Name**: NEW -- **Short Name**: tnew -- **Network ID**: 1007 -- **Currency**: - - **Name**: Newton - - **Symbol**: NEW - - **Decimals**: 18 - -## RPC URLs - -Newton Testnet can be accessed through the following RPC endpoints: - -- https://rpc1.newchain.newtonproject.org - -## Newton Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.newtonproject.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Newton Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/newton.mdx b/docs/pages/solutions/chainlist/non-integrated/newton.mdx deleted file mode 100644 index 2936ff032b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/newton.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Newton - NEW Blockchain Network -description: Explore Newton, a blockchain network with chain ID 1012. Learn about its native currency, Newton, and how to interact with the network. ---- - -# Newton - -Newton is a blockchain network with chain ID 1012. - -## Network Details - -- **Chain ID**: 1012 -- **Chain Name**: NEW -- **Short Name**: new -- **Network ID**: 1012 -- **Currency**: - - **Name**: Newton - - **Symbol**: NEW - - **Decimals**: 18 - -## RPC URLs - -Newton can be accessed through the following RPC endpoints: - -- https://global.rpc.mainnet.newtonproject.org - -## Newton Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.newtonproject.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexa-block.mdx b/docs/pages/solutions/chainlist/non-integrated/nexa-block.mdx deleted file mode 100644 index fa9053969b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexa-block.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Nexa Mainnet Block - Nexa Mainnet Blockchain Network -description: Explore Nexa Mainnet Block, a blockchain network with chain ID 9025. Learn about its native currency, Nexa Mainnet Token, and how to interact with the network. ---- - -# Nexa Mainnet Block - -Nexa Mainnet Block is a blockchain network with chain ID 9025. - -## Network Details - -- **Chain ID**: 9025 -- **Chain Name**: Nexa Mainnet -- **Short Name**: Nexa -- **Network ID**: 9025 -- **Currency**: - - **Name**: Nexa Mainnet Token - - **Symbol**: NEXB - - **Decimals**: 18 - -## RPC URLs - -Nexa Mainnet Block can be accessed through the following RPC endpoints: - -- https://rpc-nodes.nexablockscan.io -- wss://wss-nodes.nexablockscan.io -- https://rpc-nodes-delta.nexablockscan.io - -## Nexa Mainnet Block Block Explorers - -- [Nexablock Mainnet Explorer](https://nexablockscan.io) - -## Additional Information - -- **Official Website**: https://www.nexablock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexa-metanet.mdx b/docs/pages/solutions/chainlist/non-integrated/nexa-metanet.mdx deleted file mode 100644 index 509e358c43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexa-metanet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nexa MetaNet - NEXA Blockchain Network -description: Explore Nexa MetaNet, a blockchain network with chain ID 29223. Learn about its native currency, Nexa, and how to interact with the network. ---- - -# Nexa MetaNet - -Nexa MetaNet is a blockchain network with chain ID 29223. - -## Network Details - -- **Chain ID**: 29223 -- **Chain Name**: NEXA -- **Short Name**: nexameta -- **Network ID**: 29223 -- **Currency**: - - **Name**: Nexa - - **Symbol**: NEXA - - **Decimals**: 18 - -## RPC URLs - -Nexa MetaNet can be accessed through the following RPC endpoints: - -- https://nexa.sh/metanet - -## Nexa MetaNet Block Explorers - -- [NexaShell](https://nexa.sh) - -## Additional Information - -- **Official Website**: https://nexa.sh/meta - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexa-testnet-block.mdx b/docs/pages/solutions/chainlist/non-integrated/nexa-testnet-block.mdx deleted file mode 100644 index 4fe397abf6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexa-testnet-block.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nexa Testnet Block - Nexa Testnet Blockchain Network -description: Explore Nexa Testnet Block, a blockchain network with chain ID 9024. Learn about its native currency, Nexa Testnet Token, and how to interact with the network. ---- - -# Nexa Testnet Block - -Nexa Testnet Block is a blockchain network with chain ID 9024. - -## Network Details - -- **Chain ID**: 9024 -- **Chain Name**: Nexa Testnet -- **Short Name**: NexaTestnet -- **Network ID**: 9024 -- **Currency**: - - **Name**: Nexa Testnet Token - - **Symbol**: NEXB - - **Decimals**: 18 - -## RPC URLs - -Nexa Testnet Block can be accessed through the following RPC endpoints: - -- https://rpc-testnet-nodes.nexablockscan.io - -## Nexa Testnet Block Block Explorers - -- [Nexablock Testnet Explorer](https://testnet.nexablockscan.io) - -## Additional Information - -- **Official Website**: https://www.nexablock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nexa Testnet Block Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexi-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/nexi-v2.mdx deleted file mode 100644 index 38864feb30..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexi-v2.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Nexi V2 Mainnet - Nexi V2 Blockchain Network -description: Explore Nexi V2 Mainnet, a blockchain network with chain ID 4243. Learn about its native currency, NexiV2, and how to interact with the network. ---- - -# Nexi V2 Mainnet - -Nexi V2 Mainnet is a blockchain network with chain ID 4243. - -## Network Details - -- **Chain ID**: 4243 -- **Chain Name**: Nexi V2 -- **Short Name**: NexiV2 -- **Network ID**: 4243 -- **Currency**: - - **Name**: NexiV2 - - **Symbol**: NEXI - - **Decimals**: 18 - -## RPC URLs - -Nexi V2 Mainnet can be accessed through the following RPC endpoints: - -- https://chain.nexiv2.nexilix.com -- https://rpc.chainv1.nexi.technology - -## Nexi V2 Mainnet Block Explorers - -- [nexiscan](https://www.nexiscan.com) - -## Additional Information - -- **Official Website**: https://www.nexi.technology/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexi.mdx b/docs/pages/solutions/chainlist/non-integrated/nexi.mdx deleted file mode 100644 index 69e1b3f5a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexi.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Nexi Mainnet - Nexi Blockchain Network -description: Explore Nexi Mainnet, a blockchain network with chain ID 4242. Learn about its native currency, Nexi, and how to interact with the network. ---- - -# Nexi Mainnet - -Nexi Mainnet is a blockchain network with chain ID 4242. - -## Network Details - -- **Chain ID**: 4242 -- **Chain Name**: Nexi -- **Short Name**: nexi -- **Network ID**: 4242 -- **Currency**: - - **Name**: Nexi - - **Symbol**: NEXI - - **Decimals**: 18 - -## RPC URLs - -Nexi Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.chain.nexi.technology/ -- https://chain.nexilix.com -- https://chain.nexi.evmnode.online - -## Nexi Mainnet Block Explorers - -- [nexiscan](https://www.nexiscan.com) - -## Additional Information - -- **Official Website**: https://www.nexi.technology/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nexis-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nexis-network-testnet.mdx deleted file mode 100644 index 7ca78c1438..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nexis-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nexis Network Testnet - Nexis Network Blockchain Network -description: Explore Nexis Network Testnet, a blockchain network with chain ID 2370. Learn about its native currency, Nexis, and how to interact with the network. ---- - -# Nexis Network Testnet - -Nexis Network Testnet is a blockchain network with chain ID 2370. - -## Network Details - -- **Chain ID**: 2370 -- **Chain Name**: Nexis Network -- **Short Name**: nzt -- **Network ID**: 2370 -- **Currency**: - - **Name**: Nexis - - **Symbol**: NZT - - **Decimals**: 18 - -## RPC URLs - -Nexis Network Testnet can be accessed through the following RPC endpoints: - -- https://evm-testnet.nexis.network - -## Nexis Network Testnet Block Explorers - -- [Nexis Testnet Explorer](https://evm-testnet.nexscan.io) - -## Additional Information - -- **Official Website**: https://nexis.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nexis Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nishiogikubo-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nishiogikubo-subnet.mdx deleted file mode 100644 index 83b9f78989..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nishiogikubo-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: NishiOgikubo Subnet - Avalanche Blockchain Network -description: Explore NishiOgikubo Subnet, a blockchain network with chain ID 85023. Learn about its native currency, NishiOgikubo Subnet Token, and how to interact with the network. ---- - -# NishiOgikubo Subnet - -NishiOgikubo Subnet is a blockchain network with chain ID 85023. - -## Network Details - -- **Chain ID**: 85023 -- **Chain Name**: Avalanche -- **Short Name**: NishiOgikubo Subnet -- **Network ID**: 85023 -- **Currency**: - - **Name**: NishiOgikubo Subnet Token - - **Symbol**: NOS - - **Decimals**: 18 - -## RPC URLs - -NishiOgikubo Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/nishiogiku/testnet/rpc - -## NishiOgikubo Subnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## NishiOgikubo Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/niza-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/niza-chain-testnet.mdx deleted file mode 100644 index 2f96e49946..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/niza-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Niza Chain Testnet - NIZA Blockchain Network -description: Explore Niza Chain Testnet, a blockchain network with chain ID 20073. Learn about its native currency, Niza Global, and how to interact with the network. ---- - -# Niza Chain Testnet - -Niza Chain Testnet is a blockchain network with chain ID 20073. - -## Network Details - -- **Chain ID**: 20073 -- **Chain Name**: NIZA -- **Short Name**: niza_testnet -- **Network ID**: 20073 -- **Currency**: - - **Name**: Niza Global - - **Symbol**: NIZA - - **Decimals**: 18 - -## RPC URLs - -Niza Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.nizascan.io/rpc - -## Niza Chain Testnet Block Explorers - -- [NizaScan](https://testnet.nizascan.io) - -## Additional Information - -- **Official Website**: https://niza.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Niza Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/niza-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/niza-chain.mdx deleted file mode 100644 index a7739f2c96..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/niza-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Niza Chain Mainnet - NIZA Blockchain Network -description: Explore Niza Chain Mainnet, a blockchain network with chain ID 20041. Learn about its native currency, Niza Global, and how to interact with the network. ---- - -# Niza Chain Mainnet - -Niza Chain Mainnet is a blockchain network with chain ID 20041. - -## Network Details - -- **Chain ID**: 20041 -- **Chain Name**: NIZA -- **Short Name**: niza -- **Network ID**: 20041 -- **Currency**: - - **Name**: Niza Global - - **Symbol**: NIZA - - **Decimals**: 18 - -## RPC URLs - -Niza Chain Mainnet can be accessed through the following RPC endpoints: - -- https://nizascan.io/rpc - -## Niza Chain Mainnet Block Explorers - -- [NizaScan](https://nizascan.io) - -## Additional Information - -- **Official Website**: https://niza.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nollie-skatechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/nollie-skatechain-testnet.mdx deleted file mode 100644 index 5823284641..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nollie-skatechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Nollie Skatechain Testnet - Skatechain Blockchain Network -description: Explore Nollie Skatechain Testnet, a blockchain network with chain ID 5051. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Nollie Skatechain Testnet - -Nollie Skatechain Testnet is a blockchain network with chain ID 5051. - -## Network Details - -- **Chain ID**: 5051 -- **Chain Name**: Skatechain -- **Short Name**: nollie-testnet -- **Network ID**: 5051 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Nollie Skatechain Testnet can be accessed through the following RPC endpoints: - -- https://nollie-rpc.skatechain.org/ - -## Nollie Skatechain Testnet Block Explorers - -- [Nollie Skate Chain Testnet Explorer](https://nolliescan.skatechain.org) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Nollie Skatechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nordek.mdx b/docs/pages/solutions/chainlist/non-integrated/nordek.mdx deleted file mode 100644 index d2e584e455..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nordek.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nordek Mainnet - Nordek Blockchain Network -description: Explore Nordek Mainnet, a blockchain network with chain ID 81041. Learn about its native currency, NRK, and how to interact with the network. ---- - -# Nordek Mainnet - -Nordek Mainnet is a blockchain network with chain ID 81041. - -## Network Details - -- **Chain ID**: 81041 -- **Chain Name**: Nordek -- **Short Name**: nordek -- **Network ID**: 81041 -- **Currency**: - - **Name**: NRK - - **Symbol**: NRK - - **Decimals**: 18 - -## RPC URLs - -Nordek Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.nordekscan.com - -## Nordek Mainnet Block Explorers - -- [nordek](https://nordekscan.com) - -## Additional Information - -- **Official Website**: https://nordekscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nos-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/nos-sepolia.mdx deleted file mode 100644 index d0d553d6e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nos-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: nos-sepolia - nos-sepolia Blockchain Network -description: Explore nos-sepolia, a blockchain network with chain ID 44597. Learn about its native currency, NoS, and how to interact with the network. ---- - -# nos-sepolia - -nos-sepolia is a blockchain network with chain ID 44597. - -## Network Details - -- **Chain ID**: 44597 -- **Chain Name**: nos-sepolia -- **Short Name**: nos-sepolia -- **Network ID**: 44597 -- **Currency**: - - **Name**: NoS - - **Symbol**: NOS - - **Decimals**: 18 - -## RPC URLs - -nos-sepolia can be accessed through the following RPC endpoints: - -- https://rpc-nos-sepolia-iw0w6uhogx.t.conduit.xyz - -## nos-sepolia Block Explorers - -- [nos-sepolia Explorer](https://explorer-nos-sepolia-iw0w6uhogx.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/44597 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## nos-sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nova-network.mdx b/docs/pages/solutions/chainlist/non-integrated/nova-network.mdx deleted file mode 100644 index 6c1a5d4b34..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nova-network.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Nova Network - NNW Blockchain Network -description: Explore Nova Network, a blockchain network with chain ID 87. Learn about its native currency, Supernova, and how to interact with the network. ---- - -# Nova Network - -Nova Network is a blockchain network with chain ID 87. - -## Network Details - -- **Chain ID**: 87 -- **Chain Name**: NNW -- **Short Name**: nnw -- **Network ID**: 87 -- **Currency**: - - **Name**: Supernova - - **Symbol**: SNT - - **Decimals**: 18 - -## RPC URLs - -Nova Network can be accessed through the following RPC endpoints: - -- https://connect.novanetwork.io -- https://0x57.redjackstudio.com -- https://rpc.novanetwork.io:9070 - -## Nova Network Block Explorers - -- [novanetwork](https://explorer.novanetwork.io) - -## Additional Information - -- **Official Website**: https://novanetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/now-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/now-chain-testnet.mdx deleted file mode 100644 index 8db846a9f7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/now-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: NOW Chain Testnet - NOW Blockchain Network -description: Explore NOW Chain Testnet, a blockchain network with chain ID 2014. Learn about its native currency, NOW Coin, and how to interact with the network. ---- - -# NOW Chain Testnet - -NOW Chain Testnet is a blockchain network with chain ID 2014. - -## Network Details - -- **Chain ID**: 2014 -- **Chain Name**: NOW -- **Short Name**: now -- **Network ID**: 2014 -- **Currency**: - - **Name**: NOW Coin - - **Symbol**: NOW - - **Decimals**: 18 - -## RPC URLs - -NOW Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.nowscan.io - -## NOW Chain Testnet Block Explorers - -- [nowscan](https://testnet.nowscan.io) - -## Additional Information - -- **Official Website**: https://nowchain.co - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## NOW Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ntity.mdx b/docs/pages/solutions/chainlist/non-integrated/ntity.mdx deleted file mode 100644 index b709fca267..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ntity.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ntity Mainnet - Ntity Blockchain Network -description: Explore Ntity Mainnet, a blockchain network with chain ID 197710212030. Learn about its native currency, Ntity, and how to interact with the network. ---- - -# Ntity Mainnet - -Ntity Mainnet is a blockchain network with chain ID 197710212030. - -## Network Details - -- **Chain ID**: 197710212030 -- **Chain Name**: Ntity -- **Short Name**: ntt -- **Network ID**: 197710212030 -- **Currency**: - - **Name**: Ntity - - **Symbol**: NTT - - **Decimals**: 18 - -## RPC URLs - -Ntity Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.ntity.io - -## Ntity Mainnet Block Explorers - -- [Ntity Blockscout](https://blockscout.ntity.io) - -## Additional Information - -- **Official Website**: https://ntity.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/numbers-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/numbers-testnet.mdx deleted file mode 100644 index 552bdc40b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/numbers-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Numbers Testnet - NUM Blockchain Network -description: Explore Numbers Testnet, a blockchain network with chain ID 10508. Learn about its native currency, NUM Token, and how to interact with the network. ---- - -# Numbers Testnet - -Numbers Testnet is a blockchain network with chain ID 10508. - -## Network Details - -- **Chain ID**: 10508 -- **Chain Name**: NUM -- **Short Name**: Snow -- **Network ID**: 10508 -- **Currency**: - - **Name**: NUM Token - - **Symbol**: NUM - - **Decimals**: 18 - -## RPC URLs - -Numbers Testnet can be accessed through the following RPC endpoints: - -- https://testnetrpc.num.network - -## Numbers Testnet Block Explorers - -- [ethernal](https://testnet.num.network) - -## Additional Information - -- **Official Website**: https://numbersprotocol.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Numbers Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/numbers.mdx b/docs/pages/solutions/chainlist/non-integrated/numbers.mdx deleted file mode 100644 index 270d836637..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/numbers.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Numbers Mainnet - NUM Blockchain Network -description: Explore Numbers Mainnet, a blockchain network with chain ID 10507. Learn about its native currency, NUM Token, and how to interact with the network. ---- - -# Numbers Mainnet - -Numbers Mainnet is a blockchain network with chain ID 10507. - -## Network Details - -- **Chain ID**: 10507 -- **Chain Name**: NUM -- **Short Name**: Jade -- **Network ID**: 10507 -- **Currency**: - - **Name**: NUM Token - - **Symbol**: NUM - - **Decimals**: 18 - -## RPC URLs - -Numbers Mainnet can be accessed through the following RPC endpoints: - -- https://mainnetrpc.num.network - -## Numbers Mainnet Block Explorers - -- [ethernal](https://mainnet.num.network) - -## Additional Information - -- **Official Website**: https://numbersprotocol.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/numblock-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/numblock-chain.mdx deleted file mode 100644 index 658cc8ad12..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/numblock-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: NumBlock Chain - NumBlock Blockchain Network -description: Explore NumBlock Chain, a blockchain network with chain ID 5112023. Learn about its native currency, NUMB Token, and how to interact with the network. ---- - -# NumBlock Chain - -NumBlock Chain is a blockchain network with chain ID 5112023. - -## Network Details - -- **Chain ID**: 5112023 -- **Chain Name**: NumBlock -- **Short Name**: NUMB -- **Network ID**: 5112023 -- **Currency**: - - **Name**: NUMB Token - - **Symbol**: NUMB - - **Decimals**: 18 - -## RPC URLs - -NumBlock Chain can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.numblock.org - -## NumBlock Chain Block Explorers - -- [NumBlock Explorer](https://mainnet.numblock.org) - -## Additional Information - -- **Official Website**: https://numblock.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/nume.mdx b/docs/pages/solutions/chainlist/non-integrated/nume.mdx deleted file mode 100644 index 794ce23844..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nume.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Nume - Nume Blockchain Network -description: Explore Nume, a blockchain network with chain ID 7100. Learn about its native currency, Dai Stablecoin, and how to interact with the network. ---- - -# Nume - -Nume is a blockchain network with chain ID 7100. - -## Network Details - -- **Chain ID**: 7100 -- **Chain Name**: Nume -- **Short Name**: nume -- **Network ID**: 7100 -- **Currency**: - - **Name**: Dai Stablecoin - - **Symbol**: DAI - - **Decimals**: 18 - -## RPC URLs - -Nume can be accessed through the following RPC endpoints: - -- https://rpc.numecrypto.com - -## Nume Block Explorers - -- [numeexplorer](https://explorer.numecrypto.com) - -## Additional Information - -- **Official Website**: https://numecrypto.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/numine.mdx b/docs/pages/solutions/chainlist/non-integrated/numine.mdx deleted file mode 100644 index 904b891545..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/numine.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: numine - Avalanche Blockchain Network -description: Explore numine, a blockchain network with chain ID 8022. Learn about its native currency, numine Token, and how to interact with the network. ---- - -# numine - -numine is a blockchain network with chain ID 8022. - -## Network Details - -- **Chain ID**: 8022 -- **Chain Name**: Avalanche -- **Short Name**: numine -- **Network ID**: 8022 -- **Currency**: - - **Name**: numine Token - - **Symbol**: numine - - **Decimals**: 18 - -## RPC URLs - -numine can be accessed through the following RPC endpoints: - -- https://testnet-numine-vc73e.avax-test.network/ext/bc/26XPa2jA4T31hKmaUGJt3g32xwsbaUfvcnMx1m18dWmrgxV2Mw/rpc?token=5f79a4d7746a18615d32562a9f9f9c2e87cae9d9cad53a94f7a204cba2434058 - -## numine Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## numine Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/nutriemp-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/nutriemp-chain.mdx deleted file mode 100644 index d9e9a80f05..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/nutriemp-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: NutriEmp-Chain - NUTRIEMP Blockchain Network -description: Explore NutriEmp-Chain, a blockchain network with chain ID 420000. Learn about its native currency, GRAMZ, and how to interact with the network. ---- - -# NutriEmp-Chain - -NutriEmp-Chain is a blockchain network with chain ID 420000. - -## Network Details - -- **Chain ID**: 420000 -- **Chain Name**: NUTRIEMP -- **Short Name**: GRAMZ -- **Network ID**: 420000 -- **Currency**: - - **Name**: GRAMZ - - **Symbol**: GRAMZ - - **Decimals**: 18 - -## RPC URLs - -NutriEmp-Chain can be accessed through the following RPC endpoints: - -- https://rpc.nutriemp-chain.link - -## NutriEmp-Chain Block Explorers - -- [Nutriemp-chain.link](https://explorer.nutriemp-chain.link) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasis-emerald-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oasis-emerald-testnet.mdx deleted file mode 100644 index 7db2937251..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasis-emerald-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Oasis Emerald Testnet - Emerald Blockchain Network -description: Explore Oasis Emerald Testnet, a blockchain network with chain ID 42261. Learn about its native currency, Emerald Rose, and how to interact with the network. ---- - -# Oasis Emerald Testnet - -Oasis Emerald Testnet is a blockchain network with chain ID 42261. - -## Network Details - -- **Chain ID**: 42261 -- **Chain Name**: Emerald -- **Short Name**: emerald-testnet -- **Network ID**: 42261 -- **Currency**: - - **Name**: Emerald Rose - - **Symbol**: ROSE - - **Decimals**: 18 - -## RPC URLs - -Oasis Emerald Testnet can be accessed through the following RPC endpoints: - -- https://testnet.emerald.oasis.io/ -- wss://testnet.emerald.oasis.io/ws - -## Oasis Emerald Testnet Block Explorers - -- [Oasis Emerald Testnet Explorer](https://explorer.oasis.io/testnet/emerald) - -## Additional Information - -- **Official Website**: https://docs.oasis.io/dapp/emerald - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oasis Emerald Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasis-emerald.mdx b/docs/pages/solutions/chainlist/non-integrated/oasis-emerald.mdx deleted file mode 100644 index 41088ffcec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasis-emerald.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Oasis Emerald - Emerald Blockchain Network -description: Explore Oasis Emerald, a blockchain network with chain ID 42262. Learn about its native currency, Emerald Rose, and how to interact with the network. ---- - -# Oasis Emerald - -Oasis Emerald is a blockchain network with chain ID 42262. - -## Network Details - -- **Chain ID**: 42262 -- **Chain Name**: Emerald -- **Short Name**: emerald -- **Network ID**: 42262 -- **Currency**: - - **Name**: Emerald Rose - - **Symbol**: ROSE - - **Decimals**: 18 - -## RPC URLs - -Oasis Emerald can be accessed through the following RPC endpoints: - -- https://emerald.oasis.io -- wss://emerald.oasis.io/ws - -## Oasis Emerald Block Explorers - -- [Oasis Emerald Explorer](https://explorer.oasis.io/mainnet/emerald) - -## Additional Information - -- **Official Website**: https://docs.oasis.io/dapp/emerald - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire-testnet.mdx deleted file mode 100644 index 84bb1c58fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Oasis Sapphire Testnet - Sapphire Blockchain Network -description: Explore Oasis Sapphire Testnet, a blockchain network with chain ID 23295. Learn about its native currency, Sapphire Test Rose, and how to interact with the network. ---- - -# Oasis Sapphire Testnet - -Oasis Sapphire Testnet is a blockchain network with chain ID 23295. - -## Network Details - -- **Chain ID**: 23295 -- **Chain Name**: Sapphire -- **Short Name**: sapphire-testnet -- **Network ID**: 23295 -- **Currency**: - - **Name**: Sapphire Test Rose - - **Symbol**: TEST - - **Decimals**: 18 - -## RPC URLs - -Oasis Sapphire Testnet can be accessed through the following RPC endpoints: - -- https://testnet.sapphire.oasis.io -- wss://testnet.sapphire.oasis.io/ws - -## Oasis Sapphire Testnet Block Explorers - -- [Oasis Sapphire Testnet Explorer](https://explorer.oasis.io/testnet/sapphire) - -## Additional Information - -- **Official Website**: https://docs.oasis.io/dapp/sapphire - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oasis Sapphire Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire.mdx b/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire.mdx deleted file mode 100644 index 04dc5487ff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasis-sapphire.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Oasis Sapphire - Sapphire Blockchain Network -description: Explore Oasis Sapphire, a blockchain network with chain ID 23294. Learn about its native currency, Sapphire Rose, and how to interact with the network. ---- - -# Oasis Sapphire - -Oasis Sapphire is a blockchain network with chain ID 23294. - -## Network Details - -- **Chain ID**: 23294 -- **Chain Name**: Sapphire -- **Short Name**: sapphire -- **Network ID**: 23294 -- **Currency**: - - **Name**: Sapphire Rose - - **Symbol**: ROSE - - **Decimals**: 18 - -## RPC URLs - -Oasis Sapphire can be accessed through the following RPC endpoints: - -- https://sapphire.oasis.io -- wss://sapphire.oasis.io/ws - -## Oasis Sapphire Block Explorers - -- [Oasis Sapphire Explorer](https://explorer.oasis.io/mainnet/sapphire) - -## Additional Information - -- **Official Website**: https://docs.oasis.io/dapp/sapphire - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasischain.mdx b/docs/pages/solutions/chainlist/non-integrated/oasischain.mdx deleted file mode 100644 index b8420f353d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasischain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: OasisChain Mainnet - OasisChain Blockchain Network -description: Explore OasisChain Mainnet, a blockchain network with chain ID 26863. Learn about its native currency, OAC, and how to interact with the network. ---- - -# OasisChain Mainnet - -OasisChain Mainnet is a blockchain network with chain ID 26863. - -## Network Details - -- **Chain ID**: 26863 -- **Chain Name**: OasisChain -- **Short Name**: OAC -- **Network ID**: 26863 -- **Currency**: - - **Name**: OAC - - **Symbol**: OAC - - **Decimals**: 18 - -## RPC URLs - -OasisChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc1.oasischain.io -- https://rpc2.oasischain.io -- https://rpc3.oasischain.io - -## OasisChain Mainnet Block Explorers - -- [OasisChain Explorer](https://scan.oasischain.io) - -## Additional Information - -- **Official Website**: https://scan.oasischain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasys-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oasys-testnet.mdx deleted file mode 100644 index 8ce141cc1a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasys-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Oasys Testnet - Oasys Blockchain Network -description: Explore Oasys Testnet, a blockchain network with chain ID 9372. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Oasys Testnet - -Oasys Testnet is a blockchain network with chain ID 9372. - -## Network Details - -- **Chain ID**: 9372 -- **Chain Name**: Oasys -- **Short Name**: OAS_TEST -- **Network ID**: 9372 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Oasys Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.oasys.games - -## Oasys Testnet Block Explorers - -- [blockscout](https://explorer.testnet.oasys.games) - -## Additional Information - -- **Official Website**: https://oasys.games - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oasys Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oasys.mdx b/docs/pages/solutions/chainlist/non-integrated/oasys.mdx deleted file mode 100644 index 614d0636ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oasys.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oasys Mainnet - Oasys Blockchain Network -description: Explore Oasys Mainnet, a blockchain network with chain ID 248. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Oasys Mainnet - -Oasys Mainnet is a blockchain network with chain ID 248. - -## Network Details - -- **Chain ID**: 248 -- **Chain Name**: Oasys -- **Short Name**: OAS -- **Network ID**: 248 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Oasys Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.oasys.games - -## Oasys Mainnet Block Explorers - -- [blockscout](https://explorer.oasys.games) - -## Additional Information - -- **Official Website**: https://oasys.games - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ocash-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ocash-testnet.mdx deleted file mode 100644 index c8fc7856e0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ocash-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ocash testnet - OCASH Blockchain Network -description: Explore Ocash testnet, a blockchain network with chain ID 660868. Learn about its native currency, OCASH, and how to interact with the network. ---- - -# Ocash testnet - -Ocash testnet is a blockchain network with chain ID 660868. - -## Network Details - -- **Chain ID**: 660868 -- **Chain Name**: OCASH -- **Short Name**: ocash -- **Network ID**: 660868 -- **Currency**: - - **Name**: OCASH - - **Symbol**: OCASH - - **Decimals**: 18 - -## RPC URLs - -Ocash testnet can be accessed through the following RPC endpoints: - - - -## Ocash testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ocash testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/octaspace.mdx b/docs/pages/solutions/chainlist/non-integrated/octaspace.mdx deleted file mode 100644 index 5e10899b20..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/octaspace.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: OctaSpace - OCTA Blockchain Network -description: Explore OctaSpace, a blockchain network with chain ID 800001. Learn about its native currency, OctaSpace, and how to interact with the network. ---- - -# OctaSpace - -OctaSpace is a blockchain network with chain ID 800001. - -## Network Details - -- **Chain ID**: 800001 -- **Chain Name**: OCTA -- **Short Name**: octa -- **Network ID**: 800001 -- **Currency**: - - **Name**: OctaSpace - - **Symbol**: OCTA - - **Decimals**: 18 - -## RPC URLs - -OctaSpace can be accessed through the following RPC endpoints: - -- https://rpc.octa.space -- wss://rpc.octa.space - -## OctaSpace Block Explorers - -- [blockscout](https://explorer.octa.space) - -## Additional Information - -- **Official Website**: https://octa.space - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/odyssey-chain-(testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/odyssey-chain-(testnet).mdx deleted file mode 100644 index 45a4644dec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/odyssey-chain-(testnet).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Odyssey Chain (Testnet) - DIONE Blockchain Network -description: Explore Odyssey Chain (Testnet), a blockchain network with chain ID 131313. Learn about its native currency, DIONE, and how to interact with the network. ---- - -# Odyssey Chain (Testnet) - -Odyssey Chain (Testnet) is a blockchain network with chain ID 131313. - -## Network Details - -- **Chain ID**: 131313 -- **Chain Name**: DIONE -- **Short Name**: DIONE -- **Network ID**: 131313 -- **Currency**: - - **Name**: DIONE - - **Symbol**: DIONE - - **Decimals**: 18 - -## RPC URLs - -Odyssey Chain (Testnet) can be accessed through the following RPC endpoints: - -- https://testnode.dioneprotocol.com/ext/bc/D/rpc - -## Odyssey Chain (Testnet) Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.dioneprotocol.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Odyssey Chain (Testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oeblock-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oeblock-testnet.mdx deleted file mode 100644 index cf70c948b6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oeblock-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OEBlock Testnet - OEBt Blockchain Network -description: Explore OEBlock Testnet, a blockchain network with chain ID 156. Learn about its native currency, OEBlock, and how to interact with the network. ---- - -# OEBlock Testnet - -OEBlock Testnet is a blockchain network with chain ID 156. - -## Network Details - -- **Chain ID**: 156 -- **Chain Name**: OEBt -- **Short Name**: obe -- **Network ID**: 156 -- **Currency**: - - **Name**: OEBlock - - **Symbol**: OEB - - **Decimals**: 18 - -## RPC URLs - -OEBlock Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.oeblock.com - -## OEBlock Testnet Block Explorers - -- [OEScan explorer](https://testnet.oescan.io) - -## Additional Information - -- **Official Website**: https://www.oeblock.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OEBlock Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oho.mdx b/docs/pages/solutions/chainlist/non-integrated/oho.mdx deleted file mode 100644 index 6e3a7c7162..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oho.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OHO Mainnet - OHO Blockchain Network -description: Explore OHO Mainnet, a blockchain network with chain ID 39815. Learn about its native currency, OHO, and how to interact with the network. ---- - -# OHO Mainnet - -OHO Mainnet is a blockchain network with chain ID 39815. - -## Network Details - -- **Chain ID**: 39815 -- **Chain Name**: OHO -- **Short Name**: oho -- **Network ID**: 39815 -- **Currency**: - - **Name**: OHO - - **Symbol**: OHO - - **Decimals**: 18 - -## RPC URLs - -OHO Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.oho.ai - -## OHO Mainnet Block Explorers - -- [ohoscan](https://ohoscan.com) - -## Additional Information - -- **Official Website**: https://oho.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/okexchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/okexchain-testnet.mdx deleted file mode 100644 index 50a6a19c64..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/okexchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OKExChain Testnet - okexchain Blockchain Network -description: Explore OKExChain Testnet, a blockchain network with chain ID 65. Learn about its native currency, OKExChain Global Utility Token in testnet, and how to interact with the network. ---- - -# OKExChain Testnet - -OKExChain Testnet is a blockchain network with chain ID 65. - -## Network Details - -- **Chain ID**: 65 -- **Chain Name**: okexchain -- **Short Name**: tokt -- **Network ID**: 65 -- **Currency**: - - **Name**: OKExChain Global Utility Token in testnet - - **Symbol**: OKT - - **Decimals**: 18 - -## RPC URLs - -OKExChain Testnet can be accessed through the following RPC endpoints: - -- https://exchaintestrpc.okex.org - -## OKExChain Testnet Block Explorers - -- [OKLink](https://www.oklink.com/okexchain-test) - -## Additional Information - -- **Official Website**: https://www.okex.com/okexchain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OKExChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/okxchain.mdx b/docs/pages/solutions/chainlist/non-integrated/okxchain.mdx deleted file mode 100644 index a0e9613cef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/okxchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: OKXChain Mainnet - okxchain Blockchain Network -description: Explore OKXChain Mainnet, a blockchain network with chain ID 66. Learn about its native currency, OKXChain Global Utility Token, and how to interact with the network. ---- - -# OKXChain Mainnet - -OKXChain Mainnet is a blockchain network with chain ID 66. - -## Network Details - -- **Chain ID**: 66 -- **Chain Name**: okxchain -- **Short Name**: okt -- **Network ID**: 66 -- **Currency**: - - **Name**: OKXChain Global Utility Token - - **Symbol**: OKT - - **Decimals**: 18 - -## RPC URLs - -OKXChain Mainnet can be accessed through the following RPC endpoints: - -- https://exchainrpc.okex.org -- https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff - -## OKXChain Mainnet Block Explorers - -- [OKLink](https://www.oklink.com/en/okc) - -## Additional Information - -- **Official Website**: https://www.okex.com/okc - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/om-platform.mdx b/docs/pages/solutions/chainlist/non-integrated/om-platform.mdx deleted file mode 100644 index ec3d1e2a96..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/om-platform.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OM Platform Mainnet - omplatform Blockchain Network -description: Explore OM Platform Mainnet, a blockchain network with chain ID 1246. Learn about its native currency, OMCOIN, and how to interact with the network. ---- - -# OM Platform Mainnet - -OM Platform Mainnet is a blockchain network with chain ID 1246. - -## Network Details - -- **Chain ID**: 1246 -- **Chain Name**: omplatform -- **Short Name**: om -- **Network ID**: 1246 -- **Currency**: - - **Name**: OMCOIN - - **Symbol**: OM - - **Decimals**: 18 - -## RPC URLs - -OM Platform Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-cnx.omplatform.com/ - -## OM Platform Mainnet Block Explorers - -- [OMSCAN - Expenter](https://omscan.omplatform.com) - -## Additional Information - -- **Official Website**: https://omplatform.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omax.mdx b/docs/pages/solutions/chainlist/non-integrated/omax.mdx deleted file mode 100644 index 3704e7b418..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omax.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Omax Mainnet - OMAX Chain Blockchain Network -description: Explore Omax Mainnet, a blockchain network with chain ID 311. Learn about its native currency, OMAX COIN, and how to interact with the network. ---- - -# Omax Mainnet - -Omax Mainnet is a blockchain network with chain ID 311. - -## Network Details - -- **Chain ID**: 311 -- **Chain Name**: OMAX Chain -- **Short Name**: omax -- **Network ID**: 311 -- **Currency**: - - **Name**: OMAX COIN - - **Symbol**: OMAX - - **Decimals**: 18 - -## RPC URLs - -Omax Mainnet can be accessed through the following RPC endpoints: - -- https://mainapi.omaxray.com - -## Omax Mainnet Block Explorers - -- [Omax Chain Explorer](https://omaxray.com) - -## Additional Information - -- **Official Website**: https://www.omaxcoin.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omchain.mdx b/docs/pages/solutions/chainlist/non-integrated/omchain.mdx deleted file mode 100644 index 46648bf065..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: omChain Mainnet - OML Blockchain Network -description: Explore omChain Mainnet, a blockchain network with chain ID 21816. Learn about its native currency, omChain, and how to interact with the network. ---- - -# omChain Mainnet - -omChain Mainnet is a blockchain network with chain ID 21816. - -## Network Details - -- **Chain ID**: 21816 -- **Chain Name**: OML -- **Short Name**: omc -- **Network ID**: 21816 -- **Currency**: - - **Name**: omChain - - **Symbol**: OMC - - **Decimals**: 18 - -## RPC URLs - -omChain Mainnet can be accessed through the following RPC endpoints: - -- https://seed.omchain.io - -## omChain Mainnet Block Explorers - -- [omChain Explorer](https://explorer.omchain.io) - -## Additional Information - -- **Official Website**: https://omchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omega.mdx b/docs/pages/solutions/chainlist/non-integrated/omega.mdx deleted file mode 100644 index 24372513fa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omega.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Omega Mainnet - OmegaNetwork Blockchain Network -description: Explore Omega Mainnet, a blockchain network with chain ID 408. Learn about its native currency, Omega Network Coin, and how to interact with the network. ---- - -# Omega Mainnet - -Omega Mainnet is a blockchain network with chain ID 408. - -## Network Details - -- **Chain ID**: 408 -- **Chain Name**: OmegaNetwork -- **Short Name**: OmegaNetwork -- **Network ID**: 408 -- **Currency**: - - **Name**: Omega Network Coin - - **Symbol**: OMN - - **Decimals**: 18 - -## RPC URLs - -Omega Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.omtch.com - -## Omega Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omni-omega.mdx b/docs/pages/solutions/chainlist/non-integrated/omni-omega.mdx deleted file mode 100644 index 6c5eb39d65..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omni-omega.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Omni Omega - Omni Blockchain Network -description: Explore Omni Omega, a blockchain network with chain ID 164. Learn about its native currency, Omni, and how to interact with the network. ---- - -# Omni Omega - -Omni Omega is a blockchain network with chain ID 164. - -## Network Details - -- **Chain ID**: 164 -- **Chain Name**: Omni -- **Short Name**: omni_omega -- **Network ID**: 164 -- **Currency**: - - **Name**: Omni - - **Symbol**: OMNI - - **Decimals**: 18 - -## RPC URLs - -Omni Omega can be accessed through the following RPC endpoints: - -- https://omega.omni.network - -## Omni Omega Block Explorers - -- [Omni EVM and cross-chain Explorer](https://omega.omniscan.network) - -## Additional Information - -- **Official Website**: https://docs.omni.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omni-testnet-(deprecated).mdx b/docs/pages/solutions/chainlist/non-integrated/omni-testnet-(deprecated).mdx deleted file mode 100644 index 8db8473c10..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omni-testnet-(deprecated).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Omni Testnet (Deprecated) - Omni Blockchain Network -description: Explore Omni Testnet (Deprecated), a blockchain network with chain ID 165. Learn about its native currency, Omni, and how to interact with the network. ---- - -# Omni Testnet (Deprecated) - -Omni Testnet (Deprecated) is a blockchain network with chain ID 165. - -## Network Details - -- **Chain ID**: 165 -- **Chain Name**: Omni -- **Short Name**: omni_testnet_deprecated -- **Network ID**: 165 -- **Currency**: - - **Name**: Omni - - **Symbol**: OMNI - - **Decimals**: 18 - -## RPC URLs - -Omni Testnet (Deprecated) can be accessed through the following RPC endpoints: - - - -## Omni Testnet (Deprecated) Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.omni.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Omni Testnet (Deprecated) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/omni.mdx b/docs/pages/solutions/chainlist/non-integrated/omni.mdx deleted file mode 100644 index 355c1e252b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omni.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Omni - Omni Blockchain Network -description: Explore Omni, a blockchain network with chain ID 166. Learn about its native currency, Omni, and how to interact with the network. ---- - -# Omni - -Omni is a blockchain network with chain ID 166. - -## Network Details - -- **Chain ID**: 166 -- **Chain Name**: Omni -- **Short Name**: omni -- **Network ID**: 166 -- **Currency**: - - **Name**: Omni - - **Symbol**: OMNI - - **Decimals**: 18 - -## RPC URLs - -Omni can be accessed through the following RPC endpoints: - - - -## Omni Block Explorers - - - -## Additional Information - -- **Official Website**: https://docs.omni.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omnia-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/omnia-chain.mdx deleted file mode 100644 index 3a86d301bd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omnia-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Omnia Chain - OMNIA Blockchain Network -description: Explore Omnia Chain, a blockchain network with chain ID 2342. Learn about its native currency, Omnia, and how to interact with the network. ---- - -# Omnia Chain - -Omnia Chain is a blockchain network with chain ID 2342. - -## Network Details - -- **Chain ID**: 2342 -- **Chain Name**: OMNIA -- **Short Name**: omnia -- **Network ID**: 2342 -- **Currency**: - - **Name**: Omnia - - **Symbol**: OMNIA - - **Decimals**: 18 - -## RPC URLs - -Omnia Chain can be accessed through the following RPC endpoints: - -- https://rpc.omniaverse.io - -## Omnia Chain Block Explorers - -- [OmniaVerse Explorer](https://scan.omniaverse.io) - -## Additional Information - -- **Official Website**: https://www.omniaverse.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/omochi-5042.mdx b/docs/pages/solutions/chainlist/non-integrated/omochi-5042.mdx deleted file mode 100644 index 1a335fdef0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omochi-5042.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OMOCHI - Avalanche Blockchain Network -description: Explore OMOCHI, a blockchain network with chain ID 5042. Learn about its native currency, OMOCHI Token, and how to interact with the network. ---- - -# OMOCHI - -OMOCHI is a blockchain network with chain ID 5042. - -## Network Details - -- **Chain ID**: 5042 -- **Chain Name**: Avalanche -- **Short Name**: OMOCHI -- **Network ID**: 5042 -- **Currency**: - - **Name**: OMOCHI Token - - **Symbol**: OMCH - - **Decimals**: 18 - -## RPC URLs - -OMOCHI can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/omochi/testnet/rpc - -## OMOCHI Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OMOCHI Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/omochi.mdx b/docs/pages/solutions/chainlist/non-integrated/omochi.mdx deleted file mode 100644 index 12c4442652..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/omochi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OMOCHI - Avalanche Blockchain Network -description: Explore OMOCHI, a blockchain network with chain ID 5041. Learn about its native currency, OMOCHI Token, and how to interact with the network. ---- - -# OMOCHI - -OMOCHI is a blockchain network with chain ID 5041. - -## Network Details - -- **Chain ID**: 5041 -- **Chain Name**: Avalanche -- **Short Name**: OMOCHI -- **Network ID**: 5041 -- **Currency**: - - **Name**: OMOCHI Token - - **Symbol**: OMCH - - **Decimals**: 18 - -## RPC URLs - -OMOCHI can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/omochi/mainnet/rpc - -## OMOCHI Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/onchain-points.mdx b/docs/pages/solutions/chainlist/non-integrated/onchain-points.mdx deleted file mode 100644 index 440f296b66..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/onchain-points.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Onchain Points - POP Blockchain Network -description: Explore Onchain Points, a blockchain network with chain ID 17071. Learn about its native currency, OnchainPoints.xyz, and how to interact with the network. ---- - -# Onchain Points - -Onchain Points is a blockchain network with chain ID 17071. - -## Network Details - -- **Chain ID**: 17071 -- **Chain Name**: POP -- **Short Name**: pop -- **Network ID**: 17071 -- **Currency**: - - **Name**: OnchainPoints.xyz - - **Symbol**: POP - - **Decimals**: 18 - -## RPC URLs - -Onchain Points can be accessed through the following RPC endpoints: - -- https://rpc.onchainpoints.xyz -- https://rpc-onchain-points-8n0qkkpr2j.t.conduit.xyz/{CONDUIT_API_KEY} - -## Onchain Points Block Explorers - -- [blockscout](https://explorer.onchainpoints.xyz) - -## Additional Information - -- **Official Website**: https://onchainpoints.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/one-world-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/one-world-chain-testnet.mdx deleted file mode 100644 index f26f9914a2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/one-world-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: One World Chain Testnet - One World Chain Blockchain Network -description: Explore One World Chain Testnet, a blockchain network with chain ID 552981. Learn about its native currency, OWCT, and how to interact with the network. ---- - -# One World Chain Testnet - -One World Chain Testnet is a blockchain network with chain ID 552981. - -## Network Details - -- **Chain ID**: 552981 -- **Chain Name**: One World Chain -- **Short Name**: OWCTt -- **Network ID**: 552981 -- **Currency**: - - **Name**: OWCT - - **Symbol**: OWCT - - **Decimals**: 18 - -## RPC URLs - -One World Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.oneworldchain.org - -## One World Chain Testnet Block Explorers - -- [One World Chain Testnet Explorer](https://testnet.oneworldchain.org) - -## Additional Information - -- **Official Website**: https://oneworldchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## One World Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/one-world-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/one-world-chain.mdx deleted file mode 100644 index 9c18007828..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/one-world-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: One World Chain Mainnet - One World Chain Blockchain Network -description: Explore One World Chain Mainnet, a blockchain network with chain ID 309075. Learn about its native currency, OWCT, and how to interact with the network. ---- - -# One World Chain Mainnet - -One World Chain Mainnet is a blockchain network with chain ID 309075. - -## Network Details - -- **Chain ID**: 309075 -- **Chain Name**: One World Chain -- **Short Name**: OWCTm -- **Network ID**: 309075 -- **Currency**: - - **Name**: OWCT - - **Symbol**: OWCT - - **Decimals**: 18 - -## RPC URLs - -One World Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.oneworldchain.org - -## One World Chain Mainnet Block Explorers - -- [One World Chain Mainnet Explorer](https://mainnet.oneworldchain.org) - -## Additional Information - -- **Official Website**: https://oneworldchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oneledger-testnet-frankenstein.mdx b/docs/pages/solutions/chainlist/non-integrated/oneledger-testnet-frankenstein.mdx deleted file mode 100644 index 01548d993d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oneledger-testnet-frankenstein.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OneLedger Testnet Frankenstein - OLT Blockchain Network -description: Explore OneLedger Testnet Frankenstein, a blockchain network with chain ID 4216137055. Learn about its native currency, OLT, and how to interact with the network. ---- - -# OneLedger Testnet Frankenstein - -OneLedger Testnet Frankenstein is a blockchain network with chain ID 4216137055. - -## Network Details - -- **Chain ID**: 4216137055 -- **Chain Name**: OLT -- **Short Name**: frankenstein -- **Network ID**: 4216137055 -- **Currency**: - - **Name**: OLT - - **Symbol**: OLT - - **Decimals**: 18 - -## RPC URLs - -OneLedger Testnet Frankenstein can be accessed through the following RPC endpoints: - -- https://frankenstein-rpc.oneledger.network - -## OneLedger Testnet Frankenstein Block Explorers - -- [OneLedger Block Explorer](https://frankenstein-explorer.oneledger.network) - -## Additional Information - -- **Official Website**: https://oneledger.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OneLedger Testnet Frankenstein Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oneledger.mdx b/docs/pages/solutions/chainlist/non-integrated/oneledger.mdx deleted file mode 100644 index d0a3845aae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oneledger.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OneLedger Mainnet - OLT Blockchain Network -description: Explore OneLedger Mainnet, a blockchain network with chain ID 311752642. Learn about its native currency, OLT, and how to interact with the network. ---- - -# OneLedger Mainnet - -OneLedger Mainnet is a blockchain network with chain ID 311752642. - -## Network Details - -- **Chain ID**: 311752642 -- **Chain Name**: OLT -- **Short Name**: oneledger -- **Network ID**: 311752642 -- **Currency**: - - **Name**: OLT - - **Symbol**: OLT - - **Decimals**: 18 - -## RPC URLs - -OneLedger Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.oneledger.network - -## OneLedger Mainnet Block Explorers - -- [OneLedger Block Explorer](https://mainnet-explorer.oneledger.network) - -## Additional Information - -- **Official Website**: https://oneledger.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oneness-network.mdx b/docs/pages/solutions/chainlist/non-integrated/oneness-network.mdx deleted file mode 100644 index b7799cfbfe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oneness-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oneness Network - Oneness Blockchain Network -description: Explore Oneness Network, a blockchain network with chain ID 2140. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Oneness Network - -Oneness Network is a blockchain network with chain ID 2140. - -## Network Details - -- **Chain ID**: 2140 -- **Chain Name**: Oneness -- **Short Name**: oneness -- **Network ID**: 2140 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Oneness Network can be accessed through the following RPC endpoints: - -- https://rpc.onenesslabs.io/ - -## Oneness Network Block Explorers - -- [oneness-mainnet](https://scan.onenesslabs.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oneness-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oneness-testnet.mdx deleted file mode 100644 index e33f37413e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oneness-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Oneness TestNet - Oneness-Testnet Blockchain Network -description: Explore Oneness TestNet, a blockchain network with chain ID 2141. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Oneness TestNet - -Oneness TestNet is a blockchain network with chain ID 2141. - -## Network Details - -- **Chain ID**: 2141 -- **Chain Name**: Oneness-Testnet -- **Short Name**: oneness-testnet -- **Network ID**: 2141 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Oneness TestNet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.onenesslabs.io/ - -## Oneness TestNet Block Explorers - -- [oneness-testnet](https://scan.testnet.onenesslabs.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oneness TestNet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/onigiri-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/onigiri-subnet.mdx deleted file mode 100644 index 754c2ffe28..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/onigiri-subnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ONIGIRI Subnet - ONIGIRI Blockchain Network -description: Explore ONIGIRI Subnet, a blockchain network with chain ID 5040. Learn about its native currency, ONIGIRI, and how to interact with the network. ---- - -# ONIGIRI Subnet - -ONIGIRI Subnet is a blockchain network with chain ID 5040. - -## Network Details - -- **Chain ID**: 5040 -- **Chain Name**: ONIGIRI -- **Short Name**: onigiri -- **Network ID**: 5040 -- **Currency**: - - **Name**: ONIGIRI - - **Symbol**: ONGR - - **Decimals**: 18 - -## RPC URLs - -ONIGIRI Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/onigiri/mainnet/rpc - -## ONIGIRI Subnet Block Explorers - -- [ONIGIRI Explorer](https://subnets.avax.network/onigiri) - -## Additional Information - -- **Official Website**: https://www.ongr.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/onigiri-test-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/onigiri-test-subnet.mdx deleted file mode 100644 index 952b0b3839..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/onigiri-test-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ONIGIRI Test Subnet - ONIGIRI Blockchain Network -description: Explore ONIGIRI Test Subnet, a blockchain network with chain ID 5039. Learn about its native currency, ONIGIRI, and how to interact with the network. ---- - -# ONIGIRI Test Subnet - -ONIGIRI Test Subnet is a blockchain network with chain ID 5039. - -## Network Details - -- **Chain ID**: 5039 -- **Chain Name**: ONIGIRI -- **Short Name**: onigiritest -- **Network ID**: 5039 -- **Currency**: - - **Name**: ONIGIRI - - **Symbol**: ONGR - - **Decimals**: 18 - -## RPC URLs - -ONIGIRI Test Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/onigiri/testnet/rpc - -## ONIGIRI Test Subnet Block Explorers - -- [ONIGIRI Explorer](https://subnets-test.avax.network/onigiri) - -## Additional Information - -- **Official Website**: https://www.ongr.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ONIGIRI Test Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ontology-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ontology-testnet.mdx deleted file mode 100644 index 4abfef7d3b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ontology-testnet.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: Ontology Testnet - Ontology Blockchain Network -description: Explore Ontology Testnet, a blockchain network with chain ID 5851. Learn about its native currency, ONG, and how to interact with the network. ---- - -# Ontology Testnet - -Ontology Testnet is a blockchain network with chain ID 5851. - -## Network Details - -- **Chain ID**: 5851 -- **Chain Name**: Ontology -- **Short Name**: OntologyTestnet -- **Network ID**: 5851 -- **Currency**: - - **Name**: ONG - - **Symbol**: ONG - - **Decimals**: 18 - -## RPC URLs - -Ontology Testnet can be accessed through the following RPC endpoints: - -- http://polaris1.ont.io:20339 -- http://polaris2.ont.io:20339 -- http://polaris3.ont.io:20339 -- http://polaris4.ont.io:20339 -- https://polaris1.ont.io:10339 -- https://polaris2.ont.io:10339 -- https://polaris3.ont.io:10339 -- https://polaris4.ont.io:10339 - -## Ontology Testnet Block Explorers - -- [explorer](https://explorer.ont.io/testnet) - -## Additional Information - -- **Official Website**: https://ont.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ontology Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ontology.mdx b/docs/pages/solutions/chainlist/non-integrated/ontology.mdx deleted file mode 100644 index 51657a3645..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ontology.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Ontology Mainnet - Ontology Blockchain Network -description: Explore Ontology Mainnet, a blockchain network with chain ID 58. Learn about its native currency, ONG, and how to interact with the network. ---- - -# Ontology Mainnet - -Ontology Mainnet is a blockchain network with chain ID 58. - -## Network Details - -- **Chain ID**: 58 -- **Chain Name**: Ontology -- **Short Name**: OntologyMainnet -- **Network ID**: 58 -- **Currency**: - - **Name**: ONG - - **Symbol**: ONG - - **Decimals**: 18 - -## RPC URLs - -Ontology Mainnet can be accessed through the following RPC endpoints: - -- http://dappnode1.ont.io:20339 -- http://dappnode2.ont.io:20339 -- http://dappnode3.ont.io:20339 -- http://dappnode4.ont.io:20339 -- https://dappnode1.ont.io:10339 -- https://dappnode2.ont.io:10339 -- https://dappnode3.ont.io:10339 -- https://dappnode4.ont.io:10339 - -## Ontology Mainnet Block Explorers - -- [explorer](https://explorer.ont.io) - -## Additional Information - -- **Official Website**: https://ont.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/onus-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/onus-chain-testnet.mdx deleted file mode 100644 index 4a45278e07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/onus-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ONUS Chain Testnet - onus Blockchain Network -description: Explore ONUS Chain Testnet, a blockchain network with chain ID 1945. Learn about its native currency, ONUS, and how to interact with the network. ---- - -# ONUS Chain Testnet - -ONUS Chain Testnet is a blockchain network with chain ID 1945. - -## Network Details - -- **Chain ID**: 1945 -- **Chain Name**: onus -- **Short Name**: onus-testnet -- **Network ID**: 1945 -- **Currency**: - - **Name**: ONUS - - **Symbol**: ONUS - - **Decimals**: 18 - -## RPC URLs - -ONUS Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.onuschain.io - -## ONUS Chain Testnet Block Explorers - -- [Onus explorer testnet](https://explorer-testnet.onuschain.io) - -## Additional Information - -- **Official Website**: https://onuschain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ONUS Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/onus-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/onus-chain.mdx deleted file mode 100644 index c4894d711c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/onus-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ONUS Chain Mainnet - onus Blockchain Network -description: Explore ONUS Chain Mainnet, a blockchain network with chain ID 1975. Learn about its native currency, ONUS, and how to interact with the network. ---- - -# ONUS Chain Mainnet - -ONUS Chain Mainnet is a blockchain network with chain ID 1975. - -## Network Details - -- **Chain ID**: 1975 -- **Chain Name**: onus -- **Short Name**: onus-mainnet -- **Network ID**: 1975 -- **Currency**: - - **Name**: ONUS - - **Symbol**: ONUS - - **Decimals**: 18 - -## RPC URLs - -ONUS Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.onuschain.io -- wss://ws.onuschain.io - -## ONUS Chain Mainnet Block Explorers - -- [Onus explorer mainnet](https://explorer.onuschain.io) - -## Additional Information - -- **Official Website**: https://onuschain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oone-chain-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oone-chain-devnet.mdx deleted file mode 100644 index da66709450..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oone-chain-devnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Oone Chain Devnet - OONE Devnet Blockchain Network -description: Explore Oone Chain Devnet, a blockchain network with chain ID 333777. Learn about its native currency, tOONE, and how to interact with the network. ---- - -# Oone Chain Devnet - -Oone Chain Devnet is a blockchain network with chain ID 333777. - -## Network Details - -- **Chain ID**: 333777 -- **Chain Name**: OONE Devnet -- **Short Name**: oonedev -- **Network ID**: 333777 -- **Currency**: - - **Name**: tOONE - - **Symbol**: tOONE - - **Decimals**: 18 - -## RPC URLs - -Oone Chain Devnet can be accessed through the following RPC endpoints: - -- https://rpc.dev.oonechain.com - -## Oone Chain Devnet Block Explorers - -- [blockscout](https://dev.oonescan.com) - -## Additional Information - -- **Official Website**: https://oonechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oone Chain Devnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oone-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oone-chain-testnet.mdx deleted file mode 100644 index 2283631e09..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oone-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Oone Chain Testnet - OONE Testnet Blockchain Network -description: Explore Oone Chain Testnet, a blockchain network with chain ID 333666. Learn about its native currency, tOONE, and how to interact with the network. ---- - -# Oone Chain Testnet - -Oone Chain Testnet is a blockchain network with chain ID 333666. - -## Network Details - -- **Chain ID**: 333666 -- **Chain Name**: OONE Testnet -- **Short Name**: oonetest -- **Network ID**: 333666 -- **Currency**: - - **Name**: tOONE - - **Symbol**: tOONE - - **Decimals**: 18 - -## RPC URLs - -Oone Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.oonechain.com - -## Oone Chain Testnet Block Explorers - -- [blockscout](https://testnet.oonescan.com) - -## Additional Information - -- **Official Website**: https://oonechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Oone Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oort-ascraeus.mdx b/docs/pages/solutions/chainlist/non-integrated/oort-ascraeus.mdx deleted file mode 100644 index 54bad10980..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oort-ascraeus.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oort Ascraeus - Ascraeus Blockchain Network -description: Explore Oort Ascraeus, a blockchain network with chain ID 972. Learn about its native currency, Oort, and how to interact with the network. ---- - -# Oort Ascraeus - -Oort Ascraeus is a blockchain network with chain ID 972. - -## Network Details - -- **Chain ID**: 972 -- **Chain Name**: Ascraeus -- **Short Name**: Ascraeus -- **Network ID**: 972 -- **Currency**: - - **Name**: Oort - - **Symbol**: CCNA - - **Decimals**: 18 - -## RPC URLs - -Oort Ascraeus can be accessed through the following RPC endpoints: - -- https://ascraeus-rpc.oortech.com - -## Oort Ascraeus Block Explorers - -- [Oort Ascraeus Explorer](https://ascraeus-scan.oortech.com) - -## Additional Information - -- **Official Website**: https://oortech.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oort-dev.mdx b/docs/pages/solutions/chainlist/non-integrated/oort-dev.mdx deleted file mode 100644 index 372dd4129b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oort-dev.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oort MainnetDev - MainnetDev Blockchain Network -description: Explore Oort MainnetDev, a blockchain network with chain ID 9700. Learn about its native currency, Oort, and how to interact with the network. ---- - -# Oort MainnetDev - -Oort MainnetDev is a blockchain network with chain ID 9700. - -## Network Details - -- **Chain ID**: 9700 -- **Chain Name**: MainnetDev -- **Short Name**: MainnetDev -- **Network ID**: 9700 -- **Currency**: - - **Name**: Oort - - **Symbol**: OORT - - **Decimals**: 18 - -## RPC URLs - -Oort MainnetDev can be accessed through the following RPC endpoints: - -- https://dev-rpc.oortech.com - -## Oort MainnetDev Block Explorers - -- [Oort MainnetDev Scan](https://dev-scan.oortech.com) - -## Additional Information - -- **Official Website**: https://oortech.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oort-huygens.mdx b/docs/pages/solutions/chainlist/non-integrated/oort-huygens.mdx deleted file mode 100644 index 906f9bda43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oort-huygens.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oort Huygens - Huygens Blockchain Network -description: Explore Oort Huygens, a blockchain network with chain ID 971. Learn about its native currency, Oort, and how to interact with the network. ---- - -# Oort Huygens - -Oort Huygens is a blockchain network with chain ID 971. - -## Network Details - -- **Chain ID**: 971 -- **Chain Name**: Huygens -- **Short Name**: Huygens -- **Network ID**: 971 -- **Currency**: - - **Name**: Oort - - **Symbol**: CCN - - **Decimals**: 18 - -## RPC URLs - -Oort Huygens can be accessed through the following RPC endpoints: - - - -## Oort Huygens Block Explorers - - - -## Additional Information - -- **Official Website**: https://oortech.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oort.mdx b/docs/pages/solutions/chainlist/non-integrated/oort.mdx deleted file mode 100644 index f1079ed307..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oort.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oort Mainnet - Oort Mainnet Blockchain Network -description: Explore Oort Mainnet, a blockchain network with chain ID 970. Learn about its native currency, Oort, and how to interact with the network. ---- - -# Oort Mainnet - -Oort Mainnet is a blockchain network with chain ID 970. - -## Network Details - -- **Chain ID**: 970 -- **Chain Name**: Oort Mainnet -- **Short Name**: ccn -- **Network ID**: 970 -- **Currency**: - - **Name**: Oort - - **Symbol**: OORT - - **Decimals**: 18 - -## RPC URLs - -Oort Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.oortech.com - -## Oort Mainnet Block Explorers - -- [Oort Mainnet Explorer](https://mainnet-scan.oortech.com) - -## Additional Information - -- **Official Website**: https://oortech.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/op-celestia-rasberry.mdx b/docs/pages/solutions/chainlist/non-integrated/op-celestia-rasberry.mdx deleted file mode 100644 index bbb2856460..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/op-celestia-rasberry.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: OP Celestia Raspberry - ETH Blockchain Network -description: Explore OP Celestia Raspberry, a blockchain network with chain ID 123420111. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# OP Celestia Raspberry - -OP Celestia Raspberry is a blockchain network with chain ID 123420111. - -## Network Details - -- **Chain ID**: 123420111 -- **Chain Name**: ETH -- **Short Name**: opcelestia-raspberry -- **Network ID**: 123420111 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -OP Celestia Raspberry can be accessed through the following RPC endpoints: - -- https://rpc.opcelestia-raspberry.gelato.digital -- wss://ws.opcelestia-raspberry.gelato.digital - -## OP Celestia Raspberry Block Explorers - -- [blockscout](https://opcelestia-raspberry.gelatoscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/opcelestia-raspberry - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OP Celestia Raspberry Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/opal-testnet-by-unique.mdx b/docs/pages/solutions/chainlist/non-integrated/opal-testnet-by-unique.mdx deleted file mode 100644 index 734f3a6383..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/opal-testnet-by-unique.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Opal testnet by Unique - UNQ Blockchain Network -description: Explore Opal testnet by Unique, a blockchain network with chain ID 8882. Learn about its native currency, Opal, and how to interact with the network. ---- - -# Opal testnet by Unique - -Opal testnet by Unique is a blockchain network with chain ID 8882. - -## Network Details - -- **Chain ID**: 8882 -- **Chain Name**: UNQ -- **Short Name**: opl -- **Network ID**: 8882 -- **Currency**: - - **Name**: Opal - - **Symbol**: UNQ - - **Decimals**: 18 - -## RPC URLs - -Opal testnet by Unique can be accessed through the following RPC endpoints: - -- https://rpc-opal.unique.network -- https://us-rpc-opal.unique.network -- https://eu-rpc-opal.unique.network -- https://asia-rpc-opal.unique.network - -## Opal testnet by Unique Block Explorers - -- [Unique Scan / Opal](https://uniquescan.io/opal) - -## Additional Information - -- **Official Website**: https://unique.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Opal testnet by Unique Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/opbnb-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/opbnb-testnet.mdx deleted file mode 100644 index 2bab4ce9dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/opbnb-testnet.mdx +++ /dev/null @@ -1,48 +0,0 @@ ---- -title: opBNB Testnet - opBNB Blockchain Network -description: Explore opBNB Testnet, a blockchain network with chain ID 5611. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# opBNB Testnet - -opBNB Testnet is a blockchain network with chain ID 5611. - -## Network Details - -- **Chain ID**: 5611 -- **Chain Name**: opBNB -- **Short Name**: obnbt -- **Network ID**: 5611 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: tBNB - - **Decimals**: 18 - -## RPC URLs - -opBNB Testnet can be accessed through the following RPC endpoints: - -- https://opbnb-testnet-rpc.bnbchain.org -- https://opbnb-testnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3 -- wss://opbnb-testnet.nodereal.io/ws/v1/64a9df0874fb4a93b9d0a3849de012d3 -- https://opbnb-testnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5 -- wss://opbnb-testnet.nodereal.io/ws/v1/e9a36765eb8a40b9bd12e680a1fd2bc5 -- https://opbnb-testnet-rpc.publicnode.com -- wss://opbnb-testnet-rpc.publicnode.com - -## opBNB Testnet Block Explorers - -- [bscscan-opbnb-testnet](https://opbnb-testnet.bscscan.com) -- [opbnbscan](https://opbnbscan.com) - -## Additional Information - -- **Official Website**: https://opbnb.bnbchain.org/en - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## opBNB Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/opbnb.mdx b/docs/pages/solutions/chainlist/non-integrated/opbnb.mdx deleted file mode 100644 index 233eb84da4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/opbnb.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: opBNB Mainnet - opBNB Blockchain Network -description: Explore opBNB Mainnet, a blockchain network with chain ID 204. Learn about its native currency, BNB Chain Native Token, and how to interact with the network. ---- - -# opBNB Mainnet - -opBNB Mainnet is a blockchain network with chain ID 204. - -## Network Details - -- **Chain ID**: 204 -- **Chain Name**: opBNB -- **Short Name**: obnb -- **Network ID**: 204 -- **Currency**: - - **Name**: BNB Chain Native Token - - **Symbol**: BNB - - **Decimals**: 18 - -## RPC URLs - -opBNB Mainnet can be accessed through the following RPC endpoints: - -- https://opbnb-mainnet-rpc.bnbchain.org -- https://opbnb-mainnet.nodereal.io/v1/64a9df0874fb4a93b9d0a3849de012d3 -- https://opbnb-mainnet.nodereal.io/v1/e9a36765eb8a40b9bd12e680a1fd2bc5 -- https://opbnb-rpc.publicnode.com/ -- https://opbnb.drpc.org/ - -## opBNB Mainnet Block Explorers - -- [opbnbscan](https://mainnet.opbnbscan.com) - -## Additional Information - -- **Official Website**: https://opbnb.bnbchain.org/en - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/open-campus-codex.mdx b/docs/pages/solutions/chainlist/non-integrated/open-campus-codex.mdx deleted file mode 100644 index d9534f98fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/open-campus-codex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Open Campus Codex - Open Campus Codex Blockchain Network -description: Explore Open Campus Codex, a blockchain network with chain ID 656476. Learn about its native currency, EDU, and how to interact with the network. ---- - -# Open Campus Codex - -Open Campus Codex is a blockchain network with chain ID 656476. - -## Network Details - -- **Chain ID**: 656476 -- **Chain Name**: Open Campus Codex -- **Short Name**: open-campus-codex -- **Network ID**: 656476 -- **Currency**: - - **Name**: EDU - - **Symbol**: EDU - - **Decimals**: 18 - -## RPC URLs - -Open Campus Codex can be accessed through the following RPC endpoints: - -- https://rpc.open-campus-codex.gelato.digital - -## Open Campus Codex Block Explorers - -- [Open Campus Codex](https://opencampus-codex.blockscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/open-campus-codex - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/openchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/openchain-testnet.mdx deleted file mode 100644 index d4794b3ce9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OpenChain Testnet - OpenChain Testnet Blockchain Network -description: Explore OpenChain Testnet, a blockchain network with chain ID 776. Learn about its native currency, Openchain Testnet, and how to interact with the network. ---- - -# OpenChain Testnet - -OpenChain Testnet is a blockchain network with chain ID 776. - -## Network Details - -- **Chain ID**: 776 -- **Chain Name**: OpenChain Testnet -- **Short Name**: opc -- **Network ID**: 776 -- **Currency**: - - **Name**: Openchain Testnet - - **Symbol**: TOPC - - **Decimals**: 18 - -## RPC URLs - -OpenChain Testnet can be accessed through the following RPC endpoints: - - - -## OpenChain Testnet Block Explorers - -- [OPEN CHAIN TESTNET](https://testnet.openchain.info) - -## Additional Information - -- **Official Website**: https://testnet.openchain.info/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OpenChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/openchain.mdx b/docs/pages/solutions/chainlist/non-integrated/openchain.mdx deleted file mode 100644 index 30e04cf964..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpenChain Mainnet - OpenChain Blockchain Network -description: Explore OpenChain Mainnet, a blockchain network with chain ID 474142. Learn about its native currency, OpenCoin, and how to interact with the network. ---- - -# OpenChain Mainnet - -OpenChain Mainnet is a blockchain network with chain ID 474142. - -## Network Details - -- **Chain ID**: 474142 -- **Chain Name**: OpenChain -- **Short Name**: oc -- **Network ID**: 474142 -- **Currency**: - - **Name**: OpenCoin - - **Symbol**: OPC - - **Decimals**: 10 - -## RPC URLs - -OpenChain Mainnet can be accessed through the following RPC endpoints: - -- https://baas-rpc.luniverse.io:18545?lChainId=1641349324562974539 - -## OpenChain Mainnet Block Explorers - -- [SIDE SCAN](https://sidescan.luniverse.io/1641349324562974539) - -## Additional Information - -- **Official Website**: https://www.openchain.live - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/openex-long-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/openex-long-testnet.mdx deleted file mode 100644 index b63aa2a3ed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openex-long-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OpenEX LONG Testnet - OEX Blockchain Network -description: Explore OpenEX LONG Testnet, a blockchain network with chain ID 7798. Learn about its native currency, USDT Testnet, and how to interact with the network. ---- - -# OpenEX LONG Testnet - -OpenEX LONG Testnet is a blockchain network with chain ID 7798. - -## Network Details - -- **Chain ID**: 7798 -- **Chain Name**: OEX -- **Short Name**: oex -- **Network ID**: 7798 -- **Currency**: - - **Name**: USDT Testnet - - **Symbol**: USDT - - **Decimals**: 18 - -## RPC URLs - -OpenEX LONG Testnet can be accessed through the following RPC endpoints: - -- https://long.rpc.openex.network/ - -## OpenEX LONG Testnet Block Explorers - -- [OpenEX Long Testnet Explorer](https://scan.long.openex.network) - -## Additional Information - -- **Official Website**: https://openex.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OpenEX LONG Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/openpiece-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/openpiece-testnet.mdx deleted file mode 100644 index 98e9607fb8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openpiece-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Openpiece Testnet - OPENPIECE Blockchain Network -description: Explore Openpiece Testnet, a blockchain network with chain ID 141. Learn about its native currency, Belly, and how to interact with the network. ---- - -# Openpiece Testnet - -Openpiece Testnet is a blockchain network with chain ID 141. - -## Network Details - -- **Chain ID**: 141 -- **Chain Name**: OPENPIECE -- **Short Name**: OPtest -- **Network ID**: 141 -- **Currency**: - - **Name**: Belly - - **Symbol**: BELLY - - **Decimals**: 18 - -## RPC URLs - -Openpiece Testnet can be accessed through the following RPC endpoints: - -- https://testnet.openpiece.io - -## Openpiece Testnet Block Explorers - -- [Belly Scan](https://testnet.bellyscan.com) - -## Additional Information - -- **Official Website**: https://cryptopiece.online - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Openpiece Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/openpiece.mdx b/docs/pages/solutions/chainlist/non-integrated/openpiece.mdx deleted file mode 100644 index 7522d83bad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openpiece.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Openpiece Mainnet - OPENPIECE Blockchain Network -description: Explore Openpiece Mainnet, a blockchain network with chain ID 54. Learn about its native currency, Belly, and how to interact with the network. ---- - -# Openpiece Mainnet - -Openpiece Mainnet is a blockchain network with chain ID 54. - -## Network Details - -- **Chain ID**: 54 -- **Chain Name**: OPENPIECE -- **Short Name**: OP -- **Network ID**: 54 -- **Currency**: - - **Name**: Belly - - **Symbol**: BELLY - - **Decimals**: 18 - -## RPC URLs - -Openpiece Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.openpiece.io - -## Openpiece Mainnet Block Explorers - -- [Belly Scan](https://bellyscan.com) - -## Additional Information - -- **Official Website**: https://cryptopiece.online - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/openvessel.mdx b/docs/pages/solutions/chainlist/non-integrated/openvessel.mdx deleted file mode 100644 index 113b03bb37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/openvessel.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpenVessel - VSL Blockchain Network -description: Explore OpenVessel, a blockchain network with chain ID 7355310. Learn about its native currency, Vessel ETH, and how to interact with the network. ---- - -# OpenVessel - -OpenVessel is a blockchain network with chain ID 7355310. - -## Network Details - -- **Chain ID**: 7355310 -- **Chain Name**: VSL -- **Short Name**: vsl -- **Network ID**: 7355310 -- **Currency**: - - **Name**: Vessel ETH - - **Symbol**: VETH - - **Decimals**: 18 - -## RPC URLs - -OpenVessel can be accessed through the following RPC endpoints: - -- https://mainnet-external.openvessel.io - -## OpenVessel Block Explorers - -- [openvessel-mainnet](https://mainnet-explorer.openvessel.io) - -## Additional Information - -- **Official Website**: https://www.openvessel.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/opside-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/opside-testnet.mdx deleted file mode 100644 index 44b7c692ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/opside-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Opside Testnet - Opside Blockchain Network -description: Explore Opside Testnet, a blockchain network with chain ID 23118. Learn about its native currency, IDE, and how to interact with the network. ---- - -# Opside Testnet - -Opside Testnet is a blockchain network with chain ID 23118. - -## Network Details - -- **Chain ID**: 23118 -- **Chain Name**: Opside -- **Short Name**: opside -- **Network ID**: 23118 -- **Currency**: - - **Name**: IDE - - **Symbol**: IDE - - **Decimals**: 18 - -## RPC URLs - -Opside Testnet can be accessed through the following RPC endpoints: - -- https://testrpc.opside.network - -## Opside Testnet Block Explorers - -- [opsideInfo](https://opside.info) - -## Additional Information - -- **Official Website**: https://opside.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Opside Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optimism-bedrock-(goerli-alpha-testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/optimism-bedrock-(goerli-alpha-testnet).mdx deleted file mode 100644 index 79fb58c0aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optimism-bedrock-(goerli-alpha-testnet).mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Optimism Bedrock (Goerli Alpha Testnet) - ETH Blockchain Network -description: Explore Optimism Bedrock (Goerli Alpha Testnet), a blockchain network with chain ID 28528. Learn about its native currency, Goerli Ether, and how to interact with the network. ---- - -# Optimism Bedrock (Goerli Alpha Testnet) - -Optimism Bedrock (Goerli Alpha Testnet) is a blockchain network with chain ID 28528. - -## Network Details - -- **Chain ID**: 28528 -- **Chain Name**: ETH -- **Short Name**: obgor -- **Network ID**: 28528 -- **Currency**: - - **Name**: Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Optimism Bedrock (Goerli Alpha Testnet) can be accessed through the following RPC endpoints: - -- https://alpha-1-replica-0.bedrock-goerli.optimism.io -- https://alpha-1-replica-1.bedrock-goerli.optimism.io -- https://alpha-1-replica-2.bedrock-goerli.optimism.io -- https://alpha-1-replica-2.bedrock-goerli.optimism.io - -## Optimism Bedrock (Goerli Alpha Testnet) Block Explorers - -- [blockscout](https://blockscout.com/optimism/bedrock-alpha) - -## Additional Information - -- **Official Website**: https://community.optimism.io/docs/developers/bedrock - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Optimism Bedrock (Goerli Alpha Testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optimism-goerli-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/optimism-goerli-testnet.mdx deleted file mode 100644 index bf2a3cf120..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optimism-goerli-testnet.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: Optimism Goerli Testnet - ETH Blockchain Network -description: Explore Optimism Goerli Testnet, a blockchain network with chain ID 420. Learn about its native currency, Goerli Ether, and how to interact with the network. ---- - -# Optimism Goerli Testnet - -Optimism Goerli Testnet is a blockchain network with chain ID 420. - -## Network Details - -- **Chain ID**: 420 -- **Chain Name**: ETH -- **Short Name**: ogor -- **Network ID**: 420 -- **Currency**: - - **Name**: Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Optimism Goerli Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Optimism Goerli Testnet Block Explorers - -- [blockscout](https://optimism-goerli.blockscout.com) - -## Additional Information - -- **Official Website**: https://optimism.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Optimism Goerli Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optimism-kovan.mdx b/docs/pages/solutions/chainlist/non-integrated/optimism-kovan.mdx deleted file mode 100644 index 8d44da78f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optimism-kovan.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Optimism Kovan - ETH Blockchain Network -description: Explore Optimism Kovan, a blockchain network with chain ID 69. Learn about its native currency, Kovan Ether, and how to interact with the network. ---- - -# Optimism Kovan - -Optimism Kovan is a blockchain network with chain ID 69. - -## Network Details - -- **Chain ID**: 69 -- **Chain Name**: ETH -- **Short Name**: okov -- **Network ID**: 69 -- **Currency**: - - **Name**: Kovan Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Optimism Kovan can be accessed through the following RPC endpoints: - -- https://kovan.optimism.io/ - -## Optimism Kovan Block Explorers - -- [etherscan](https://kovan-optimistic.etherscan.io) - -## Additional Information - -- **Official Website**: https://optimism.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Optimism Kovan Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optimusz7-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/optimusz7-testnet.mdx deleted file mode 100644 index 1390ef28d7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optimusz7-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OptimusZ7 Testnet - OptimusZ7 Blockchain Network -description: Explore OptimusZ7 Testnet, a blockchain network with chain ID 97970. Learn about its native currency, OptimusZ7, and how to interact with the network. ---- - -# OptimusZ7 Testnet - -OptimusZ7 Testnet is a blockchain network with chain ID 97970. - -## Network Details - -- **Chain ID**: 97970 -- **Chain Name**: OptimusZ7 -- **Short Name**: OZ7t -- **Network ID**: 97970 -- **Currency**: - - **Name**: OptimusZ7 - - **Symbol**: OZ7 - - **Decimals**: 18 - -## RPC URLs - -OptimusZ7 Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.optimusz7.com - -## OptimusZ7 Testnet Block Explorers - -- [OptimusZ7 Testnet Explorer](https://testnet.optimusz7.com) - -## Additional Information - -- **Official Website**: http://optimusz7.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OptimusZ7 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optimusz7.mdx b/docs/pages/solutions/chainlist/non-integrated/optimusz7.mdx deleted file mode 100644 index 653d7787be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optimusz7.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OptimusZ7 Mainnet - OptimusZ7 Blockchain Network -description: Explore OptimusZ7 Mainnet, a blockchain network with chain ID 9797. Learn about its native currency, OptimusZ7, and how to interact with the network. ---- - -# OptimusZ7 Mainnet - -OptimusZ7 Mainnet is a blockchain network with chain ID 9797. - -## Network Details - -- **Chain ID**: 9797 -- **Chain Name**: OptimusZ7 -- **Short Name**: OZ7m -- **Network ID**: 9797 -- **Currency**: - - **Name**: OptimusZ7 - - **Symbol**: OZ7 - - **Decimals**: 18 - -## RPC URLs - -OptimusZ7 Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.optimusz7.com - -## OptimusZ7 Mainnet Block Explorers - -- [OptimusZ7 Mainnet Explorer](https://explorer.optimusz7.com) - -## Additional Information - -- **Official Website**: http://optimusz7.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/optopia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/optopia-testnet.mdx deleted file mode 100644 index 21cb1f0230..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optopia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OPTOPIA Testnet - ETH Blockchain Network -description: Explore OPTOPIA Testnet, a blockchain network with chain ID 62049. Learn about its native currency, Ether, and how to interact with the network. ---- - -# OPTOPIA Testnet - -OPTOPIA Testnet is a blockchain network with chain ID 62049. - -## Network Details - -- **Chain ID**: 62049 -- **Chain Name**: ETH -- **Short Name**: OPTOPIA-Testnet -- **Network ID**: 62049 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -OPTOPIA Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.optopia.ai - -## OPTOPIA Testnet Block Explorers - -- [optopia-testnet-scan](https://scan-testnet.optopia.ai) - -## Additional Information - -- **Official Website**: https://optopia.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OPTOPIA Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optopia.mdx b/docs/pages/solutions/chainlist/non-integrated/optopia.mdx deleted file mode 100644 index 632f7dc903..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optopia.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Optopia Mainnet - ETH Blockchain Network -description: Explore Optopia Mainnet, a blockchain network with chain ID 62050. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Optopia Mainnet - -Optopia Mainnet is a blockchain network with chain ID 62050. - -## Network Details - -- **Chain ID**: 62050 -- **Chain Name**: ETH -- **Short Name**: Optopia -- **Network ID**: 62050 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Optopia Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.optopia.ai -- https://rpc-mainnet-2.optopia.ai - -## Optopia Mainnet Block Explorers - -- [optopia-scan](https://scan.optopia.ai) - -## Additional Information - -- **Official Website**: https://optopia.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/optrust-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/optrust-testnet.mdx deleted file mode 100644 index f52980baba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optrust-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OpTrust Testnet - OpTrust Blockchain Network -description: Explore OpTrust Testnet, a blockchain network with chain ID 5317. Learn about its native currency, TestBSC, and how to interact with the network. ---- - -# OpTrust Testnet - -OpTrust Testnet is a blockchain network with chain ID 5317. - -## Network Details - -- **Chain ID**: 5317 -- **Chain Name**: OpTrust -- **Short Name**: toptrust -- **Network ID**: 5317 -- **Currency**: - - **Name**: TestBSC - - **Symbol**: tBNB - - **Decimals**: 18 - -## RPC URLs - -OpTrust Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.optrust.io - -## OpTrust Testnet Block Explorers - -- [OpTrust Testnet explorer](https://scantest.optrust.io) - -## Additional Information - -- **Official Website**: https://optrust.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OpTrust Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/optrust.mdx b/docs/pages/solutions/chainlist/non-integrated/optrust.mdx deleted file mode 100644 index 2ff7aa0171..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/optrust.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OpTrust Mainnet - OpTrust Blockchain Network -description: Explore OpTrust Mainnet, a blockchain network with chain ID 537. Learn about its native currency, BSC, and how to interact with the network. ---- - -# OpTrust Mainnet - -OpTrust Mainnet is a blockchain network with chain ID 537. - -## Network Details - -- **Chain ID**: 537 -- **Chain Name**: OpTrust -- **Short Name**: optrust -- **Network ID**: 537 -- **Currency**: - - **Name**: BSC - - **Symbol**: BNB - - **Decimals**: 18 - -## RPC URLs - -OpTrust Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.optrust.io - -## OpTrust Mainnet Block Explorers - -- [OpTrust explorer](https://scan.optrust.io) - -## Additional Information - -- **Official Website**: https://optrust.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/opulent-x-beta.mdx b/docs/pages/solutions/chainlist/non-integrated/opulent-x-beta.mdx deleted file mode 100644 index d035279673..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/opulent-x-beta.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Opulent-X BETA - Opulent-X Blockchain Network -description: Explore Opulent-X BETA, a blockchain network with chain ID 41500. Learn about its native currency, Oxyn Gas, and how to interact with the network. ---- - -# Opulent-X BETA - -Opulent-X BETA is a blockchain network with chain ID 41500. - -## Network Details - -- **Chain ID**: 41500 -- **Chain Name**: Opulent-X -- **Short Name**: ox-beta -- **Network ID**: 41500 -- **Currency**: - - **Name**: Oxyn Gas - - **Symbol**: OXYN - - **Decimals**: 18 - -## RPC URLs - -Opulent-X BETA can be accessed through the following RPC endpoints: - -- https://connect.opulent-x.com - -## Opulent-X BETA Block Explorers - -- [Opulent-X BETA Explorer](https://explorer.opulent-x.com) - -## Additional Information - -- **Official Website**: https://beta.opulent-x.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oraichain.mdx b/docs/pages/solutions/chainlist/non-integrated/oraichain.mdx deleted file mode 100644 index 2302d63c07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oraichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Oraichain Mainnet - Oraichain Blockchain Network -description: Explore Oraichain Mainnet, a blockchain network with chain ID 108160679. Learn about its native currency, Oraichain Token, and how to interact with the network. ---- - -# Oraichain Mainnet - -Oraichain Mainnet is a blockchain network with chain ID 108160679. - -## Network Details - -- **Chain ID**: 108160679 -- **Chain Name**: Oraichain -- **Short Name**: Oraichain -- **Network ID**: 108160679 -- **Currency**: - - **Name**: Oraichain Token - - **Symbol**: ORAI - - **Decimals**: 18 - -## RPC URLs - -Oraichain Mainnet can be accessed through the following RPC endpoints: - -- https://evm.orai.io - -## Oraichain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://orai.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/orange-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/orange-chain-testnet.mdx deleted file mode 100644 index 678aaebc75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orange-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Orange Chain Testnet - Orange Chain Blockchain Network -description: Explore Orange Chain Testnet, a blockchain network with chain ID 240515. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Orange Chain Testnet - -Orange Chain Testnet is a blockchain network with chain ID 240515. - -## Network Details - -- **Chain ID**: 240515 -- **Chain Name**: Orange Chain -- **Short Name**: Orange-Chain-Testnet -- **Network ID**: 240515 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Orange Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.orangechain.xyz - -## Orange Chain Testnet Block Explorers - -- [Blockscout](https://testnet-scan.orangechain.xyz) - -## Additional Information - -- **Official Website**: https://orangechain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Orange Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/orange-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/orange-chain.mdx deleted file mode 100644 index be5a038bca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orange-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Orange Chain Mainnet - Orange Chain Blockchain Network -description: Explore Orange Chain Mainnet, a blockchain network with chain ID 61022. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Orange Chain Mainnet - -Orange Chain Mainnet is a blockchain network with chain ID 61022. - -## Network Details - -- **Chain ID**: 61022 -- **Chain Name**: Orange Chain -- **Short Name**: Orange-Chain-Mainnet -- **Network ID**: 61022 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Orange Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.orangechain.xyz -- https://hk-rpc.orangechain.xyz - -## Orange Chain Mainnet Block Explorers - -- [Blockscout](https://scan.orangechain.xyz) - -## Additional Information - -- **Official Website**: https://orangechain.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/orange-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/orange-testnet.mdx deleted file mode 100644 index 3bbdfccde2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orange-testnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: BinaryChain Mainnet - BinaryChain Blockchain Network -description: Explore BinaryChain Mainnet, a blockchain network with chain ID 987. Learn about its native currency, BINARY, and how to interact with the network. ---- - -# BinaryChain Mainnet - -BinaryChain Mainnet is a blockchain network with chain ID 987. - -## Network Details - -- **Chain ID**: 987 -- **Chain Name**: BinaryChain -- **Short Name**: binary -- **Network ID**: 987 -- **Currency**: - - **Name**: BINARY - - **Symbol**: BNRY - - **Decimals**: 18 - -## RPC URLs - -BinaryChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.binarychain.org - -## BinaryChain Mainnet Block Explorers - -- [BinaryChain Explorer](https://explorer.binarychain.org) - -## Additional Information - -- **Official Website**: https://binarychain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/orderly-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/orderly-sepolia-testnet.mdx deleted file mode 100644 index aa9e519768..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orderly-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Orderly Sepolia Testnet - ETH Blockchain Network -description: Explore Orderly Sepolia Testnet, a blockchain network with chain ID 4460. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Orderly Sepolia Testnet - -Orderly Sepolia Testnet is a blockchain network with chain ID 4460. - -## Network Details - -- **Chain ID**: 4460 -- **Chain Name**: ETH -- **Short Name**: orderlyl2 -- **Network ID**: 4460 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Orderly Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://l2-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz - -## Orderly Sepolia Testnet Block Explorers - -- [basescout](https://explorerl2new-orderly-l2-4460-sepolia-8tc3sd7dvy.t.conduit.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Orderly Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/orderly.mdx b/docs/pages/solutions/chainlist/non-integrated/orderly.mdx deleted file mode 100644 index 3a728887c8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orderly.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Orderly Mainnet - ETH Blockchain Network -description: Explore Orderly Mainnet, a blockchain network with chain ID 291. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Orderly Mainnet - -Orderly Mainnet is a blockchain network with chain ID 291. - -## Network Details - -- **Chain ID**: 291 -- **Chain Name**: ETH -- **Short Name**: orderly -- **Network ID**: 291 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Orderly Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.orderly.network -- https://l2-orderly-mainnet-0.t.conduit.xyz - -## Orderly Mainnet Block Explorers - -- [orderlyscout](https://explorer.orderly.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/orenium-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/orenium-protocol.mdx deleted file mode 100644 index cf2e08c381..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orenium-protocol.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Orenium Mainnet Protocol - ORE Blockchain Network -description: Explore Orenium Mainnet Protocol, a blockchain network with chain ID 7778. Learn about its native currency, ORENIUM, and how to interact with the network. ---- - -# Orenium Mainnet Protocol - -Orenium Mainnet Protocol is a blockchain network with chain ID 7778. - -## Network Details - -- **Chain ID**: 7778 -- **Chain Name**: ORE -- **Short Name**: ore -- **Network ID**: 7778 -- **Currency**: - - **Name**: ORENIUM - - **Symbol**: ORE - - **Decimals**: 18 - -## RPC URLs - -Orenium Mainnet Protocol can be accessed through the following RPC endpoints: - -- https://validator-mainnet.orenium.org -- https://rpc-oracle-mainnet.orenium.org -- https://portalmainnet.orenium.org - -## Orenium Mainnet Protocol Block Explorers - -- [ORE Mainnet Explorer](https://oreniumscan.org) - -## Additional Information - -- **Official Website**: https://orenium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/orenium-testnet-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/orenium-testnet-protocol.mdx deleted file mode 100644 index 19ed16ac20..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orenium-testnet-protocol.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Orenium Testnet Protocol - ORE Blockchain Network -description: Explore Orenium Testnet Protocol, a blockchain network with chain ID 8890. Learn about its native currency, ORENIUM, and how to interact with the network. ---- - -# Orenium Testnet Protocol - -Orenium Testnet Protocol is a blockchain network with chain ID 8890. - -## Network Details - -- **Chain ID**: 8890 -- **Chain Name**: ORE -- **Short Name**: tore -- **Network ID**: 8890 -- **Currency**: - - **Name**: ORENIUM - - **Symbol**: tORE - - **Decimals**: 18 - -## RPC URLs - -Orenium Testnet Protocol can be accessed through the following RPC endpoints: - -- https://rpc-dev-testnet.orenium.org/ -- https://rpc-testnet.orenium.org/ -- https://rpc-orc.oredex.finance -- https://testnet-rpc.oredex.finance -- https://oredex-node.oredex.finance - -## Orenium Testnet Protocol Block Explorers - -- [ORE Testnet Explorer](https://testnet.oreniumscan.org) - -## Additional Information - -- **Official Website**: https://orenium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Orenium Testnet Protocol Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/origin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/origin-testnet.mdx deleted file mode 100644 index a673160ae6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/origin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Origin Testnet - Origin Blockchain Network -description: Explore Origin Testnet, a blockchain network with chain ID 1170. Learn about its native currency, Origin, and how to interact with the network. ---- - -# Origin Testnet - -Origin Testnet is a blockchain network with chain ID 1170. - -## Network Details - -- **Chain ID**: 1170 -- **Chain Name**: Origin -- **Short Name**: auoc -- **Network ID**: 1170 -- **Currency**: - - **Name**: Origin - - **Symbol**: UOC - - **Decimals**: 18 - -## RPC URLs - -Origin Testnet can be accessed through the following RPC endpoints: - -- https://json-rpc.origin.uptick.network - -## Origin Testnet Block Explorers - -- [Origin Explorer](https://evm-explorer.origin.uptick.network) - -## Additional Information - -- **Official Website**: https://www.uptick.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Origin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/orlando-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/orlando-chain.mdx deleted file mode 100644 index 370cdb518b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/orlando-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Orlando Chain - ORL Blockchain Network -description: Explore Orlando Chain, a blockchain network with chain ID 3031. Learn about its native currency, Orlando, and how to interact with the network. ---- - -# Orlando Chain - -Orlando Chain is a blockchain network with chain ID 3031. - -## Network Details - -- **Chain ID**: 3031 -- **Chain Name**: ORL -- **Short Name**: ORL -- **Network ID**: 3031 -- **Currency**: - - **Name**: Orlando - - **Symbol**: ORL - - **Decimals**: 18 - -## RPC URLs - -Orlando Chain can be accessed through the following RPC endpoints: - -- https://rpc-testnet.orlchain.com - -## Orlando Chain Block Explorers - -- [Orlando (ORL) Explorer](https://orlscan.com) - -## Additional Information - -- **Official Website**: https://orlchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Orlando Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/outside-olive-slug.mdx b/docs/pages/solutions/chainlist/non-integrated/outside-olive-slug.mdx deleted file mode 100644 index 53fab56bf4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/outside-olive-slug.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: outside-olive-slug - Avalanche Blockchain Network -description: Explore outside-olive-slug, a blockchain network with chain ID 2212. Learn about its native currency, outside-olive-slug Token, and how to interact with the network. ---- - -# outside-olive-slug - -outside-olive-slug is a blockchain network with chain ID 2212. - -## Network Details - -- **Chain ID**: 2212 -- **Chain Name**: Avalanche -- **Short Name**: outside-olive-slug -- **Network ID**: 2212 -- **Currency**: - - **Name**: outside-olive-slug Token - - **Symbol**: XII - - **Decimals**: 18 - -## RPC URLs - -outside-olive-slug can be accessed through the following RPC endpoints: - -- https://testnet-outsideoli-vc77d.avax-test.network/ext/bc/RUnRZbgtqfvSRJVZbkyf9Ciqwb9qqPp1DVjJSND823JTGZpJ4/rpc?token=8cdf146b29874e7e0349c5dbf142d361bd007ccb681651a0c5d7fe5e6793e50d - -## outside-olive-slug Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## outside-olive-slug Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ox-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ox-chain.mdx deleted file mode 100644 index 66abf71855..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ox-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OX Chain - OX Blockchain Network -description: Explore OX Chain, a blockchain network with chain ID 6699. Learn about its native currency, OX, and how to interact with the network. ---- - -# OX Chain - -OX Chain is a blockchain network with chain ID 6699. - -## Network Details - -- **Chain ID**: 6699 -- **Chain Name**: OX -- **Short Name**: ox-chain -- **Network ID**: 6699 -- **Currency**: - - **Name**: OX - - **Symbol**: OX - - **Decimals**: 18 - -## RPC URLs - -OX Chain can be accessed through the following RPC endpoints: - -- https://rpc.oxscan.io - -## OX Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://ox.fun/chain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/oychain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/oychain-testnet.mdx deleted file mode 100644 index 11ed84b506..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oychain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: OYchain Testnet - OYchain Blockchain Network -description: Explore OYchain Testnet, a blockchain network with chain ID 125. Learn about its native currency, OYchain Token, and how to interact with the network. ---- - -# OYchain Testnet - -OYchain Testnet is a blockchain network with chain ID 125. - -## Network Details - -- **Chain ID**: 125 -- **Chain Name**: OYchain -- **Short Name**: OYchainTestnet -- **Network ID**: 125 -- **Currency**: - - **Name**: OYchain Token - - **Symbol**: OY - - **Decimals**: 18 - -## RPC URLs - -OYchain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.oychain.io - -## OYchain Testnet Block Explorers - -- [OYchain Testnet Explorer](https://explorer.testnet.oychain.io) - -## Additional Information - -- **Official Website**: https://www.oychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## OYchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/oychain.mdx b/docs/pages/solutions/chainlist/non-integrated/oychain.mdx deleted file mode 100644 index b34f498c31..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/oychain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: OYchain Mainnet - OYchain Blockchain Network -description: Explore OYchain Mainnet, a blockchain network with chain ID 126. Learn about its native currency, OYchain Token, and how to interact with the network. ---- - -# OYchain Mainnet - -OYchain Mainnet is a blockchain network with chain ID 126. - -## Network Details - -- **Chain ID**: 126 -- **Chain Name**: OYchain -- **Short Name**: OYchainMainnet -- **Network ID**: 126 -- **Currency**: - - **Name**: OYchain Token - - **Symbol**: OY - - **Decimals**: 18 - -## RPC URLs - -OYchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.oychain.io - -## OYchain Mainnet Block Explorers - -- [OYchain Mainnet Explorer](https://explorer.oychain.io) - -## Additional Information - -- **Official Website**: https://www.oychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ozone-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ozone-chain-testnet.mdx deleted file mode 100644 index 237efdc109..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ozone-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ozone Chain Testnet - OZONE Blockchain Network -description: Explore Ozone Chain Testnet, a blockchain network with chain ID 401. Learn about its native currency, OZONE, and how to interact with the network. ---- - -# Ozone Chain Testnet - -Ozone Chain Testnet is a blockchain network with chain ID 401. - -## Network Details - -- **Chain ID**: 401 -- **Chain Name**: OZONE -- **Short Name**: ozo_tst -- **Network ID**: 401 -- **Currency**: - - **Name**: OZONE - - **Symbol**: OZO - - **Decimals**: 18 - -## RPC URLs - -Ozone Chain Testnet can be accessed through the following RPC endpoints: - -- https://node1.testnet.ozonechain.io - -## Ozone Chain Testnet Block Explorers - -- [OZONE Scan](https://testnet.ozonescan.io) - -## Additional Information - -- **Official Website**: https://ozonechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ozone Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ozone-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ozone-chain.mdx deleted file mode 100644 index e74534c8e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ozone-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ozone Chain Mainnet - OZONE Blockchain Network -description: Explore Ozone Chain Mainnet, a blockchain network with chain ID 4000. Learn about its native currency, OZONE, and how to interact with the network. ---- - -# Ozone Chain Mainnet - -Ozone Chain Mainnet is a blockchain network with chain ID 4000. - -## Network Details - -- **Chain ID**: 4000 -- **Chain Name**: OZONE -- **Short Name**: ozo -- **Network ID**: 4000 -- **Currency**: - - **Name**: OZONE - - **Symbol**: OZO - - **Decimals**: 18 - -## RPC URLs - -Ozone Chain Mainnet can be accessed through the following RPC endpoints: - -- https://node1.ozonechain.io - -## Ozone Chain Mainnet Block Explorers - -- [OZONE Scan](https://ozonescan.io) - -## Additional Information - -- **Official Website**: https://ozonechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/p12-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/p12-chain.mdx deleted file mode 100644 index de3a474208..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/p12-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: P12 Chain - P12 Blockchain Network -description: Explore P12 Chain, a blockchain network with chain ID 20736. Learn about its native currency, Hooked P2, and how to interact with the network. ---- - -# P12 Chain - -P12 Chain is a blockchain network with chain ID 20736. - -## Network Details - -- **Chain ID**: 20736 -- **Chain Name**: P12 -- **Short Name**: p12 -- **Network ID**: 20736 -- **Currency**: - - **Name**: Hooked P2 - - **Symbol**: hP2 - - **Decimals**: 18 - -## RPC URLs - -P12 Chain can be accessed through the following RPC endpoints: - -- https://rpc-chain.p12.games - -## P12 Chain Block Explorers - -- [P12 Chain Explorer](https://explorer.p12.games) - -## Additional Information - -- **Official Website**: https://p12.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/palette-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/palette-chain-testnet.mdx deleted file mode 100644 index 6f7fa6e92c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/palette-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Palette Chain Testnet - PLT Blockchain Network -description: Explore Palette Chain Testnet, a blockchain network with chain ID 17180. Learn about its native currency, Palette Token, and how to interact with the network. ---- - -# Palette Chain Testnet - -Palette Chain Testnet is a blockchain network with chain ID 17180. - -## Network Details - -- **Chain ID**: 17180 -- **Chain Name**: PLT -- **Short Name**: PCT -- **Network ID**: 17180 -- **Currency**: - - **Name**: Palette Token - - **Symbol**: PLT - - **Decimals**: 18 - -## RPC URLs - -Palette Chain Testnet can be accessed through the following RPC endpoints: - -- https://palette-opennet.com:22000 - -## Palette Chain Testnet Block Explorers - -- [Palettescan](https://testnet.palettescan.com) - -## Additional Information - -- **Official Website**: https://hashpalette.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Palette Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/palette-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/palette-chain.mdx deleted file mode 100644 index 5a96564a37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/palette-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Palette Chain Mainnet - PLT Blockchain Network -description: Explore Palette Chain Mainnet, a blockchain network with chain ID 1718. Learn about its native currency, Palette Token, and how to interact with the network. ---- - -# Palette Chain Mainnet - -Palette Chain Mainnet is a blockchain network with chain ID 1718. - -## Network Details - -- **Chain ID**: 1718 -- **Chain Name**: PLT -- **Short Name**: PCM -- **Network ID**: 1718 -- **Currency**: - - **Name**: Palette Token - - **Symbol**: PLT - - **Decimals**: 18 - -## RPC URLs - -Palette Chain Mainnet can be accessed through the following RPC endpoints: - -- https://palette-rpc.com:22000 - -## Palette Chain Mainnet Block Explorers - -- [Palettescan](https://palettescan.com) - -## Additional Information - -- **Official Website**: https://hashpalette.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/palm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/palm-testnet.mdx deleted file mode 100644 index 0364d1e5f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/palm-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Palm Testnet - Palm Blockchain Network -description: Explore Palm Testnet, a blockchain network with chain ID 11297108099. Learn about its native currency, PALM, and how to interact with the network. ---- - -# Palm Testnet - -Palm Testnet is a blockchain network with chain ID 11297108099. - -## Network Details - -- **Chain ID**: 11297108099 -- **Chain Name**: Palm -- **Short Name**: tpalm -- **Network ID**: 11297108099 -- **Currency**: - - **Name**: PALM - - **Symbol**: PALM - - **Decimals**: 18 - -## RPC URLs - -Palm Testnet can be accessed through the following RPC endpoints: - -- https://palm-testnet.public.blastapi.io - -## Palm Testnet Block Explorers - -- [Chainlens](https://testnet.palm.chainlens.com) -- [Dora](https://www.ondora.xyz/network/palm-testnet) - -## Additional Information - -- **Official Website**: https://palm.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Palm Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/palm.mdx b/docs/pages/solutions/chainlist/non-integrated/palm.mdx deleted file mode 100644 index 6b3fd4cd3d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/palm.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Palm - Palm Blockchain Network -description: Explore Palm, a blockchain network with chain ID 11297108109. Learn about its native currency, PALM, and how to interact with the network. ---- - -# Palm - -Palm is a blockchain network with chain ID 11297108109. - -## Network Details - -- **Chain ID**: 11297108109 -- **Chain Name**: Palm -- **Short Name**: palm -- **Network ID**: 11297108109 -- **Currency**: - - **Name**: PALM - - **Symbol**: PALM - - **Decimals**: 18 - -## RPC URLs - -Palm can be accessed through the following RPC endpoints: - -- https://palm-mainnet.public.blastapi.io - -## Palm Block Explorers - -- [Chainlens](https://palm.chainlens.com) -- [Dora](https://www.ondora.xyz/network/palm) - -## Additional Information - -- **Official Website**: https://palm.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/panarchy.mdx b/docs/pages/solutions/chainlist/non-integrated/panarchy.mdx deleted file mode 100644 index da4682f3cd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/panarchy.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Panarchy - Panarchy Blockchain Network -description: Explore Panarchy, a blockchain network with chain ID 2013. Learn about its native currency, GAS, and how to interact with the network. ---- - -# Panarchy - -Panarchy is a blockchain network with chain ID 2013. - -## Network Details - -- **Chain ID**: 2013 -- **Chain Name**: Panarchy -- **Short Name**: panarchy -- **Network ID**: 2013 -- **Currency**: - - **Name**: GAS - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -Panarchy can be accessed through the following RPC endpoints: - -- https://polytopia.org:8545 - -## Panarchy Block Explorers - - - -## Additional Information - -- **Official Website**: https://polytopia.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pandasea.mdx b/docs/pages/solutions/chainlist/non-integrated/pandasea.mdx deleted file mode 100644 index ee4b1e7bb3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pandasea.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PandaSea Mainnet - PandaSea Blockchain Network -description: Explore PandaSea Mainnet, a blockchain network with chain ID 7776. Learn about its native currency, PandaSea Coin, and how to interact with the network. ---- - -# PandaSea Mainnet - -PandaSea Mainnet is a blockchain network with chain ID 7776. - -## Network Details - -- **Chain ID**: 7776 -- **Chain Name**: PandaSea -- **Short Name**: pandaSea-mainnet -- **Network ID**: 7776 -- **Currency**: - - **Name**: PandaSea Coin - - **Symbol**: PANDA - - **Decimals**: 18 - -## RPC URLs - -PandaSea Mainnet can be accessed through the following RPC endpoints: - -- https://rpc1.pandasea.io - -## PandaSea Mainnet Block Explorers - -- [Tracehawk](https://pandaseascan.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pandoproject-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pandoproject-testnet.mdx deleted file mode 100644 index 88280b709d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pandoproject-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PandoProject Testnet - PandoProject Blockchain Network -description: Explore PandoProject Testnet, a blockchain network with chain ID 3602. Learn about its native currency, pando-token, and how to interact with the network. ---- - -# PandoProject Testnet - -PandoProject Testnet is a blockchain network with chain ID 3602. - -## Network Details - -- **Chain ID**: 3602 -- **Chain Name**: PandoProject -- **Short Name**: pando-testnet -- **Network ID**: 3602 -- **Currency**: - - **Name**: pando-token - - **Symbol**: PTX - - **Decimals**: 18 - -## RPC URLs - -PandoProject Testnet can be accessed through the following RPC endpoints: - -- https://testnet.ethrpc.pandoproject.org/rpc - -## PandoProject Testnet Block Explorers - -- [Pando Testnet Explorer](https://testnet.explorer.pandoproject.org) - -## Additional Information - -- **Official Website**: https://www.pandoproject.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PandoProject Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pandoproject.mdx b/docs/pages/solutions/chainlist/non-integrated/pandoproject.mdx deleted file mode 100644 index d27222b3fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pandoproject.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PandoProject Mainnet - PandoProject Blockchain Network -description: Explore PandoProject Mainnet, a blockchain network with chain ID 3601. Learn about its native currency, pando-token, and how to interact with the network. ---- - -# PandoProject Mainnet - -PandoProject Mainnet is a blockchain network with chain ID 3601. - -## Network Details - -- **Chain ID**: 3601 -- **Chain Name**: PandoProject -- **Short Name**: pando-mainnet -- **Network ID**: 3601 -- **Currency**: - - **Name**: pando-token - - **Symbol**: PTX - - **Decimals**: 18 - -## RPC URLs - -PandoProject Mainnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-api.pandoproject.org/rpc - -## PandoProject Mainnet Block Explorers - -- [Pando Mainnet Explorer](https://explorer.pandoproject.org) - -## Additional Information - -- **Official Website**: https://www.pandoproject.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/parex.mdx b/docs/pages/solutions/chainlist/non-integrated/parex.mdx deleted file mode 100644 index ccefe36282..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/parex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Parex Mainnet - Parex Blockchain Network -description: Explore Parex Mainnet, a blockchain network with chain ID 322202. Learn about its native currency, PAREX, and how to interact with the network. ---- - -# Parex Mainnet - -Parex Mainnet is a blockchain network with chain ID 322202. - -## Network Details - -- **Chain ID**: 322202 -- **Chain Name**: Parex -- **Short Name**: parex -- **Network ID**: 322202 -- **Currency**: - - **Name**: PAREX - - **Symbol**: PRX - - **Decimals**: 18 - -## RPC URLs - -Parex Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.parex.network - -## Parex Mainnet Block Explorers - -- [Parex Mainnet Explorer](https://scan.parex.network) - -## Additional Information - -- **Official Website**: https://parex.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/paribu-net-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/paribu-net-testnet.mdx deleted file mode 100644 index 4a0b4c0a33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/paribu-net-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Paribu Net Testnet - PRB Blockchain Network -description: Explore Paribu Net Testnet, a blockchain network with chain ID 3500. Learn about its native currency, PRB, and how to interact with the network. ---- - -# Paribu Net Testnet - -Paribu Net Testnet is a blockchain network with chain ID 3500. - -## Network Details - -- **Chain ID**: 3500 -- **Chain Name**: PRB -- **Short Name**: prbtestnet -- **Network ID**: 3500 -- **Currency**: - - **Name**: PRB - - **Symbol**: PRB - - **Decimals**: 18 - -## RPC URLs - -Paribu Net Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.paribuscan.com - -## Paribu Net Testnet Block Explorers - -- [Paribu Net Testnet Explorer](https://testnet.paribuscan.com) - -## Additional Information - -- **Official Website**: https://net.paribu.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Paribu Net Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/paribu-net.mdx b/docs/pages/solutions/chainlist/non-integrated/paribu-net.mdx deleted file mode 100644 index 2a7651d339..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/paribu-net.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Paribu Net Mainnet - PRB Blockchain Network -description: Explore Paribu Net Mainnet, a blockchain network with chain ID 3400. Learn about its native currency, PRB, and how to interact with the network. ---- - -# Paribu Net Mainnet - -Paribu Net Mainnet is a blockchain network with chain ID 3400. - -## Network Details - -- **Chain ID**: 3400 -- **Chain Name**: PRB -- **Short Name**: prb -- **Network ID**: 3400 -- **Currency**: - - **Name**: PRB - - **Symbol**: PRB - - **Decimals**: 18 - -## RPC URLs - -Paribu Net Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.paribu.network - -## Paribu Net Mainnet Block Explorers - -- [Paribu Net Explorer](https://explorer.paribu.network) - -## Additional Information - -- **Official Website**: https://net.paribu.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/parody-network.mdx b/docs/pages/solutions/chainlist/non-integrated/parody-network.mdx deleted file mode 100644 index 761c8101e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/parody-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Parody Network - Parodychain Blockchain Network -description: Explore Parody Network, a blockchain network with chain ID 2078. Learn about its native currency, Parody, and how to interact with the network. ---- - -# Parody Network - -Parody Network is a blockchain network with chain ID 2078. - -## Network Details - -- **Chain ID**: 2078 -- **Chain Name**: Parodychain -- **Short Name**: Parody -- **Network ID**: 2078 -- **Currency**: - - **Name**: Parody - - **Symbol**: PDY - - **Decimals**: 18 - -## RPC URLs - -Parody Network can be accessed through the following RPC endpoints: - -- https://fraa-flashbox-4392-rpc.a.stagenet.tanssi.network - -## Parody Network Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Parody Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/partychain.mdx b/docs/pages/solutions/chainlist/non-integrated/partychain.mdx deleted file mode 100644 index b4e2319b35..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/partychain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: PartyChain - mainnet Blockchain Network -description: Explore PartyChain, a blockchain network with chain ID 1773. Learn about its native currency, Grams, and how to interact with the network. ---- - -# PartyChain - -PartyChain is a blockchain network with chain ID 1773. - -## Network Details - -- **Chain ID**: 1773 -- **Chain Name**: mainnet -- **Short Name**: TeaParty -- **Network ID**: 1773 -- **Currency**: - - **Name**: Grams - - **Symbol**: GRAMS - - **Decimals**: 18 - -## RPC URLs - -PartyChain can be accessed through the following RPC endpoints: - -- https://tea.mining4people.com/rpc -- http://172.104.194.36:8545 - -## PartyChain Block Explorers - -- [PartyExplorer](https://partyexplorer.co) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/patex-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/patex-sepolia-testnet.mdx deleted file mode 100644 index 1e141ef775..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/patex-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Patex Sepolia Testnet - ETH Blockchain Network -description: Explore Patex Sepolia Testnet, a blockchain network with chain ID 471100. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Patex Sepolia Testnet - -Patex Sepolia Testnet is a blockchain network with chain ID 471100. - -## Network Details - -- **Chain ID**: 471100 -- **Chain Name**: ETH -- **Short Name**: psep -- **Network ID**: 471100 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Patex Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://test-rpc.patex.io/ - -## Patex Sepolia Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://patex.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Patex Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/patex.mdx b/docs/pages/solutions/chainlist/non-integrated/patex.mdx deleted file mode 100644 index c37d5a4025..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/patex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Patex - ETH Blockchain Network -description: Explore Patex, a blockchain network with chain ID 789. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Patex - -Patex is a blockchain network with chain ID 789. - -## Network Details - -- **Chain ID**: 789 -- **Chain Name**: ETH -- **Short Name**: peth -- **Network ID**: 789 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Patex can be accessed through the following RPC endpoints: - -- https://rpc.patex.io/ - -## Patex Block Explorers - -- [patexscan](https://patexscan.io) - -## Additional Information - -- **Official Website**: https://patex.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pawchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pawchain-testnet.mdx deleted file mode 100644 index 191758766d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pawchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PAWCHAIN Testnet - PAW Blockchain Network -description: Explore PAWCHAIN Testnet, a blockchain network with chain ID 542. Learn about its native currency, PAW, and how to interact with the network. ---- - -# PAWCHAIN Testnet - -PAWCHAIN Testnet is a blockchain network with chain ID 542. - -## Network Details - -- **Chain ID**: 542 -- **Chain Name**: PAW -- **Short Name**: PAW -- **Network ID**: 542 -- **Currency**: - - **Name**: PAW - - **Symbol**: PAW - - **Decimals**: 18 - -## RPC URLs - -PAWCHAIN Testnet can be accessed through the following RPC endpoints: - -- https://pawchainx.com/ - -## PAWCHAIN Testnet Block Explorers - -- [PAWCHAIN Testnet](https://pawscan.io) - -## Additional Information - -- **Official Website**: https://pawchainx.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PAWCHAIN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/paxb.mdx b/docs/pages/solutions/chainlist/non-integrated/paxb.mdx deleted file mode 100644 index ab0513e639..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/paxb.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PAXB Mainnet - PAXB Blockchain Network -description: Explore PAXB Mainnet, a blockchain network with chain ID 6701. Learn about its native currency, PAXB, and how to interact with the network. ---- - -# PAXB Mainnet - -PAXB Mainnet is a blockchain network with chain ID 6701. - -## Network Details - -- **Chain ID**: 6701 -- **Chain Name**: PAXB -- **Short Name**: PAXB -- **Network ID**: 6701 -- **Currency**: - - **Name**: PAXB - - **Symbol**: PAXB - - **Decimals**: 18 - -## RPC URLs - -PAXB Mainnet can be accessed through the following RPC endpoints: - -- https://chain.paxb.io - -## PAXB Mainnet Block Explorers - -- [PAXB Explorer](https://scan.paxb.io) - -## Additional Information - -- **Official Website**: https://paxb.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/payable-ivory-snake.mdx b/docs/pages/solutions/chainlist/non-integrated/payable-ivory-snake.mdx deleted file mode 100644 index 7ba4e3bd7c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/payable-ivory-snake.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: payable-ivory-snake - Avalanche Blockchain Network -description: Explore payable-ivory-snake, a blockchain network with chain ID 123145. Learn about its native currency, payable-ivory-snake Token, and how to interact with the network. ---- - -# payable-ivory-snake - -payable-ivory-snake is a blockchain network with chain ID 123145. - -## Network Details - -- **Chain ID**: 123145 -- **Chain Name**: Avalanche -- **Short Name**: payable-ivory-snake -- **Network ID**: 123145 -- **Currency**: - - **Name**: payable-ivory-snake Token - - **Symbol**: AVAX - - **Decimals**: 18 - -## RPC URLs - -payable-ivory-snake can be accessed through the following RPC endpoints: - -- https://testnet-payableivo-a47dc.avax-test.network/ext/bc/SvSQGAUiFZt9vveBWQz2tT7aYph5jTxZrVacnP7L9vViUbr8E/rpc?token=53797af38f5d77036bfcbea610544f1c347f71f79ef76a98391e66755667c8f1 - -## payable-ivory-snake Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## payable-ivory-snake Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pdc.mdx b/docs/pages/solutions/chainlist/non-integrated/pdc.mdx deleted file mode 100644 index 7a381a6f61..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pdc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PDC Mainnet - IPDC Blockchain Network -description: Explore PDC Mainnet, a blockchain network with chain ID 666301171999. Learn about its native currency, PDC, and how to interact with the network. ---- - -# PDC Mainnet - -PDC Mainnet is a blockchain network with chain ID 666301171999. - -## Network Details - -- **Chain ID**: 666301171999 -- **Chain Name**: IPDC -- **Short Name**: ipdc -- **Network ID**: 666301171999 -- **Currency**: - - **Name**: PDC - - **Symbol**: PDC - - **Decimals**: 18 - -## RPC URLs - -PDC Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.ipdc.io/ - -## PDC Mainnet Block Explorers - -- [ipdcscan](https://scan.ipdc.io) - -## Additional Information - -- **Official Website**: https://ipdc.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/peaq.mdx b/docs/pages/solutions/chainlist/non-integrated/peaq.mdx deleted file mode 100644 index 2d39cff5b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/peaq.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: peaq - peaq Blockchain Network -description: Explore peaq, a blockchain network with chain ID 3338. Learn about its native currency, peaq, and how to interact with the network. ---- - -# peaq - -peaq is a blockchain network with chain ID 3338. - -## Network Details - -- **Chain ID**: 3338 -- **Chain Name**: peaq -- **Short Name**: PEAQ -- **Network ID**: 3338 -- **Currency**: - - **Name**: peaq - - **Symbol**: PEAQ - - **Decimals**: 18 - -## RPC URLs - -peaq can be accessed through the following RPC endpoints: - -- https://peaq.api.onfinality.io/public -- https://peaq-rpc.dwellir.com -- https://peaq-rpc.publicnode.com -- https://evm.peaq.network - -## peaq Block Explorers - -- [Subscan](https://peaq.subscan.io) - -## Additional Information - -- **Official Website**: https://www.peaq.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pearling-path.mdx b/docs/pages/solutions/chainlist/non-integrated/pearling-path.mdx deleted file mode 100644 index 25439a4c50..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pearling-path.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Pearling Path - Avalanche Blockchain Network -description: Explore Pearling Path, a blockchain network with chain ID 1612. Learn about its native currency, Pearling Path Token, and how to interact with the network. ---- - -# Pearling Path - -Pearling Path is a blockchain network with chain ID 1612. - -## Network Details - -- **Chain ID**: 1612 -- **Chain Name**: Avalanche -- **Short Name**: Pearling Path -- **Network ID**: 1612 -- **Currency**: - - **Name**: Pearling Path Token - - **Symbol**: pearl - - **Decimals**: 18 - -## RPC URLs - -Pearling Path can be accessed through the following RPC endpoints: - -- https://testnet-pearl-c612f.avax-test.network/ext/bc/CcXVATAg76vM849mrPoTigwp48qhFiN9WCa51DBQXNGkBKZw7/rpc?token=3296aa3e491dd5d366815601cc95be7275cd293486b09fe082619750d7b38587 - -## Pearling Path Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Pearling Path Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/peerpay.mdx b/docs/pages/solutions/chainlist/non-integrated/peerpay.mdx deleted file mode 100644 index d2411dc5db..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/peerpay.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Peerpay - P2P Blockchain Network -description: Explore Peerpay, a blockchain network with chain ID 6502. Learn about its native currency, Peerpay, and how to interact with the network. ---- - -# Peerpay - -Peerpay is a blockchain network with chain ID 6502. - -## Network Details - -- **Chain ID**: 6502 -- **Chain Name**: P2P -- **Short Name**: Peerpay -- **Network ID**: 6502 -- **Currency**: - - **Name**: Peerpay - - **Symbol**: P2P - - **Decimals**: 18 - -## RPC URLs - -Peerpay can be accessed through the following RPC endpoints: - -- https://peerpay.su.gy/p2p - -## Peerpay Block Explorers - - - -## Additional Information - -- **Official Website**: https://peerpay.su.gy - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pegglecoin.mdx b/docs/pages/solutions/chainlist/non-integrated/pegglecoin.mdx deleted file mode 100644 index d072c0862a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pegglecoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: pegglecoin - 42069 Blockchain Network -description: Explore pegglecoin, a blockchain network with chain ID 42069. Learn about its native currency, pegglecoin, and how to interact with the network. ---- - -# pegglecoin - -pegglecoin is a blockchain network with chain ID 42069. - -## Network Details - -- **Chain ID**: 42069 -- **Chain Name**: 42069 -- **Short Name**: PC -- **Network ID**: 42069 -- **Currency**: - - **Name**: pegglecoin - - **Symbol**: peggle - - **Decimals**: 18 - -## RPC URLs - -pegglecoin can be accessed through the following RPC endpoints: - - - -## pegglecoin Block Explorers - - - -## Additional Information - -- **Official Website**: https://teampeggle.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pego-network.mdx b/docs/pages/solutions/chainlist/non-integrated/pego-network.mdx deleted file mode 100644 index 9d2759da74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pego-network.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Pego Network - PEGO Blockchain Network -description: Explore Pego Network, a blockchain network with chain ID 20201022. Learn about its native currency, Pego Native Token, and how to interact with the network. ---- - -# Pego Network - -Pego Network is a blockchain network with chain ID 20201022. - -## Network Details - -- **Chain ID**: 20201022 -- **Chain Name**: PEGO -- **Short Name**: pg -- **Network ID**: 20201022 -- **Currency**: - - **Name**: Pego Native Token - - **Symbol**: PG - - **Decimals**: 18 - -## RPC URLs - -Pego Network can be accessed through the following RPC endpoints: - -- https://pegorpc.com -- https://node1.pegorpc.com -- https://node2.pegorpc.com -- https://node3.pegorpc.com - -## Pego Network Block Explorers - -- [Pego Network Explorer](https://scan.pego.network) - -## Additional Information - -- **Official Website**: https://pego.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pentagon-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pentagon-testnet.mdx deleted file mode 100644 index b5da5662e7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pentagon-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Pentagon Testnet - Pentagon Blockchain Network -description: Explore Pentagon Testnet, a blockchain network with chain ID 555555. Learn about its native currency, Pentagon, and how to interact with the network. ---- - -# Pentagon Testnet - -Pentagon Testnet is a blockchain network with chain ID 555555. - -## Network Details - -- **Chain ID**: 555555 -- **Chain Name**: Pentagon -- **Short Name**: pentagon-testnet -- **Network ID**: 555555 -- **Currency**: - - **Name**: Pentagon - - **Symbol**: PEN - - **Decimals**: 18 - -## RPC URLs - -Pentagon Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.pentagon.games - -## Pentagon Testnet Block Explorers - -- [Pentagon Testnet Explorer](https://explorer-testnet.pentagon.games) - -## Additional Information - -- **Official Website**: https://pentagon.games - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Pentagon Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pepchain-churchill.mdx b/docs/pages/solutions/chainlist/non-integrated/pepchain-churchill.mdx deleted file mode 100644 index 91291e8f21..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pepchain-churchill.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PepChain Churchill - PEP Blockchain Network -description: Explore PepChain Churchill, a blockchain network with chain ID 13371337. Learn about its native currency, PepChain Churchill Ether, and how to interact with the network. ---- - -# PepChain Churchill - -PepChain Churchill is a blockchain network with chain ID 13371337. - -## Network Details - -- **Chain ID**: 13371337 -- **Chain Name**: PEP -- **Short Name**: tpep -- **Network ID**: 13371337 -- **Currency**: - - **Name**: PepChain Churchill Ether - - **Symbol**: TPEP - - **Decimals**: 18 - -## RPC URLs - -PepChain Churchill can be accessed through the following RPC endpoints: - -- https://churchill-rpc.pepchain.io - -## PepChain Churchill Block Explorers - - - -## Additional Information - -- **Official Website**: https://pepchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pepe-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/pepe-chain.mdx deleted file mode 100644 index 47d88ca53d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pepe-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pepe Chain Mainnet - PC Blockchain Network -description: Explore Pepe Chain Mainnet, a blockchain network with chain ID 411. Learn about its native currency, Pepe, and how to interact with the network. ---- - -# Pepe Chain Mainnet - -Pepe Chain Mainnet is a blockchain network with chain ID 411. - -## Network Details - -- **Chain ID**: 411 -- **Chain Name**: PC -- **Short Name**: pepe -- **Network ID**: 411 -- **Currency**: - - **Name**: Pepe - - **Symbol**: PEPE - - **Decimals**: 18 - -## RPC URLs - -Pepe Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.pepe-chain.vip - -## Pepe Chain Mainnet Block Explorers - -- [pepechain explorer](https://explorer.pepe-chain.vip) - -## Additional Information - -- **Official Website**: https://pepe-chain.vip - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pepenetwork.mdx b/docs/pages/solutions/chainlist/non-integrated/pepenetwork.mdx deleted file mode 100644 index 17042d6d58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pepenetwork.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PepeNetwork Mainnet - PepeNetwork Blockchain Network -description: Explore PepeNetwork Mainnet, a blockchain network with chain ID 9779. Learn about its native currency, Pepe, and how to interact with the network. ---- - -# PepeNetwork Mainnet - -PepeNetwork Mainnet is a blockchain network with chain ID 9779. - -## Network Details - -- **Chain ID**: 9779 -- **Chain Name**: PepeNetwork -- **Short Name**: pn -- **Network ID**: 9779 -- **Currency**: - - **Name**: Pepe - - **Symbol**: WPEPE - - **Decimals**: 18 - -## RPC URLs - -PepeNetwork Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.pepenetwork.io - -## PepeNetwork Mainnet Block Explorers - -- [Pepe Explorer](https://explorer.pepenetwork.io) - -## Additional Information - -- **Official Website**: https://pepenetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/peperium-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/peperium-chain-testnet.mdx deleted file mode 100644 index 90a1381a7a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/peperium-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Peperium Chain Testnet - PERIUM Blockchain Network -description: Explore Peperium Chain Testnet, a blockchain network with chain ID 4001. Learn about its native currency, Peperium Chain Testnet, and how to interact with the network. ---- - -# Peperium Chain Testnet - -Peperium Chain Testnet is a blockchain network with chain ID 4001. - -## Network Details - -- **Chain ID**: 4001 -- **Chain Name**: PERIUM -- **Short Name**: PERIUM -- **Network ID**: 4001 -- **Currency**: - - **Name**: Peperium Chain Testnet - - **Symbol**: PERIUM - - **Decimals**: 18 - -## RPC URLs - -Peperium Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.peperium.io - -## Peperium Chain Testnet Block Explorers - -- [Peperium Chain Explorer](https://scan-testnet.peperium.io) - -## Additional Information - -- **Official Website**: https://peperium.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Peperium Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/permission.mdx b/docs/pages/solutions/chainlist/non-integrated/permission.mdx deleted file mode 100644 index 350ebc7bc5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/permission.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Permission - ASK Blockchain Network -description: Explore Permission, a blockchain network with chain ID 222. Learn about its native currency, ASK, and how to interact with the network. ---- - -# Permission - -Permission is a blockchain network with chain ID 222. - -## Network Details - -- **Chain ID**: 222 -- **Chain Name**: ASK -- **Short Name**: ASK -- **Network ID**: 222 -- **Currency**: - - **Name**: ASK - - **Symbol**: ASK - - **Decimals**: 18 - -## RPC URLs - -Permission can be accessed through the following RPC endpoints: - -- https://blockchain-api-mainnet.permission.io/rpc - -## Permission Block Explorers - - - -## Additional Information - -- **Official Website**: https://permission.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pgn-(public-goods-network).mdx b/docs/pages/solutions/chainlist/non-integrated/pgn-(public-goods-network).mdx deleted file mode 100644 index 638f0095c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pgn-(public-goods-network).mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PGN (Public Goods Network) - ETH Blockchain Network -description: Explore PGN (Public Goods Network), a blockchain network with chain ID 424. Learn about its native currency, Ether, and how to interact with the network. ---- - -# PGN (Public Goods Network) - -PGN (Public Goods Network) is a blockchain network with chain ID 424. - -## Network Details - -- **Chain ID**: 424 -- **Chain Name**: ETH -- **Short Name**: PGN -- **Network ID**: 424 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -PGN (Public Goods Network) can be accessed through the following RPC endpoints: - -- https://rpc.publicgoods.network - -## PGN (Public Goods Network) Block Explorers - -- [blockscout](https://explorer.publicgoods.network) - -## Additional Information - -- **Official Website**: https://publicgoods.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/phala-network.mdx b/docs/pages/solutions/chainlist/non-integrated/phala-network.mdx deleted file mode 100644 index bc410c458e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/phala-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Phala Network - PHA Blockchain Network -description: Explore Phala Network, a blockchain network with chain ID 2035. Learn about its native currency, Phala, and how to interact with the network. ---- - -# Phala Network - -Phala Network is a blockchain network with chain ID 2035. - -## Network Details - -- **Chain ID**: 2035 -- **Chain Name**: PHA -- **Short Name**: pha -- **Network ID**: 2035 -- **Currency**: - - **Name**: Phala - - **Symbol**: PHA - - **Decimals**: 18 - -## RPC URLs - -Phala Network can be accessed through the following RPC endpoints: - - - -## Phala Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://phala.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/phi-network-v1.mdx b/docs/pages/solutions/chainlist/non-integrated/phi-network-v1.mdx deleted file mode 100644 index c2693c914f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/phi-network-v1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: PHI Network V1 - PHI V1 Blockchain Network -description: Explore PHI Network V1, a blockchain network with chain ID 4181. Learn about its native currency, PHI, and how to interact with the network. ---- - -# PHI Network V1 - -PHI Network V1 is a blockchain network with chain ID 4181. - -## Network Details - -- **Chain ID**: 4181 -- **Chain Name**: PHI V1 -- **Short Name**: PHIv1 -- **Network ID**: 4181 -- **Currency**: - - **Name**: PHI - - **Symbol**: Φ - - **Decimals**: 18 - -## RPC URLs - -PHI Network V1 can be accessed through the following RPC endpoints: - -- https://rpc1.phi.network -- https://rpc2.phi.network - -## PHI Network V1 Block Explorers - -- [PHI Explorer](https://explorer.phi.network) - -## Additional Information - -- **Official Website**: https://phi.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/phi-network-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/phi-network-v2.mdx deleted file mode 100644 index 806fd12caa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/phi-network-v2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PHI Network v2 - PHI Blockchain Network -description: Explore PHI Network v2, a blockchain network with chain ID 144. Learn about its native currency, PHI, and how to interact with the network. ---- - -# PHI Network v2 - -PHI Network v2 is a blockchain network with chain ID 144. - -## Network Details - -- **Chain ID**: 144 -- **Chain Name**: PHI -- **Short Name**: PHI -- **Network ID**: 144 -- **Currency**: - - **Name**: PHI - - **Symbol**: Φ - - **Decimals**: 18 - -## RPC URLs - -PHI Network v2 can be accessed through the following RPC endpoints: - -- https://connect.phi.network - -## PHI Network v2 Block Explorers - -- [Phiscan](https://phiscan.com) - -## Additional Information - -- **Official Website**: https://phi.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/phoenix.mdx b/docs/pages/solutions/chainlist/non-integrated/phoenix.mdx deleted file mode 100644 index 03e9821b8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/phoenix.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Phoenix Mainnet - Phoenix Blockchain Network -description: Explore Phoenix Mainnet, a blockchain network with chain ID 13381. Learn about its native currency, Phoenix, and how to interact with the network. ---- - -# Phoenix Mainnet - -Phoenix Mainnet is a blockchain network with chain ID 13381. - -## Network Details - -- **Chain ID**: 13381 -- **Chain Name**: Phoenix -- **Short Name**: Phoenix -- **Network ID**: 13381 -- **Currency**: - - **Name**: Phoenix - - **Symbol**: PHX - - **Decimals**: 18 - -## RPC URLs - -Phoenix Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.phoenixplorer.com/ - -## Phoenix Mainnet Block Explorers - -- [phoenixplorer](https://phoenixplorer.com) - -## Additional Information - -- **Official Website**: https://cryptophoenix.org/phoenix - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/photon-aurora-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/photon-aurora-testnet.mdx deleted file mode 100644 index 38b0acaa23..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/photon-aurora-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Photon Aurora Testnet - Photon Blockchain Network -description: Explore Photon Aurora Testnet, a blockchain network with chain ID 55551. Learn about its native currency, Photon, and how to interact with the network. ---- - -# Photon Aurora Testnet - -Photon Aurora Testnet is a blockchain network with chain ID 55551. - -## Network Details - -- **Chain ID**: 55551 -- **Chain Name**: Photon -- **Short Name**: pton -- **Network ID**: 55551 -- **Currency**: - - **Name**: Photon - - **Symbol**: PTON - - **Decimals**: 18 - -## RPC URLs - -Photon Aurora Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test2.photonchain.io - -## Photon Aurora Testnet Block Explorers - -- [photon_testnet2_explorer](https://testnet2.photonchain.io) - -## Additional Information - -- **Official Website**: https://photonchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Photon Aurora Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/piece-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/piece-testnet.mdx deleted file mode 100644 index d931098873..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/piece-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Piece testnet - PieceNetwork Blockchain Network -description: Explore Piece testnet, a blockchain network with chain ID 30067. Learn about its native currency, ECE, and how to interact with the network. ---- - -# Piece testnet - -Piece testnet is a blockchain network with chain ID 30067. - -## Network Details - -- **Chain ID**: 30067 -- **Chain Name**: PieceNetwork -- **Short Name**: Piece -- **Network ID**: 30067 -- **Currency**: - - **Name**: ECE - - **Symbol**: ECE - - **Decimals**: 18 - -## RPC URLs - -Piece testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc0.piecenetwork.com - -## Piece testnet Block Explorers - -- [Piece Scan](https://testnet-scan.piecenetwork.com) - -## Additional Information - -- **Official Website**: https://piecenetwork.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Piece testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pingaksha-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pingaksha-testnet.mdx deleted file mode 100644 index 0a55868557..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pingaksha-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Pingaksha testnet - Pingaksha Blockchain Network -description: Explore Pingaksha testnet, a blockchain network with chain ID 1377. Learn about its native currency, Rama, and how to interact with the network. ---- - -# Pingaksha testnet - -Pingaksha testnet is a blockchain network with chain ID 1377. - -## Network Details - -- **Chain ID**: 1377 -- **Chain Name**: Pingaksha -- **Short Name**: tRAMA -- **Network ID**: 1377 -- **Currency**: - - **Name**: Rama - - **Symbol**: tRAMA - - **Decimals**: 18 - -## RPC URLs - -Pingaksha testnet can be accessed through the following RPC endpoints: - -- https://testnet.ramestta.com - -## Pingaksha testnet Block Explorers - -- [Pingaksha](https://pingaksha.ramascan.com) - -## Additional Information - -- **Official Website**: https://www.ramestta.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Pingaksha testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pirl.mdx b/docs/pages/solutions/chainlist/non-integrated/pirl.mdx deleted file mode 100644 index 7fafac795b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pirl.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pirl - PIRL Blockchain Network -description: Explore Pirl, a blockchain network with chain ID 3125659152. Learn about its native currency, Pirl Ether, and how to interact with the network. ---- - -# Pirl - -Pirl is a blockchain network with chain ID 3125659152. - -## Network Details - -- **Chain ID**: 3125659152 -- **Chain Name**: PIRL -- **Short Name**: pirl -- **Network ID**: 3125659152 -- **Currency**: - - **Name**: Pirl Ether - - **Symbol**: PIRL - - **Decimals**: 18 - -## RPC URLs - -Pirl can be accessed through the following RPC endpoints: - -- https://wallrpc.pirl.io - -## Pirl Block Explorers - - - -## Additional Information - -- **Official Website**: https://pirl.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pivotal-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/pivotal-sepolia.mdx deleted file mode 100644 index 13820deb15..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pivotal-sepolia.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pivotal Sepolia - Pivotal Blockchain Network -description: Explore Pivotal Sepolia, a blockchain network with chain ID 16481. Learn about its native currency, Pivotal Plus, and how to interact with the network. ---- - -# Pivotal Sepolia - -Pivotal Sepolia is a blockchain network with chain ID 16481. - -## Network Details - -- **Chain ID**: 16481 -- **Chain Name**: Pivotal -- **Short Name**: pivotal-sepolia -- **Network ID**: 16481 -- **Currency**: - - **Name**: Pivotal Plus - - **Symbol**: PLUS - - **Decimals**: 18 - -## RPC URLs - -Pivotal Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia.pivotalprotocol.com - -## Pivotal Sepolia Block Explorers - -- [Pivotal Scan](https://sepolia.pivotalscan.xyz) - -## Additional Information - -- **Official Website**: http://thepivotal.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pivotal.mdx b/docs/pages/solutions/chainlist/non-integrated/pivotal.mdx deleted file mode 100644 index 5255a05fef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pivotal.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pivotal Mainnet - Pivotal Blockchain Network -description: Explore Pivotal Mainnet, a blockchain network with chain ID 1648. Learn about its native currency, Pivotal Plus, and how to interact with the network. ---- - -# Pivotal Mainnet - -Pivotal Mainnet is a blockchain network with chain ID 1648. - -## Network Details - -- **Chain ID**: 1648 -- **Chain Name**: Pivotal -- **Short Name**: pivotal-mainnet -- **Network ID**: 1648 -- **Currency**: - - **Name**: Pivotal Plus - - **Symbol**: PLUS - - **Decimals**: 18 - -## RPC URLs - -Pivotal Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.pivotalprotocol.com - -## Pivotal Mainnet Block Explorers - -- [Pivotal Scan](https://pivotalscan.xyz) - -## Additional Information - -- **Official Website**: http://thepivotal.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pixie-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pixie-chain-testnet.mdx deleted file mode 100644 index 8cd9700161..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pixie-chain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Pixie Chain Testnet - PixieChain Blockchain Network -description: Explore Pixie Chain Testnet, a blockchain network with chain ID 666. Learn about its native currency, Pixie Chain Testnet Native Token, and how to interact with the network. ---- - -# Pixie Chain Testnet - -Pixie Chain Testnet is a blockchain network with chain ID 666. - -## Network Details - -- **Chain ID**: 666 -- **Chain Name**: PixieChain -- **Short Name**: pixie-chain-testnet -- **Network ID**: 666 -- **Currency**: - - **Name**: Pixie Chain Testnet Native Token - - **Symbol**: PCTT - - **Decimals**: 18 - -## RPC URLs - -Pixie Chain Testnet can be accessed through the following RPC endpoints: - -- https://http-testnet.chain.pixie.xyz -- wss://ws-testnet.chain.pixie.xyz - -## Pixie Chain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://scan-testnet.chain.pixie.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Pixie Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pixie-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/pixie-chain.mdx deleted file mode 100644 index c3a54aa950..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pixie-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Pixie Chain Mainnet - PixieChain Blockchain Network -description: Explore Pixie Chain Mainnet, a blockchain network with chain ID 6626. Learn about its native currency, Pixie Chain Native Token, and how to interact with the network. ---- - -# Pixie Chain Mainnet - -Pixie Chain Mainnet is a blockchain network with chain ID 6626. - -## Network Details - -- **Chain ID**: 6626 -- **Chain Name**: PixieChain -- **Short Name**: pixie-chain -- **Network ID**: 6626 -- **Currency**: - - **Name**: Pixie Chain Native Token - - **Symbol**: PIX - - **Decimals**: 18 - -## RPC URLs - -Pixie Chain Mainnet can be accessed through the following RPC endpoints: - -- https://http-mainnet.chain.pixie.xyz -- wss://ws-mainnet.chain.pixie.xyz - -## Pixie Chain Mainnet Block Explorers - -- [blockscout](https://scan.chain.pixie.xyz) - -## Additional Information - -- **Official Website**: https://chain.pixie.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/planq-atlas-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/planq-atlas-testnet.mdx deleted file mode 100644 index 9adc57b326..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/planq-atlas-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Planq Atlas Testnet - Planq Blockchain Network -description: Explore Planq Atlas Testnet, a blockchain network with chain ID 7077. Learn about its native currency, Planq, and how to interact with the network. ---- - -# Planq Atlas Testnet - -Planq Atlas Testnet is a blockchain network with chain ID 7077. - -## Network Details - -- **Chain ID**: 7077 -- **Chain Name**: Planq -- **Short Name**: planq-atlas-testnet -- **Network ID**: 7077 -- **Currency**: - - **Name**: Planq - - **Symbol**: tPLQ - - **Decimals**: 18 - -## RPC URLs - -Planq Atlas Testnet can be accessed through the following RPC endpoints: - -- https://evm-rpc-atlas.planq.network - -## Planq Atlas Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://planq.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Planq Atlas Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/planq.mdx b/docs/pages/solutions/chainlist/non-integrated/planq.mdx deleted file mode 100644 index 129ef52634..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/planq.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Planq Mainnet - Planq Blockchain Network -description: Explore Planq Mainnet, a blockchain network with chain ID 7070. Learn about its native currency, Planq, and how to interact with the network. ---- - -# Planq Mainnet - -Planq Mainnet is a blockchain network with chain ID 7070. - -## Network Details - -- **Chain ID**: 7070 -- **Chain Name**: Planq -- **Short Name**: planq -- **Network ID**: 7070 -- **Currency**: - - **Name**: Planq - - **Symbol**: PLQ - - **Decimals**: 18 - -## RPC URLs - -Planq Mainnet can be accessed through the following RPC endpoints: - -- https://evm-rpc.planq.network - -## Planq Mainnet Block Explorers - -- [Planq EVM Explorer (Blockscout)](https://evm.planq.network) -- [Planq Cosmos Explorer (BigDipper)](https://explorer.planq.network) - -## Additional Information - -- **Official Website**: https://planq.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet-deprecated.mdx deleted file mode 100644 index 1aace335fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet-deprecated.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: PlatON Dev Testnet Deprecated - PlatON Blockchain Network -description: Explore PlatON Dev Testnet Deprecated, a blockchain network with chain ID 2203181. Learn about its native currency, LAT, and how to interact with the network. ---- - -# PlatON Dev Testnet Deprecated - -PlatON Dev Testnet Deprecated is a blockchain network with chain ID 2203181. - -## Network Details - -- **Chain ID**: 2203181 -- **Chain Name**: PlatON -- **Short Name**: platondev -- **Network ID**: 2203181 -- **Currency**: - - **Name**: LAT - - **Symbol**: lat - - **Decimals**: 18 - -## RPC URLs - -PlatON Dev Testnet Deprecated can be accessed through the following RPC endpoints: - -- https://devnetopenapi2.platon.network/rpc -- wss://devnetopenapi2.platon.network/ws - -## PlatON Dev Testnet Deprecated Block Explorers - -- [PlatON explorer](https://devnetscan.platon.network) - -## Additional Information - -- **Official Website**: https://www.platon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PlatON Dev Testnet Deprecated Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet2.mdx b/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet2.mdx deleted file mode 100644 index e255e74a98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/platon-dev-testnet2.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: PlatON Dev Testnet2 - PlatON Blockchain Network -description: Explore PlatON Dev Testnet2, a blockchain network with chain ID 2206132. Learn about its native currency, LAT, and how to interact with the network. ---- - -# PlatON Dev Testnet2 - -PlatON Dev Testnet2 is a blockchain network with chain ID 2206132. - -## Network Details - -- **Chain ID**: 2206132 -- **Chain Name**: PlatON -- **Short Name**: platondev2 -- **Network ID**: 2206132 -- **Currency**: - - **Name**: LAT - - **Symbol**: lat - - **Decimals**: 18 - -## RPC URLs - -PlatON Dev Testnet2 can be accessed through the following RPC endpoints: - -- https://devnet2openapi.platon.network/rpc -- wss://devnet2openapi.platon.network/ws - -## PlatON Dev Testnet2 Block Explorers - -- [PlatON explorer](https://devnet2scan.platon.network) - -## Additional Information - -- **Official Website**: https://www.platon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PlatON Dev Testnet2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/platon.mdx b/docs/pages/solutions/chainlist/non-integrated/platon.mdx deleted file mode 100644 index 558c412c21..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/platon.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: PlatON Mainnet - PlatON Blockchain Network -description: Explore PlatON Mainnet, a blockchain network with chain ID 210425. Learn about its native currency, LAT, and how to interact with the network. ---- - -# PlatON Mainnet - -PlatON Mainnet is a blockchain network with chain ID 210425. - -## Network Details - -- **Chain ID**: 210425 -- **Chain Name**: PlatON -- **Short Name**: platon -- **Network ID**: 210425 -- **Currency**: - - **Name**: LAT - - **Symbol**: lat - - **Decimals**: 18 - -## RPC URLs - -PlatON Mainnet can be accessed through the following RPC endpoints: - -- https://openapi2.platon.network/rpc -- wss://openapi2.platon.network/ws - -## PlatON Mainnet Block Explorers - -- [PlatON explorer](https://scan.platon.network) - -## Additional Information - -- **Official Website**: https://www.platon.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/playa3ull-games.mdx b/docs/pages/solutions/chainlist/non-integrated/playa3ull-games.mdx deleted file mode 100644 index c5cc8c5e26..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playa3ull-games.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PLAYA3ULL GAMES - 3ULL Blockchain Network -description: Explore PLAYA3ULL GAMES, a blockchain network with chain ID 3011. Learn about its native currency, 3ULL, and how to interact with the network. ---- - -# PLAYA3ULL GAMES - -PLAYA3ULL GAMES is a blockchain network with chain ID 3011. - -## Network Details - -- **Chain ID**: 3011 -- **Chain Name**: 3ULL -- **Short Name**: 3ULL -- **Network ID**: 3011 -- **Currency**: - - **Name**: 3ULL - - **Symbol**: 3ULL - - **Decimals**: 18 - -## RPC URLs - -PLAYA3ULL GAMES can be accessed through the following RPC endpoints: - -- https://api.mainnet.playa3ull.games - -## PLAYA3ULL GAMES Block Explorers - -- [PLAYA3ULL GAMES Explorer](https://3011.routescan.io) - -## Additional Information - -- **Official Website**: https://playa3ull.games - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/playdapp-network.mdx b/docs/pages/solutions/chainlist/non-integrated/playdapp-network.mdx deleted file mode 100644 index 3c69cb2832..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playdapp-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Playdapp Network - PDA Blockchain Network -description: Explore Playdapp Network, a blockchain network with chain ID 504441. Learn about its native currency, Playdapp, and how to interact with the network. ---- - -# Playdapp Network - -Playdapp Network is a blockchain network with chain ID 504441. - -## Network Details - -- **Chain ID**: 504441 -- **Chain Name**: PDA -- **Short Name**: PDA -- **Network ID**: 504441 -- **Currency**: - - **Name**: Playdapp - - **Symbol**: PDA - - **Decimals**: 18 - -## RPC URLs - -Playdapp Network can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/playdappne/mainnet/rpc - -## Playdapp Network Block Explorers - -- [Playdapp Explorer](https://subnets.avax.network/playdappne) - -## Additional Information - -- **Official Website**: https://playdapp.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/playdapp-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/playdapp-testnet.mdx deleted file mode 100644 index 8176e70e87..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playdapp-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Playdapp Testnet - PDA Blockchain Network -description: Explore Playdapp Testnet, a blockchain network with chain ID 12781. Learn about its native currency, Playdapp, and how to interact with the network. ---- - -# Playdapp Testnet - -Playdapp Testnet is a blockchain network with chain ID 12781. - -## Network Details - -- **Chain ID**: 12781 -- **Chain Name**: PDA -- **Short Name**: PDA-TESTNET -- **Network ID**: 12781 -- **Currency**: - - **Name**: Playdapp - - **Symbol**: PDA - - **Decimals**: 18 - -## RPC URLs - -Playdapp Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/playdappte/testnet/rpc - -## Playdapp Testnet Block Explorers - -- [Playdapp Testnet Explorer](https://subnets-test.avax.network/playdappte) - -## Additional Information - -- **Official Website**: https://playdapp.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Playdapp Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/playfair-testnet-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/playfair-testnet-subnet.mdx deleted file mode 100644 index a0c95fe1c4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playfair-testnet-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PlayFair Testnet Subnet - PLAYFAIR Blockchain Network -description: Explore PlayFair Testnet Subnet, a blockchain network with chain ID 12898. Learn about its native currency, BTLT Token, and how to interact with the network. ---- - -# PlayFair Testnet Subnet - -PlayFair Testnet Subnet is a blockchain network with chain ID 12898. - -## Network Details - -- **Chain ID**: 12898 -- **Chain Name**: PLAYFAIR -- **Short Name**: playfair -- **Network ID**: 12898 -- **Currency**: - - **Name**: BTLT Token - - **Symbol**: BTLT - - **Decimals**: 18 - -## RPC URLs - -PlayFair Testnet Subnet can be accessed through the following RPC endpoints: - -- https://rpc.letsplayfair.ai/ext/bc/2hhXFNp1jR4RuqvCmWQnBtt9CZnCmmyGr7TNTkxt7XY7pAzHMY/rpc - -## PlayFair Testnet Subnet Block Explorers - -- [Avalanche Subnet Explorer](https://subnets-test.avax.network/letsplayfair) - -## Additional Information - -- **Official Website**: https://letsplayfair.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PlayFair Testnet Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/playfi-albireo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/playfi-albireo-testnet.mdx deleted file mode 100644 index 4211fdc8e4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playfi-albireo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PlayFi Albireo Testnet - ETH Blockchain Network -description: Explore PlayFi Albireo Testnet, a blockchain network with chain ID 1612127. Learn about its native currency, Ether, and how to interact with the network. ---- - -# PlayFi Albireo Testnet - -PlayFi Albireo Testnet is a blockchain network with chain ID 1612127. - -## Network Details - -- **Chain ID**: 1612127 -- **Chain Name**: ETH -- **Short Name**: alberio -- **Network ID**: 1612127 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -PlayFi Albireo Testnet can be accessed through the following RPC endpoints: - -- https://albireo-rpc.playfi.ai - -## PlayFi Albireo Testnet Block Explorers - -- [PlayFi Block Explorer](https://albireo-explorer.playfi.ai) - -## Additional Information - -- **Official Website**: https://www.playfi.ai/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PlayFi Albireo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/playfi.mdx b/docs/pages/solutions/chainlist/non-integrated/playfi.mdx deleted file mode 100644 index f53c4b1aa7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playfi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PlayFi Mainnet - PLAY Blockchain Network -description: Explore PlayFi Mainnet, a blockchain network with chain ID 161212. Learn about its native currency, Play, and how to interact with the network. ---- - -# PlayFi Mainnet - -PlayFi Mainnet is a blockchain network with chain ID 161212. - -## Network Details - -- **Chain ID**: 161212 -- **Chain Name**: PLAY -- **Short Name**: playfi -- **Network ID**: 161212 -- **Currency**: - - **Name**: Play - - **Symbol**: PLAY - - **Decimals**: 18 - -## RPC URLs - -PlayFi Mainnet can be accessed through the following RPC endpoints: - - - -## PlayFi Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.playfi.ai/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/playground.mdx b/docs/pages/solutions/chainlist/non-integrated/playground.mdx deleted file mode 100644 index d824d9cbc8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/playground.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PlayGround - Avalanche Blockchain Network -description: Explore PlayGround, a blockchain network with chain ID 18077. Learn about its native currency, PlayGround Token, and how to interact with the network. ---- - -# PlayGround - -PlayGround is a blockchain network with chain ID 18077. - -## Network Details - -- **Chain ID**: 18077 -- **Chain Name**: Avalanche -- **Short Name**: PlayGround -- **Network ID**: 18077 -- **Currency**: - - **Name**: PlayGround Token - - **Symbol**: PG - - **Decimals**: 18 - -## RPC URLs - -PlayGround can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/playground/testnet/rpc - -## PlayGround Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PlayGround Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/plian-main.mdx b/docs/pages/solutions/chainlist/non-integrated/plian-main.mdx deleted file mode 100644 index 4acef383d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plian-main.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Plian Mainnet Main - Plian Blockchain Network -description: Explore Plian Mainnet Main, a blockchain network with chain ID 2099156. Learn about its native currency, Plian Token, and how to interact with the network. ---- - -# Plian Mainnet Main - -Plian Mainnet Main is a blockchain network with chain ID 2099156. - -## Network Details - -- **Chain ID**: 2099156 -- **Chain Name**: Plian -- **Short Name**: plian-mainnet -- **Network ID**: 2099156 -- **Currency**: - - **Name**: Plian Token - - **Symbol**: PI - - **Decimals**: 18 - -## RPC URLs - -Plian Mainnet Main can be accessed through the following RPC endpoints: - -- https://mainnet.plian.io/pchain - -## Plian Mainnet Main Block Explorers - -- [piscan](https://piscan.plian.org/pchain) - -## Additional Information - -- **Official Website**: https://plian.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/plian-subchain-1.mdx b/docs/pages/solutions/chainlist/non-integrated/plian-subchain-1.mdx deleted file mode 100644 index 3c6877f052..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plian-subchain-1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Plian Mainnet Subchain 1 - Plian Blockchain Network -description: Explore Plian Mainnet Subchain 1, a blockchain network with chain ID 8007736. Learn about its native currency, Plian Token, and how to interact with the network. ---- - -# Plian Mainnet Subchain 1 - -Plian Mainnet Subchain 1 is a blockchain network with chain ID 8007736. - -## Network Details - -- **Chain ID**: 8007736 -- **Chain Name**: Plian -- **Short Name**: plian-mainnet-l2 -- **Network ID**: 8007736 -- **Currency**: - - **Name**: Plian Token - - **Symbol**: PI - - **Decimals**: 18 - -## RPC URLs - -Plian Mainnet Subchain 1 can be accessed through the following RPC endpoints: - -- https://mainnet.plian.io/child_0 - -## Plian Mainnet Subchain 1 Block Explorers - -- [piscan](https://piscan.plian.org/child_0) - -## Additional Information - -- **Official Website**: https://plian.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/plian-testnet-main.mdx b/docs/pages/solutions/chainlist/non-integrated/plian-testnet-main.mdx deleted file mode 100644 index 4f3bcc3305..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plian-testnet-main.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Plian Testnet Main - Plian Blockchain Network -description: Explore Plian Testnet Main, a blockchain network with chain ID 16658437. Learn about its native currency, Plian Testnet Token, and how to interact with the network. ---- - -# Plian Testnet Main - -Plian Testnet Main is a blockchain network with chain ID 16658437. - -## Network Details - -- **Chain ID**: 16658437 -- **Chain Name**: Plian -- **Short Name**: plian-testnet -- **Network ID**: 16658437 -- **Currency**: - - **Name**: Plian Testnet Token - - **Symbol**: TPI - - **Decimals**: 18 - -## RPC URLs - -Plian Testnet Main can be accessed through the following RPC endpoints: - -- https://testnet.plian.io/testnet - -## Plian Testnet Main Block Explorers - -- [piscan](https://testnet.plian.org/testnet) - -## Additional Information - -- **Official Website**: https://plian.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Plian Testnet Main Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/plian-testnet-subchain-1.mdx b/docs/pages/solutions/chainlist/non-integrated/plian-testnet-subchain-1.mdx deleted file mode 100644 index 82990b46ef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plian-testnet-subchain-1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Plian Testnet Subchain 1 - Plian Blockchain Network -description: Explore Plian Testnet Subchain 1, a blockchain network with chain ID 10067275. Learn about its native currency, Plian Token, and how to interact with the network. ---- - -# Plian Testnet Subchain 1 - -Plian Testnet Subchain 1 is a blockchain network with chain ID 10067275. - -## Network Details - -- **Chain ID**: 10067275 -- **Chain Name**: Plian -- **Short Name**: plian-testnet-l2 -- **Network ID**: 10067275 -- **Currency**: - - **Name**: Plian Token - - **Symbol**: TPI - - **Decimals**: 18 - -## RPC URLs - -Plian Testnet Subchain 1 can be accessed through the following RPC endpoints: - -- https://testnet.plian.io/child_test - -## Plian Testnet Subchain 1 Block Explorers - -- [piscan](https://testnet.plian.org/child_test) - -## Additional Information - -- **Official Website**: https://plian.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Plian Testnet Subchain 1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/plinga.mdx b/docs/pages/solutions/chainlist/non-integrated/plinga.mdx deleted file mode 100644 index a03a056cac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plinga.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Plinga Mainnet - Plinga Blockchain Network -description: Explore Plinga Mainnet, a blockchain network with chain ID 242. Learn about its native currency, Plinga, and how to interact with the network. ---- - -# Plinga Mainnet - -Plinga Mainnet is a blockchain network with chain ID 242. - -## Network Details - -- **Chain ID**: 242 -- **Chain Name**: Plinga -- **Short Name**: plgchain -- **Network ID**: 242 -- **Currency**: - - **Name**: Plinga - - **Symbol**: PLINGA - - **Decimals**: 18 - -## RPC URLs - -Plinga Mainnet can be accessed through the following RPC endpoints: - -- https://rpcurl.mainnet.plgchain.com -- https://rpcurl.plgchain.blockchain.evmnode.online -- https://rpcurl.mainnet.plgchain.plinga.technology - -## Plinga Mainnet Block Explorers - -- [plgscan](https://www.plgscan.com) - -## Additional Information - -- **Official Website**: https://www.plinga.technology/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/plume-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/plume-testnet.mdx deleted file mode 100644 index 5465359db4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plume-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Plume Testnet - ETH Blockchain Network -description: Explore Plume Testnet, a blockchain network with chain ID 161221135. Learn about its native currency, Plume Sepolia Ether, and how to interact with the network. ---- - -# Plume Testnet - -Plume Testnet is a blockchain network with chain ID 161221135. - -## Network Details - -- **Chain ID**: 161221135 -- **Chain Name**: ETH -- **Short Name**: plume-testnet -- **Network ID**: 161221135 -- **Currency**: - - **Name**: Plume Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Plume Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.plumenetwork.xyz/http -- wss://testnet-rpc.plumenetwork.xyz/ws - -## Plume Testnet Block Explorers - -- [Blockscout](https://testnet-explorer.plumenetwork.xyz) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Plume Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/plyr-phi.mdx b/docs/pages/solutions/chainlist/non-integrated/plyr-phi.mdx deleted file mode 100644 index 64e4c96267..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plyr-phi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PLYR PHI - PLYR Blockchain Network -description: Explore PLYR PHI, a blockchain network with chain ID 16180. Learn about its native currency, PLYR, and how to interact with the network. ---- - -# PLYR PHI - -PLYR PHI is a blockchain network with chain ID 16180. - -## Network Details - -- **Chain ID**: 16180 -- **Chain Name**: PLYR -- **Short Name**: plyr-phi -- **Network ID**: 16180 -- **Currency**: - - **Name**: PLYR - - **Symbol**: PLYR - - **Decimals**: 18 - -## RPC URLs - -PLYR PHI can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/plyr/mainnet/rpc - -## PLYR PHI Block Explorers - -- [Avalanche Subnet Explorer](https://subnets.avax.network/plyr) - -## Additional Information - -- **Official Website**: https://plyr.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/plyr-tau-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/plyr-tau-testnet.mdx deleted file mode 100644 index dc67a55847..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/plyr-tau-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PLYR TAU Testnet - PLYR Blockchain Network -description: Explore PLYR TAU Testnet, a blockchain network with chain ID 62831. Learn about its native currency, PLYR, and how to interact with the network. ---- - -# PLYR TAU Testnet - -PLYR TAU Testnet is a blockchain network with chain ID 62831. - -## Network Details - -- **Chain ID**: 62831 -- **Chain Name**: PLYR -- **Short Name**: plyr-tau-testnet -- **Network ID**: 62831 -- **Currency**: - - **Name**: PLYR - - **Symbol**: PLYR - - **Decimals**: 18 - -## RPC URLs - -PLYR TAU Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/plyr/testnet/rpc - -## PLYR TAU Testnet Block Explorers - -- [Avalanche Subnet Testnet Explorer](https://subnets-test.avax.network/plyr) - -## Additional Information - -- **Official Website**: https://plyr.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PLYR TAU Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/poa-network-core.mdx b/docs/pages/solutions/chainlist/non-integrated/poa-network-core.mdx deleted file mode 100644 index 972388f80b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/poa-network-core.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: POA Network Core - POA Blockchain Network -description: Explore POA Network Core, a blockchain network with chain ID 99. Learn about its native currency, POA Network Core Ether, and how to interact with the network. ---- - -# POA Network Core - -POA Network Core is a blockchain network with chain ID 99. - -## Network Details - -- **Chain ID**: 99 -- **Chain Name**: POA -- **Short Name**: poa -- **Network ID**: 99 -- **Currency**: - - **Name**: POA Network Core Ether - - **Symbol**: POA - - **Decimals**: 18 - -## RPC URLs - -POA Network Core can be accessed through the following RPC endpoints: - -- https://core.poa.network - -## POA Network Core Block Explorers - -- [blockscout](https://blockscout.com/poa/core) - -## Additional Information - -- **Official Website**: https://poa.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/poa-network-sokol.mdx b/docs/pages/solutions/chainlist/non-integrated/poa-network-sokol.mdx deleted file mode 100644 index fbd4726383..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/poa-network-sokol.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: POA Network Sokol - POA Blockchain Network -description: Explore POA Network Sokol, a blockchain network with chain ID 77. Learn about its native currency, POA Sokol Ether, and how to interact with the network. ---- - -# POA Network Sokol - -POA Network Sokol is a blockchain network with chain ID 77. - -## Network Details - -- **Chain ID**: 77 -- **Chain Name**: POA -- **Short Name**: spoa -- **Network ID**: 77 -- **Currency**: - - **Name**: POA Sokol Ether - - **Symbol**: SPOA - - **Decimals**: 18 - -## RPC URLs - -POA Network Sokol can be accessed through the following RPC endpoints: - -- https://sokol.poa.network -- wss://sokol.poa.network/wss -- ws://sokol.poa.network:8546 - -## POA Network Sokol Block Explorers - -- [blockscout](https://blockscout.com/poa/sokol) - -## Additional Information - -- **Official Website**: https://poa.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pocrnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pocrnet.mdx deleted file mode 100644 index 2edd7dfc90..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pocrnet.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: PoCRNet - CRC Blockchain Network -description: Explore PoCRNet, a blockchain network with chain ID 2606. Learn about its native currency, Climate awaReness Coin, and how to interact with the network. ---- - -# PoCRNet - -PoCRNet is a blockchain network with chain ID 2606. - -## Network Details - -- **Chain ID**: 2606 -- **Chain Name**: CRC -- **Short Name**: pocrnet -- **Network ID**: 2606 -- **Currency**: - - **Name**: Climate awaReness Coin - - **Symbol**: CRC - - **Decimals**: 18 - -## RPC URLs - -PoCRNet can be accessed through the following RPC endpoints: - -- https://pocrnet.westeurope.cloudapp.azure.com/http -- wss://pocrnet.westeurope.cloudapp.azure.com/ws - -## PoCRNet Block Explorers - -- [Lite Explorer](https://ethereum-pocr.github.io/explorer/pocrnet) - -## Additional Information - -- **Official Website**: https://github.com/ethereum-pocr/pocrnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/polis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/polis-testnet.mdx deleted file mode 100644 index 117fb6e8b0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polis-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Polis Testnet - Sparta Blockchain Network -description: Explore Polis Testnet, a blockchain network with chain ID 333888. Learn about its native currency, tPolis, and how to interact with the network. ---- - -# Polis Testnet - -Polis Testnet is a blockchain network with chain ID 333888. - -## Network Details - -- **Chain ID**: 333888 -- **Chain Name**: Sparta -- **Short Name**: sparta -- **Network ID**: 333888 -- **Currency**: - - **Name**: tPolis - - **Symbol**: tPOLIS - - **Decimals**: 18 - -## RPC URLs - -Polis Testnet can be accessed through the following RPC endpoints: - -- https://sparta-rpc.polis.tech - -## Polis Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://polis.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polis.mdx b/docs/pages/solutions/chainlist/non-integrated/polis.mdx deleted file mode 100644 index c76f32c50b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Polis Mainnet - Olympus Blockchain Network -description: Explore Polis Mainnet, a blockchain network with chain ID 333999. Learn about its native currency, Polis, and how to interact with the network. ---- - -# Polis Mainnet - -Polis Mainnet is a blockchain network with chain ID 333999. - -## Network Details - -- **Chain ID**: 333999 -- **Chain Name**: Olympus -- **Short Name**: olympus -- **Network ID**: 333999 -- **Currency**: - - **Name**: Polis - - **Symbol**: POLIS - - **Decimals**: 18 - -## RPC URLs - -Polis Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.polis.tech - -## Polis Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://polis.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/polite-turquoise-tick.mdx b/docs/pages/solutions/chainlist/non-integrated/polite-turquoise-tick.mdx deleted file mode 100644 index b79f2cccdc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polite-turquoise-tick.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: polite-turquoise-tick - Avalanche Blockchain Network -description: Explore polite-turquoise-tick, a blockchain network with chain ID 84969. Learn about its native currency, polite-turquoise-tick Token, and how to interact with the network. ---- - -# polite-turquoise-tick - -polite-turquoise-tick is a blockchain network with chain ID 84969. - -## Network Details - -- **Chain ID**: 84969 -- **Chain Name**: Avalanche -- **Short Name**: polite-turquoise-tick -- **Network ID**: 84969 -- **Currency**: - - **Name**: polite-turquoise-tick Token - - **Symbol**: PTT - - **Decimals**: 18 - -## RPC URLs - -polite-turquoise-tick can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## polite-turquoise-tick Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## polite-turquoise-tick Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-blackberry.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-blackberry.mdx deleted file mode 100644 index 710008c06a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-blackberry.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Polygon Blackberry - ETH Blockchain Network -description: Explore Polygon Blackberry, a blockchain network with chain ID 94204209. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Polygon Blackberry - -Polygon Blackberry is a blockchain network with chain ID 94204209. - -## Network Details - -- **Chain ID**: 94204209 -- **Chain Name**: ETH -- **Short Name**: polygon-blackberry -- **Network ID**: 94204209 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon Blackberry can be accessed through the following RPC endpoints: - -- https://rpc.polygon-blackberry.gelato.digital -- wss://ws.polygon-blackberry.gelato.digital - -## Polygon Blackberry Block Explorers - -- [blockscout](https://polygon-blackberry.gelatoscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/polygon-blackberry - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polygon Blackberry Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-supernet-arianee.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-supernet-arianee.mdx deleted file mode 100644 index b570607bb6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-supernet-arianee.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Polygon Supernet Arianee - Arianee Blockchain Network -description: Explore Polygon Supernet Arianee, a blockchain network with chain ID 11891. Learn about its native currency, Arianee, and how to interact with the network. ---- - -# Polygon Supernet Arianee - -Polygon Supernet Arianee is a blockchain network with chain ID 11891. - -## Network Details - -- **Chain ID**: 11891 -- **Chain Name**: Arianee -- **Short Name**: Arianee -- **Network ID**: 11891 -- **Currency**: - - **Name**: Arianee - - **Symbol**: ARIA20 - - **Decimals**: 18 - -## RPC URLs - -Polygon Supernet Arianee can be accessed through the following RPC endpoints: - -- https://rpc.polygonsupernet.public.arianee.net - -## Polygon Supernet Arianee Block Explorers - -- [Polygon Supernet Arianee Explorer](https://polygonsupernet.explorer.arianee.net) - -## Additional Information - -- **Official Website**: https://arianee.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-cardona-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-cardona-testnet.mdx deleted file mode 100644 index 7970bd1170..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-cardona-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Polygon zkEVM Cardona Testnet - Polygon Blockchain Network -description: Explore Polygon zkEVM Cardona Testnet, a blockchain network with chain ID 2442. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polygon zkEVM Cardona Testnet - -Polygon zkEVM Cardona Testnet is a blockchain network with chain ID 2442. - -## Network Details - -- **Chain ID**: 2442 -- **Chain Name**: Polygon -- **Short Name**: zkevm-testnet-cardona -- **Network ID**: 2442 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon zkEVM Cardona Testnet can be accessed through the following RPC endpoints: - -- https://rpc.cardona.zkevm-rpc.com - -## Polygon zkEVM Cardona Testnet Block Explorers - -- [polygonscan](https://cardona-zkevm.polygonscan.com) - -## Additional Information - -- **Official Website**: https://polygon.technology/polygon-zkevm - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polygon zkEVM Cardona Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-old.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-old.mdx deleted file mode 100644 index 7d46aac996..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-old.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Polygon zkEVM Testnet old - Polygon Blockchain Network -description: Explore Polygon zkEVM Testnet old, a blockchain network with chain ID 1402. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polygon zkEVM Testnet old - -Polygon zkEVM Testnet old is a blockchain network with chain ID 1402. - -## Network Details - -- **Chain ID**: 1402 -- **Chain Name**: Polygon -- **Short Name**: zkevmtest -- **Network ID**: 1402 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon zkEVM Testnet old can be accessed through the following RPC endpoints: - - - -## Polygon zkEVM Testnet old Block Explorers - -- [blockscout](https://explorer.public.zkevm-test.net) - -## Additional Information - -- **Official Website**: https://polygon.technology/solutions/polygon-zkevm/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polygon zkEVM Testnet old Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-pre-audit-upgraded.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-pre-audit-upgraded.mdx deleted file mode 100644 index c1fe6547fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet-pre-audit-upgraded.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Polygon zkEVM Testnet Pre Audit-Upgraded - Polygon Blockchain Network -description: Explore Polygon zkEVM Testnet Pre Audit-Upgraded, a blockchain network with chain ID 1422. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polygon zkEVM Testnet Pre Audit-Upgraded - -Polygon zkEVM Testnet Pre Audit-Upgraded is a blockchain network with chain ID 1422. - -## Network Details - -- **Chain ID**: 1422 -- **Chain Name**: Polygon -- **Short Name**: testnet-zkEVM-mango-pre-audit-upgraded -- **Network ID**: 1422 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon zkEVM Testnet Pre Audit-Upgraded can be accessed through the following RPC endpoints: - - - -## Polygon zkEVM Testnet Pre Audit-Upgraded Block Explorers - -- [Polygon zkEVM explorer](https://explorer.public.zkevm-test.net) - -## Additional Information - -- **Official Website**: https://polygon.technology/solutions/polygon-zkevm/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polygon zkEVM Testnet Pre Audit-Upgraded Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet.mdx deleted file mode 100644 index 842f51db38..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polygon-zkevm-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Polygon zkEVM Testnet - Polygon Blockchain Network -description: Explore Polygon zkEVM Testnet, a blockchain network with chain ID 1442. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polygon zkEVM Testnet - -Polygon zkEVM Testnet is a blockchain network with chain ID 1442. - -## Network Details - -- **Chain ID**: 1442 -- **Chain Name**: Polygon -- **Short Name**: testnet-zkEVM-mango -- **Network ID**: 1442 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polygon zkEVM Testnet can be accessed through the following RPC endpoints: - -- https://rpc.public.zkevm-test.net -- https://polygon-zkevm-testnet.drpc.org -- wss://polygon-zkevm-testnet.drpc.org - -## Polygon zkEVM Testnet Block Explorers - -- [Polygon zkEVM explorer](https://explorer.public.zkevm-test.net) - -## Additional Information - -- **Official Website**: https://polygon.technology/solutions/polygon-zkevm/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polygon zkEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polyjuice-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/polyjuice-testnet.mdx deleted file mode 100644 index 9f9a09cd66..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polyjuice-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Polyjuice Testnet - CKB Blockchain Network -description: Explore Polyjuice Testnet, a blockchain network with chain ID 71393. Learn about its native currency, CKB, and how to interact with the network. ---- - -# Polyjuice Testnet - -Polyjuice Testnet is a blockchain network with chain ID 71393. - -## Network Details - -- **Chain ID**: 71393 -- **Chain Name**: CKB -- **Short Name**: ckb -- **Network ID**: 71393 -- **Currency**: - - **Name**: CKB - - **Symbol**: CKB - - **Decimals**: 8 - -## RPC URLs - -Polyjuice Testnet can be accessed through the following RPC endpoints: - -- https://godwoken-testnet-web3-rpc.ckbapp.dev -- ws://godwoken-testnet-web3-rpc.ckbapp.dev/ws - -## Polyjuice Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/nervosnetwork/godwoken - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Polyjuice Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/polynomia-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/polynomia-sepolia.mdx deleted file mode 100644 index b55d5a1a2b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polynomia-sepolia.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Polynomia Sepolia - polynomialSepolia Blockchain Network -description: Explore Polynomia Sepolia, a blockchain network with chain ID 80008. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polynomia Sepolia - -Polynomia Sepolia is a blockchain network with chain ID 80008. - -## Network Details - -- **Chain ID**: 80008 -- **Chain Name**: polynomialSepolia -- **Short Name**: polynomialSepolia -- **Network ID**: 80008 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polynomia Sepolia can be accessed through the following RPC endpoints: - -- https://rpc.sepolia.polynomial.fi - -## Polynomia Sepolia Block Explorers - -- [Polynomial Sepolia Explorer](https://sepolia.polynomialscan.io) - -## Additional Information - -- **Official Website**: https://polynomial.fi - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/polynomial.mdx b/docs/pages/solutions/chainlist/non-integrated/polynomial.mdx deleted file mode 100644 index a34410c1b1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polynomial.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Polynomial - Polynomial Blockchain Network -description: Explore Polynomial, a blockchain network with chain ID 8008. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Polynomial - -Polynomial is a blockchain network with chain ID 8008. - -## Network Details - -- **Chain ID**: 8008 -- **Chain Name**: Polynomial -- **Short Name**: polynomial -- **Network ID**: 8008 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Polynomial can be accessed through the following RPC endpoints: - -- https://rpc.polynomial.fi - -## Polynomial Block Explorers - -- [Polynomial Explorer](https://polynomialscan.io) - -## Additional Information - -- **Official Website**: https://polynomial.fi - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/polysmartchain.mdx b/docs/pages/solutions/chainlist/non-integrated/polysmartchain.mdx deleted file mode 100644 index d866e7a38e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/polysmartchain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: PolySmartChain - PSC Blockchain Network -description: Explore PolySmartChain, a blockchain network with chain ID 6999. Learn about its native currency, PSC, and how to interact with the network. ---- - -# PolySmartChain - -PolySmartChain is a blockchain network with chain ID 6999. - -## Network Details - -- **Chain ID**: 6999 -- **Chain Name**: PSC -- **Short Name**: psc -- **Network ID**: 6999 -- **Currency**: - - **Name**: PSC - - **Symbol**: PSC - - **Decimals**: 18 - -## RPC URLs - -PolySmartChain can be accessed through the following RPC endpoints: - -- https://seed0.polysmartchain.com/ -- https://seed1.polysmartchain.com/ -- https://seed2.polysmartchain.com/ - -## PolySmartChain Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.polysmartchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/poodl-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/poodl-testnet.mdx deleted file mode 100644 index 9dbcaedb56..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/poodl-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Poodl Testnet - Poodl Blockchain Network -description: Explore Poodl Testnet, a blockchain network with chain ID 15257. Learn about its native currency, Poodl, and how to interact with the network. ---- - -# Poodl Testnet - -Poodl Testnet is a blockchain network with chain ID 15257. - -## Network Details - -- **Chain ID**: 15257 -- **Chain Name**: Poodl -- **Short Name**: poodlt -- **Network ID**: 15257 -- **Currency**: - - **Name**: Poodl - - **Symbol**: POODL - - **Decimals**: 18 - -## RPC URLs - -Poodl Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.poodl.org - -## Poodl Testnet Block Explorers - -- [Poodl Testnet Explorer](https://testnet.poodl.org) - -## Additional Information - -- **Official Website**: https://poodl.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Poodl Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/poodl.mdx b/docs/pages/solutions/chainlist/non-integrated/poodl.mdx deleted file mode 100644 index dde0eb72e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/poodl.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Poodl Mainnet - Poodl Blockchain Network -description: Explore Poodl Mainnet, a blockchain network with chain ID 15259. Learn about its native currency, Poodl, and how to interact with the network. ---- - -# Poodl Mainnet - -Poodl Mainnet is a blockchain network with chain ID 15259. - -## Network Details - -- **Chain ID**: 15259 -- **Chain Name**: Poodl -- **Short Name**: poodle -- **Network ID**: 15259 -- **Currency**: - - **Name**: Poodl - - **Symbol**: POODL - - **Decimals**: 18 - -## RPC URLs - -Poodl Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.poodl.org - -## Poodl Mainnet Block Explorers - -- [Poodl Mainnet Explorer](https://explorer.poodl.org) - -## Additional Information - -- **Official Website**: https://poodl.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pools.mdx b/docs/pages/solutions/chainlist/non-integrated/pools.mdx deleted file mode 100644 index 33f9642cb9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pools.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Pools Mainnet - Pools Blockchain Network -description: Explore Pools Mainnet, a blockchain network with chain ID 6868. Learn about its native currency, POOLS Native Token, and how to interact with the network. ---- - -# Pools Mainnet - -Pools Mainnet is a blockchain network with chain ID 6868. - -## Network Details - -- **Chain ID**: 6868 -- **Chain Name**: Pools -- **Short Name**: POOLS -- **Network ID**: 6868 -- **Currency**: - - **Name**: POOLS Native Token - - **Symbol**: POOLS - - **Decimals**: 18 - -## RPC URLs - -Pools Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.poolsmobility.com - -## Pools Mainnet Block Explorers - -- [poolsscan](https://scan.poolsmobility.com) - -## Additional Information - -- **Official Website**: https://www.poolschain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pop.mdx b/docs/pages/solutions/chainlist/non-integrated/pop.mdx deleted file mode 100644 index ac38c7f525..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pop.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: POP Mainnet - POP Blockchain Network -description: Explore POP Mainnet, a blockchain network with chain ID 331771. Learn about its native currency, Pepe, and how to interact with the network. ---- - -# POP Mainnet - -POP Mainnet is a blockchain network with chain ID 331771. - -## Network Details - -- **Chain ID**: 331771 -- **Chain Name**: POP -- **Short Name**: POP -- **Network ID**: 331771 -- **Currency**: - - **Name**: Pepe - - **Symbol**: PEPE - - **Decimals**: 18 - -## RPC URLs - -POP Mainnet can be accessed through the following RPC endpoints: - -- https://rpc00.proofofpepe.tech -- https://rpc01.proofofpepe.tech -- https://rpc02.proofofpepe.tech - -## POP Mainnet Block Explorers - -- [Pepescan](https://pepescan.app) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/popcateum.mdx b/docs/pages/solutions/chainlist/non-integrated/popcateum.mdx deleted file mode 100644 index f770a4e4af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/popcateum.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Popcateum Mainnet - POPCATEUM Blockchain Network -description: Explore Popcateum Mainnet, a blockchain network with chain ID 1213. Learn about its native currency, Popcat, and how to interact with the network. ---- - -# Popcateum Mainnet - -Popcateum Mainnet is a blockchain network with chain ID 1213. - -## Network Details - -- **Chain ID**: 1213 -- **Chain Name**: POPCATEUM -- **Short Name**: popcat -- **Network ID**: 1213 -- **Currency**: - - **Name**: Popcat - - **Symbol**: POP - - **Decimals**: 18 - -## RPC URLs - -Popcateum Mainnet can be accessed through the following RPC endpoints: - -- https://dataseed.popcateum.org - -## Popcateum Mainnet Block Explorers - -- [popcateum explorer](https://explorer.popcateum.org) - -## Additional Information - -- **Official Website**: https://popcateum.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain-test.mdx b/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain-test.mdx deleted file mode 100644 index ae0c0e52ac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Portal Fantasy Chain Test - PF Blockchain Network -description: Explore Portal Fantasy Chain Test, a blockchain network with chain ID 808. Learn about its native currency, Portal Fantasy Token, and how to interact with the network. ---- - -# Portal Fantasy Chain Test - -Portal Fantasy Chain Test is a blockchain network with chain ID 808. - -## Network Details - -- **Chain ID**: 808 -- **Chain Name**: PF -- **Short Name**: PFTEST -- **Network ID**: 808 -- **Currency**: - - **Name**: Portal Fantasy Token - - **Symbol**: PFT - - **Decimals**: 18 - -## RPC URLs - -Portal Fantasy Chain Test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/portal-fantasy/testnet/rpc - -## Portal Fantasy Chain Test Block Explorers - - - -## Additional Information - -- **Official Website**: https://portalfantasy.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Portal Fantasy Chain Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain.mdx deleted file mode 100644 index 6e271cef68..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/portal-fantasy-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Portal Fantasy Chain - PF Blockchain Network -description: Explore Portal Fantasy Chain, a blockchain network with chain ID 909. Learn about its native currency, Portal Fantasy Token, and how to interact with the network. ---- - -# Portal Fantasy Chain - -Portal Fantasy Chain is a blockchain network with chain ID 909. - -## Network Details - -- **Chain ID**: 909 -- **Chain Name**: PF -- **Short Name**: PF -- **Network ID**: 909 -- **Currency**: - - **Name**: Portal Fantasy Token - - **Symbol**: PFT - - **Decimals**: 18 - -## RPC URLs - -Portal Fantasy Chain can be accessed through the following RPC endpoints: - - - -## Portal Fantasy Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://portalfantasy.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-0.mdx deleted file mode 100644 index 3dc95a367f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-0.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Posichain Devnet Shard 0 - PSC Blockchain Network -description: Explore Posichain Devnet Shard 0, a blockchain network with chain ID 920000. Learn about its native currency, Posichain Native Token, and how to interact with the network. ---- - -# Posichain Devnet Shard 0 - -Posichain Devnet Shard 0 is a blockchain network with chain ID 920000. - -## Network Details - -- **Chain ID**: 920000 -- **Chain Name**: PSC -- **Short Name**: psc-d-s0 -- **Network ID**: 920000 -- **Currency**: - - **Name**: Posichain Native Token - - **Symbol**: POSI - - **Decimals**: 18 - -## RPC URLs - -Posichain Devnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.s0.d.posichain.org - -## Posichain Devnet Shard 0 Block Explorers - -- [Posichain Explorer Devnet](https://explorer-devnet.posichain.org) - -## Additional Information - -- **Official Website**: https://posichain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-1.mdx deleted file mode 100644 index 52ba738c75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/posichain-devnet-shard-1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Posichain Devnet Shard 1 - PSC Blockchain Network -description: Explore Posichain Devnet Shard 1, a blockchain network with chain ID 920001. Learn about its native currency, Posichain Native Token, and how to interact with the network. ---- - -# Posichain Devnet Shard 1 - -Posichain Devnet Shard 1 is a blockchain network with chain ID 920001. - -## Network Details - -- **Chain ID**: 920001 -- **Chain Name**: PSC -- **Short Name**: psc-d-s1 -- **Network ID**: 920001 -- **Currency**: - - **Name**: Posichain Native Token - - **Symbol**: POSI - - **Decimals**: 18 - -## RPC URLs - -Posichain Devnet Shard 1 can be accessed through the following RPC endpoints: - -- https://api.s1.d.posichain.org - -## Posichain Devnet Shard 1 Block Explorers - -- [Posichain Explorer Devnet](https://explorer-devnet.posichain.org) - -## Additional Information - -- **Official Website**: https://posichain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/posichain-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/posichain-shard-0.mdx deleted file mode 100644 index b7764ad1f3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/posichain-shard-0.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Posichain Mainnet Shard 0 - PSC Blockchain Network -description: Explore Posichain Mainnet Shard 0, a blockchain network with chain ID 900000. Learn about its native currency, Posichain Native Token, and how to interact with the network. ---- - -# Posichain Mainnet Shard 0 - -Posichain Mainnet Shard 0 is a blockchain network with chain ID 900000. - -## Network Details - -- **Chain ID**: 900000 -- **Chain Name**: PSC -- **Short Name**: psc-s0 -- **Network ID**: 900000 -- **Currency**: - - **Name**: Posichain Native Token - - **Symbol**: POSI - - **Decimals**: 18 - -## RPC URLs - -Posichain Mainnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.posichain.org -- https://api.s0.posichain.org - -## Posichain Mainnet Shard 0 Block Explorers - -- [Posichain Explorer](https://explorer.posichain.org) - -## Additional Information - -- **Official Website**: https://posichain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/posichain-testnet-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/posichain-testnet-shard-0.mdx deleted file mode 100644 index 006f71d36c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/posichain-testnet-shard-0.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Posichain Testnet Shard 0 - PSC Blockchain Network -description: Explore Posichain Testnet Shard 0, a blockchain network with chain ID 910000. Learn about its native currency, Posichain Native Token, and how to interact with the network. ---- - -# Posichain Testnet Shard 0 - -Posichain Testnet Shard 0 is a blockchain network with chain ID 910000. - -## Network Details - -- **Chain ID**: 910000 -- **Chain Name**: PSC -- **Short Name**: psc-t-s0 -- **Network ID**: 910000 -- **Currency**: - - **Name**: Posichain Native Token - - **Symbol**: POSI - - **Decimals**: 18 - -## RPC URLs - -Posichain Testnet Shard 0 can be accessed through the following RPC endpoints: - -- https://api.s0.t.posichain.org - -## Posichain Testnet Shard 0 Block Explorers - -- [Posichain Explorer Testnet](https://explorer-testnet.posichain.org) - -## Additional Information - -- **Official Website**: https://posichain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Posichain Testnet Shard 0 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/powergold.mdx b/docs/pages/solutions/chainlist/non-integrated/powergold.mdx deleted file mode 100644 index 674dbe7fc5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/powergold.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PowerGold - NEAR Blockchain Network -description: Explore PowerGold, a blockchain network with chain ID 1313161560. Learn about its native currency, Ether, and how to interact with the network. ---- - -# PowerGold - -PowerGold is a blockchain network with chain ID 1313161560. - -## Network Details - -- **Chain ID**: 1313161560 -- **Chain Name**: NEAR -- **Short Name**: powergold -- **Network ID**: 1313161560 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -PowerGold can be accessed through the following RPC endpoints: - -- https://powergold.aurora.dev - -## PowerGold Block Explorers - -- [PowerGold explorer](https://explorer.powergold.aurora.dev) - -## Additional Information - -- **Official Website**: https://www.powergold.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/powerloom-pre--(prost-1m).mdx b/docs/pages/solutions/chainlist/non-integrated/powerloom-pre--(prost-1m).mdx deleted file mode 100644 index df35f42a35..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/powerloom-pre--(prost-1m).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Powerloom Pre-mainnet (Prost 1M) - Powerloom Pre-mainnet (Prost 1M) Blockchain Network -description: Explore Powerloom Pre-mainnet (Prost 1M), a blockchain network with chain ID 11169. Learn about its native currency, Powerloom Testnet Token, and how to interact with the network. ---- - -# Powerloom Pre-mainnet (Prost 1M) - -Powerloom Pre-mainnet (Prost 1M) is a blockchain network with chain ID 11169. - -## Network Details - -- **Chain ID**: 11169 -- **Chain Name**: Powerloom Pre-mainnet (Prost 1M) -- **Short Name**: Powerloom Pre-mainnet (Prost 1M) -- **Network ID**: 11169 -- **Currency**: - - **Name**: Powerloom Testnet Token - - **Symbol**: PLT - - **Decimals**: 18 - -## RPC URLs - -Powerloom Pre-mainnet (Prost 1M) can be accessed through the following RPC endpoints: - -- https://rpc-prost1m.powerloom.io - -## Powerloom Pre-mainnet (Prost 1M) Block Explorers - -- [Powerloom Pre-mainnet (Prost 1M) Explorer](https://explorer-prost1m.powerloom.io) - -## Additional Information - -- **Official Website**: https://thirdweb.com/11169 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Powerloom Pre-mainnet (Prost 1M) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/primuschain.mdx b/docs/pages/solutions/chainlist/non-integrated/primuschain.mdx deleted file mode 100644 index 8c296e2e01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/primuschain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PrimusChain mainnet - PC Blockchain Network -description: Explore PrimusChain mainnet, a blockchain network with chain ID 78. Learn about its native currency, Primus Ether, and how to interact with the network. ---- - -# PrimusChain mainnet - -PrimusChain mainnet is a blockchain network with chain ID 78. - -## Network Details - -- **Chain ID**: 78 -- **Chain Name**: PC -- **Short Name**: primuschain -- **Network ID**: 78 -- **Currency**: - - **Name**: Primus Ether - - **Symbol**: PETH - - **Decimals**: 18 - -## RPC URLs - -PrimusChain mainnet can be accessed through the following RPC endpoints: - -- https://ethnode.primusmoney.com/mainnet - -## PrimusChain mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://primusmoney.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/prm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/prm-testnet.mdx deleted file mode 100644 index 38b3f818d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/prm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PRM Testnet - prm Blockchain Network -description: Explore PRM Testnet, a blockchain network with chain ID 839320. Learn about its native currency, Primal Network, and how to interact with the network. ---- - -# PRM Testnet - -PRM Testnet is a blockchain network with chain ID 839320. - -## Network Details - -- **Chain ID**: 839320 -- **Chain Name**: prm -- **Short Name**: prmtest -- **Network ID**: 839320 -- **Currency**: - - **Name**: Primal Network - - **Symbol**: PRM - - **Decimals**: 18 - -## RPC URLs - -PRM Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.prmscan.org - -## PRM Testnet Block Explorers - -- [Primal Network Testnet](https://testnet-explorer.prmscan.org) - -## Additional Information - -- **Official Website**: https://primalnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PRM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/prm.mdx b/docs/pages/solutions/chainlist/non-integrated/prm.mdx deleted file mode 100644 index cfb6e86fd2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/prm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PRM Mainnet - prm Blockchain Network -description: Explore PRM Mainnet, a blockchain network with chain ID 39656. Learn about its native currency, Primal Network, and how to interact with the network. ---- - -# PRM Mainnet - -PRM Mainnet is a blockchain network with chain ID 39656. - -## Network Details - -- **Chain ID**: 39656 -- **Chain Name**: prm -- **Short Name**: prm -- **Network ID**: 39656 -- **Currency**: - - **Name**: Primal Network - - **Symbol**: PRM - - **Decimals**: 18 - -## RPC URLs - -PRM Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.prmscan.org - -## PRM Mainnet Block Explorers - -- [Primal Network](https://prmscan.org) - -## Additional Information - -- **Official Website**: https://primalnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/proj-orc-testnet-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/proj-orc-testnet-alpha.mdx deleted file mode 100644 index c55fa756e4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proj-orc-testnet-alpha.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Proj Orc Testnet Alpha - Avalanche Blockchain Network -description: Explore Proj Orc Testnet Alpha, a blockchain network with chain ID 88883. Learn about its native currency, Proj Orc Testnet Alpha Token, and how to interact with the network. ---- - -# Proj Orc Testnet Alpha - -Proj Orc Testnet Alpha is a blockchain network with chain ID 88883. - -## Network Details - -- **Chain ID**: 88883 -- **Chain Name**: Avalanche -- **Short Name**: Proj Orc Testnet Alpha -- **Network ID**: 88883 -- **Currency**: - - **Name**: Proj Orc Testnet Alpha Token - - **Symbol**: STX - - **Decimals**: 18 - -## RPC URLs - -Proj Orc Testnet Alpha can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/projorctes/testnet/rpc - -## Proj Orc Testnet Alpha Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Proj Orc Testnet Alpha Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/project-orc.mdx b/docs/pages/solutions/chainlist/non-integrated/project-orc.mdx deleted file mode 100644 index 7a18a91414..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/project-orc.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Project Orc - Avalanche Blockchain Network -description: Explore Project Orc, a blockchain network with chain ID 234560. Learn about its native currency, Project Orc Token, and how to interact with the network. ---- - -# Project Orc - -Project Orc is a blockchain network with chain ID 234560. - -## Network Details - -- **Chain ID**: 234560 -- **Chain Name**: Avalanche -- **Short Name**: Project Orc -- **Network ID**: 234560 -- **Currency**: - - **Name**: Project Orc Token - - **Symbol**: STX - - **Decimals**: 18 - -## RPC URLs - -Project Orc can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/projectorc/testnet/rpc - -## Project Orc Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Project Orc Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/proof-of-memes.mdx b/docs/pages/solutions/chainlist/non-integrated/proof-of-memes.mdx deleted file mode 100644 index fa9946873f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proof-of-memes.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Proof Of Memes - POM Blockchain Network -description: Explore Proof Of Memes, a blockchain network with chain ID 18159. Learn about its native currency, Proof Of Memes, and how to interact with the network. ---- - -# Proof Of Memes - -Proof Of Memes is a blockchain network with chain ID 18159. - -## Network Details - -- **Chain ID**: 18159 -- **Chain Name**: POM -- **Short Name**: pom -- **Network ID**: 18159 -- **Currency**: - - **Name**: Proof Of Memes - - **Symbol**: POM - - **Decimals**: 18 - -## RPC URLs - -Proof Of Memes can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.memescan.io -- https://mainnet-rpc2.memescan.io -- https://mainnet-rpc3.memescan.io -- https://mainnet-rpc4.memescan.io - -## Proof Of Memes Block Explorers - -- [explorer-proofofmemes](https://memescan.io) - -## Additional Information - -- **Official Website**: https://proofofmemes.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/proof-of-play---apex.mdx b/docs/pages/solutions/chainlist/non-integrated/proof-of-play---apex.mdx deleted file mode 100644 index 8628be82d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proof-of-play---apex.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Proof of Play - Apex - ETH Blockchain Network -description: Explore Proof of Play - Apex, a blockchain network with chain ID 70700. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Proof of Play - Apex - -Proof of Play - Apex is a blockchain network with chain ID 70700. - -## Network Details - -- **Chain ID**: 70700 -- **Chain Name**: ETH -- **Short Name**: pop-apex -- **Network ID**: 70700 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Proof of Play - Apex can be accessed through the following RPC endpoints: - -- https://rpc.apex.proofofplay.com - -## Proof of Play - Apex Block Explorers - -- [Proof of Play Apex Explorer](https://explorer.apex.proofofplay.com) - -## Additional Information - -- **Official Website**: https://proofofplay.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/proofofpepe-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/proofofpepe-testnet.mdx deleted file mode 100644 index 58814bf88c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proofofpepe-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ProofOfPepe Testnet - POPTestnet Blockchain Network -description: Explore ProofOfPepe Testnet, a blockchain network with chain ID 331769. Learn about its native currency, POP, and how to interact with the network. ---- - -# ProofOfPepe Testnet - -ProofOfPepe Testnet is a blockchain network with chain ID 331769. - -## Network Details - -- **Chain ID**: 331769 -- **Chain Name**: POPTestnet -- **Short Name**: POPTestnet -- **Network ID**: 331769 -- **Currency**: - - **Name**: POP - - **Symbol**: POP - - **Decimals**: 18 - -## RPC URLs - -ProofOfPepe Testnet can be accessed through the following RPC endpoints: - -- https://testnet01.proofofpepe.tech - -## ProofOfPepe Testnet Block Explorers - -- [ProofOfPepe Explorer](https://pepescan.app/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ProofOfPepe Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/protojumbo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/protojumbo-testnet.mdx deleted file mode 100644 index f491238743..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/protojumbo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ProtoJumbo Testnet - Jumbo Blockchain Network -description: Explore ProtoJumbo Testnet, a blockchain network with chain ID 234. Learn about its native currency, JNFTC, and how to interact with the network. ---- - -# ProtoJumbo Testnet - -ProtoJumbo Testnet is a blockchain network with chain ID 234. - -## Network Details - -- **Chain ID**: 234 -- **Chain Name**: Jumbo -- **Short Name**: ProtoJumbo -- **Network ID**: 234 -- **Currency**: - - **Name**: JNFTC - - **Symbol**: JNFTC - - **Decimals**: 18 - -## RPC URLs - -ProtoJumbo Testnet can be accessed through the following RPC endpoints: - -- https://testnode.jumbochain.org - -## ProtoJumbo Testnet Block Explorers - -- [ProtoJumbo](https://protojumbo.jumbochain.org) - -## Additional Information - -- **Official Website**: https://jumbochain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ProtoJumbo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/proton-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/proton-testnet.mdx deleted file mode 100644 index 599198c9cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proton-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Proton Testnet - XPR Blockchain Network -description: Explore Proton Testnet, a blockchain network with chain ID 110. Learn about its native currency, Proton, and how to interact with the network. ---- - -# Proton Testnet - -Proton Testnet is a blockchain network with chain ID 110. - -## Network Details - -- **Chain ID**: 110 -- **Chain Name**: XPR -- **Short Name**: xpr -- **Network ID**: 110 -- **Currency**: - - **Name**: Proton - - **Symbol**: XPR - - **Decimals**: 4 - -## RPC URLs - -Proton Testnet can be accessed through the following RPC endpoints: - -- https://protontestnet.greymass.com/ - -## Proton Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://protonchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Proton Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/proxy-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/proxy-network-testnet.mdx deleted file mode 100644 index 0613b1653d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/proxy-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Proxy Network Testnet - Proxy Network Blockchain Network -description: Explore Proxy Network Testnet, a blockchain network with chain ID 1031. Learn about its native currency, PRX, and how to interact with the network. ---- - -# Proxy Network Testnet - -Proxy Network Testnet is a blockchain network with chain ID 1031. - -## Network Details - -- **Chain ID**: 1031 -- **Chain Name**: Proxy Network -- **Short Name**: prx -- **Network ID**: 1031 -- **Currency**: - - **Name**: PRX - - **Symbol**: PRX - - **Decimals**: 18 - -## RPC URLs - -Proxy Network Testnet can be accessed through the following RPC endpoints: - -- http://128.199.94.183:8041 - -## Proxy Network Testnet Block Explorers - -- [proxy network testnet](http://testnet-explorer.theproxy.network) - -## Additional Information - -- **Official Website**: https://theproxy.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Proxy Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pst-1-17-24.mdx b/docs/pages/solutions/chainlist/non-integrated/pst-1-17-24.mdx deleted file mode 100644 index b305f3adef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pst-1-17-24.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PST 1-17-24 - Avalanche Blockchain Network -description: Explore PST 1-17-24, a blockchain network with chain ID 17511. Learn about its native currency, PST 1-17-24 Token, and how to interact with the network. ---- - -# PST 1-17-24 - -PST 1-17-24 is a blockchain network with chain ID 17511. - -## Network Details - -- **Chain ID**: 17511 -- **Chain Name**: Avalanche -- **Short Name**: PST 1-17-24 -- **Network ID**: 17511 -- **Currency**: - - **Name**: PST 1-17-24 Token - - **Symbol**: MUB - - **Decimals**: 18 - -## RPC URLs - -PST 1-17-24 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## PST 1-17-24 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PST 1-17-24 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ptcescan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ptcescan-testnet.mdx deleted file mode 100644 index dd2be33576..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ptcescan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PTCESCAN Testnet - PTCE Blockchain Network -description: Explore PTCESCAN Testnet, a blockchain network with chain ID 889910245. Learn about its native currency, PTCE, and how to interact with the network. ---- - -# PTCESCAN Testnet - -PTCESCAN Testnet is a blockchain network with chain ID 889910245. - -## Network Details - -- **Chain ID**: 889910245 -- **Chain Name**: PTCE -- **Short Name**: PTCE -- **Network ID**: 889910245 -- **Currency**: - - **Name**: PTCE - - **Symbol**: PTCE - - **Decimals**: 18 - -## RPC URLs - -PTCESCAN Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.ptcscan.io - -## PTCESCAN Testnet Block Explorers - -- [PTCESCAN Testnet Explorer](https://explorer-testnet.ptcscan.io) - -## Additional Information - -- **Official Website**: https://ptcscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PTCESCAN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ptcescan.mdx b/docs/pages/solutions/chainlist/non-integrated/ptcescan.mdx deleted file mode 100644 index de95fcf122..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ptcescan.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PTCESCAN Mainnet - PTCE Blockchain Network -description: Explore PTCESCAN Mainnet, a blockchain network with chain ID 889910246. Learn about its native currency, PTCE, and how to interact with the network. ---- - -# PTCESCAN Mainnet - -PTCESCAN Mainnet is a blockchain network with chain ID 889910246. - -## Network Details - -- **Chain ID**: 889910246 -- **Chain Name**: PTCE -- **Short Name**: POLYTECH -- **Network ID**: 889910246 -- **Currency**: - - **Name**: PTCE - - **Symbol**: PTCE - - **Decimals**: 18 - -## RPC URLs - -PTCESCAN Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.ptcscan.io - -## PTCESCAN Mainnet Block Explorers - -- [PTCESCAN Explorer](https://ptcscan.io) - -## Additional Information - -- **Official Website**: https://ptcscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ptnewlo.mdx b/docs/pages/solutions/chainlist/non-integrated/ptnewlo.mdx deleted file mode 100644 index 4f0f2f1206..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ptnewlo.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PTNEWLO - Avalanche Blockchain Network -description: Explore PTNEWLO, a blockchain network with chain ID 57487. Learn about its native currency, PTNEWLO Token, and how to interact with the network. ---- - -# PTNEWLO - -PTNEWLO is a blockchain network with chain ID 57487. - -## Network Details - -- **Chain ID**: 57487 -- **Chain Name**: Avalanche -- **Short Name**: PTNEWLO -- **Network ID**: 57487 -- **Currency**: - - **Name**: PTNEWLO Token - - **Symbol**: PTNL - - **Decimals**: 18 - -## RPC URLs - -PTNEWLO can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/ptnewlo/testnet/rpc - -## PTNEWLO Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PTNEWLO Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/publicmint-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/publicmint-devnet.mdx deleted file mode 100644 index a76af8810c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/publicmint-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PublicMint Devnet - PublicMint Blockchain Network -description: Explore PublicMint Devnet, a blockchain network with chain ID 2018. Learn about its native currency, USD, and how to interact with the network. ---- - -# PublicMint Devnet - -PublicMint Devnet is a blockchain network with chain ID 2018. - -## Network Details - -- **Chain ID**: 2018 -- **Chain Name**: PublicMint -- **Short Name**: pmint_dev -- **Network ID**: 2018 -- **Currency**: - - **Name**: USD - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -PublicMint Devnet can be accessed through the following RPC endpoints: - -- https://rpc.dev.publicmint.io:8545 - -## PublicMint Devnet Block Explorers - -- [PublicMint Explorer](https://explorer.dev.publicmint.io) - -## Additional Information - -- **Official Website**: https://publicmint.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/publicmint-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/publicmint-testnet.mdx deleted file mode 100644 index a5402eaa08..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/publicmint-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: PublicMint Testnet - PublicMint Blockchain Network -description: Explore PublicMint Testnet, a blockchain network with chain ID 2019. Learn about its native currency, USD, and how to interact with the network. ---- - -# PublicMint Testnet - -PublicMint Testnet is a blockchain network with chain ID 2019. - -## Network Details - -- **Chain ID**: 2019 -- **Chain Name**: PublicMint -- **Short Name**: pmint_test -- **Network ID**: 2019 -- **Currency**: - - **Name**: USD - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -PublicMint Testnet can be accessed through the following RPC endpoints: - -- https://rpc.tst.publicmint.io:8545 - -## PublicMint Testnet Block Explorers - -- [PublicMint Explorer](https://explorer.tst.publicmint.io) - -## Additional Information - -- **Official Website**: https://publicmint.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PublicMint Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/publicmint.mdx b/docs/pages/solutions/chainlist/non-integrated/publicmint.mdx deleted file mode 100644 index ecfd786481..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/publicmint.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: PublicMint Mainnet - PublicMint Blockchain Network -description: Explore PublicMint Mainnet, a blockchain network with chain ID 2020. Learn about its native currency, USD, and how to interact with the network. ---- - -# PublicMint Mainnet - -PublicMint Mainnet is a blockchain network with chain ID 2020. - -## Network Details - -- **Chain ID**: 2020 -- **Chain Name**: PublicMint -- **Short Name**: pmint -- **Network ID**: 2020 -- **Currency**: - - **Name**: USD - - **Symbol**: USD - - **Decimals**: 18 - -## RPC URLs - -PublicMint Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.publicmint.io:8545 - -## PublicMint Mainnet Block Explorers - -- [PublicMint Explorer](https://explorer.publicmint.io) - -## Additional Information - -- **Official Website**: https://publicmint.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v2b.mdx b/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v2b.mdx deleted file mode 100644 index 4b674b4f41..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v2b.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: PulseChain Testnet v2b - t2bPLS Blockchain Network -description: Explore PulseChain Testnet v2b, a blockchain network with chain ID 941. Learn about its native currency, Test Pulse, and how to interact with the network. ---- - -# PulseChain Testnet v2b - -PulseChain Testnet v2b is a blockchain network with chain ID 941. - -## Network Details - -- **Chain ID**: 941 -- **Chain Name**: t2bPLS -- **Short Name**: t2bpls -- **Network ID**: 941 -- **Currency**: - - **Name**: Test Pulse - - **Symbol**: tPLS - - **Decimals**: 18 - -## RPC URLs - -PulseChain Testnet v2b can be accessed through the following RPC endpoints: - -- https://rpc.v2b.testnet.pulsechain.com/ -- wss://rpc.v2b.testnet.pulsechain.com/ - -## PulseChain Testnet v2b Block Explorers - - - -## Additional Information - -- **Official Website**: https://pulsechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PulseChain Testnet v2b Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v3.mdx b/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v3.mdx deleted file mode 100644 index a7fa1b815a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v3.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: PulseChain Testnet v3 - t3PLS Blockchain Network -description: Explore PulseChain Testnet v3, a blockchain network with chain ID 942. Learn about its native currency, Test Pulse, and how to interact with the network. ---- - -# PulseChain Testnet v3 - -PulseChain Testnet v3 is a blockchain network with chain ID 942. - -## Network Details - -- **Chain ID**: 942 -- **Chain Name**: t3PLS -- **Short Name**: t3pls -- **Network ID**: 942 -- **Currency**: - - **Name**: Test Pulse - - **Symbol**: tPLS - - **Decimals**: 18 - -## RPC URLs - -PulseChain Testnet v3 can be accessed through the following RPC endpoints: - -- https://rpc.v3.testnet.pulsechain.com/ -- wss://rpc.v3.testnet.pulsechain.com/ - -## PulseChain Testnet v3 Block Explorers - - - -## Additional Information - -- **Official Website**: https://pulsechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PulseChain Testnet v3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v4.mdx b/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v4.mdx deleted file mode 100644 index ab11bb7773..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet-v4.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: PulseChain Testnet v4 - t4PLS Blockchain Network -description: Explore PulseChain Testnet v4, a blockchain network with chain ID 943. Learn about its native currency, Test Pulse, and how to interact with the network. ---- - -# PulseChain Testnet v4 - -PulseChain Testnet v4 is a blockchain network with chain ID 943. - -## Network Details - -- **Chain ID**: 943 -- **Chain Name**: t4PLS -- **Short Name**: t4pls -- **Network ID**: 943 -- **Currency**: - - **Name**: Test Pulse - - **Symbol**: tPLS - - **Decimals**: 18 - -## RPC URLs - -PulseChain Testnet v4 can be accessed through the following RPC endpoints: - -- 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 - -## PulseChain Testnet v4 Block Explorers - -- [blockscout](https://otter-testnet-pulsechain.g4mm4.io) - -## Additional Information - -- **Official Website**: https://pulsechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PulseChain Testnet v4 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet.mdx deleted file mode 100644 index b13fc93c5d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pulsechain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: PulseChain Testnet - tPLS Blockchain Network -description: Explore PulseChain Testnet, a blockchain network with chain ID 940. Learn about its native currency, Test Pulse, and how to interact with the network. ---- - -# PulseChain Testnet - -PulseChain Testnet is a blockchain network with chain ID 940. - -## Network Details - -- **Chain ID**: 940 -- **Chain Name**: tPLS -- **Short Name**: tpls -- **Network ID**: 940 -- **Currency**: - - **Name**: Test Pulse - - **Symbol**: tPLS - - **Decimals**: 18 - -## RPC URLs - -PulseChain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.v2.testnet.pulsechain.com/ -- wss://rpc.v2.testnet.pulsechain.com/ - -## PulseChain Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://pulsechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## PulseChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/pulsechain.mdx b/docs/pages/solutions/chainlist/non-integrated/pulsechain.mdx deleted file mode 100644 index f0c7130893..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/pulsechain.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: PulseChain - PLS Blockchain Network -description: Explore PulseChain, a blockchain network with chain ID 369. Learn about its native currency, Pulse, and how to interact with the network. ---- - -# PulseChain - -PulseChain is a blockchain network with chain ID 369. - -## Network Details - -- **Chain ID**: 369 -- **Chain Name**: PLS -- **Short Name**: pls -- **Network ID**: 369 -- **Currency**: - - **Name**: Pulse - - **Symbol**: PLS - - **Decimals**: 18 - -## RPC URLs - -PulseChain can be accessed through the following RPC endpoints: - -- 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 - -## PulseChain Block Explorers - -- [blockscout](https://scan.pulsechain.com) -- [otterscan](https://otter.pulsechain.com) - -## Additional Information - -- **Official Website**: https://pulsechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/puppynet-shibarium.mdx b/docs/pages/solutions/chainlist/non-integrated/puppynet-shibarium.mdx deleted file mode 100644 index 953b13047f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/puppynet-shibarium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Puppynet Shibarium - Puppynet Shibarium Blockchain Network -description: Explore Puppynet Shibarium, a blockchain network with chain ID 157. Learn about its native currency, BONE, and how to interact with the network. ---- - -# Puppynet Shibarium - -Puppynet Shibarium is a blockchain network with chain ID 157. - -## Network Details - -- **Chain ID**: 157 -- **Chain Name**: Puppynet Shibarium -- **Short Name**: puppynet -- **Network ID**: 157 -- **Currency**: - - **Name**: BONE - - **Symbol**: BONE - - **Decimals**: 18 - -## RPC URLs - -Puppynet Shibarium can be accessed through the following RPC endpoints: - -- https://puppynet.shibrpc.com - -## Puppynet Shibarium Block Explorers - -- [puppyscan](https://puppyscan.shib.io) - -## Additional Information - -- **Official Website**: https://shibariumecosystem.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/q-im-2402132.mdx b/docs/pages/solutions/chainlist/non-integrated/q-im-2402132.mdx deleted file mode 100644 index 2a2ff56ffd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/q-im-2402132.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Q IM 2402132 - Avalanche Blockchain Network -description: Explore Q IM 2402132, a blockchain network with chain ID 83414. Learn about its native currency, Q IM 2402132 Token, and how to interact with the network. ---- - -# Q IM 2402132 - -Q IM 2402132 is a blockchain network with chain ID 83414. - -## Network Details - -- **Chain ID**: 83414 -- **Chain Name**: Avalanche -- **Short Name**: Q IM 2402132 -- **Network ID**: 83414 -- **Currency**: - - **Name**: Q IM 2402132 Token - - **Symbol**: XVL - - **Decimals**: 18 - -## RPC URLs - -Q IM 2402132 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Q IM 2402132 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Q IM 2402132 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/q-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/q-testnet.mdx deleted file mode 100644 index fe5edd9aae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/q-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Q Testnet - Q Blockchain Network -description: Explore Q Testnet, a blockchain network with chain ID 35443. Learn about its native currency, Q token, and how to interact with the network. ---- - -# Q Testnet - -Q Testnet is a blockchain network with chain ID 35443. - -## Network Details - -- **Chain ID**: 35443 -- **Chain Name**: Q -- **Short Name**: q-testnet -- **Network ID**: 35443 -- **Currency**: - - **Name**: Q token - - **Symbol**: Q - - **Decimals**: 18 - -## RPC URLs - -Q Testnet can be accessed through the following RPC endpoints: - -- https://rpc.qtestnet.org - -## Q Testnet Block Explorers - -- [Q explorer](https://explorer.qtestnet.org) - -## Additional Information - -- **Official Website**: https://q.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Q Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/q.mdx b/docs/pages/solutions/chainlist/non-integrated/q.mdx deleted file mode 100644 index f1565b52d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/q.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Q Mainnet - Q Blockchain Network -description: Explore Q Mainnet, a blockchain network with chain ID 35441. Learn about its native currency, QGOV, and how to interact with the network. ---- - -# Q Mainnet - -Q Mainnet is a blockchain network with chain ID 35441. - -## Network Details - -- **Chain ID**: 35441 -- **Chain Name**: Q -- **Short Name**: q -- **Network ID**: 35441 -- **Currency**: - - **Name**: QGOV - - **Symbol**: QGOV - - **Decimals**: 18 - -## RPC URLs - -Q Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.q.org - -## Q Mainnet Block Explorers - -- [Q explorer](https://explorer.q.org) - -## Additional Information - -- **Official Website**: https://q.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qa0621t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qa0621t1ts.mdx deleted file mode 100644 index 1e0577336d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qa0621t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QA0621T1TS - Avalanche Blockchain Network -description: Explore QA0621T1TS, a blockchain network with chain ID 954958. Learn about its native currency, QA0621T1TS Token, and how to interact with the network. ---- - -# QA0621T1TS - -QA0621T1TS is a blockchain network with chain ID 954958. - -## Network Details - -- **Chain ID**: 954958 -- **Chain Name**: Avalanche -- **Short Name**: QA0621T1TS -- **Network ID**: 954958 -- **Currency**: - - **Name**: QA0621T1TS Token - - **Symbol**: FNF - - **Decimals**: 18 - -## RPC URLs - -QA0621T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qa0621t1ts-z3001.avax-test.network/ext/bc/TXRuQxeHnyh6CGR6DgLdC5s2WSiHF3a5pK2DEurPaVjgzxshD/rpc?token=18a44f4988cdf732a71dc730f51e89eedade77024c23618cbd89e04779a078b9 - -## QA0621T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QA0621T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qa0628t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qa0628t1ts.mdx deleted file mode 100644 index 29f7228226..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qa0628t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QA0628T1TS - Avalanche Blockchain Network -description: Explore QA0628T1TS, a blockchain network with chain ID 26945. Learn about its native currency, QA0628T1TS Token, and how to interact with the network. ---- - -# QA0628T1TS - -QA0628T1TS is a blockchain network with chain ID 26945. - -## Network Details - -- **Chain ID**: 26945 -- **Chain Name**: Avalanche -- **Short Name**: QA0628T1TS -- **Network ID**: 26945 -- **Currency**: - - **Name**: QA0628T1TS Token - - **Symbol**: XMA - - **Decimals**: 18 - -## RPC URLs - -QA0628T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qa0628t1ts-y2910.avax-test.network/ext/bc/2WgEf3VjJnSco3BLZotyeypUeQ78s5tW3rj9AYyVM2PF9otzGJ/rpc?token=0d1c32abc584380568181cb037ae1aa23461acae7c46710b0245f64d34299faa - -## QA0628T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QA0628T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qa5-03-07-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qa5-03-07-testnet.mdx deleted file mode 100644 index 7b40ad3a01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qa5-03-07-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QA5-03-07 Testnet - Avalanche Blockchain Network -description: Explore QA5-03-07 Testnet, a blockchain network with chain ID 22662. Learn about its native currency, QA5-03-07 Testnet Token, and how to interact with the network. ---- - -# QA5-03-07 Testnet - -QA5-03-07 Testnet is a blockchain network with chain ID 22662. - -## Network Details - -- **Chain ID**: 22662 -- **Chain Name**: Avalanche -- **Short Name**: QA5-03-07 Testnet -- **Network ID**: 22662 -- **Currency**: - - **Name**: QA5-03-07 Testnet Token - - **Symbol**: TYP - - **Decimals**: 18 - -## RPC URLs - -QA5-03-07 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QA5-03-07 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QA5-03-07 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qasim-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qasim-testnet.mdx deleted file mode 100644 index bb4460d136..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qasim-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qasim Testnet - Avalanche Blockchain Network -description: Explore qasim Testnet, a blockchain network with chain ID 64643. Learn about its native currency, qasim Testnet Token, and how to interact with the network. ---- - -# qasim Testnet - -qasim Testnet is a blockchain network with chain ID 64643. - -## Network Details - -- **Chain ID**: 64643 -- **Chain Name**: Avalanche -- **Short Name**: qasim Testnet -- **Network ID**: 64643 -- **Currency**: - - **Name**: qasim Testnet Token - - **Symbol**: SQJ - - **Decimals**: 18 - -## RPC URLs - -qasim Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## qasim Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qasim Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0219.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0219.mdx deleted file mode 100644 index 55bdd6fc79..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0219.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0219 - Avalanche Blockchain Network -description: Explore QaUser0219, a blockchain network with chain ID 74006. Learn about its native currency, QaUser0219 Token, and how to interact with the network. ---- - -# QaUser0219 - -QaUser0219 is a blockchain network with chain ID 74006. - -## Network Details - -- **Chain ID**: 74006 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0219 -- **Network ID**: 74006 -- **Currency**: - - **Name**: QaUser0219 Token - - **Symbol**: QVH - - **Decimals**: 18 - -## RPC URLs - -QaUser0219 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0219 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0219 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0235.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0235.mdx deleted file mode 100644 index 5450621d53..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0235.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0235 - Avalanche Blockchain Network -description: Explore QaUser0235, a blockchain network with chain ID 34851. Learn about its native currency, QaUser0235 Token, and how to interact with the network. ---- - -# QaUser0235 - -QaUser0235 is a blockchain network with chain ID 34851. - -## Network Details - -- **Chain ID**: 34851 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0235 -- **Network ID**: 34851 -- **Currency**: - - **Name**: QaUser0235 Token - - **Symbol**: GET - - **Decimals**: 18 - -## RPC URLs - -QaUser0235 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0235 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0235 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0263.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0263.mdx deleted file mode 100644 index c5e41b2c08..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0263.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0263 - Avalanche Blockchain Network -description: Explore QaUser0263, a blockchain network with chain ID 95063. Learn about its native currency, QaUser0263 Token, and how to interact with the network. ---- - -# QaUser0263 - -QaUser0263 is a blockchain network with chain ID 95063. - -## Network Details - -- **Chain ID**: 95063 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0263 -- **Network ID**: 95063 -- **Currency**: - - **Name**: QaUser0263 Token - - **Symbol**: BDU - - **Decimals**: 18 - -## RPC URLs - -QaUser0263 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0263 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0263 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0417.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0417.mdx deleted file mode 100644 index fe421c0ae7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0417.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0417 - Avalanche Blockchain Network -description: Explore QaUser0417, a blockchain network with chain ID 58050. Learn about its native currency, QaUser0417 Token, and how to interact with the network. ---- - -# QaUser0417 - -QaUser0417 is a blockchain network with chain ID 58050. - -## Network Details - -- **Chain ID**: 58050 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0417 -- **Network ID**: 58050 -- **Currency**: - - **Name**: QaUser0417 Token - - **Symbol**: HAR - - **Decimals**: 18 - -## RPC URLs - -QaUser0417 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0417 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0417 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0507-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0507-testnet.mdx deleted file mode 100644 index 957a8a1b75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0507-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0507 Testnet - Avalanche Blockchain Network -description: Explore QaUser0507 Testnet, a blockchain network with chain ID 9872. Learn about its native currency, QaUser0507 Testnet Token, and how to interact with the network. ---- - -# QaUser0507 Testnet - -QaUser0507 Testnet is a blockchain network with chain ID 9872. - -## Network Details - -- **Chain ID**: 9872 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0507 Testnet -- **Network ID**: 9872 -- **Currency**: - - **Name**: QaUser0507 Testnet Token - - **Symbol**: KQA - - **Decimals**: 18 - -## RPC URLs - -QaUser0507 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0507 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0507 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0587.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0587.mdx deleted file mode 100644 index 564de0c5eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0587.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0587 - Avalanche Blockchain Network -description: Explore QaUser0587, a blockchain network with chain ID 56973. Learn about its native currency, QaUser0587 Token, and how to interact with the network. ---- - -# QaUser0587 - -QaUser0587 is a blockchain network with chain ID 56973. - -## Network Details - -- **Chain ID**: 56973 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0587 -- **Network ID**: 56973 -- **Currency**: - - **Name**: QaUser0587 Token - - **Symbol**: IDZ - - **Decimals**: 18 - -## RPC URLs - -QaUser0587 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0587 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0587 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0835.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0835.mdx deleted file mode 100644 index cf8cf9e59c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0835.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0835 - Avalanche Blockchain Network -description: Explore QaUser0835, a blockchain network with chain ID 30772. Learn about its native currency, QaUser0835 Token, and how to interact with the network. ---- - -# QaUser0835 - -QaUser0835 is a blockchain network with chain ID 30772. - -## Network Details - -- **Chain ID**: 30772 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0835 -- **Network ID**: 30772 -- **Currency**: - - **Name**: QaUser0835 Token - - **Symbol**: VIG - - **Decimals**: 18 - -## RPC URLs - -QaUser0835 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0835 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0835 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser0993-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser0993-testnet.mdx deleted file mode 100644 index a1f2a4327b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser0993-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser0993 Testnet - Avalanche Blockchain Network -description: Explore QaUser0993 Testnet, a blockchain network with chain ID 77572. Learn about its native currency, QaUser0993 Testnet Token, and how to interact with the network. ---- - -# QaUser0993 Testnet - -QaUser0993 Testnet is a blockchain network with chain ID 77572. - -## Network Details - -- **Chain ID**: 77572 -- **Chain Name**: Avalanche -- **Short Name**: QaUser0993 Testnet -- **Network ID**: 77572 -- **Currency**: - - **Name**: QaUser0993 Testnet Token - - **Symbol**: JOE - - **Decimals**: 18 - -## RPC URLs - -QaUser0993 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser0993 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser0993 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1151.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1151.mdx deleted file mode 100644 index 972e94de81..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1151.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1151 - Avalanche Blockchain Network -description: Explore QaUser1151, a blockchain network with chain ID 84977. Learn about its native currency, QaUser1151 Token, and how to interact with the network. ---- - -# QaUser1151 - -QaUser1151 is a blockchain network with chain ID 84977. - -## Network Details - -- **Chain ID**: 84977 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1151 -- **Network ID**: 84977 -- **Currency**: - - **Name**: QaUser1151 Token - - **Symbol**: AWU - - **Decimals**: 18 - -## RPC URLs - -QaUser1151 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1151 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1151 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1213-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1213-testnet.mdx deleted file mode 100644 index d72437209a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1213-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1213 Testnet - Avalanche Blockchain Network -description: Explore QaUser1213 Testnet, a blockchain network with chain ID 36746. Learn about its native currency, QaUser1213 Testnet Token, and how to interact with the network. ---- - -# QaUser1213 Testnet - -QaUser1213 Testnet is a blockchain network with chain ID 36746. - -## Network Details - -- **Chain ID**: 36746 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1213 Testnet -- **Network ID**: 36746 -- **Currency**: - - **Name**: QaUser1213 Testnet Token - - **Symbol**: ZKJ - - **Decimals**: 18 - -## RPC URLs - -QaUser1213 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1213 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1213 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1335-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1335-testnet.mdx deleted file mode 100644 index f347e6cd9a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1335-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1335 Testnet - Avalanche Blockchain Network -description: Explore QaUser1335 Testnet, a blockchain network with chain ID 66904. Learn about its native currency, QaUser1335 Testnet Token, and how to interact with the network. ---- - -# QaUser1335 Testnet - -QaUser1335 Testnet is a blockchain network with chain ID 66904. - -## Network Details - -- **Chain ID**: 66904 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1335 Testnet -- **Network ID**: 66904 -- **Currency**: - - **Name**: QaUser1335 Testnet Token - - **Symbol**: KFZ - - **Decimals**: 18 - -## RPC URLs - -QaUser1335 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1335 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1335 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1360-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1360-testnet.mdx deleted file mode 100644 index 44f2598702..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1360-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1360 Testnet - Avalanche Blockchain Network -description: Explore QaUser1360 Testnet, a blockchain network with chain ID 87460. Learn about its native currency, QaUser1360 Testnet Token, and how to interact with the network. ---- - -# QaUser1360 Testnet - -QaUser1360 Testnet is a blockchain network with chain ID 87460. - -## Network Details - -- **Chain ID**: 87460 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1360 Testnet -- **Network ID**: 87460 -- **Currency**: - - **Name**: QaUser1360 Testnet Token - - **Symbol**: KYP - - **Decimals**: 18 - -## RPC URLs - -QaUser1360 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1360 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1360 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1490-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1490-testnet.mdx deleted file mode 100644 index 80c28ac2e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1490-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1490 Testnet - Avalanche Blockchain Network -description: Explore QaUser1490 Testnet, a blockchain network with chain ID 38904. Learn about its native currency, QaUser1490 Testnet Token, and how to interact with the network. ---- - -# QaUser1490 Testnet - -QaUser1490 Testnet is a blockchain network with chain ID 38904. - -## Network Details - -- **Chain ID**: 38904 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1490 Testnet -- **Network ID**: 38904 -- **Currency**: - - **Name**: QaUser1490 Testnet Token - - **Symbol**: PNK - - **Decimals**: 18 - -## RPC URLs - -QaUser1490 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1490 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1490 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1544.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1544.mdx deleted file mode 100644 index 2c9fb9fe10..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1544.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1544 - Avalanche Blockchain Network -description: Explore QaUser1544, a blockchain network with chain ID 51173. Learn about its native currency, QaUser1544 Token, and how to interact with the network. ---- - -# QaUser1544 - -QaUser1544 is a blockchain network with chain ID 51173. - -## Network Details - -- **Chain ID**: 51173 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1544 -- **Network ID**: 51173 -- **Currency**: - - **Name**: QaUser1544 Token - - **Symbol**: ECX - - **Decimals**: 18 - -## RPC URLs - -QaUser1544 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1544 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1544 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1596.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1596.mdx deleted file mode 100644 index 62a180560f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1596.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1596 - Avalanche Blockchain Network -description: Explore QaUser1596, a blockchain network with chain ID 43593. Learn about its native currency, QaUser1596 Token, and how to interact with the network. ---- - -# QaUser1596 - -QaUser1596 is a blockchain network with chain ID 43593. - -## Network Details - -- **Chain ID**: 43593 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1596 -- **Network ID**: 43593 -- **Currency**: - - **Name**: QaUser1596 Token - - **Symbol**: VNE - - **Decimals**: 18 - -## RPC URLs - -QaUser1596 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1596 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1596 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1631.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1631.mdx deleted file mode 100644 index 884e9941e4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1631.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1631 - Avalanche Blockchain Network -description: Explore QaUser1631, a blockchain network with chain ID 22039. Learn about its native currency, QaUser1631 Token, and how to interact with the network. ---- - -# QaUser1631 - -QaUser1631 is a blockchain network with chain ID 22039. - -## Network Details - -- **Chain ID**: 22039 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1631 -- **Network ID**: 22039 -- **Currency**: - - **Name**: QaUser1631 Token - - **Symbol**: UVA - - **Decimals**: 18 - -## RPC URLs - -QaUser1631 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1631 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1631 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1804.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1804.mdx deleted file mode 100644 index 41fc40275c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1804.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1804 - Avalanche Blockchain Network -description: Explore QaUser1804, a blockchain network with chain ID 87389. Learn about its native currency, QaUser1804 Token, and how to interact with the network. ---- - -# QaUser1804 - -QaUser1804 is a blockchain network with chain ID 87389. - -## Network Details - -- **Chain ID**: 87389 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1804 -- **Network ID**: 87389 -- **Currency**: - - **Name**: QaUser1804 Token - - **Symbol**: UOA - - **Decimals**: 18 - -## RPC URLs - -QaUser1804 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1804 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1804 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1828.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1828.mdx deleted file mode 100644 index 1b83d81d60..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1828.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1828 - Avalanche Blockchain Network -description: Explore QaUser1828, a blockchain network with chain ID 94171. Learn about its native currency, QaUser1828 Token, and how to interact with the network. ---- - -# QaUser1828 - -QaUser1828 is a blockchain network with chain ID 94171. - -## Network Details - -- **Chain ID**: 94171 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1828 -- **Network ID**: 94171 -- **Currency**: - - **Name**: QaUser1828 Token - - **Symbol**: GGY - - **Decimals**: 18 - -## RPC URLs - -QaUser1828 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1828 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1828 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1943-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1943-testnet.mdx deleted file mode 100644 index 04660e6c4c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1943-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1943 Testnet - Avalanche Blockchain Network -description: Explore QaUser1943 Testnet, a blockchain network with chain ID 58316. Learn about its native currency, QaUser1943 Testnet Token, and how to interact with the network. ---- - -# QaUser1943 Testnet - -QaUser1943 Testnet is a blockchain network with chain ID 58316. - -## Network Details - -- **Chain ID**: 58316 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1943 Testnet -- **Network ID**: 58316 -- **Currency**: - - **Name**: QaUser1943 Testnet Token - - **Symbol**: JAI - - **Decimals**: 18 - -## RPC URLs - -QaUser1943 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1943 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1943 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser1957-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser1957-testnet.mdx deleted file mode 100644 index 7f60e0b72d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser1957-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser1957 Testnet - Avalanche Blockchain Network -description: Explore QaUser1957 Testnet, a blockchain network with chain ID 70341. Learn about its native currency, QaUser1957 Testnet Token, and how to interact with the network. ---- - -# QaUser1957 Testnet - -QaUser1957 Testnet is a blockchain network with chain ID 70341. - -## Network Details - -- **Chain ID**: 70341 -- **Chain Name**: Avalanche -- **Short Name**: QaUser1957 Testnet -- **Network ID**: 70341 -- **Currency**: - - **Name**: QaUser1957 Testnet Token - - **Symbol**: AKI - - **Decimals**: 18 - -## RPC URLs - -QaUser1957 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser1957 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser1957 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2213-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2213-testnet.mdx deleted file mode 100644 index b48927ef79..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2213-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2213 Testnet - Avalanche Blockchain Network -description: Explore QaUser2213 Testnet, a blockchain network with chain ID 96081. Learn about its native currency, QaUser2213 Testnet Token, and how to interact with the network. ---- - -# QaUser2213 Testnet - -QaUser2213 Testnet is a blockchain network with chain ID 96081. - -## Network Details - -- **Chain ID**: 96081 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2213 Testnet -- **Network ID**: 96081 -- **Currency**: - - **Name**: QaUser2213 Testnet Token - - **Symbol**: QLV - - **Decimals**: 18 - -## RPC URLs - -QaUser2213 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2213 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2213 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2353-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2353-testnet.mdx deleted file mode 100644 index 6418d1b558..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2353-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2353 Testnet - Avalanche Blockchain Network -description: Explore QaUser2353 Testnet, a blockchain network with chain ID 11881. Learn about its native currency, QaUser2353 Testnet Token, and how to interact with the network. ---- - -# QaUser2353 Testnet - -QaUser2353 Testnet is a blockchain network with chain ID 11881. - -## Network Details - -- **Chain ID**: 11881 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2353 Testnet -- **Network ID**: 11881 -- **Currency**: - - **Name**: QaUser2353 Testnet Token - - **Symbol**: ODB - - **Decimals**: 18 - -## RPC URLs - -QaUser2353 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2353 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2353 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2368-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2368-testnet.mdx deleted file mode 100644 index 995b6624e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2368-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2368 Testnet - Avalanche Blockchain Network -description: Explore QaUser2368 Testnet, a blockchain network with chain ID 96809. Learn about its native currency, QaUser2368 Testnet Token, and how to interact with the network. ---- - -# QaUser2368 Testnet - -QaUser2368 Testnet is a blockchain network with chain ID 96809. - -## Network Details - -- **Chain ID**: 96809 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2368 Testnet -- **Network ID**: 96809 -- **Currency**: - - **Name**: QaUser2368 Testnet Token - - **Symbol**: ZKJ - - **Decimals**: 18 - -## RPC URLs - -QaUser2368 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2368 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2368 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2491.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2491.mdx deleted file mode 100644 index d43f9136d2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2491.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2491 - Avalanche Blockchain Network -description: Explore QaUser2491, a blockchain network with chain ID 77209. Learn about its native currency, QaUser2491 Token, and how to interact with the network. ---- - -# QaUser2491 - -QaUser2491 is a blockchain network with chain ID 77209. - -## Network Details - -- **Chain ID**: 77209 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2491 -- **Network ID**: 77209 -- **Currency**: - - **Name**: QaUser2491 Token - - **Symbol**: GCW - - **Decimals**: 18 - -## RPC URLs - -QaUser2491 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2491 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2491 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2555.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2555.mdx deleted file mode 100644 index 924f36f2ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2555.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2555 - Avalanche Blockchain Network -description: Explore QaUser2555, a blockchain network with chain ID 47992. Learn about its native currency, QaUser2555 Token, and how to interact with the network. ---- - -# QaUser2555 - -QaUser2555 is a blockchain network with chain ID 47992. - -## Network Details - -- **Chain ID**: 47992 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2555 -- **Network ID**: 47992 -- **Currency**: - - **Name**: QaUser2555 Token - - **Symbol**: PRY - - **Decimals**: 18 - -## RPC URLs - -QaUser2555 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2555 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2555 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser2672-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser2672-testnet.mdx deleted file mode 100644 index 52f1ac2be6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser2672-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser2672 Testnet - Avalanche Blockchain Network -description: Explore QaUser2672 Testnet, a blockchain network with chain ID 79490. Learn about its native currency, QaUser2672 Testnet Token, and how to interact with the network. ---- - -# QaUser2672 Testnet - -QaUser2672 Testnet is a blockchain network with chain ID 79490. - -## Network Details - -- **Chain ID**: 79490 -- **Chain Name**: Avalanche -- **Short Name**: QaUser2672 Testnet -- **Network ID**: 79490 -- **Currency**: - - **Name**: QaUser2672 Testnet Token - - **Symbol**: ENU - - **Decimals**: 18 - -## RPC URLs - -QaUser2672 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser2672 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser2672 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3051-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3051-testnet.mdx deleted file mode 100644 index 944eb10b92..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3051-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3051 Testnet - Avalanche Blockchain Network -description: Explore QaUser3051 Testnet, a blockchain network with chain ID 54763. Learn about its native currency, QaUser3051 Testnet Token, and how to interact with the network. ---- - -# QaUser3051 Testnet - -QaUser3051 Testnet is a blockchain network with chain ID 54763. - -## Network Details - -- **Chain ID**: 54763 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3051 Testnet -- **Network ID**: 54763 -- **Currency**: - - **Name**: QaUser3051 Testnet Token - - **Symbol**: DSX - - **Decimals**: 18 - -## RPC URLs - -QaUser3051 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3051 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3051 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3186-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3186-testnet.mdx deleted file mode 100644 index 1be4aa4b1f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3186-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3186 Testnet - Avalanche Blockchain Network -description: Explore QaUser3186 Testnet, a blockchain network with chain ID 64092. Learn about its native currency, QaUser3186 Testnet Token, and how to interact with the network. ---- - -# QaUser3186 Testnet - -QaUser3186 Testnet is a blockchain network with chain ID 64092. - -## Network Details - -- **Chain ID**: 64092 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3186 Testnet -- **Network ID**: 64092 -- **Currency**: - - **Name**: QaUser3186 Testnet Token - - **Symbol**: KII - - **Decimals**: 18 - -## RPC URLs - -QaUser3186 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3186 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3186 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3295-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3295-testnet.mdx deleted file mode 100644 index 40a559db37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3295-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3295 Testnet - Avalanche Blockchain Network -description: Explore QaUser3295 Testnet, a blockchain network with chain ID 1962. Learn about its native currency, QaUser3295 Testnet Token, and how to interact with the network. ---- - -# QaUser3295 Testnet - -QaUser3295 Testnet is a blockchain network with chain ID 1962. - -## Network Details - -- **Chain ID**: 1962 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3295 Testnet -- **Network ID**: 1962 -- **Currency**: - - **Name**: QaUser3295 Testnet Token - - **Symbol**: JXA - - **Decimals**: 18 - -## RPC URLs - -QaUser3295 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3295 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3295 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3298.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3298.mdx deleted file mode 100644 index 828bcc5824..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3298.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3298 - Avalanche Blockchain Network -description: Explore QaUser3298, a blockchain network with chain ID 94006. Learn about its native currency, QaUser3298 Token, and how to interact with the network. ---- - -# QaUser3298 - -QaUser3298 is a blockchain network with chain ID 94006. - -## Network Details - -- **Chain ID**: 94006 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3298 -- **Network ID**: 94006 -- **Currency**: - - **Name**: QaUser3298 Token - - **Symbol**: TPM - - **Decimals**: 18 - -## RPC URLs - -QaUser3298 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3298 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3298 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3324-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3324-testnet.mdx deleted file mode 100644 index 1801225246..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3324-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3324 Testnet - Avalanche Blockchain Network -description: Explore QaUser3324 Testnet, a blockchain network with chain ID 66063. Learn about its native currency, QaUser3324 Testnet Token, and how to interact with the network. ---- - -# QaUser3324 Testnet - -QaUser3324 Testnet is a blockchain network with chain ID 66063. - -## Network Details - -- **Chain ID**: 66063 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3324 Testnet -- **Network ID**: 66063 -- **Currency**: - - **Name**: QaUser3324 Testnet Token - - **Symbol**: IYM - - **Decimals**: 18 - -## RPC URLs - -QaUser3324 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3324 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3324 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3338.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3338.mdx deleted file mode 100644 index a01b7c8ad2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3338.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3338 - Avalanche Blockchain Network -description: Explore QaUser3338, a blockchain network with chain ID 35641. Learn about its native currency, QaUser3338 Token, and how to interact with the network. ---- - -# QaUser3338 - -QaUser3338 is a blockchain network with chain ID 35641. - -## Network Details - -- **Chain ID**: 35641 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3338 -- **Network ID**: 35641 -- **Currency**: - - **Name**: QaUser3338 Token - - **Symbol**: BQL - - **Decimals**: 18 - -## RPC URLs - -QaUser3338 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3338 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3338 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3387.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3387.mdx deleted file mode 100644 index 84b1e58b27..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3387.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3387 - Avalanche Blockchain Network -description: Explore QaUser3387, a blockchain network with chain ID 4638. Learn about its native currency, QaUser3387 Token, and how to interact with the network. ---- - -# QaUser3387 - -QaUser3387 is a blockchain network with chain ID 4638. - -## Network Details - -- **Chain ID**: 4638 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3387 -- **Network ID**: 4638 -- **Currency**: - - **Name**: QaUser3387 Token - - **Symbol**: LPB - - **Decimals**: 18 - -## RPC URLs - -QaUser3387 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3387 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3387 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3451-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3451-testnet.mdx deleted file mode 100644 index 30cd6934bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3451-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3451 Testnet - Avalanche Blockchain Network -description: Explore QaUser3451 Testnet, a blockchain network with chain ID 68064. Learn about its native currency, QaUser3451 Testnet Token, and how to interact with the network. ---- - -# QaUser3451 Testnet - -QaUser3451 Testnet is a blockchain network with chain ID 68064. - -## Network Details - -- **Chain ID**: 68064 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3451 Testnet -- **Network ID**: 68064 -- **Currency**: - - **Name**: QaUser3451 Testnet Token - - **Symbol**: NKL - - **Decimals**: 18 - -## RPC URLs - -QaUser3451 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3451 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3451 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3583.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3583.mdx deleted file mode 100644 index 2687605c72..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3583.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3583 - Avalanche Blockchain Network -description: Explore QaUser3583, a blockchain network with chain ID 2715. Learn about its native currency, QaUser3583 Token, and how to interact with the network. ---- - -# QaUser3583 - -QaUser3583 is a blockchain network with chain ID 2715. - -## Network Details - -- **Chain ID**: 2715 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3583 -- **Network ID**: 2715 -- **Currency**: - - **Name**: QaUser3583 Token - - **Symbol**: XDR - - **Decimals**: 18 - -## RPC URLs - -QaUser3583 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3583 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3583 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3673-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3673-testnet.mdx deleted file mode 100644 index 280e5a0c11..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3673-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3673 Testnet - Avalanche Blockchain Network -description: Explore QaUser3673 Testnet, a blockchain network with chain ID 77552. Learn about its native currency, QaUser3673 Testnet Token, and how to interact with the network. ---- - -# QaUser3673 Testnet - -QaUser3673 Testnet is a blockchain network with chain ID 77552. - -## Network Details - -- **Chain ID**: 77552 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3673 Testnet -- **Network ID**: 77552 -- **Currency**: - - **Name**: QaUser3673 Testnet Token - - **Symbol**: YSI - - **Decimals**: 18 - -## RPC URLs - -QaUser3673 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3673 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3673 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3870-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3870-testnet.mdx deleted file mode 100644 index da07602c44..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3870-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3870 Testnet - Avalanche Blockchain Network -description: Explore QaUser3870 Testnet, a blockchain network with chain ID 7909. Learn about its native currency, QaUser3870 Testnet Token, and how to interact with the network. ---- - -# QaUser3870 Testnet - -QaUser3870 Testnet is a blockchain network with chain ID 7909. - -## Network Details - -- **Chain ID**: 7909 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3870 Testnet -- **Network ID**: 7909 -- **Currency**: - - **Name**: QaUser3870 Testnet Token - - **Symbol**: RAY - - **Decimals**: 18 - -## RPC URLs - -QaUser3870 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3870 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3870 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3938.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3938.mdx deleted file mode 100644 index d334290442..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3938.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3938 - Avalanche Blockchain Network -description: Explore QaUser3938, a blockchain network with chain ID 72647. Learn about its native currency, QaUser3938 Token, and how to interact with the network. ---- - -# QaUser3938 - -QaUser3938 is a blockchain network with chain ID 72647. - -## Network Details - -- **Chain ID**: 72647 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3938 -- **Network ID**: 72647 -- **Currency**: - - **Name**: QaUser3938 Token - - **Symbol**: HTO - - **Decimals**: 18 - -## RPC URLs - -QaUser3938 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3938 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3938 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser3950-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser3950-testnet.mdx deleted file mode 100644 index a990f7fd73..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser3950-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser3950 Testnet - Avalanche Blockchain Network -description: Explore QaUser3950 Testnet, a blockchain network with chain ID 43125. Learn about its native currency, QaUser3950 Testnet Token, and how to interact with the network. ---- - -# QaUser3950 Testnet - -QaUser3950 Testnet is a blockchain network with chain ID 43125. - -## Network Details - -- **Chain ID**: 43125 -- **Chain Name**: Avalanche -- **Short Name**: QaUser3950 Testnet -- **Network ID**: 43125 -- **Currency**: - - **Name**: QaUser3950 Testnet Token - - **Symbol**: SZL - - **Decimals**: 18 - -## RPC URLs - -QaUser3950 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser3950 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser3950 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-18898.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-18898.mdx deleted file mode 100644 index 019cf16e53..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-18898.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4 Testnet - Avalanche Blockchain Network -description: Explore QaUser4 Testnet, a blockchain network with chain ID 18898. Learn about its native currency, QaUser4 Testnet Token, and how to interact with the network. ---- - -# QaUser4 Testnet - -QaUser4 Testnet is a blockchain network with chain ID 18898. - -## Network Details - -- **Chain ID**: 18898 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4 Testnet -- **Network ID**: 18898 -- **Currency**: - - **Name**: QaUser4 Testnet Token - - **Symbol**: NLD - - **Decimals**: 18 - -## RPC URLs - -QaUser4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-56525.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-56525.mdx deleted file mode 100644 index e81bce030b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-56525.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4 Testnet - Avalanche Blockchain Network -description: Explore QaUser4 Testnet, a blockchain network with chain ID 56525. Learn about its native currency, QaUser4 Testnet Token, and how to interact with the network. ---- - -# QaUser4 Testnet - -QaUser4 Testnet is a blockchain network with chain ID 56525. - -## Network Details - -- **Chain ID**: 56525 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4 Testnet -- **Network ID**: 56525 -- **Currency**: - - **Name**: QaUser4 Testnet Token - - **Symbol**: TSQ - - **Decimals**: 18 - -## RPC URLs - -QaUser4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-71169.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-71169.mdx deleted file mode 100644 index e92fa9c919..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-71169.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4 Testnet - Avalanche Blockchain Network -description: Explore QaUser4 Testnet, a blockchain network with chain ID 71169. Learn about its native currency, QaUser4 Testnet Token, and how to interact with the network. ---- - -# QaUser4 Testnet - -QaUser4 Testnet is a blockchain network with chain ID 71169. - -## Network Details - -- **Chain ID**: 71169 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4 Testnet -- **Network ID**: 71169 -- **Currency**: - - **Name**: QaUser4 Testnet Token - - **Symbol**: PJH - - **Decimals**: 18 - -## RPC URLs - -QaUser4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-72877.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-72877.mdx deleted file mode 100644 index 049f2c3b71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-72877.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4 Testnet - Avalanche Blockchain Network -description: Explore QaUser4 Testnet, a blockchain network with chain ID 72877. Learn about its native currency, QaUser4 Testnet Token, and how to interact with the network. ---- - -# QaUser4 Testnet - -QaUser4 Testnet is a blockchain network with chain ID 72877. - -## Network Details - -- **Chain ID**: 72877 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4 Testnet -- **Network ID**: 72877 -- **Currency**: - - **Name**: QaUser4 Testnet Token - - **Symbol**: ZAG - - **Decimals**: 18 - -## RPC URLs - -QaUser4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-9294.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-9294.mdx deleted file mode 100644 index 3bf149a846..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet-9294.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4 Testnet - Avalanche Blockchain Network -description: Explore QaUser4 Testnet, a blockchain network with chain ID 9294. Learn about its native currency, QaUser4 Testnet Token, and how to interact with the network. ---- - -# QaUser4 Testnet - -QaUser4 Testnet is a blockchain network with chain ID 9294. - -## Network Details - -- **Chain ID**: 9294 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4 Testnet -- **Network ID**: 9294 -- **Currency**: - - **Name**: QaUser4 Testnet Token - - **Symbol**: TQO - - **Decimals**: 18 - -## RPC URLs - -QaUser4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet.mdx deleted file mode 100644 index 5db36ce74a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QAUSer4 Testnet - Avalanche Blockchain Network -description: Explore QAUSer4 Testnet, a blockchain network with chain ID 7872. Learn about its native currency, QAUSer4 Testnet Token, and how to interact with the network. ---- - -# QAUSer4 Testnet - -QAUSer4 Testnet is a blockchain network with chain ID 7872. - -## Network Details - -- **Chain ID**: 7872 -- **Chain Name**: Avalanche -- **Short Name**: QAUSer4 Testnet -- **Network ID**: 7872 -- **Currency**: - - **Name**: QAUSer4 Testnet Token - - **Symbol**: VVC - - **Decimals**: 18 - -## RPC URLs - -QAUSer4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QAUSer4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QAUSer4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4009.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4009.mdx deleted file mode 100644 index 10e3a788ea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4009.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4009 - Avalanche Blockchain Network -description: Explore QaUser4009, a blockchain network with chain ID 80092. Learn about its native currency, QaUser4009 Token, and how to interact with the network. ---- - -# QaUser4009 - -QaUser4009 is a blockchain network with chain ID 80092. - -## Network Details - -- **Chain ID**: 80092 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4009 -- **Network ID**: 80092 -- **Currency**: - - **Name**: QaUser4009 Token - - **Symbol**: MHP - - **Decimals**: 18 - -## RPC URLs - -QaUser4009 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4009 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4009 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4106-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4106-testnet.mdx deleted file mode 100644 index 9d6c736912..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4106-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4106 Testnet - Avalanche Blockchain Network -description: Explore QaUser4106 Testnet, a blockchain network with chain ID 29386. Learn about its native currency, QaUser4106 Testnet Token, and how to interact with the network. ---- - -# QaUser4106 Testnet - -QaUser4106 Testnet is a blockchain network with chain ID 29386. - -## Network Details - -- **Chain ID**: 29386 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4106 Testnet -- **Network ID**: 29386 -- **Currency**: - - **Name**: QaUser4106 Testnet Token - - **Symbol**: BBS - - **Decimals**: 18 - -## RPC URLs - -QaUser4106 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4106 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4106 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4113-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4113-testnet.mdx deleted file mode 100644 index d264ad3af4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4113-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4113 Testnet - Avalanche Blockchain Network -description: Explore QaUser4113 Testnet, a blockchain network with chain ID 20519. Learn about its native currency, QaUser4113 Testnet Token, and how to interact with the network. ---- - -# QaUser4113 Testnet - -QaUser4113 Testnet is a blockchain network with chain ID 20519. - -## Network Details - -- **Chain ID**: 20519 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4113 Testnet -- **Network ID**: 20519 -- **Currency**: - - **Name**: QaUser4113 Testnet Token - - **Symbol**: FYP - - **Decimals**: 18 - -## RPC URLs - -QaUser4113 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4113 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4113 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4131.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4131.mdx deleted file mode 100644 index b6d115ce71..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4131.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Volley Mainnet - Volley Blockchain Network -description: Explore Volley Mainnet, a blockchain network with chain ID 9981. Learn about its native currency, V2X, and how to interact with the network. ---- - -# Volley Mainnet - -Volley Mainnet is a blockchain network with chain ID 9981. - -## Network Details - -- **Chain ID**: 9981 -- **Chain Name**: Volley -- **Short Name**: volley-mainnet -- **Network ID**: 9981 -- **Currency**: - - **Name**: V2X - - **Symbol**: V2X - - **Decimals**: 18 - -## RPC URLs - -Volley Mainnet can be accessed through the following RPC endpoints: - -- https://main-rpc.volleychain.com - -## Volley Mainnet Block Explorers - -- [Volley Mainnet Explorer](https://volleyscan.io) - -## Additional Information - -- **Official Website**: https://www.volleychain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4143-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4143-testnet.mdx deleted file mode 100644 index 505b590b43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4143-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4143 Testnet - Avalanche Blockchain Network -description: Explore QaUser4143 Testnet, a blockchain network with chain ID 65842. Learn about its native currency, QaUser4143 Testnet Token, and how to interact with the network. ---- - -# QaUser4143 Testnet - -QaUser4143 Testnet is a blockchain network with chain ID 65842. - -## Network Details - -- **Chain ID**: 65842 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4143 Testnet -- **Network ID**: 65842 -- **Currency**: - - **Name**: QaUser4143 Testnet Token - - **Symbol**: NHU - - **Decimals**: 18 - -## RPC URLs - -QaUser4143 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4143 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4143 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser41testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser41testnet.mdx deleted file mode 100644 index 06d2e8cfbe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser41testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser41Testnet - Avalanche Blockchain Network -description: Explore QaUser41Testnet, a blockchain network with chain ID 39747. Learn about its native currency, QaUser41Testnet Token, and how to interact with the network. ---- - -# QaUser41Testnet - -QaUser41Testnet is a blockchain network with chain ID 39747. - -## Network Details - -- **Chain ID**: 39747 -- **Chain Name**: Avalanche -- **Short Name**: QaUser41Testnet -- **Network ID**: 39747 -- **Currency**: - - **Name**: QaUser41Testnet Token - - **Symbol**: GYF - - **Decimals**: 18 - -## RPC URLs - -QaUser41Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser41Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser41Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4251.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4251.mdx deleted file mode 100644 index 5d54b73c0d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4251.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4251 - Avalanche Blockchain Network -description: Explore QaUser4251, a blockchain network with chain ID 92847. Learn about its native currency, QaUser4251 Token, and how to interact with the network. ---- - -# QaUser4251 - -QaUser4251 is a blockchain network with chain ID 92847. - -## Network Details - -- **Chain ID**: 92847 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4251 -- **Network ID**: 92847 -- **Currency**: - - **Name**: QaUser4251 Token - - **Symbol**: ERU - - **Decimals**: 18 - -## RPC URLs - -QaUser4251 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4251 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4251 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4301-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4301-testnet.mdx deleted file mode 100644 index e3bedbd9d1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4301-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4301 Testnet - Avalanche Blockchain Network -description: Explore QaUser4301 Testnet, a blockchain network with chain ID 80719. Learn about its native currency, QaUser4301 Testnet Token, and how to interact with the network. ---- - -# QaUser4301 Testnet - -QaUser4301 Testnet is a blockchain network with chain ID 80719. - -## Network Details - -- **Chain ID**: 80719 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4301 Testnet -- **Network ID**: 80719 -- **Currency**: - - **Name**: QaUser4301 Testnet Token - - **Symbol**: NHU - - **Decimals**: 18 - -## RPC URLs - -QaUser4301 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4301 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4301 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4359-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4359-testnet.mdx deleted file mode 100644 index ea114e3a81..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4359-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4359 Testnet - Avalanche Blockchain Network -description: Explore QaUser4359 Testnet, a blockchain network with chain ID 52146. Learn about its native currency, QaUser4359 Testnet Token, and how to interact with the network. ---- - -# QaUser4359 Testnet - -QaUser4359 Testnet is a blockchain network with chain ID 52146. - -## Network Details - -- **Chain ID**: 52146 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4359 Testnet -- **Network ID**: 52146 -- **Currency**: - - **Name**: QaUser4359 Testnet Token - - **Symbol**: WBP - - **Decimals**: 18 - -## RPC URLs - -QaUser4359 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4359 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4359 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4426.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4426.mdx deleted file mode 100644 index fd4013bd2f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4426.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4426 - Avalanche Blockchain Network -description: Explore QaUser4426, a blockchain network with chain ID 40100. Learn about its native currency, QaUser4426 Token, and how to interact with the network. ---- - -# QaUser4426 - -QaUser4426 is a blockchain network with chain ID 40100. - -## Network Details - -- **Chain ID**: 40100 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4426 -- **Network ID**: 40100 -- **Currency**: - - **Name**: QaUser4426 Token - - **Symbol**: PMC - - **Decimals**: 18 - -## RPC URLs - -QaUser4426 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4426 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4426 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser45-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser45-testnet.mdx deleted file mode 100644 index d6408d9d8a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser45-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser45 Testnet - Avalanche Blockchain Network -description: Explore QaUser45 Testnet, a blockchain network with chain ID 24867. Learn about its native currency, QaUser45 Testnet Token, and how to interact with the network. ---- - -# QaUser45 Testnet - -QaUser45 Testnet is a blockchain network with chain ID 24867. - -## Network Details - -- **Chain ID**: 24867 -- **Chain Name**: Avalanche -- **Short Name**: QaUser45 Testnet -- **Network ID**: 24867 -- **Currency**: - - **Name**: QaUser45 Testnet Token - - **Symbol**: ZAG - - **Decimals**: 18 - -## RPC URLs - -QaUser45 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser45 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser45 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4523.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4523.mdx deleted file mode 100644 index 75b946b2e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4523.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4523 - Avalanche Blockchain Network -description: Explore QaUser4523, a blockchain network with chain ID 9543. Learn about its native currency, QaUser4523 Token, and how to interact with the network. ---- - -# QaUser4523 - -QaUser4523 is a blockchain network with chain ID 9543. - -## Network Details - -- **Chain ID**: 9543 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4523 -- **Network ID**: 9543 -- **Currency**: - - **Name**: QaUser4523 Token - - **Symbol**: NBW - - **Decimals**: 18 - -## RPC URLs - -QaUser4523 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4523 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4523 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4536-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4536-testnet.mdx deleted file mode 100644 index 0e11ccf232..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4536-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4536 Testnet - Avalanche Blockchain Network -description: Explore QaUser4536 Testnet, a blockchain network with chain ID 32517. Learn about its native currency, QaUser4536 Testnet Token, and how to interact with the network. ---- - -# QaUser4536 Testnet - -QaUser4536 Testnet is a blockchain network with chain ID 32517. - -## Network Details - -- **Chain ID**: 32517 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4536 Testnet -- **Network ID**: 32517 -- **Currency**: - - **Name**: QaUser4536 Testnet Token - - **Symbol**: ZKJ - - **Decimals**: 18 - -## RPC URLs - -QaUser4536 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4536 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4536 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4578-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4578-testnet.mdx deleted file mode 100644 index 7b4679e840..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4578-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4578 Testnet - Avalanche Blockchain Network -description: Explore QaUser4578 Testnet, a blockchain network with chain ID 32366. Learn about its native currency, QaUser4578 Testnet Token, and how to interact with the network. ---- - -# QaUser4578 Testnet - -QaUser4578 Testnet is a blockchain network with chain ID 32366. - -## Network Details - -- **Chain ID**: 32366 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4578 Testnet -- **Network ID**: 32366 -- **Currency**: - - **Name**: QaUser4578 Testnet Token - - **Symbol**: EXP - - **Decimals**: 18 - -## RPC URLs - -QaUser4578 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4578 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4578 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser46-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser46-testnet.mdx deleted file mode 100644 index 041d7cf49a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser46-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser46 Testnet - Avalanche Blockchain Network -description: Explore QaUser46 Testnet, a blockchain network with chain ID 65300. Learn about its native currency, QaUser46 Testnet Token, and how to interact with the network. ---- - -# QaUser46 Testnet - -QaUser46 Testnet is a blockchain network with chain ID 65300. - -## Network Details - -- **Chain ID**: 65300 -- **Chain Name**: Avalanche -- **Short Name**: QaUser46 Testnet -- **Network ID**: 65300 -- **Currency**: - - **Name**: QaUser46 Testnet Token - - **Symbol**: ZAG - - **Decimals**: 18 - -## RPC URLs - -QaUser46 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser46 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser46 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4688.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4688.mdx deleted file mode 100644 index c51b825099..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4688.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4688 - Avalanche Blockchain Network -description: Explore QaUser4688, a blockchain network with chain ID 56054. Learn about its native currency, QaUser4688 Token, and how to interact with the network. ---- - -# QaUser4688 - -QaUser4688 is a blockchain network with chain ID 56054. - -## Network Details - -- **Chain ID**: 56054 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4688 -- **Network ID**: 56054 -- **Currency**: - - **Name**: QaUser4688 Token - - **Symbol**: DPN - - **Decimals**: 18 - -## RPC URLs - -QaUser4688 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4688 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4688 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4903-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4903-testnet.mdx deleted file mode 100644 index de043ec7c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4903-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4903 Testnet - Avalanche Blockchain Network -description: Explore QaUser4903 Testnet, a blockchain network with chain ID 92978. Learn about its native currency, QaUser4903 Testnet Token, and how to interact with the network. ---- - -# QaUser4903 Testnet - -QaUser4903 Testnet is a blockchain network with chain ID 92978. - -## Network Details - -- **Chain ID**: 92978 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4903 Testnet -- **Network ID**: 92978 -- **Currency**: - - **Name**: QaUser4903 Testnet Token - - **Symbol**: CQS - - **Decimals**: 18 - -## RPC URLs - -QaUser4903 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4903 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4903 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4994-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4994-testnet.mdx deleted file mode 100644 index afb9458ae4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4994-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4994 Testnet - Avalanche Blockchain Network -description: Explore QaUser4994 Testnet, a blockchain network with chain ID 24668. Learn about its native currency, QaUser4994 Testnet Token, and how to interact with the network. ---- - -# QaUser4994 Testnet - -QaUser4994 Testnet is a blockchain network with chain ID 24668. - -## Network Details - -- **Chain ID**: 24668 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4994 Testnet -- **Network ID**: 24668 -- **Currency**: - - **Name**: QaUser4994 Testnet Token - - **Symbol**: PBE - - **Decimals**: 18 - -## RPC URLs - -QaUser4994 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4994 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4994 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4testnet-56570.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4testnet-56570.mdx deleted file mode 100644 index 0147a445ce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4testnet-56570.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4Testnet - Avalanche Blockchain Network -description: Explore QaUser4Testnet, a blockchain network with chain ID 56570. Learn about its native currency, QaUser4Testnet Token, and how to interact with the network. ---- - -# QaUser4Testnet - -QaUser4Testnet is a blockchain network with chain ID 56570. - -## Network Details - -- **Chain ID**: 56570 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4Testnet -- **Network ID**: 56570 -- **Currency**: - - **Name**: QaUser4Testnet Token - - **Symbol**: GYF - - **Decimals**: 18 - -## RPC URLs - -QaUser4Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser4testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser4testnet.mdx deleted file mode 100644 index 64776a1c75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser4testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser4Testnet - Avalanche Blockchain Network -description: Explore QaUser4Testnet, a blockchain network with chain ID 51740. Learn about its native currency, QaUser4Testnet Token, and how to interact with the network. ---- - -# QaUser4Testnet - -QaUser4Testnet is a blockchain network with chain ID 51740. - -## Network Details - -- **Chain ID**: 51740 -- **Chain Name**: Avalanche -- **Short Name**: QaUser4Testnet -- **Network ID**: 51740 -- **Currency**: - - **Name**: QaUser4Testnet Token - - **Symbol**: VGW - - **Decimals**: 18 - -## RPC URLs - -QaUser4Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser4Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser4Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5017-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5017-testnet.mdx deleted file mode 100644 index 4986b71b00..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5017-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5017 Testnet - Avalanche Blockchain Network -description: Explore QaUser5017 Testnet, a blockchain network with chain ID 7317. Learn about its native currency, QaUser5017 Testnet Token, and how to interact with the network. ---- - -# QaUser5017 Testnet - -QaUser5017 Testnet is a blockchain network with chain ID 7317. - -## Network Details - -- **Chain ID**: 7317 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5017 Testnet -- **Network ID**: 7317 -- **Currency**: - - **Name**: QaUser5017 Testnet Token - - **Symbol**: IHS - - **Decimals**: 18 - -## RPC URLs - -QaUser5017 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5017 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5017 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5110-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5110-testnet.mdx deleted file mode 100644 index 4d9f0ca5e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5110-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5110 Testnet - Avalanche Blockchain Network -description: Explore QaUser5110 Testnet, a blockchain network with chain ID 40868. Learn about its native currency, QaUser5110 Testnet Token, and how to interact with the network. ---- - -# QaUser5110 Testnet - -QaUser5110 Testnet is a blockchain network with chain ID 40868. - -## Network Details - -- **Chain ID**: 40868 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5110 Testnet -- **Network ID**: 40868 -- **Currency**: - - **Name**: QaUser5110 Testnet Token - - **Symbol**: CRL - - **Decimals**: 18 - -## RPC URLs - -QaUser5110 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5110 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5110 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5256.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5256.mdx deleted file mode 100644 index dd15e63ebb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5256.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5256 - Avalanche Blockchain Network -description: Explore QaUser5256, a blockchain network with chain ID 55200. Learn about its native currency, QaUser5256 Token, and how to interact with the network. ---- - -# QaUser5256 - -QaUser5256 is a blockchain network with chain ID 55200. - -## Network Details - -- **Chain ID**: 55200 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5256 -- **Network ID**: 55200 -- **Currency**: - - **Name**: QaUser5256 Token - - **Symbol**: UDQ - - **Decimals**: 18 - -## RPC URLs - -QaUser5256 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5256 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5256 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5275.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5275.mdx deleted file mode 100644 index 632a2c4493..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5275.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5275 - Avalanche Blockchain Network -description: Explore QaUser5275, a blockchain network with chain ID 25968. Learn about its native currency, QaUser5275 Token, and how to interact with the network. ---- - -# QaUser5275 - -QaUser5275 is a blockchain network with chain ID 25968. - -## Network Details - -- **Chain ID**: 25968 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5275 -- **Network ID**: 25968 -- **Currency**: - - **Name**: QaUser5275 Token - - **Symbol**: EZL - - **Decimals**: 18 - -## RPC URLs - -QaUser5275 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5275 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5275 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5277-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5277-testnet.mdx deleted file mode 100644 index c3302da605..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5277-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5277 Testnet - Avalanche Blockchain Network -description: Explore QaUser5277 Testnet, a blockchain network with chain ID 45979. Learn about its native currency, QaUser5277 Testnet Token, and how to interact with the network. ---- - -# QaUser5277 Testnet - -QaUser5277 Testnet is a blockchain network with chain ID 45979. - -## Network Details - -- **Chain ID**: 45979 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5277 Testnet -- **Network ID**: 45979 -- **Currency**: - - **Name**: QaUser5277 Testnet Token - - **Symbol**: LWR - - **Decimals**: 18 - -## RPC URLs - -QaUser5277 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5277 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5277 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5410.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5410.mdx deleted file mode 100644 index d062bbb2d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5410.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5410 - Avalanche Blockchain Network -description: Explore QaUser5410, a blockchain network with chain ID 96105. Learn about its native currency, QaUser5410 Token, and how to interact with the network. ---- - -# QaUser5410 - -QaUser5410 is a blockchain network with chain ID 96105. - -## Network Details - -- **Chain ID**: 96105 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5410 -- **Network ID**: 96105 -- **Currency**: - - **Name**: QaUser5410 Token - - **Symbol**: JIV - - **Decimals**: 18 - -## RPC URLs - -QaUser5410 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5410 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5410 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5450.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5450.mdx deleted file mode 100644 index 92d45a4398..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5450.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5450 - Avalanche Blockchain Network -description: Explore QaUser5450, a blockchain network with chain ID 73592. Learn about its native currency, QaUser5450 Token, and how to interact with the network. ---- - -# QaUser5450 - -QaUser5450 is a blockchain network with chain ID 73592. - -## Network Details - -- **Chain ID**: 73592 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5450 -- **Network ID**: 73592 -- **Currency**: - - **Name**: QaUser5450 Token - - **Symbol**: PXB - - **Decimals**: 18 - -## RPC URLs - -QaUser5450 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5450 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5450 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5524-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5524-testnet.mdx deleted file mode 100644 index f4e0689aa4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5524-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5524 Testnet - Avalanche Blockchain Network -description: Explore QaUser5524 Testnet, a blockchain network with chain ID 57973. Learn about its native currency, QaUser5524 Testnet Token, and how to interact with the network. ---- - -# QaUser5524 Testnet - -QaUser5524 Testnet is a blockchain network with chain ID 57973. - -## Network Details - -- **Chain ID**: 57973 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5524 Testnet -- **Network ID**: 57973 -- **Currency**: - - **Name**: QaUser5524 Testnet Token - - **Symbol**: ADN - - **Decimals**: 18 - -## RPC URLs - -QaUser5524 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5524 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5524 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5759-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5759-testnet.mdx deleted file mode 100644 index 2835c0b0d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5759-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5759 Testnet - Avalanche Blockchain Network -description: Explore QaUser5759 Testnet, a blockchain network with chain ID 49053. Learn about its native currency, QaUser5759 Testnet Token, and how to interact with the network. ---- - -# QaUser5759 Testnet - -QaUser5759 Testnet is a blockchain network with chain ID 49053. - -## Network Details - -- **Chain ID**: 49053 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5759 Testnet -- **Network ID**: 49053 -- **Currency**: - - **Name**: QaUser5759 Testnet Token - - **Symbol**: ATZ - - **Decimals**: 18 - -## RPC URLs - -QaUser5759 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5759 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5759 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser5884.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser5884.mdx deleted file mode 100644 index e6286724dd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser5884.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser5884 - Avalanche Blockchain Network -description: Explore QaUser5884, a blockchain network with chain ID 39585. Learn about its native currency, QaUser5884 Token, and how to interact with the network. ---- - -# QaUser5884 - -QaUser5884 is a blockchain network with chain ID 39585. - -## Network Details - -- **Chain ID**: 39585 -- **Chain Name**: Avalanche -- **Short Name**: QaUser5884 -- **Network ID**: 39585 -- **Currency**: - - **Name**: QaUser5884 Token - - **Symbol**: YRO - - **Decimals**: 18 - -## RPC URLs - -QaUser5884 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser5884 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser5884 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6097-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6097-testnet.mdx deleted file mode 100644 index 39edf3b6d3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6097-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6097 Testnet - Avalanche Blockchain Network -description: Explore QaUser6097 Testnet, a blockchain network with chain ID 67451. Learn about its native currency, QaUser6097 Testnet Token, and how to interact with the network. ---- - -# QaUser6097 Testnet - -QaUser6097 Testnet is a blockchain network with chain ID 67451. - -## Network Details - -- **Chain ID**: 67451 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6097 Testnet -- **Network ID**: 67451 -- **Currency**: - - **Name**: QaUser6097 Testnet Token - - **Symbol**: NHU - - **Decimals**: 18 - -## RPC URLs - -QaUser6097 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6097 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6097 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6116-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6116-testnet.mdx deleted file mode 100644 index f6e8d2fa8c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6116-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6116 Testnet - Avalanche Blockchain Network -description: Explore QaUser6116 Testnet, a blockchain network with chain ID 61205. Learn about its native currency, QaUser6116 Testnet Token, and how to interact with the network. ---- - -# QaUser6116 Testnet - -QaUser6116 Testnet is a blockchain network with chain ID 61205. - -## Network Details - -- **Chain ID**: 61205 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6116 Testnet -- **Network ID**: 61205 -- **Currency**: - - **Name**: QaUser6116 Testnet Token - - **Symbol**: YLJ - - **Decimals**: 18 - -## RPC URLs - -QaUser6116 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6116 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6116 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6165-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6165-testnet.mdx deleted file mode 100644 index c372ce545f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6165-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6165 Testnet - Avalanche Blockchain Network -description: Explore QaUser6165 Testnet, a blockchain network with chain ID 29830. Learn about its native currency, QaUser6165 Testnet Token, and how to interact with the network. ---- - -# QaUser6165 Testnet - -QaUser6165 Testnet is a blockchain network with chain ID 29830. - -## Network Details - -- **Chain ID**: 29830 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6165 Testnet -- **Network ID**: 29830 -- **Currency**: - - **Name**: QaUser6165 Testnet Token - - **Symbol**: TGQ - - **Decimals**: 18 - -## RPC URLs - -QaUser6165 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6165 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6165 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6355-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6355-testnet.mdx deleted file mode 100644 index d81e84a604..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6355-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6355 Testnet - Avalanche Blockchain Network -description: Explore QaUser6355 Testnet, a blockchain network with chain ID 29645. Learn about its native currency, QaUser6355 Testnet Token, and how to interact with the network. ---- - -# QaUser6355 Testnet - -QaUser6355 Testnet is a blockchain network with chain ID 29645. - -## Network Details - -- **Chain ID**: 29645 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6355 Testnet -- **Network ID**: 29645 -- **Currency**: - - **Name**: QaUser6355 Testnet Token - - **Symbol**: MQO - - **Decimals**: 18 - -## RPC URLs - -QaUser6355 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6355 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6355 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6469.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6469.mdx deleted file mode 100644 index f4d842a74f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6469.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6469 - Avalanche Blockchain Network -description: Explore QaUser6469, a blockchain network with chain ID 55246. Learn about its native currency, QaUser6469 Token, and how to interact with the network. ---- - -# QaUser6469 - -QaUser6469 is a blockchain network with chain ID 55246. - -## Network Details - -- **Chain ID**: 55246 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6469 -- **Network ID**: 55246 -- **Currency**: - - **Name**: QaUser6469 Token - - **Symbol**: ZZX - - **Decimals**: 18 - -## RPC URLs - -QaUser6469 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6469 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6469 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6586.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6586.mdx deleted file mode 100644 index 6428c10d13..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6586.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6586 - Avalanche Blockchain Network -description: Explore QaUser6586, a blockchain network with chain ID 57822. Learn about its native currency, QaUser6586 Token, and how to interact with the network. ---- - -# QaUser6586 - -QaUser6586 is a blockchain network with chain ID 57822. - -## Network Details - -- **Chain ID**: 57822 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6586 -- **Network ID**: 57822 -- **Currency**: - - **Name**: QaUser6586 Token - - **Symbol**: FUS - - **Decimals**: 18 - -## RPC URLs - -QaUser6586 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6586 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6586 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6598.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6598.mdx deleted file mode 100644 index 392d1bc7ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6598.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6598 - Avalanche Blockchain Network -description: Explore QaUser6598, a blockchain network with chain ID 14093. Learn about its native currency, QaUser6598 Token, and how to interact with the network. ---- - -# QaUser6598 - -QaUser6598 is a blockchain network with chain ID 14093. - -## Network Details - -- **Chain ID**: 14093 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6598 -- **Network ID**: 14093 -- **Currency**: - - **Name**: QaUser6598 Token - - **Symbol**: UQC - - **Decimals**: 18 - -## RPC URLs - -QaUser6598 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6598 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6598 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6609-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6609-testnet.mdx deleted file mode 100644 index 562267725a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6609-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6609 Testnet - Avalanche Blockchain Network -description: Explore QaUser6609 Testnet, a blockchain network with chain ID 45544. Learn about its native currency, QaUser6609 Testnet Token, and how to interact with the network. ---- - -# QaUser6609 Testnet - -QaUser6609 Testnet is a blockchain network with chain ID 45544. - -## Network Details - -- **Chain ID**: 45544 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6609 Testnet -- **Network ID**: 45544 -- **Currency**: - - **Name**: QaUser6609 Testnet Token - - **Symbol**: NHU - - **Decimals**: 18 - -## RPC URLs - -QaUser6609 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6609 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6609 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6624-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6624-testnet.mdx deleted file mode 100644 index 08117b57ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6624-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6624 Testnet - Avalanche Blockchain Network -description: Explore QaUser6624 Testnet, a blockchain network with chain ID 77576. Learn about its native currency, QaUser6624 Testnet Token, and how to interact with the network. ---- - -# QaUser6624 Testnet - -QaUser6624 Testnet is a blockchain network with chain ID 77576. - -## Network Details - -- **Chain ID**: 77576 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6624 Testnet -- **Network ID**: 77576 -- **Currency**: - - **Name**: QaUser6624 Testnet Token - - **Symbol**: WVN - - **Decimals**: 18 - -## RPC URLs - -QaUser6624 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6624 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6624 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6779-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6779-testnet.mdx deleted file mode 100644 index b9700aea27..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6779-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6779 Testnet - Avalanche Blockchain Network -description: Explore QaUser6779 Testnet, a blockchain network with chain ID 99733. Learn about its native currency, QaUser6779 Testnet Token, and how to interact with the network. ---- - -# QaUser6779 Testnet - -QaUser6779 Testnet is a blockchain network with chain ID 99733. - -## Network Details - -- **Chain ID**: 99733 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6779 Testnet -- **Network ID**: 99733 -- **Currency**: - - **Name**: QaUser6779 Testnet Token - - **Symbol**: WAG - - **Decimals**: 18 - -## RPC URLs - -QaUser6779 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6779 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6779 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6828.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6828.mdx deleted file mode 100644 index 960638de99..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6828.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6828 - Avalanche Blockchain Network -description: Explore QaUser6828, a blockchain network with chain ID 60147. Learn about its native currency, QaUser6828 Token, and how to interact with the network. ---- - -# QaUser6828 - -QaUser6828 is a blockchain network with chain ID 60147. - -## Network Details - -- **Chain ID**: 60147 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6828 -- **Network ID**: 60147 -- **Currency**: - - **Name**: QaUser6828 Token - - **Symbol**: CLL - - **Decimals**: 18 - -## RPC URLs - -QaUser6828 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6828 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6828 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser6991.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser6991.mdx deleted file mode 100644 index ec5c9bc938..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser6991.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser6991 - Avalanche Blockchain Network -description: Explore QaUser6991, a blockchain network with chain ID 21825. Learn about its native currency, QaUser6991 Token, and how to interact with the network. ---- - -# QaUser6991 - -QaUser6991 is a blockchain network with chain ID 21825. - -## Network Details - -- **Chain ID**: 21825 -- **Chain Name**: Avalanche -- **Short Name**: QaUser6991 -- **Network ID**: 21825 -- **Currency**: - - **Name**: QaUser6991 Token - - **Symbol**: HIO - - **Decimals**: 18 - -## RPC URLs - -QaUser6991 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser6991 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser6991 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7218-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7218-testnet.mdx deleted file mode 100644 index e04ee76554..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7218-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7218 Testnet - Avalanche Blockchain Network -description: Explore QaUser7218 Testnet, a blockchain network with chain ID 86663. Learn about its native currency, QaUser7218 Testnet Token, and how to interact with the network. ---- - -# QaUser7218 Testnet - -QaUser7218 Testnet is a blockchain network with chain ID 86663. - -## Network Details - -- **Chain ID**: 86663 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7218 Testnet -- **Network ID**: 86663 -- **Currency**: - - **Name**: QaUser7218 Testnet Token - - **Symbol**: GCY - - **Decimals**: 18 - -## RPC URLs - -QaUser7218 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7218 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7218 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7475.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7475.mdx deleted file mode 100644 index 96aa0fe98c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7475.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7475 - Avalanche Blockchain Network -description: Explore QaUser7475, a blockchain network with chain ID 6713. Learn about its native currency, QaUser7475 Token, and how to interact with the network. ---- - -# QaUser7475 - -QaUser7475 is a blockchain network with chain ID 6713. - -## Network Details - -- **Chain ID**: 6713 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7475 -- **Network ID**: 6713 -- **Currency**: - - **Name**: QaUser7475 Token - - **Symbol**: GZR - - **Decimals**: 18 - -## RPC URLs - -QaUser7475 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7475 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7475 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7737-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7737-testnet.mdx deleted file mode 100644 index e7629a82a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7737-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7737 Testnet - Avalanche Blockchain Network -description: Explore QaUser7737 Testnet, a blockchain network with chain ID 18109. Learn about its native currency, QaUser7737 Testnet Token, and how to interact with the network. ---- - -# QaUser7737 Testnet - -QaUser7737 Testnet is a blockchain network with chain ID 18109. - -## Network Details - -- **Chain ID**: 18109 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7737 Testnet -- **Network ID**: 18109 -- **Currency**: - - **Name**: QaUser7737 Testnet Token - - **Symbol**: XSP - - **Decimals**: 18 - -## RPC URLs - -QaUser7737 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7737 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7737 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7740-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7740-testnet.mdx deleted file mode 100644 index 93e14522c0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7740-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7740 Testnet - Avalanche Blockchain Network -description: Explore QaUser7740 Testnet, a blockchain network with chain ID 7507. Learn about its native currency, QaUser7740 Testnet Token, and how to interact with the network. ---- - -# QaUser7740 Testnet - -QaUser7740 Testnet is a blockchain network with chain ID 7507. - -## Network Details - -- **Chain ID**: 7507 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7740 Testnet -- **Network ID**: 7507 -- **Currency**: - - **Name**: QaUser7740 Testnet Token - - **Symbol**: RUI - - **Decimals**: 18 - -## RPC URLs - -QaUser7740 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7740 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7740 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7821-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7821-testnet.mdx deleted file mode 100644 index 3ad9d5db4c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7821-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7821 Testnet - Avalanche Blockchain Network -description: Explore QaUser7821 Testnet, a blockchain network with chain ID 61258. Learn about its native currency, QaUser7821 Testnet Token, and how to interact with the network. ---- - -# QaUser7821 Testnet - -QaUser7821 Testnet is a blockchain network with chain ID 61258. - -## Network Details - -- **Chain ID**: 61258 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7821 Testnet -- **Network ID**: 61258 -- **Currency**: - - **Name**: QaUser7821 Testnet Token - - **Symbol**: WND - - **Decimals**: 18 - -## RPC URLs - -QaUser7821 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7821 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7821 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7831.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7831.mdx deleted file mode 100644 index 82e0325795..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7831.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7831 - Avalanche Blockchain Network -description: Explore QaUser7831, a blockchain network with chain ID 73322. Learn about its native currency, QaUser7831 Token, and how to interact with the network. ---- - -# QaUser7831 - -QaUser7831 is a blockchain network with chain ID 73322. - -## Network Details - -- **Chain ID**: 73322 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7831 -- **Network ID**: 73322 -- **Currency**: - - **Name**: QaUser7831 Token - - **Symbol**: RAN - - **Decimals**: 18 - -## RPC URLs - -QaUser7831 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7831 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7831 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7864.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7864.mdx deleted file mode 100644 index ad53aa4308..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7864.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7864 - Avalanche Blockchain Network -description: Explore QaUser7864, a blockchain network with chain ID 33100. Learn about its native currency, QaUser7864 Token, and how to interact with the network. ---- - -# QaUser7864 - -QaUser7864 is a blockchain network with chain ID 33100. - -## Network Details - -- **Chain ID**: 33100 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7864 -- **Network ID**: 33100 -- **Currency**: - - **Name**: QaUser7864 Token - - **Symbol**: MBP - - **Decimals**: 18 - -## RPC URLs - -QaUser7864 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7864 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7864 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7888.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7888.mdx deleted file mode 100644 index 95936f3dc0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7888.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7888 - Avalanche Blockchain Network -description: Explore QaUser7888, a blockchain network with chain ID 7366. Learn about its native currency, QaUser7888 Token, and how to interact with the network. ---- - -# QaUser7888 - -QaUser7888 is a blockchain network with chain ID 7366. - -## Network Details - -- **Chain ID**: 7366 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7888 -- **Network ID**: 7366 -- **Currency**: - - **Name**: QaUser7888 Token - - **Symbol**: NHF - - **Decimals**: 18 - -## RPC URLs - -QaUser7888 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7888 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7888 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7894-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7894-testnet.mdx deleted file mode 100644 index 7e99d04ce4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7894-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7894 Testnet - Avalanche Blockchain Network -description: Explore QaUser7894 Testnet, a blockchain network with chain ID 26031. Learn about its native currency, QaUser7894 Testnet Token, and how to interact with the network. ---- - -# QaUser7894 Testnet - -QaUser7894 Testnet is a blockchain network with chain ID 26031. - -## Network Details - -- **Chain ID**: 26031 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7894 Testnet -- **Network ID**: 26031 -- **Currency**: - - **Name**: QaUser7894 Testnet Token - - **Symbol**: YUT - - **Decimals**: 18 - -## RPC URLs - -QaUser7894 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7894 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7894 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser7920-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser7920-testnet.mdx deleted file mode 100644 index dc58093b0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser7920-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser7920 Testnet - Avalanche Blockchain Network -description: Explore QaUser7920 Testnet, a blockchain network with chain ID 59944. Learn about its native currency, QaUser7920 Testnet Token, and how to interact with the network. ---- - -# QaUser7920 Testnet - -QaUser7920 Testnet is a blockchain network with chain ID 59944. - -## Network Details - -- **Chain ID**: 59944 -- **Chain Name**: Avalanche -- **Short Name**: QaUser7920 Testnet -- **Network ID**: 59944 -- **Currency**: - - **Name**: QaUser7920 Testnet Token - - **Symbol**: USH - - **Decimals**: 18 - -## RPC URLs - -QaUser7920 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser7920 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser7920 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser8112.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser8112.mdx deleted file mode 100644 index 87955bf3ec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser8112.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser8112 - Avalanche Blockchain Network -description: Explore QaUser8112, a blockchain network with chain ID 6213. Learn about its native currency, QaUser8112 Token, and how to interact with the network. ---- - -# QaUser8112 - -QaUser8112 is a blockchain network with chain ID 6213. - -## Network Details - -- **Chain ID**: 6213 -- **Chain Name**: Avalanche -- **Short Name**: QaUser8112 -- **Network ID**: 6213 -- **Currency**: - - **Name**: QaUser8112 Token - - **Symbol**: PEN - - **Decimals**: 18 - -## RPC URLs - -QaUser8112 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser8112 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser8112 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser8230-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser8230-testnet.mdx deleted file mode 100644 index c0209530d1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser8230-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser8230 Testnet - Avalanche Blockchain Network -description: Explore QaUser8230 Testnet, a blockchain network with chain ID 88795. Learn about its native currency, QaUser8230 Testnet Token, and how to interact with the network. ---- - -# QaUser8230 Testnet - -QaUser8230 Testnet is a blockchain network with chain ID 88795. - -## Network Details - -- **Chain ID**: 88795 -- **Chain Name**: Avalanche -- **Short Name**: QaUser8230 Testnet -- **Network ID**: 88795 -- **Currency**: - - **Name**: QaUser8230 Testnet Token - - **Symbol**: GRB - - **Decimals**: 18 - -## RPC URLs - -QaUser8230 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser8230 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser8230 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser8236.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser8236.mdx deleted file mode 100644 index 50eb0e6ce7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser8236.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser8236 - Avalanche Blockchain Network -description: Explore QaUser8236, a blockchain network with chain ID 97370. Learn about its native currency, QaUser8236 Token, and how to interact with the network. ---- - -# QaUser8236 - -QaUser8236 is a blockchain network with chain ID 97370. - -## Network Details - -- **Chain ID**: 97370 -- **Chain Name**: Avalanche -- **Short Name**: QaUser8236 -- **Network ID**: 97370 -- **Currency**: - - **Name**: QaUser8236 Token - - **Symbol**: BPZ - - **Decimals**: 18 - -## RPC URLs - -QaUser8236 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser8236 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser8236 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser8328.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser8328.mdx deleted file mode 100644 index b321c443c5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser8328.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser8328 - Avalanche Blockchain Network -description: Explore QaUser8328, a blockchain network with chain ID 93797. Learn about its native currency, QaUser8328 Token, and how to interact with the network. ---- - -# QaUser8328 - -QaUser8328 is a blockchain network with chain ID 93797. - -## Network Details - -- **Chain ID**: 93797 -- **Chain Name**: Avalanche -- **Short Name**: QaUser8328 -- **Network ID**: 93797 -- **Currency**: - - **Name**: QaUser8328 Token - - **Symbol**: CPY - - **Decimals**: 18 - -## RPC URLs - -QaUser8328 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser8328 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser8328 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser8734-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser8734-testnet.mdx deleted file mode 100644 index 82a63b86c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser8734-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser8734 Testnet - Avalanche Blockchain Network -description: Explore QaUser8734 Testnet, a blockchain network with chain ID 64361. Learn about its native currency, QaUser8734 Testnet Token, and how to interact with the network. ---- - -# QaUser8734 Testnet - -QaUser8734 Testnet is a blockchain network with chain ID 64361. - -## Network Details - -- **Chain ID**: 64361 -- **Chain Name**: Avalanche -- **Short Name**: QaUser8734 Testnet -- **Network ID**: 64361 -- **Currency**: - - **Name**: QaUser8734 Testnet Token - - **Symbol**: XPI - - **Decimals**: 18 - -## RPC URLs - -QaUser8734 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser8734 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser8734 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9054.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9054.mdx deleted file mode 100644 index 5dce061f6a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9054.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9054 - Avalanche Blockchain Network -description: Explore QaUser9054, a blockchain network with chain ID 3070. Learn about its native currency, QaUser9054 Token, and how to interact with the network. ---- - -# QaUser9054 - -QaUser9054 is a blockchain network with chain ID 3070. - -## Network Details - -- **Chain ID**: 3070 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9054 -- **Network ID**: 3070 -- **Currency**: - - **Name**: QaUser9054 Token - - **Symbol**: QFE - - **Decimals**: 18 - -## RPC URLs - -QaUser9054 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9054 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9054 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9167-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9167-testnet.mdx deleted file mode 100644 index 81f7187cd7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9167-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9167 Testnet - Avalanche Blockchain Network -description: Explore QaUser9167 Testnet, a blockchain network with chain ID 24545. Learn about its native currency, QaUser9167 Testnet Token, and how to interact with the network. ---- - -# QaUser9167 Testnet - -QaUser9167 Testnet is a blockchain network with chain ID 24545. - -## Network Details - -- **Chain ID**: 24545 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9167 Testnet -- **Network ID**: 24545 -- **Currency**: - - **Name**: QaUser9167 Testnet Token - - **Symbol**: HBG - - **Decimals**: 18 - -## RPC URLs - -QaUser9167 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9167 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9167 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9250-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9250-testnet.mdx deleted file mode 100644 index 5555ee57ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9250-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9250 Testnet - Avalanche Blockchain Network -description: Explore QaUser9250 Testnet, a blockchain network with chain ID 73277. Learn about its native currency, QaUser9250 Testnet Token, and how to interact with the network. ---- - -# QaUser9250 Testnet - -QaUser9250 Testnet is a blockchain network with chain ID 73277. - -## Network Details - -- **Chain ID**: 73277 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9250 Testnet -- **Network ID**: 73277 -- **Currency**: - - **Name**: QaUser9250 Testnet Token - - **Symbol**: UDU - - **Decimals**: 18 - -## RPC URLs - -QaUser9250 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9250 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9250 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9260.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9260.mdx deleted file mode 100644 index 33c159b255..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9260.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9260 - Avalanche Blockchain Network -description: Explore QaUser9260, a blockchain network with chain ID 33795. Learn about its native currency, QaUser9260 Token, and how to interact with the network. ---- - -# QaUser9260 - -QaUser9260 is a blockchain network with chain ID 33795. - -## Network Details - -- **Chain ID**: 33795 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9260 -- **Network ID**: 33795 -- **Currency**: - - **Name**: QaUser9260 Token - - **Symbol**: SBM - - **Decimals**: 18 - -## RPC URLs - -QaUser9260 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9260 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9260 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9318-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9318-testnet.mdx deleted file mode 100644 index c052d79be5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9318-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9318 Testnet - Avalanche Blockchain Network -description: Explore QaUser9318 Testnet, a blockchain network with chain ID 73677. Learn about its native currency, QaUser9318 Testnet Token, and how to interact with the network. ---- - -# QaUser9318 Testnet - -QaUser9318 Testnet is a blockchain network with chain ID 73677. - -## Network Details - -- **Chain ID**: 73677 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9318 Testnet -- **Network ID**: 73677 -- **Currency**: - - **Name**: QaUser9318 Testnet Token - - **Symbol**: XUK - - **Decimals**: 18 - -## RPC URLs - -QaUser9318 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9318 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9318 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9492-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9492-testnet.mdx deleted file mode 100644 index ae5d2d0b69..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9492-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9492 Testnet - Avalanche Blockchain Network -description: Explore QaUser9492 Testnet, a blockchain network with chain ID 31646. Learn about its native currency, QaUser9492 Testnet Token, and how to interact with the network. ---- - -# QaUser9492 Testnet - -QaUser9492 Testnet is a blockchain network with chain ID 31646. - -## Network Details - -- **Chain ID**: 31646 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9492 Testnet -- **Network ID**: 31646 -- **Currency**: - - **Name**: QaUser9492 Testnet Token - - **Symbol**: UVI - - **Decimals**: 18 - -## RPC URLs - -QaUser9492 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9492 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9492 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9604.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9604.mdx deleted file mode 100644 index dc701b922b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9604.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9604 - Avalanche Blockchain Network -description: Explore QaUser9604, a blockchain network with chain ID 70457. Learn about its native currency, QaUser9604 Token, and how to interact with the network. ---- - -# QaUser9604 - -QaUser9604 is a blockchain network with chain ID 70457. - -## Network Details - -- **Chain ID**: 70457 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9604 -- **Network ID**: 70457 -- **Currency**: - - **Name**: QaUser9604 Token - - **Symbol**: CEB - - **Decimals**: 18 - -## RPC URLs - -QaUser9604 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9604 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9604 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9606-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9606-testnet.mdx deleted file mode 100644 index 4438b7e318..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9606-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9606 Testnet - Avalanche Blockchain Network -description: Explore QaUser9606 Testnet, a blockchain network with chain ID 50528. Learn about its native currency, QaUser9606 Testnet Token, and how to interact with the network. ---- - -# QaUser9606 Testnet - -QaUser9606 Testnet is a blockchain network with chain ID 50528. - -## Network Details - -- **Chain ID**: 50528 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9606 Testnet -- **Network ID**: 50528 -- **Currency**: - - **Name**: QaUser9606 Testnet Token - - **Symbol**: JTW - - **Decimals**: 18 - -## RPC URLs - -QaUser9606 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9606 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9606 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9608-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9608-testnet.mdx deleted file mode 100644 index 6e5bf6fb37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9608-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9608 Testnet - Avalanche Blockchain Network -description: Explore QaUser9608 Testnet, a blockchain network with chain ID 48137. Learn about its native currency, QaUser9608 Testnet Token, and how to interact with the network. ---- - -# QaUser9608 Testnet - -QaUser9608 Testnet is a blockchain network with chain ID 48137. - -## Network Details - -- **Chain ID**: 48137 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9608 Testnet -- **Network ID**: 48137 -- **Currency**: - - **Name**: QaUser9608 Testnet Token - - **Symbol**: ASI - - **Decimals**: 18 - -## RPC URLs - -QaUser9608 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9608 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9608 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9727-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9727-testnet.mdx deleted file mode 100644 index 72cadce793..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9727-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9727 Testnet - Avalanche Blockchain Network -description: Explore QaUser9727 Testnet, a blockchain network with chain ID 99181. Learn about its native currency, QaUser9727 Testnet Token, and how to interact with the network. ---- - -# QaUser9727 Testnet - -QaUser9727 Testnet is a blockchain network with chain ID 99181. - -## Network Details - -- **Chain ID**: 99181 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9727 Testnet -- **Network ID**: 99181 -- **Currency**: - - **Name**: QaUser9727 Testnet Token - - **Symbol**: PCE - - **Decimals**: 18 - -## RPC URLs - -QaUser9727 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9727 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9727 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qauser9821-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qauser9821-testnet.mdx deleted file mode 100644 index 2f5a3fb38c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qauser9821-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QaUser9821 Testnet - Avalanche Blockchain Network -description: Explore QaUser9821 Testnet, a blockchain network with chain ID 65174. Learn about its native currency, QaUser9821 Testnet Token, and how to interact with the network. ---- - -# QaUser9821 Testnet - -QaUser9821 Testnet is a blockchain network with chain ID 65174. - -## Network Details - -- **Chain ID**: 65174 -- **Chain Name**: Avalanche -- **Short Name**: QaUser9821 Testnet -- **Network ID**: 65174 -- **Currency**: - - **Name**: QaUser9821 Testnet Token - - **Symbol**: HKL - - **Decimals**: 18 - -## RPC URLs - -QaUser9821 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QaUser9821 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QaUser9821 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qeasyweb3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qeasyweb3-testnet.mdx deleted file mode 100644 index 67306f8830..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qeasyweb3-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QEasyWeb3 Testnet - QET Blockchain Network -description: Explore QEasyWeb3 Testnet, a blockchain network with chain ID 9528. Learn about its native currency, QET, and how to interact with the network. ---- - -# QEasyWeb3 Testnet - -QEasyWeb3 Testnet is a blockchain network with chain ID 9528. - -## Network Details - -- **Chain ID**: 9528 -- **Chain Name**: QET -- **Short Name**: QETTest -- **Network ID**: 9528 -- **Currency**: - - **Name**: QET - - **Symbol**: QET - - **Decimals**: 18 - -## RPC URLs - -QEasyWeb3 Testnet can be accessed through the following RPC endpoints: - -- https://qeasyweb3.com - -## QEasyWeb3 Testnet Block Explorers - -- [QEasyWeb3 Explorer](https://www.qeasyweb3.com) - -## Additional Information - -- **Official Website**: https://www.qeasyweb3.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QEasyWeb3 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-20240108.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-20240108.mdx deleted file mode 100644 index fa573ae09f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-20240108.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI 20240108 - Avalanche Blockchain Network -description: Explore QI 20240108, a blockchain network with chain ID 39098. Learn about its native currency, QI 20240108 Token, and how to interact with the network. ---- - -# QI 20240108 - -QI 20240108 is a blockchain network with chain ID 39098. - -## Network Details - -- **Chain ID**: 39098 -- **Chain Name**: Avalanche -- **Short Name**: QI 20240108 -- **Network ID**: 39098 -- **Currency**: - - **Name**: QI 20240108 Token - - **Symbol**: COZ - - **Decimals**: 18 - -## RPC URLs - -QI 20240108 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f575b5b1-8b60-47f3-af28-13f3f3de2ba5 - -## QI 20240108 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI 20240108 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-11271.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-11271.mdx deleted file mode 100644 index 4fb45773b7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-11271.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 11271 - Avalanche Blockchain Network -description: Explore QI M 11271, a blockchain network with chain ID 15535. Learn about its native currency, QI M 11271 Token, and how to interact with the network. ---- - -# QI M 11271 - -QI M 11271 is a blockchain network with chain ID 15535. - -## Network Details - -- **Chain ID**: 15535 -- **Chain Name**: Avalanche -- **Short Name**: QI M 11271 -- **Network ID**: 15535 -- **Currency**: - - **Name**: QI M 11271 Token - - **Symbol**: JZW - - **Decimals**: 18 - -## RPC URLs - -QI M 11271 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/a47e1c06-fa75-4536-a900-1574d198e197 - -## QI M 11271 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 11271 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-11272.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-11272.mdx deleted file mode 100644 index 90e4abf35f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-11272.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 11272 - Avalanche Blockchain Network -description: Explore QI M 11272, a blockchain network with chain ID 12035. Learn about its native currency, QI M 11272 Token, and how to interact with the network. ---- - -# QI M 11272 - -QI M 11272 is a blockchain network with chain ID 12035. - -## Network Details - -- **Chain ID**: 12035 -- **Chain Name**: Avalanche -- **Short Name**: QI M 11272 -- **Network ID**: 12035 -- **Currency**: - - **Name**: QI M 11272 Token - - **Symbol**: JZW - - **Decimals**: 18 - -## RPC URLs - -QI M 11272 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/b19c9e32-f359-451f-ad15-7ec784625c04 - -## QI M 11272 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 11272 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-12051.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-12051.mdx deleted file mode 100644 index 26a4a26dad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-12051.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 12051 - Avalanche Blockchain Network -description: Explore QI M 12051, a blockchain network with chain ID 80182. Learn about its native currency, QI M 12051 Token, and how to interact with the network. ---- - -# QI M 12051 - -QI M 12051 is a blockchain network with chain ID 80182. - -## Network Details - -- **Chain ID**: 80182 -- **Chain Name**: Avalanche -- **Short Name**: QI M 12051 -- **Network ID**: 80182 -- **Currency**: - - **Name**: QI M 12051 Token - - **Symbol**: VTV - - **Decimals**: 18 - -## RPC URLs - -QI M 12051 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/b19c9e32-f359-451f-ad15-7ec784625c04 - -## QI M 12051 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 12051 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-12131.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-12131.mdx deleted file mode 100644 index 21bb2634eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-12131.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 12131 - Avalanche Blockchain Network -description: Explore QI M 12131, a blockchain network with chain ID 10671. Learn about its native currency, QI M 12131 Token, and how to interact with the network. ---- - -# QI M 12131 - -QI M 12131 is a blockchain network with chain ID 10671. - -## Network Details - -- **Chain ID**: 10671 -- **Chain Name**: Avalanche -- **Short Name**: QI M 12131 -- **Network ID**: 10671 -- **Currency**: - - **Name**: QI M 12131 Token - - **Symbol**: XVL - - **Decimals**: 18 - -## RPC URLs - -QI M 12131 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/c3c8cc74-5101-4380-937f-4f534cad0128 - -## QI M 12131 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 12131 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-202402121.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-202402121.mdx deleted file mode 100644 index 504f6a2cf7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-202402121.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 202402121 - Avalanche Blockchain Network -description: Explore QI M 202402121, a blockchain network with chain ID 11625. Learn about its native currency, QI M 202402121 Token, and how to interact with the network. ---- - -# QI M 202402121 - -QI M 202402121 is a blockchain network with chain ID 11625. - -## Network Details - -- **Chain ID**: 11625 -- **Chain Name**: Avalanche -- **Short Name**: QI M 202402121 -- **Network ID**: 11625 -- **Currency**: - - **Name**: QI M 202402121 Token - - **Symbol**: CYB - - **Decimals**: 18 - -## RPC URLs - -QI M 202402121 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 202402121 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 202402121 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-21343243.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-21343243.mdx deleted file mode 100644 index 453ee4e142..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-21343243.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 21343243 - Avalanche Blockchain Network -description: Explore QI M 21343243, a blockchain network with chain ID 81079. Learn about its native currency, QI M 21343243 Token, and how to interact with the network. ---- - -# QI M 21343243 - -QI M 21343243 is a blockchain network with chain ID 81079. - -## Network Details - -- **Chain ID**: 81079 -- **Chain Name**: Avalanche -- **Short Name**: QI M 21343243 -- **Network ID**: 81079 -- **Currency**: - - **Name**: QI M 21343243 Token - - **Symbol**: JZW - - **Decimals**: 18 - -## RPC URLs - -QI M 21343243 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f575b5b1-8b60-47f3-af28-13f3f3de2ba5 - -## QI M 21343243 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 21343243 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401122.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2401122.mdx deleted file mode 100644 index 1cb2ff5dae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401122.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2401122 - Avalanche Blockchain Network -description: Explore QI M 2401122, a blockchain network with chain ID 35439. Learn about its native currency, QI M 2401122 Token, and how to interact with the network. ---- - -# QI M 2401122 - -QI M 2401122 is a blockchain network with chain ID 35439. - -## Network Details - -- **Chain ID**: 35439 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2401122 -- **Network ID**: 35439 -- **Currency**: - - **Name**: QI M 2401122 Token - - **Symbol**: HZU - - **Decimals**: 18 - -## RPC URLs - -QI M 2401122 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f14d837e-de8f-446d-8222-0077f26e6694 - -## QI M 2401122 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2401122 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401221.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2401221.mdx deleted file mode 100644 index dafe9a5d8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401221.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2401221 - Avalanche Blockchain Network -description: Explore QI M 2401221, a blockchain network with chain ID 84623. Learn about its native currency, QI M 2401221 Token, and how to interact with the network. ---- - -# QI M 2401221 - -QI M 2401221 is a blockchain network with chain ID 84623. - -## Network Details - -- **Chain ID**: 84623 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2401221 -- **Network ID**: 84623 -- **Currency**: - - **Name**: QI M 2401221 Token - - **Symbol**: HZU - - **Decimals**: 18 - -## RPC URLs - -QI M 2401221 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f14d837e-de8f-446d-8222-0077f26e6694 - -## QI M 2401221 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2401221 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401222.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2401222.mdx deleted file mode 100644 index 80de26b209..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401222.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2401222 - Avalanche Blockchain Network -description: Explore QI M 2401222, a blockchain network with chain ID 7207. Learn about its native currency, QI M 2401222 Token, and how to interact with the network. ---- - -# QI M 2401222 - -QI M 2401222 is a blockchain network with chain ID 7207. - -## Network Details - -- **Chain ID**: 7207 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2401222 -- **Network ID**: 7207 -- **Currency**: - - **Name**: QI M 2401222 Token - - **Symbol**: HZU - - **Decimals**: 18 - -## RPC URLs - -QI M 2401222 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f14d837e-de8f-446d-8222-0077f26e6694 - -## QI M 2401222 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2401222 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401291.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2401291.mdx deleted file mode 100644 index 66f4f7a334..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2401291.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2401291 - Avalanche Blockchain Network -description: Explore QI M 2401291, a blockchain network with chain ID 93694. Learn about its native currency, QI M 2401291 Token, and how to interact with the network. ---- - -# QI M 2401291 - -QI M 2401291 is a blockchain network with chain ID 93694. - -## Network Details - -- **Chain ID**: 93694 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2401291 -- **Network ID**: 93694 -- **Currency**: - - **Name**: QI M 2401291 Token - - **Symbol**: HZU - - **Decimals**: 18 - -## RPC URLs - -QI M 2401291 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f14d837e-de8f-446d-8222-0077f26e6694 - -## QI M 2401291 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2401291 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402052.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402052.mdx deleted file mode 100644 index 9bd135fc37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402052.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402052 - Avalanche Blockchain Network -description: Explore QI M 2402052, a blockchain network with chain ID 15056. Learn about its native currency, QI M 2402052 Token, and how to interact with the network. ---- - -# QI M 2402052 - -QI M 2402052 is a blockchain network with chain ID 15056. - -## Network Details - -- **Chain ID**: 15056 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402052 -- **Network ID**: 15056 -- **Currency**: - - **Name**: QI M 2402052 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402052 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402052 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402052 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402053.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402053.mdx deleted file mode 100644 index bc8e2ec963..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402053.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402053 - Avalanche Blockchain Network -description: Explore QI M 2402053, a blockchain network with chain ID 92780. Learn about its native currency, QI M 2402053 Token, and how to interact with the network. ---- - -# QI M 2402053 - -QI M 2402053 is a blockchain network with chain ID 92780. - -## Network Details - -- **Chain ID**: 92780 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402053 -- **Network ID**: 92780 -- **Currency**: - - **Name**: QI M 2402053 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402053 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402053 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402053 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402054.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402054.mdx deleted file mode 100644 index 76e5121985..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402054.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402054 - Avalanche Blockchain Network -description: Explore QI M 2402054, a blockchain network with chain ID 15104. Learn about its native currency, QI M 2402054 Token, and how to interact with the network. ---- - -# QI M 2402054 - -QI M 2402054 is a blockchain network with chain ID 15104. - -## Network Details - -- **Chain ID**: 15104 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402054 -- **Network ID**: 15104 -- **Currency**: - - **Name**: QI M 2402054 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402054 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402054 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402054 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402055.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402055.mdx deleted file mode 100644 index 85c78fbc16..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402055.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402055 - Avalanche Blockchain Network -description: Explore QI M 2402055, a blockchain network with chain ID 29442. Learn about its native currency, QI M 2402055 Token, and how to interact with the network. ---- - -# QI M 2402055 - -QI M 2402055 is a blockchain network with chain ID 29442. - -## Network Details - -- **Chain ID**: 29442 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402055 -- **Network ID**: 29442 -- **Currency**: - - **Name**: QI M 2402055 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402055 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402055 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402055 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402056.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402056.mdx deleted file mode 100644 index a8c1c2481e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402056.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402056 - Avalanche Blockchain Network -description: Explore QI M 2402056, a blockchain network with chain ID 87815. Learn about its native currency, QI M 2402056 Token, and how to interact with the network. ---- - -# QI M 2402056 - -QI M 2402056 is a blockchain network with chain ID 87815. - -## Network Details - -- **Chain ID**: 87815 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402056 -- **Network ID**: 87815 -- **Currency**: - - **Name**: QI M 2402056 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402056 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402056 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402056 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402057.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402057.mdx deleted file mode 100644 index 342737c562..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402057.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402057 - Avalanche Blockchain Network -description: Explore QI M 2402057, a blockchain network with chain ID 37375. Learn about its native currency, QI M 2402057 Token, and how to interact with the network. ---- - -# QI M 2402057 - -QI M 2402057 is a blockchain network with chain ID 37375. - -## Network Details - -- **Chain ID**: 37375 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402057 -- **Network ID**: 37375 -- **Currency**: - - **Name**: QI M 2402057 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402057 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402057 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402057 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402058.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402058.mdx deleted file mode 100644 index 1b58416651..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402058.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402058 - Avalanche Blockchain Network -description: Explore QI M 2402058, a blockchain network with chain ID 32277. Learn about its native currency, QI M 2402058 Token, and how to interact with the network. ---- - -# QI M 2402058 - -QI M 2402058 is a blockchain network with chain ID 32277. - -## Network Details - -- **Chain ID**: 32277 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402058 -- **Network ID**: 32277 -- **Currency**: - - **Name**: QI M 2402058 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402058 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402058 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402058 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402059.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402059.mdx deleted file mode 100644 index 7b46113a52..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402059.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402059 - Avalanche Blockchain Network -description: Explore QI M 2402059, a blockchain network with chain ID 60834. Learn about its native currency, QI M 2402059 Token, and how to interact with the network. ---- - -# QI M 2402059 - -QI M 2402059 is a blockchain network with chain ID 60834. - -## Network Details - -- **Chain ID**: 60834 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402059 -- **Network ID**: 60834 -- **Currency**: - - **Name**: QI M 2402059 Token - - **Symbol**: ACI - - **Decimals**: 18 - -## RPC URLs - -QI M 2402059 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c908add6-74c5-4407-8091-18762786a0b9 - -## QI M 2402059 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402059 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402131.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402131.mdx deleted file mode 100644 index e21be9b55a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402131.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402131 - Avalanche Blockchain Network -description: Explore QI M 2402131, a blockchain network with chain ID 88018. Learn about its native currency, QI M 2402131 Token, and how to interact with the network. ---- - -# QI M 2402131 - -QI M 2402131 is a blockchain network with chain ID 88018. - -## Network Details - -- **Chain ID**: 88018 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402131 -- **Network ID**: 88018 -- **Currency**: - - **Name**: QI M 2402131 Token - - **Symbol**: CYB - - **Decimals**: 18 - -## RPC URLs - -QI M 2402131 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2402131 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402131 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402132.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402132.mdx deleted file mode 100644 index 7a085b8ca5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402132.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402132 - Avalanche Blockchain Network -description: Explore QI M 2402132, a blockchain network with chain ID 34295. Learn about its native currency, QI M 2402132 Token, and how to interact with the network. ---- - -# QI M 2402132 - -QI M 2402132 is a blockchain network with chain ID 34295. - -## Network Details - -- **Chain ID**: 34295 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402132 -- **Network ID**: 34295 -- **Currency**: - - **Name**: QI M 2402132 Token - - **Symbol**: CYB - - **Decimals**: 18 - -## RPC URLs - -QI M 2402132 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2402132 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402132 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402133.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402133.mdx deleted file mode 100644 index 21f49c98d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402133.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402133 - Avalanche Blockchain Network -description: Explore QI M 2402133, a blockchain network with chain ID 24538. Learn about its native currency, QI M 2402133 Token, and how to interact with the network. ---- - -# QI M 2402133 - -QI M 2402133 is a blockchain network with chain ID 24538. - -## Network Details - -- **Chain ID**: 24538 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402133 -- **Network ID**: 24538 -- **Currency**: - - **Name**: QI M 2402133 Token - - **Symbol**: XVL - - **Decimals**: 18 - -## RPC URLs - -QI M 2402133 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2402133 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402133 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402141.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402141.mdx deleted file mode 100644 index a2befa7f50..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402141.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402141 - Avalanche Blockchain Network -description: Explore QI M 2402141, a blockchain network with chain ID 99947. Learn about its native currency, QI M 2402141 Token, and how to interact with the network. ---- - -# QI M 2402141 - -QI M 2402141 is a blockchain network with chain ID 99947. - -## Network Details - -- **Chain ID**: 99947 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402141 -- **Network ID**: 99947 -- **Currency**: - - **Name**: QI M 2402141 Token - - **Symbol**: CYB - - **Decimals**: 18 - -## RPC URLs - -QI M 2402141 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2402141 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402141 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402272.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2402272.mdx deleted file mode 100644 index a09cc38995..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2402272.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2402272 - Avalanche Blockchain Network -description: Explore QI M 2402272, a blockchain network with chain ID 23444. Learn about its native currency, QI M 2402272 Token, and how to interact with the network. ---- - -# QI M 2402272 - -QI M 2402272 is a blockchain network with chain ID 23444. - -## Network Details - -- **Chain ID**: 23444 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2402272 -- **Network ID**: 23444 -- **Currency**: - - **Name**: QI M 2402272 Token - - **Symbol**: OVU - - **Decimals**: 18 - -## RPC URLs - -QI M 2402272 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2402272 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2402272 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi-m-2403051-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi-m-2403051-testnet.mdx deleted file mode 100644 index ad22522db3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi-m-2403051-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI M 2403051 Testnet - Avalanche Blockchain Network -description: Explore QI M 2403051 Testnet, a blockchain network with chain ID 7326. Learn about its native currency, QI M 2403051 Testnet Token, and how to interact with the network. ---- - -# QI M 2403051 Testnet - -QI M 2403051 Testnet is a blockchain network with chain ID 7326. - -## Network Details - -- **Chain ID**: 7326 -- **Chain Name**: Avalanche -- **Short Name**: QI M 2403051 Testnet -- **Network ID**: 7326 -- **Currency**: - - **Name**: QI M 2403051 Testnet Token - - **Symbol**: VVC - - **Decimals**: 18 - -## RPC URLs - -QI M 2403051 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI M 2403051 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI M 2403051 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0103i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0103i1.mdx deleted file mode 100644 index 2f13a17896..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0103i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0103I1 - Avalanche Blockchain Network -description: Explore QI0103I1, a blockchain network with chain ID 69399. Learn about its native currency, QI0103I1 Token, and how to interact with the network. ---- - -# QI0103I1 - -QI0103I1 is a blockchain network with chain ID 69399. - -## Network Details - -- **Chain ID**: 69399 -- **Chain Name**: Avalanche -- **Short Name**: QI0103I1 -- **Network ID**: 69399 -- **Currency**: - - **Name**: QI0103I1 Token - - **Symbol**: AYYX - - **Decimals**: 18 - -## RPC URLs - -QI0103I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0103I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0103I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi011624i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi011624i1.mdx deleted file mode 100644 index a35c0a2a61..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi011624i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI011624I1 - Avalanche Blockchain Network -description: Explore QI011624I1, a blockchain network with chain ID 61514. Learn about its native currency, QI011624I1 Token, and how to interact with the network. ---- - -# QI011624I1 - -QI011624I1 is a blockchain network with chain ID 61514. - -## Network Details - -- **Chain ID**: 61514 -- **Chain Name**: Avalanche -- **Short Name**: QI011624I1 -- **Network ID**: 61514 -- **Currency**: - - **Name**: QI011624I1 Token - - **Symbol**: DGQ - - **Decimals**: 18 - -## RPC URLs - -QI011624I1 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/e81adde6-3c1b-46ce-8dfe-e7a689f8c7eb - -## QI011624I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI011624I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-83900.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-83900.mdx deleted file mode 100644 index 902b5a45a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-83900.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0122I1 Testnet - Avalanche Blockchain Network -description: Explore QI0122I1 Testnet, a blockchain network with chain ID 83900. Learn about its native currency, QI0122I1 Testnet Token, and how to interact with the network. ---- - -# QI0122I1 Testnet - -QI0122I1 Testnet is a blockchain network with chain ID 83900. - -## Network Details - -- **Chain ID**: 83900 -- **Chain Name**: Avalanche -- **Short Name**: QI0122I1 Testnet -- **Network ID**: 83900 -- **Currency**: - - **Name**: QI0122I1 Testnet Token - - **Symbol**: XTT - - **Decimals**: 18 - -## RPC URLs - -QI0122I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/a5f62fea-1375-4ddd-b88f-72b56b435259 - -## QI0122I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0122I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-85678.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-85678.mdx deleted file mode 100644 index d7c1070c49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet-85678.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0122I1 Testnet - Avalanche Blockchain Network -description: Explore QI0122I1 Testnet, a blockchain network with chain ID 85678. Learn about its native currency, QI0122I1 Testnet Token, and how to interact with the network. ---- - -# QI0122I1 Testnet - -QI0122I1 Testnet is a blockchain network with chain ID 85678. - -## Network Details - -- **Chain ID**: 85678 -- **Chain Name**: Avalanche -- **Short Name**: QI0122I1 Testnet -- **Network ID**: 85678 -- **Currency**: - - **Name**: QI0122I1 Testnet Token - - **Symbol**: KIP - - **Decimals**: 18 - -## RPC URLs - -QI0122I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0122I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0122I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet.mdx deleted file mode 100644 index e2a94063b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0122i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0122I1 Testnet - Avalanche Blockchain Network -description: Explore QI0122I1 Testnet, a blockchain network with chain ID 50059. Learn about its native currency, QI0122I1 Testnet Token, and how to interact with the network. ---- - -# QI0122I1 Testnet - -QI0122I1 Testnet is a blockchain network with chain ID 50059. - -## Network Details - -- **Chain ID**: 50059 -- **Chain Name**: Avalanche -- **Short Name**: QI0122I1 Testnet -- **Network ID**: 50059 -- **Currency**: - - **Name**: QI0122I1 Testnet Token - - **Symbol**: MPX - - **Decimals**: 18 - -## RPC URLs - -QI0122I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0122I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0122I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0130i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0130i1.mdx deleted file mode 100644 index c02c257fe5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0130i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0130I1 - Avalanche Blockchain Network -description: Explore QI0130I1, a blockchain network with chain ID 97622. Learn about its native currency, QI0130I1 Token, and how to interact with the network. ---- - -# QI0130I1 - -QI0130I1 is a blockchain network with chain ID 97622. - -## Network Details - -- **Chain ID**: 97622 -- **Chain Name**: Avalanche -- **Short Name**: QI0130I1 -- **Network ID**: 97622 -- **Currency**: - - **Name**: QI0130I1 Token - - **Symbol**: NZY - - **Decimals**: 18 - -## RPC URLs - -QI0130I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0130I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0130I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0130i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0130i2.mdx deleted file mode 100644 index b699265fe3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0130i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0130I2 - Avalanche Blockchain Network -description: Explore QI0130I2, a blockchain network with chain ID 48267. Learn about its native currency, QI0130I2 Token, and how to interact with the network. ---- - -# QI0130I2 - -QI0130I2 is a blockchain network with chain ID 48267. - -## Network Details - -- **Chain ID**: 48267 -- **Chain Name**: Avalanche -- **Short Name**: QI0130I2 -- **Network ID**: 48267 -- **Currency**: - - **Name**: QI0130I2 Token - - **Symbol**: NZY - - **Decimals**: 18 - -## RPC URLs - -QI0130I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0130I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0130I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0205i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0205i1.mdx deleted file mode 100644 index 80434cc872..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0205i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0205I1 - Avalanche Blockchain Network -description: Explore QI0205I1, a blockchain network with chain ID 7640. Learn about its native currency, QI0205I1 Token, and how to interact with the network. ---- - -# QI0205I1 - -QI0205I1 is a blockchain network with chain ID 7640. - -## Network Details - -- **Chain ID**: 7640 -- **Chain Name**: Avalanche -- **Short Name**: QI0205I1 -- **Network ID**: 7640 -- **Currency**: - - **Name**: QI0205I1 Token - - **Symbol**: KOA - - **Decimals**: 18 - -## RPC URLs - -QI0205I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0205I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0205I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0209i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0209i2.mdx deleted file mode 100644 index 63526a5c00..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0209i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0209I2 - Avalanche Blockchain Network -description: Explore QI0209I2, a blockchain network with chain ID 82552. Learn about its native currency, QI0209I2 Token, and how to interact with the network. ---- - -# QI0209I2 - -QI0209I2 is a blockchain network with chain ID 82552. - -## Network Details - -- **Chain ID**: 82552 -- **Chain Name**: Avalanche -- **Short Name**: QI0209I2 -- **Network ID**: 82552 -- **Currency**: - - **Name**: QI0209I2 Token - - **Symbol**: BLOX - - **Decimals**: 18 - -## RPC URLs - -QI0209I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0209I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0209I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0209i3.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0209i3.mdx deleted file mode 100644 index 467b79530e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0209i3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0209I3 - Avalanche Blockchain Network -description: Explore QI0209I3, a blockchain network with chain ID 58064. Learn about its native currency, QI0209I3 Token, and how to interact with the network. ---- - -# QI0209I3 - -QI0209I3 is a blockchain network with chain ID 58064. - -## Network Details - -- **Chain ID**: 58064 -- **Chain Name**: Avalanche -- **Short Name**: QI0209I3 -- **Network ID**: 58064 -- **Currency**: - - **Name**: QI0209I3 Token - - **Symbol**: BLOX - - **Decimals**: 18 - -## RPC URLs - -QI0209I3 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0209I3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0209I3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0213i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0213i1.mdx deleted file mode 100644 index 71a63624de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0213i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0213I1 - Avalanche Blockchain Network -description: Explore QI0213I1, a blockchain network with chain ID 46092. Learn about its native currency, QI0213I1 Token, and how to interact with the network. ---- - -# QI0213I1 - -QI0213I1 is a blockchain network with chain ID 46092. - -## Network Details - -- **Chain ID**: 46092 -- **Chain Name**: Avalanche -- **Short Name**: QI0213I1 -- **Network ID**: 46092 -- **Currency**: - - **Name**: QI0213I1 Token - - **Symbol**: ORR - - **Decimals**: 18 - -## RPC URLs - -QI0213I1 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/f0aae4b1-a373-43ed-9e61-ba61d42131bb - -## QI0213I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0213I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0222i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0222i1.mdx deleted file mode 100644 index 4b60e86279..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0222i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0222I1 - Avalanche Blockchain Network -description: Explore QI0222I1, a blockchain network with chain ID 99132. Learn about its native currency, QI0222I1 Token, and how to interact with the network. ---- - -# QI0222I1 - -QI0222I1 is a blockchain network with chain ID 99132. - -## Network Details - -- **Chain ID**: 99132 -- **Chain Name**: Avalanche -- **Short Name**: QI0222I1 -- **Network ID**: 99132 -- **Currency**: - - **Name**: QI0222I1 Token - - **Symbol**: ZKUx - - **Decimals**: 18 - -## RPC URLs - -QI0222I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0222I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0222I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0222i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0222i2.mdx deleted file mode 100644 index 818aebf906..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0222i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0222I2 - Avalanche Blockchain Network -description: Explore QI0222I2, a blockchain network with chain ID 93625. Learn about its native currency, QI0222I2 Token, and how to interact with the network. ---- - -# QI0222I2 - -QI0222I2 is a blockchain network with chain ID 93625. - -## Network Details - -- **Chain ID**: 93625 -- **Chain Name**: Avalanche -- **Short Name**: QI0222I2 -- **Network ID**: 93625 -- **Currency**: - - **Name**: QI0222I2 Token - - **Symbol**: INK - - **Decimals**: 18 - -## RPC URLs - -QI0222I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0222I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0222I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0227i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0227i1.mdx deleted file mode 100644 index 7ecef2b1e5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0227i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0227I1 - Avalanche Blockchain Network -description: Explore QI0227I1, a blockchain network with chain ID 38085. Learn about its native currency, QI0227I1 Token, and how to interact with the network. ---- - -# QI0227I1 - -QI0227I1 is a blockchain network with chain ID 38085. - -## Network Details - -- **Chain ID**: 38085 -- **Chain Name**: Avalanche -- **Short Name**: QI0227I1 -- **Network ID**: 38085 -- **Currency**: - - **Name**: QI0227I1 Token - - **Symbol**: ULH - - **Decimals**: 18 - -## RPC URLs - -QI0227I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0227I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0227I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0304i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0304i1-testnet.mdx deleted file mode 100644 index 08430e17d0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0304i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0304I1 Testnet - Avalanche Blockchain Network -description: Explore QI0304I1 Testnet, a blockchain network with chain ID 52150. Learn about its native currency, QI0304I1 Testnet Token, and how to interact with the network. ---- - -# QI0304I1 Testnet - -QI0304I1 Testnet is a blockchain network with chain ID 52150. - -## Network Details - -- **Chain ID**: 52150 -- **Chain Name**: Avalanche -- **Short Name**: QI0304I1 Testnet -- **Network ID**: 52150 -- **Currency**: - - **Name**: QI0304I1 Testnet Token - - **Symbol**: LOD - - **Decimals**: 18 - -## RPC URLs - -QI0304I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0304I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0304I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0304i2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0304i2-testnet.mdx deleted file mode 100644 index 971d735212..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0304i2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0304I2 Testnet - Avalanche Blockchain Network -description: Explore QI0304I2 Testnet, a blockchain network with chain ID 11198. Learn about its native currency, QI0304I2 Testnet Token, and how to interact with the network. ---- - -# QI0304I2 Testnet - -QI0304I2 Testnet is a blockchain network with chain ID 11198. - -## Network Details - -- **Chain ID**: 11198 -- **Chain Name**: Avalanche -- **Short Name**: QI0304I2 Testnet -- **Network ID**: 11198 -- **Currency**: - - **Name**: QI0304I2 Testnet Token - - **Symbol**: LOD - - **Decimals**: 18 - -## RPC URLs - -QI0304I2 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0304I2 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0304I2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0304i3-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0304i3-testnet.mdx deleted file mode 100644 index 229f50ded3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0304i3-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0304I3 Testnet - Avalanche Blockchain Network -description: Explore QI0304I3 Testnet, a blockchain network with chain ID 89327. Learn about its native currency, QI0304I3 Testnet Token, and how to interact with the network. ---- - -# QI0304I3 Testnet - -QI0304I3 Testnet is a blockchain network with chain ID 89327. - -## Network Details - -- **Chain ID**: 89327 -- **Chain Name**: Avalanche -- **Short Name**: QI0304I3 Testnet -- **Network ID**: 89327 -- **Currency**: - - **Name**: QI0304I3 Testnet Token - - **Symbol**: ZIK - - **Decimals**: 18 - -## RPC URLs - -QI0304I3 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0304I3 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0304I3 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0304s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0304s1-testnet.mdx deleted file mode 100644 index b86917737e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0304s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0304s1 Testnet - Avalanche Blockchain Network -description: Explore QI0304s1 Testnet, a blockchain network with chain ID 19112. Learn about its native currency, QI0304s1 Testnet Token, and how to interact with the network. ---- - -# QI0304s1 Testnet - -QI0304s1 Testnet is a blockchain network with chain ID 19112. - -## Network Details - -- **Chain ID**: 19112 -- **Chain Name**: Avalanche -- **Short Name**: QI0304s1 Testnet -- **Network ID**: 19112 -- **Currency**: - - **Name**: QI0304s1 Testnet Token - - **Symbol**: LKG - - **Decimals**: 18 - -## RPC URLs - -QI0304s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0304s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0304s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0305i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0305i1-testnet.mdx deleted file mode 100644 index df5b385ca1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0305i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0305I1 Testnet - Avalanche Blockchain Network -description: Explore QI0305I1 Testnet, a blockchain network with chain ID 1614. Learn about its native currency, QI0305I1 Testnet Token, and how to interact with the network. ---- - -# QI0305I1 Testnet - -QI0305I1 Testnet is a blockchain network with chain ID 1614. - -## Network Details - -- **Chain ID**: 1614 -- **Chain Name**: Avalanche -- **Short Name**: QI0305I1 Testnet -- **Network ID**: 1614 -- **Currency**: - - **Name**: QI0305I1 Testnet Token - - **Symbol**: PDC - - **Decimals**: 18 - -## RPC URLs - -QI0305I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0305I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0305I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0315i2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0315i2-testnet.mdx deleted file mode 100644 index 77457f0396..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0315i2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0315I2 Testnet - Avalanche Blockchain Network -description: Explore QI0315I2 Testnet, a blockchain network with chain ID 24070. Learn about its native currency, QI0315I2 Testnet Token, and how to interact with the network. ---- - -# QI0315I2 Testnet - -QI0315I2 Testnet is a blockchain network with chain ID 24070. - -## Network Details - -- **Chain ID**: 24070 -- **Chain Name**: Avalanche -- **Short Name**: QI0315I2 Testnet -- **Network ID**: 24070 -- **Currency**: - - **Name**: QI0315I2 Testnet Token - - **Symbol**: GAW - - **Decimals**: 18 - -## RPC URLs - -QI0315I2 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0315I2 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0315I2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet-91041.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet-91041.mdx deleted file mode 100644 index c78e4da1b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet-91041.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0318I1 Testnet - Avalanche Blockchain Network -description: Explore QI0318I1 Testnet, a blockchain network with chain ID 91041. Learn about its native currency, QI0318I1 Testnet Token, and how to interact with the network. ---- - -# QI0318I1 Testnet - -QI0318I1 Testnet is a blockchain network with chain ID 91041. - -## Network Details - -- **Chain ID**: 91041 -- **Chain Name**: Avalanche -- **Short Name**: QI0318I1 Testnet -- **Network ID**: 91041 -- **Currency**: - - **Name**: QI0318I1 Testnet Token - - **Symbol**: DVN - - **Decimals**: 18 - -## RPC URLs - -QI0318I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0318I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0318I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet.mdx deleted file mode 100644 index 0b67b2573b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0318i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0318I1 Testnet - Avalanche Blockchain Network -description: Explore QI0318I1 Testnet, a blockchain network with chain ID 44850. Learn about its native currency, QI0318I1 Testnet Token, and how to interact with the network. ---- - -# QI0318I1 Testnet - -QI0318I1 Testnet is a blockchain network with chain ID 44850. - -## Network Details - -- **Chain ID**: 44850 -- **Chain Name**: Avalanche -- **Short Name**: QI0318I1 Testnet -- **Network ID**: 44850 -- **Currency**: - - **Name**: QI0318I1 Testnet Token - - **Symbol**: WJN - - **Decimals**: 18 - -## RPC URLs - -QI0318I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0318I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0318I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi032924-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi032924-testnet.mdx deleted file mode 100644 index f602c3cb49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi032924-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI032924 Testnet - Avalanche Blockchain Network -description: Explore QI032924 Testnet, a blockchain network with chain ID 96552. Learn about its native currency, QI032924 Testnet Token, and how to interact with the network. ---- - -# QI032924 Testnet - -QI032924 Testnet is a blockchain network with chain ID 96552. - -## Network Details - -- **Chain ID**: 96552 -- **Chain Name**: Avalanche -- **Short Name**: QI032924 Testnet -- **Network ID**: 96552 -- **Currency**: - - **Name**: QI032924 Testnet Token - - **Symbol**: KJA - - **Decimals**: 18 - -## RPC URLs - -QI032924 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI032924 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI032924 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0344s1-testne.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0344s1-testne.mdx deleted file mode 100644 index 3cb2d60985..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0344s1-testne.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0344s1 Testne - Avalanche Blockchain Network -description: Explore QI0344s1 Testne, a blockchain network with chain ID 51277. Learn about its native currency, QI0344s1 Testne Token, and how to interact with the network. ---- - -# QI0344s1 Testne - -QI0344s1 Testne is a blockchain network with chain ID 51277. - -## Network Details - -- **Chain ID**: 51277 -- **Chain Name**: Avalanche -- **Short Name**: QI0344s1 Testne -- **Network ID**: 51277 -- **Currency**: - - **Name**: QI0344s1 Testne Token - - **Symbol**: LKG - - **Decimals**: 18 - -## RPC URLs - -QI0344s1 Testne can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0344s1 Testne Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0344s1 Testne Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0408i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0408i1-testnet.mdx deleted file mode 100644 index 64547c0cf7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0408i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0408I1 Testnet - Avalanche Blockchain Network -description: Explore QI0408I1 Testnet, a blockchain network with chain ID 66042. Learn about its native currency, QI0408I1 Testnet Token, and how to interact with the network. ---- - -# QI0408I1 Testnet - -QI0408I1 Testnet is a blockchain network with chain ID 66042. - -## Network Details - -- **Chain ID**: 66042 -- **Chain Name**: Avalanche -- **Short Name**: QI0408I1 Testnet -- **Network ID**: 66042 -- **Currency**: - - **Name**: QI0408I1 Testnet Token - - **Symbol**: YXE - - **Decimals**: 18 - -## RPC URLs - -QI0408I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0408I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0408I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0408s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0408s1-testnet.mdx deleted file mode 100644 index 21418336fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0408s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0408s1 Testnet - Avalanche Blockchain Network -description: Explore QI0408s1 Testnet, a blockchain network with chain ID 68976. Learn about its native currency, QI0408s1 Testnet Token, and how to interact with the network. ---- - -# QI0408s1 Testnet - -QI0408s1 Testnet is a blockchain network with chain ID 68976. - -## Network Details - -- **Chain ID**: 68976 -- **Chain Name**: Avalanche -- **Short Name**: QI0408s1 Testnet -- **Network ID**: 68976 -- **Currency**: - - **Name**: QI0408s1 Testnet Token - - **Symbol**: ICV - - **Decimals**: 18 - -## RPC URLs - -QI0408s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0408s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0408s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0408s2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0408s2-testnet.mdx deleted file mode 100644 index ef41d37ddb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0408s2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0408s2 Testnet - Avalanche Blockchain Network -description: Explore QI0408s2 Testnet, a blockchain network with chain ID 33448. Learn about its native currency, QI0408s2 Testnet Token, and how to interact with the network. ---- - -# QI0408s2 Testnet - -QI0408s2 Testnet is a blockchain network with chain ID 33448. - -## Network Details - -- **Chain ID**: 33448 -- **Chain Name**: Avalanche -- **Short Name**: QI0408s2 Testnet -- **Network ID**: 33448 -- **Currency**: - - **Name**: QI0408s2 Testnet Token - - **Symbol**: QCE - - **Decimals**: 18 - -## RPC URLs - -QI0408s2 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0408s2 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0408s2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0408s3dev-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0408s3dev-testnet.mdx deleted file mode 100644 index 3893f811b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0408s3dev-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0408s3dev Testnet - Avalanche Blockchain Network -description: Explore QI0408s3dev Testnet, a blockchain network with chain ID 332323. Learn about its native currency, QI0408s3dev Testnet Token, and how to interact with the network. ---- - -# QI0408s3dev Testnet - -QI0408s3dev Testnet is a blockchain network with chain ID 332323. - -## Network Details - -- **Chain ID**: 332323 -- **Chain Name**: Avalanche -- **Short Name**: QI0408s3dev Testnet -- **Network ID**: 332323 -- **Currency**: - - **Name**: QI0408s3dev Testnet Token - - **Symbol**: REQ - - **Decimals**: 18 - -## RPC URLs - -QI0408s3dev Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0408s3dev Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0408s3dev Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0408s4-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0408s4-testnet.mdx deleted file mode 100644 index 4fc9b76553..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0408s4-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0408s4 Testnet - Avalanche Blockchain Network -description: Explore QI0408s4 Testnet, a blockchain network with chain ID 58474. Learn about its native currency, QI0408s4 Testnet Token, and how to interact with the network. ---- - -# QI0408s4 Testnet - -QI0408s4 Testnet is a blockchain network with chain ID 58474. - -## Network Details - -- **Chain ID**: 58474 -- **Chain Name**: Avalanche -- **Short Name**: QI0408s4 Testnet -- **Network ID**: 58474 -- **Currency**: - - **Name**: QI0408s4 Testnet Token - - **Symbol**: QCE - - **Decimals**: 18 - -## RPC URLs - -QI0408s4 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0408s4 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0408s4 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0409s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0409s1-testnet.mdx deleted file mode 100644 index a75a055c0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0409s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0409s1 Testnet - Avalanche Blockchain Network -description: Explore QI0409s1 Testnet, a blockchain network with chain ID 53687. Learn about its native currency, QI0409s1 Testnet Token, and how to interact with the network. ---- - -# QI0409s1 Testnet - -QI0409s1 Testnet is a blockchain network with chain ID 53687. - -## Network Details - -- **Chain ID**: 53687 -- **Chain Name**: Avalanche -- **Short Name**: QI0409s1 Testnet -- **Network ID**: 53687 -- **Currency**: - - **Name**: QI0409s1 Testnet Token - - **Symbol**: QCE - - **Decimals**: 18 - -## RPC URLs - -QI0409s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0409s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0409s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0416s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0416s1-testnet.mdx deleted file mode 100644 index fba48b8c21..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0416s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0416s1 Testnet - Avalanche Blockchain Network -description: Explore QI0416s1 Testnet, a blockchain network with chain ID 90663. Learn about its native currency, QI0416s1 Testnet Token, and how to interact with the network. ---- - -# QI0416s1 Testnet - -QI0416s1 Testnet is a blockchain network with chain ID 90663. - -## Network Details - -- **Chain ID**: 90663 -- **Chain Name**: Avalanche -- **Short Name**: QI0416s1 Testnet -- **Network ID**: 90663 -- **Currency**: - - **Name**: QI0416s1 Testnet Token - - **Symbol**: ZKE - - **Decimals**: 18 - -## RPC URLs - -QI0416s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0416s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0416s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0422i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0422i1-testnet.mdx deleted file mode 100644 index 32cd2d57d4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0422i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0422I1 Testnet - Avalanche Blockchain Network -description: Explore QI0422I1 Testnet, a blockchain network with chain ID 84860. Learn about its native currency, QI0422I1 Testnet Token, and how to interact with the network. ---- - -# QI0422I1 Testnet - -QI0422I1 Testnet is a blockchain network with chain ID 84860. - -## Network Details - -- **Chain ID**: 84860 -- **Chain Name**: Avalanche -- **Short Name**: QI0422I1 Testnet -- **Network ID**: 84860 -- **Currency**: - - **Name**: QI0422I1 Testnet Token - - **Symbol**: LLV - - **Decimals**: 18 - -## RPC URLs - -QI0422I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0422I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0422I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0422s2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0422s2-testnet.mdx deleted file mode 100644 index a8a91da483..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0422s2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0422s2 Testnet - Avalanche Blockchain Network -description: Explore QI0422s2 Testnet, a blockchain network with chain ID 33841. Learn about its native currency, QI0422s2 Testnet Token, and how to interact with the network. ---- - -# QI0422s2 Testnet - -QI0422s2 Testnet is a blockchain network with chain ID 33841. - -## Network Details - -- **Chain ID**: 33841 -- **Chain Name**: Avalanche -- **Short Name**: QI0422s2 Testnet -- **Network ID**: 33841 -- **Currency**: - - **Name**: QI0422s2 Testnet Token - - **Symbol**: HOS - - **Decimals**: 18 - -## RPC URLs - -QI0422s2 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0422s2 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0422s2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0423s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0423s1-testnet.mdx deleted file mode 100644 index 915c87b36c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0423s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0423s1 Testnet - Avalanche Blockchain Network -description: Explore QI0423s1 Testnet, a blockchain network with chain ID 82261. Learn about its native currency, QI0423s1 Testnet Token, and how to interact with the network. ---- - -# QI0423s1 Testnet - -QI0423s1 Testnet is a blockchain network with chain ID 82261. - -## Network Details - -- **Chain ID**: 82261 -- **Chain Name**: Avalanche -- **Short Name**: QI0423s1 Testnet -- **Network ID**: 82261 -- **Currency**: - - **Name**: QI0423s1 Testnet Token - - **Symbol**: PUU - - **Decimals**: 18 - -## RPC URLs - -QI0423s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0423s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0423s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0426s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0426s1-testnet.mdx deleted file mode 100644 index a4825bdeef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0426s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0426s1 Testnet - Avalanche Blockchain Network -description: Explore QI0426s1 Testnet, a blockchain network with chain ID 90871. Learn about its native currency, QI0426s1 Testnet Token, and how to interact with the network. ---- - -# QI0426s1 Testnet - -QI0426s1 Testnet is a blockchain network with chain ID 90871. - -## Network Details - -- **Chain ID**: 90871 -- **Chain Name**: Avalanche -- **Short Name**: QI0426s1 Testnet -- **Network ID**: 90871 -- **Currency**: - - **Name**: QI0426s1 Testnet Token - - **Symbol**: WDC - - **Decimals**: 18 - -## RPC URLs - -QI0426s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0426s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0426s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0429i3.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0429i3.mdx deleted file mode 100644 index c7d64116cb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0429i3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0429I3 - Avalanche Blockchain Network -description: Explore QI0429I3, a blockchain network with chain ID 56636. Learn about its native currency, QI0429I3 Token, and how to interact with the network. ---- - -# QI0429I3 - -QI0429I3 is a blockchain network with chain ID 56636. - -## Network Details - -- **Chain ID**: 56636 -- **Chain Name**: Avalanche -- **Short Name**: QI0429I3 -- **Network ID**: 56636 -- **Currency**: - - **Name**: QI0429I3 Token - - **Symbol**: IJK - - **Decimals**: 18 - -## RPC URLs - -QI0429I3 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/b6421f40-aa32-4cdc-98f2-bf22d0db7b4f - -## QI0429I3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0429I3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430i1-64943.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430i1-64943.mdx deleted file mode 100644 index 1f97bdc056..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430i1-64943.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430I1 - Avalanche Blockchain Network -description: Explore QI0430I1, a blockchain network with chain ID 64943. Learn about its native currency, QI0430I1 Token, and how to interact with the network. ---- - -# QI0430I1 - -QI0430I1 is a blockchain network with chain ID 64943. - -## Network Details - -- **Chain ID**: 64943 -- **Chain Name**: Avalanche -- **Short Name**: QI0430I1 -- **Network ID**: 64943 -- **Currency**: - - **Name**: QI0430I1 Token - - **Symbol**: JIQ - - **Decimals**: 18 - -## RPC URLs - -QI0430I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430i1.mdx deleted file mode 100644 index 63465115b7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430I1 - Avalanche Blockchain Network -description: Explore QI0430I1, a blockchain network with chain ID 54688. Learn about its native currency, QI0430I1 Token, and how to interact with the network. ---- - -# QI0430I1 - -QI0430I1 is a blockchain network with chain ID 54688. - -## Network Details - -- **Chain ID**: 54688 -- **Chain Name**: Avalanche -- **Short Name**: QI0430I1 -- **Network ID**: 54688 -- **Currency**: - - **Name**: QI0430I1 Token - - **Symbol**: ILF - - **Decimals**: 18 - -## RPC URLs - -QI0430I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430i2.mdx deleted file mode 100644 index 628a661082..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430I2 - Avalanche Blockchain Network -description: Explore QI0430I2, a blockchain network with chain ID 21178. Learn about its native currency, QI0430I2 Token, and how to interact with the network. ---- - -# QI0430I2 - -QI0430I2 is a blockchain network with chain ID 21178. - -## Network Details - -- **Chain ID**: 21178 -- **Chain Name**: Avalanche -- **Short Name**: QI0430I2 -- **Network ID**: 21178 -- **Currency**: - - **Name**: QI0430I2 Token - - **Symbol**: ETI - - **Decimals**: 18 - -## RPC URLs - -QI0430I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430s1.mdx deleted file mode 100644 index 6077a9d495..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430s1 - Avalanche Blockchain Network -description: Explore QI0430s1, a blockchain network with chain ID 62040. Learn about its native currency, QI0430s1 Token, and how to interact with the network. ---- - -# QI0430s1 - -QI0430s1 is a blockchain network with chain ID 62040. - -## Network Details - -- **Chain ID**: 62040 -- **Chain Name**: Avalanche -- **Short Name**: QI0430s1 -- **Network ID**: 62040 -- **Currency**: - - **Name**: QI0430s1 Token - - **Symbol**: SWS - - **Decimals**: 18 - -## RPC URLs - -QI0430s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430s2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430s2.mdx deleted file mode 100644 index cdb6f341b9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430s2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430s2 - Avalanche Blockchain Network -description: Explore QI0430s2, a blockchain network with chain ID 46565. Learn about its native currency, QI0430s2 Token, and how to interact with the network. ---- - -# QI0430s2 - -QI0430s2 is a blockchain network with chain ID 46565. - -## Network Details - -- **Chain ID**: 46565 -- **Chain Name**: Avalanche -- **Short Name**: QI0430s2 -- **Network ID**: 46565 -- **Currency**: - - **Name**: QI0430s2 Token - - **Symbol**: SWS - - **Decimals**: 18 - -## RPC URLs - -QI0430s2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430s2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430s2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0430s4.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0430s4.mdx deleted file mode 100644 index 8897a78330..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0430s4.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0430s4 - Avalanche Blockchain Network -description: Explore QI0430s4, a blockchain network with chain ID 51440. Learn about its native currency, QI0430s4 Token, and how to interact with the network. ---- - -# QI0430s4 - -QI0430s4 is a blockchain network with chain ID 51440. - -## Network Details - -- **Chain ID**: 51440 -- **Chain Name**: Avalanche -- **Short Name**: QI0430s4 -- **Network ID**: 51440 -- **Currency**: - - **Name**: QI0430s4 Token - - **Symbol**: SWS - - **Decimals**: 18 - -## RPC URLs - -QI0430s4 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0430s4 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0430s4 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0506i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0506i1.mdx deleted file mode 100644 index 30cce1fa18..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0506i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0506I1 - Avalanche Blockchain Network -description: Explore QI0506I1, a blockchain network with chain ID 91924. Learn about its native currency, QI0506I1 Token, and how to interact with the network. ---- - -# QI0506I1 - -QI0506I1 is a blockchain network with chain ID 91924. - -## Network Details - -- **Chain ID**: 91924 -- **Chain Name**: Avalanche -- **Short Name**: QI0506I1 -- **Network ID**: 91924 -- **Currency**: - - **Name**: QI0506I1 Token - - **Symbol**: KQA - - **Decimals**: 18 - -## RPC URLs - -QI0506I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0506I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0506I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0506i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0506i2.mdx deleted file mode 100644 index d5d9700069..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0506i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0506I2 - Avalanche Blockchain Network -description: Explore QI0506I2, a blockchain network with chain ID 92185. Learn about its native currency, QI0506I2 Token, and how to interact with the network. ---- - -# QI0506I2 - -QI0506I2 is a blockchain network with chain ID 92185. - -## Network Details - -- **Chain ID**: 92185 -- **Chain Name**: Avalanche -- **Short Name**: QI0506I2 -- **Network ID**: 92185 -- **Currency**: - - **Name**: QI0506I2 Token - - **Symbol**: EXW - - **Decimals**: 18 - -## RPC URLs - -QI0506I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0506I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0506I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0506s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0506s1.mdx deleted file mode 100644 index 9768a4e75d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0506s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0506s1 - Avalanche Blockchain Network -description: Explore QI0506s1, a blockchain network with chain ID 91399. Learn about its native currency, QI0506s1 Token, and how to interact with the network. ---- - -# QI0506s1 - -QI0506s1 is a blockchain network with chain ID 91399. - -## Network Details - -- **Chain ID**: 91399 -- **Chain Name**: Avalanche -- **Short Name**: QI0506s1 -- **Network ID**: 91399 -- **Currency**: - - **Name**: QI0506s1 Token - - **Symbol**: NGH - - **Decimals**: 18 - -## RPC URLs - -QI0506s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0506s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0506s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0513i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0513i2.mdx deleted file mode 100644 index 5d84a202d5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0513i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0513I2 - Avalanche Blockchain Network -description: Explore QI0513I2, a blockchain network with chain ID 79466. Learn about its native currency, QI0513I2 Token, and how to interact with the network. ---- - -# QI0513I2 - -QI0513I2 is a blockchain network with chain ID 79466. - -## Network Details - -- **Chain ID**: 79466 -- **Chain Name**: Avalanche -- **Short Name**: QI0513I2 -- **Network ID**: 79466 -- **Currency**: - - **Name**: QI0513I2 Token - - **Symbol**: YSC - - **Decimals**: 18 - -## RPC URLs - -QI0513I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0513I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0513I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0514s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0514s1.mdx deleted file mode 100644 index 9c0cc208fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0514s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0514s1 - Avalanche Blockchain Network -description: Explore QI0514s1, a blockchain network with chain ID 68042. Learn about its native currency, QI0514s1 Token, and how to interact with the network. ---- - -# QI0514s1 - -QI0514s1 is a blockchain network with chain ID 68042. - -## Network Details - -- **Chain ID**: 68042 -- **Chain Name**: Avalanche -- **Short Name**: QI0514s1 -- **Network ID**: 68042 -- **Currency**: - - **Name**: QI0514s1 Token - - **Symbol**: TQA - - **Decimals**: 18 - -## RPC URLs - -QI0514s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0514s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0514s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0516s1dev.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0516s1dev.mdx deleted file mode 100644 index 95543c6592..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0516s1dev.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0516s1dev - Avalanche Blockchain Network -description: Explore QI0516s1dev, a blockchain network with chain ID 62293. Learn about its native currency, QI0516s1dev Token, and how to interact with the network. ---- - -# QI0516s1dev - -QI0516s1dev is a blockchain network with chain ID 62293. - -## Network Details - -- **Chain ID**: 62293 -- **Chain Name**: Avalanche -- **Short Name**: QI0516s1dev -- **Network ID**: 62293 -- **Currency**: - - **Name**: QI0516s1dev Token - - **Symbol**: OMF - - **Decimals**: 18 - -## RPC URLs - -QI0516s1dev can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0516s1dev Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0516s1dev Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0517i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0517i1.mdx deleted file mode 100644 index 142d594bf7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0517i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0517I1 - Avalanche Blockchain Network -description: Explore QI0517I1, a blockchain network with chain ID 77898. Learn about its native currency, QI0517I1 Token, and how to interact with the network. ---- - -# QI0517I1 - -QI0517I1 is a blockchain network with chain ID 77898. - -## Network Details - -- **Chain ID**: 77898 -- **Chain Name**: Avalanche -- **Short Name**: QI0517I1 -- **Network ID**: 77898 -- **Currency**: - - **Name**: QI0517I1 Token - - **Symbol**: YGV - - **Decimals**: 18 - -## RPC URLs - -QI0517I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0517I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0517I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0520i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0520i1.mdx deleted file mode 100644 index d164f4b04e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0520i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0520I1 - Avalanche Blockchain Network -description: Explore QI0520I1, a blockchain network with chain ID 98273. Learn about its native currency, QI0520I1 Token, and how to interact with the network. ---- - -# QI0520I1 - -QI0520I1 is a blockchain network with chain ID 98273. - -## Network Details - -- **Chain ID**: 98273 -- **Chain Name**: Avalanche -- **Short Name**: QI0520I1 -- **Network ID**: 98273 -- **Currency**: - - **Name**: QI0520I1 Token - - **Symbol**: YZG - - **Decimals**: 18 - -## RPC URLs - -QI0520I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0520I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0520I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0520i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0520i2.mdx deleted file mode 100644 index 4a95395297..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0520i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0520I2 - Avalanche Blockchain Network -description: Explore QI0520I2, a blockchain network with chain ID 46145. Learn about its native currency, QI0520I2 Token, and how to interact with the network. ---- - -# QI0520I2 - -QI0520I2 is a blockchain network with chain ID 46145. - -## Network Details - -- **Chain ID**: 46145 -- **Chain Name**: Avalanche -- **Short Name**: QI0520I2 -- **Network ID**: 46145 -- **Currency**: - - **Name**: QI0520I2 Token - - **Symbol**: YZG - - **Decimals**: 18 - -## RPC URLs - -QI0520I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0520I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0520I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0521s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0521s1t.mdx deleted file mode 100644 index 5499d6929d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0521s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0521s1t - Avalanche Blockchain Network -description: Explore QI0521s1t, a blockchain network with chain ID 95446. Learn about its native currency, QI0521s1t Token, and how to interact with the network. ---- - -# QI0521s1t - -QI0521s1t is a blockchain network with chain ID 95446. - -## Network Details - -- **Chain ID**: 95446 -- **Chain Name**: Avalanche -- **Short Name**: QI0521s1t -- **Network ID**: 95446 -- **Currency**: - - **Name**: QI0521s1t Token - - **Symbol**: YFT - - **Decimals**: 18 - -## RPC URLs - -QI0521s1t can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0521s1t Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0521s1t Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0521s2t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0521s2t.mdx deleted file mode 100644 index f1c5e67a0b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0521s2t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0521S2T - Avalanche Blockchain Network -description: Explore QI0521S2T, a blockchain network with chain ID 14255. Learn about its native currency, QI0521S2T Token, and how to interact with the network. ---- - -# QI0521S2T - -QI0521S2T is a blockchain network with chain ID 14255. - -## Network Details - -- **Chain ID**: 14255 -- **Chain Name**: Avalanche -- **Short Name**: QI0521S2T -- **Network ID**: 14255 -- **Currency**: - - **Name**: QI0521S2T Token - - **Symbol**: YFT - - **Decimals**: 18 - -## RPC URLs - -QI0521S2T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0521S2T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0521S2T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0521s3t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0521s3t.mdx deleted file mode 100644 index c1ca132f01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0521s3t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0521s3t - Avalanche Blockchain Network -description: Explore QI0521s3t, a blockchain network with chain ID 19110. Learn about its native currency, QI0521s3t Token, and how to interact with the network. ---- - -# QI0521s3t - -QI0521s3t is a blockchain network with chain ID 19110. - -## Network Details - -- **Chain ID**: 19110 -- **Chain Name**: Avalanche -- **Short Name**: QI0521s3t -- **Network ID**: 19110 -- **Currency**: - - **Name**: QI0521s3t Token - - **Symbol**: VTV - - **Decimals**: 18 - -## RPC URLs - -QI0521s3t can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0521s3t Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0521s3t Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0521s4t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0521s4t.mdx deleted file mode 100644 index caa8b0e46c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0521s4t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0521s4t - Avalanche Blockchain Network -description: Explore QI0521s4t, a blockchain network with chain ID 79062. Learn about its native currency, QI0521s4t Token, and how to interact with the network. ---- - -# QI0521s4t - -QI0521s4t is a blockchain network with chain ID 79062. - -## Network Details - -- **Chain ID**: 79062 -- **Chain Name**: Avalanche -- **Short Name**: QI0521s4t -- **Network ID**: 79062 -- **Currency**: - - **Name**: QI0521s4t Token - - **Symbol**: VTV - - **Decimals**: 18 - -## RPC URLs - -QI0521s4t can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0521s4t Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0521s4t Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0521s5t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0521s5t.mdx deleted file mode 100644 index 7f0d5741a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0521s5t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0521s5t - Avalanche Blockchain Network -description: Explore QI0521s5t, a blockchain network with chain ID 949. Learn about its native currency, QI0521s5t Token, and how to interact with the network. ---- - -# QI0521s5t - -QI0521s5t is a blockchain network with chain ID 949. - -## Network Details - -- **Chain ID**: 949 -- **Chain Name**: Avalanche -- **Short Name**: QI0521s5t -- **Network ID**: 949 -- **Currency**: - - **Name**: QI0521s5t Token - - **Symbol**: VTV - - **Decimals**: 18 - -## RPC URLs - -QI0521s5t can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0521s5t Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0521s5t Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0523i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0523i1.mdx deleted file mode 100644 index 36fdd9d99f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0523i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0523I1 - Avalanche Blockchain Network -description: Explore QI0523I1, a blockchain network with chain ID 95598. Learn about its native currency, QI0523I1 Token, and how to interact with the network. ---- - -# QI0523I1 - -QI0523I1 is a blockchain network with chain ID 95598. - -## Network Details - -- **Chain ID**: 95598 -- **Chain Name**: Avalanche -- **Short Name**: QI0523I1 -- **Network ID**: 95598 -- **Currency**: - - **Name**: QI0523I1 Token - - **Symbol**: TQQ - - **Decimals**: 18 - -## RPC URLs - -QI0523I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0523I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0523I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0523s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0523s1t.mdx deleted file mode 100644 index 0fff3dabf4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0523s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0523s1t - Avalanche Blockchain Network -description: Explore QI0523s1t, a blockchain network with chain ID 64326. Learn about its native currency, QI0523s1t Token, and how to interact with the network. ---- - -# QI0523s1t - -QI0523s1t is a blockchain network with chain ID 64326. - -## Network Details - -- **Chain ID**: 64326 -- **Chain Name**: Avalanche -- **Short Name**: QI0523s1t -- **Network ID**: 64326 -- **Currency**: - - **Name**: QI0523s1t Token - - **Symbol**: ADN - - **Decimals**: 18 - -## RPC URLs - -QI0523s1t can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0523s1t Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0523s1t Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0523t1dt.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0523t1dt.mdx deleted file mode 100644 index 5bdd08d093..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0523t1dt.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0523T1DT - Avalanche Blockchain Network -description: Explore QI0523T1DT, a blockchain network with chain ID 67700. Learn about its native currency, QI0523T1DT Token, and how to interact with the network. ---- - -# QI0523T1DT - -QI0523T1DT is a blockchain network with chain ID 67700. - -## Network Details - -- **Chain ID**: 67700 -- **Chain Name**: Avalanche -- **Short Name**: QI0523T1DT -- **Network ID**: 67700 -- **Currency**: - - **Name**: QI0523T1DT Token - - **Symbol**: WYI - - **Decimals**: 18 - -## RPC URLs - -QI0523T1DT can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0523T1DT Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0523T1DT Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0523t2td.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0523t2td.mdx deleted file mode 100644 index 47a241628f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0523t2td.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0523T2TD - Avalanche Blockchain Network -description: Explore QI0523T2TD, a blockchain network with chain ID 70408. Learn about its native currency, QI0523T2TD Token, and how to interact with the network. ---- - -# QI0523T2TD - -QI0523T2TD is a blockchain network with chain ID 70408. - -## Network Details - -- **Chain ID**: 70408 -- **Chain Name**: Avalanche -- **Short Name**: QI0523T2TD -- **Network ID**: 70408 -- **Currency**: - - **Name**: QI0523T2TD Token - - **Symbol**: WYI - - **Decimals**: 18 - -## RPC URLs - -QI0523T2TD can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0523T2TD Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0523T2TD Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0524i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0524i1.mdx deleted file mode 100644 index bf3c198961..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0524i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0524I1 - Avalanche Blockchain Network -description: Explore QI0524I1, a blockchain network with chain ID 64029. Learn about its native currency, QI0524I1 Token, and how to interact with the network. ---- - -# QI0524I1 - -QI0524I1 is a blockchain network with chain ID 64029. - -## Network Details - -- **Chain ID**: 64029 -- **Chain Name**: Avalanche -- **Short Name**: QI0524I1 -- **Network ID**: 64029 -- **Currency**: - - **Name**: QI0524I1 Token - - **Symbol**: LHU - - **Decimals**: 18 - -## RPC URLs - -QI0524I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0524I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0524I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0527t1td.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0527t1td.mdx deleted file mode 100644 index 985112e1de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0527t1td.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0527T1TD - Avalanche Blockchain Network -description: Explore QI0527T1TD, a blockchain network with chain ID 97590. Learn about its native currency, QI0527T1TD Token, and how to interact with the network. ---- - -# QI0527T1TD - -QI0527T1TD is a blockchain network with chain ID 97590. - -## Network Details - -- **Chain ID**: 97590 -- **Chain Name**: Avalanche -- **Short Name**: QI0527T1TD -- **Network ID**: 97590 -- **Currency**: - - **Name**: QI0527T1TD Token - - **Symbol**: WYI - - **Decimals**: 18 - -## RPC URLs - -QI0527T1TD can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0527T1TD Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0527T1TD Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0528i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0528i1.mdx deleted file mode 100644 index 3fff6fc8df..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0528i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0528I1 - Avalanche Blockchain Network -description: Explore QI0528I1, a blockchain network with chain ID 30289. Learn about its native currency, QI0528I1 Token, and how to interact with the network. ---- - -# QI0528I1 - -QI0528I1 is a blockchain network with chain ID 30289. - -## Network Details - -- **Chain ID**: 30289 -- **Chain Name**: Avalanche -- **Short Name**: QI0528I1 -- **Network ID**: 30289 -- **Currency**: - - **Name**: QI0528I1 Token - - **Symbol**: JQI - - **Decimals**: 18 - -## RPC URLs - -QI0528I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0528I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0528I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0603i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0603i1.mdx deleted file mode 100644 index 505a6e010e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0603i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0603I1 - Avalanche Blockchain Network -description: Explore QI0603I1, a blockchain network with chain ID 16587. Learn about its native currency, QI0603I1 Token, and how to interact with the network. ---- - -# QI0603I1 - -QI0603I1 is a blockchain network with chain ID 16587. - -## Network Details - -- **Chain ID**: 16587 -- **Chain Name**: Avalanche -- **Short Name**: QI0603I1 -- **Network ID**: 16587 -- **Currency**: - - **Name**: QI0603I1 Token - - **Symbol**: ODK - - **Decimals**: 18 - -## RPC URLs - -QI0603I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0603I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0603I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0603i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0603i2.mdx deleted file mode 100644 index 44cc811cf8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0603i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0603I2 - Avalanche Blockchain Network -description: Explore QI0603I2, a blockchain network with chain ID 90343. Learn about its native currency, QI0603I2 Token, and how to interact with the network. ---- - -# QI0603I2 - -QI0603I2 is a blockchain network with chain ID 90343. - -## Network Details - -- **Chain ID**: 90343 -- **Chain Name**: Avalanche -- **Short Name**: QI0603I2 -- **Network ID**: 90343 -- **Currency**: - - **Name**: QI0603I2 Token - - **Symbol**: UQI - - **Decimals**: 18 - -## RPC URLs - -QI0603I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0603I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0603I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0603i3.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0603i3.mdx deleted file mode 100644 index d2abc045a3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0603i3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0603I3 - Avalanche Blockchain Network -description: Explore QI0603I3, a blockchain network with chain ID 12885. Learn about its native currency, QI0603I3 Token, and how to interact with the network. ---- - -# QI0603I3 - -QI0603I3 is a blockchain network with chain ID 12885. - -## Network Details - -- **Chain ID**: 12885 -- **Chain Name**: Avalanche -- **Short Name**: QI0603I3 -- **Network ID**: 12885 -- **Currency**: - - **Name**: QI0603I3 Token - - **Symbol**: UQI - - **Decimals**: 18 - -## RPC URLs - -QI0603I3 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0603I3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0603I3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0603i4.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0603i4.mdx deleted file mode 100644 index 91817dec96..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0603i4.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0603I4 - Avalanche Blockchain Network -description: Explore QI0603I4, a blockchain network with chain ID 53399. Learn about its native currency, QI0603I4 Token, and how to interact with the network. ---- - -# QI0603I4 - -QI0603I4 is a blockchain network with chain ID 53399. - -## Network Details - -- **Chain ID**: 53399 -- **Chain Name**: Avalanche -- **Short Name**: QI0603I4 -- **Network ID**: 53399 -- **Currency**: - - **Name**: QI0603I4 Token - - **Symbol**: UQI - - **Decimals**: 18 - -## RPC URLs - -QI0603I4 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0603I4 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0603I4 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0610s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0610s1ts.mdx deleted file mode 100644 index a7f9e74b76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0610s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0610S1TS - Avalanche Blockchain Network -description: Explore QI0610S1TS, a blockchain network with chain ID 53654. Learn about its native currency, QI0610S1TS Token, and how to interact with the network. ---- - -# QI0610S1TS - -QI0610S1TS is a blockchain network with chain ID 53654. - -## Network Details - -- **Chain ID**: 53654 -- **Chain Name**: Avalanche -- **Short Name**: QI0610S1TS -- **Network ID**: 53654 -- **Currency**: - - **Name**: QI0610S1TS Token - - **Symbol**: TQA - - **Decimals**: 18 - -## RPC URLs - -QI0610S1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0610S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0610S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0611i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0611i1.mdx deleted file mode 100644 index 48de5f4af8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0611i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0611I1 - Avalanche Blockchain Network -description: Explore QI0611I1, a blockchain network with chain ID 99512. Learn about its native currency, QI0611I1 Token, and how to interact with the network. ---- - -# QI0611I1 - -QI0611I1 is a blockchain network with chain ID 99512. - -## Network Details - -- **Chain ID**: 99512 -- **Chain Name**: Avalanche -- **Short Name**: QI0611I1 -- **Network ID**: 99512 -- **Currency**: - - **Name**: QI0611I1 Token - - **Symbol**: IJQ - - **Decimals**: 18 - -## RPC URLs - -QI0611I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0611I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0611I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0613i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0613i1.mdx deleted file mode 100644 index 5c5ec5c1b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0613i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0613I1 - Avalanche Blockchain Network -description: Explore QI0613I1, a blockchain network with chain ID 2864. Learn about its native currency, QI0613I1 Token, and how to interact with the network. ---- - -# QI0613I1 - -QI0613I1 is a blockchain network with chain ID 2864. - -## Network Details - -- **Chain ID**: 2864 -- **Chain Name**: Avalanche -- **Short Name**: QI0613I1 -- **Network ID**: 2864 -- **Currency**: - - **Name**: QI0613I1 Token - - **Symbol**: NPQ - - **Decimals**: 18 - -## RPC URLs - -QI0613I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0613I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0613I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0614i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0614i1.mdx deleted file mode 100644 index 0915ded026..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0614i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0614I1 - Avalanche Blockchain Network -description: Explore QI0614I1, a blockchain network with chain ID 57923. Learn about its native currency, QI0614I1 Token, and how to interact with the network. ---- - -# QI0614I1 - -QI0614I1 is a blockchain network with chain ID 57923. - -## Network Details - -- **Chain ID**: 57923 -- **Chain Name**: Avalanche -- **Short Name**: QI0614I1 -- **Network ID**: 57923 -- **Currency**: - - **Name**: QI0614I1 Token - - **Symbol**: GZD - - **Decimals**: 18 - -## RPC URLs - -QI0614I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI0614I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0614I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0624i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0624i1.mdx deleted file mode 100644 index 66defc3a07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0624i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0624I1 - Avalanche Blockchain Network -description: Explore QI0624I1, a blockchain network with chain ID 80970. Learn about its native currency, QI0624I1 Token, and how to interact with the network. ---- - -# QI0624I1 - -QI0624I1 is a blockchain network with chain ID 80970. - -## Network Details - -- **Chain ID**: 80970 -- **Chain Name**: Avalanche -- **Short Name**: QI0624I1 -- **Network ID**: 80970 -- **Currency**: - - **Name**: QI0624I1 Token - - **Symbol**: YKE - - **Decimals**: 18 - -## RPC URLs - -QI0624I1 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0624I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0624I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0624i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0624i2.mdx deleted file mode 100644 index 7f4ceb21f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0624i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0624I2 - Avalanche Blockchain Network -description: Explore QI0624I2, a blockchain network with chain ID 8267. Learn about its native currency, QI0624I2 Token, and how to interact with the network. ---- - -# QI0624I2 - -QI0624I2 is a blockchain network with chain ID 8267. - -## Network Details - -- **Chain ID**: 8267 -- **Chain Name**: Avalanche -- **Short Name**: QI0624I2 -- **Network ID**: 8267 -- **Currency**: - - **Name**: QI0624I2 Token - - **Symbol**: YKE - - **Decimals**: 18 - -## RPC URLs - -QI0624I2 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0624I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0624I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0627s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0627s1ts.mdx deleted file mode 100644 index 4773123ec2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0627s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0627S1TS - Avalanche Blockchain Network -description: Explore QI0627S1TS, a blockchain network with chain ID 16680. Learn about its native currency, QI0627S1TS Token, and how to interact with the network. ---- - -# QI0627S1TS - -QI0627S1TS is a blockchain network with chain ID 16680. - -## Network Details - -- **Chain ID**: 16680 -- **Chain Name**: Avalanche -- **Short Name**: QI0627S1TS -- **Network ID**: 16680 -- **Currency**: - - **Name**: QI0627S1TS Token - - **Symbol**: JEU - - **Decimals**: 18 - -## RPC URLs - -QI0627S1TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0627S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0627S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0710s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0710s1ts.mdx deleted file mode 100644 index cf9d0ecd74..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0710s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0710S1TS - Avalanche Blockchain Network -description: Explore QI0710S1TS, a blockchain network with chain ID 57056. Learn about its native currency, QI0710S1TS Token, and how to interact with the network. ---- - -# QI0710S1TS - -QI0710S1TS is a blockchain network with chain ID 57056. - -## Network Details - -- **Chain ID**: 57056 -- **Chain Name**: Avalanche -- **Short Name**: QI0710S1TS -- **Network ID**: 57056 -- **Currency**: - - **Name**: QI0710S1TS Token - - **Symbol**: QIA - - **Decimals**: 18 - -## RPC URLs - -QI0710S1TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0710S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0710S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0710s2ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0710s2ts.mdx deleted file mode 100644 index 45897b8637..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0710s2ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0710S2TS - Avalanche Blockchain Network -description: Explore QI0710S2TS, a blockchain network with chain ID 75991. Learn about its native currency, QI0710S2TS Token, and how to interact with the network. ---- - -# QI0710S2TS - -QI0710S2TS is a blockchain network with chain ID 75991. - -## Network Details - -- **Chain ID**: 75991 -- **Chain Name**: Avalanche -- **Short Name**: QI0710S2TS -- **Network ID**: 75991 -- **Currency**: - - **Name**: QI0710S2TS Token - - **Symbol**: QIA - - **Decimals**: 18 - -## RPC URLs - -QI0710S2TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0710S2TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0710S2TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0712i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0712i2.mdx deleted file mode 100644 index 70ece01844..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0712i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0712I2 - Avalanche Blockchain Network -description: Explore QI0712I2, a blockchain network with chain ID 56667. Learn about its native currency, QI0712I2 Token, and how to interact with the network. ---- - -# QI0712I2 - -QI0712I2 is a blockchain network with chain ID 56667. - -## Network Details - -- **Chain ID**: 56667 -- **Chain Name**: Avalanche -- **Short Name**: QI0712I2 -- **Network ID**: 56667 -- **Currency**: - - **Name**: QI0712I2 Token - - **Symbol**: ZNG - - **Decimals**: 18 - -## RPC URLs - -QI0712I2 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0712I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0712I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0712s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0712s1ts.mdx deleted file mode 100644 index 6866e6e919..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0712s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0712S1TS - Avalanche Blockchain Network -description: Explore QI0712S1TS, a blockchain network with chain ID 62587. Learn about its native currency, QI0712S1TS Token, and how to interact with the network. ---- - -# QI0712S1TS - -QI0712S1TS is a blockchain network with chain ID 62587. - -## Network Details - -- **Chain ID**: 62587 -- **Chain Name**: Avalanche -- **Short Name**: QI0712S1TS -- **Network ID**: 62587 -- **Currency**: - - **Name**: QI0712S1TS Token - - **Symbol**: VQF - - **Decimals**: 18 - -## RPC URLs - -QI0712S1TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0712S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0712S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0722s1td.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0722s1td.mdx deleted file mode 100644 index b229fc0173..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0722s1td.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0722S1TD - Avalanche Blockchain Network -description: Explore QI0722S1TD, a blockchain network with chain ID 35993. Learn about its native currency, QI0722S1TD Token, and how to interact with the network. ---- - -# QI0722S1TD - -QI0722S1TD is a blockchain network with chain ID 35993. - -## Network Details - -- **Chain ID**: 35993 -- **Chain Name**: Avalanche -- **Short Name**: QI0722S1TD -- **Network ID**: 35993 -- **Currency**: - - **Name**: QI0722S1TD Token - - **Symbol**: TOY - - **Decimals**: 18 - -## RPC URLs - -QI0722S1TD can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0722S1TD Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0722S1TD Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0807i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0807i1.mdx deleted file mode 100644 index 03e4dd409e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0807i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0807I1 - Avalanche Blockchain Network -description: Explore QI0807I1, a blockchain network with chain ID 29570. Learn about its native currency, QI0807I1 Token, and how to interact with the network. ---- - -# QI0807I1 - -QI0807I1 is a blockchain network with chain ID 29570. - -## Network Details - -- **Chain ID**: 29570 -- **Chain Name**: Avalanche -- **Short Name**: QI0807I1 -- **Network ID**: 29570 -- **Currency**: - - **Name**: QI0807I1 Token - - **Symbol**: LEC - - **Decimals**: 18 - -## RPC URLs - -QI0807I1 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0807I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0807I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0807s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0807s1ts.mdx deleted file mode 100644 index 5c3ad479ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0807s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0807S1TS - Avalanche Blockchain Network -description: Explore QI0807S1TS, a blockchain network with chain ID 54257. Learn about its native currency, QI0807S1TS Token, and how to interact with the network. ---- - -# QI0807S1TS - -QI0807S1TS is a blockchain network with chain ID 54257. - -## Network Details - -- **Chain ID**: 54257 -- **Chain Name**: Avalanche -- **Short Name**: QI0807S1TS -- **Network ID**: 54257 -- **Currency**: - - **Name**: QI0807S1TS Token - - **Symbol**: WRE - - **Decimals**: 18 - -## RPC URLs - -QI0807S1TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0807S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0807S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0821s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0821s1ts.mdx deleted file mode 100644 index d12196716d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0821s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0821S1TS - Avalanche Blockchain Network -description: Explore QI0821S1TS, a blockchain network with chain ID 41592. Learn about its native currency, QI0821S1TS Token, and how to interact with the network. ---- - -# QI0821S1TS - -QI0821S1TS is a blockchain network with chain ID 41592. - -## Network Details - -- **Chain ID**: 41592 -- **Chain Name**: Avalanche -- **Short Name**: QI0821S1TS -- **Network ID**: 41592 -- **Currency**: - - **Name**: QI0821S1TS Token - - **Symbol**: EVI - - **Decimals**: 18 - -## RPC URLs - -QI0821S1TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0821S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0821S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi0828s4ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qi0828s4ts.mdx deleted file mode 100644 index f40e9f5860..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi0828s4ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI0828S4TS - Avalanche Blockchain Network -description: Explore QI0828S4TS, a blockchain network with chain ID 5511. Learn about its native currency, QI0828S4TS Token, and how to interact with the network. ---- - -# QI0828S4TS - -QI0828S4TS is a blockchain network with chain ID 5511. - -## Network Details - -- **Chain ID**: 5511 -- **Chain Name**: Avalanche -- **Short Name**: QI0828S4TS -- **Network ID**: 5511 -- **Currency**: - - **Name**: QI0828S4TS Token - - **Symbol**: FLT - - **Decimals**: 18 - -## RPC URLs - -QI0828S4TS can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QI0828S4TS Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI0828S4TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1121i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1121i1.mdx deleted file mode 100644 index 0b559ae594..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1121i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qi1121i1 - Avalanche Blockchain Network -description: Explore qi1121i1, a blockchain network with chain ID 62278. Learn about its native currency, qi1121i1 Token, and how to interact with the network. ---- - -# qi1121i1 - -qi1121i1 is a blockchain network with chain ID 62278. - -## Network Details - -- **Chain ID**: 62278 -- **Chain Name**: Avalanche -- **Short Name**: qi1121i1 -- **Network ID**: 62278 -- **Currency**: - - **Name**: qi1121i1 Token - - **Symbol**: SJOX - - **Decimals**: 18 - -## RPC URLs - -qi1121i1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## qi1121i1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qi1121i1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1204i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1204i2.mdx deleted file mode 100644 index 2dc55be3f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1204i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1204I2 - Avalanche Blockchain Network -description: Explore QI1204I2, a blockchain network with chain ID 76950. Learn about its native currency, QI1204I2 Token, and how to interact with the network. ---- - -# QI1204I2 - -QI1204I2 is a blockchain network with chain ID 76950. - -## Network Details - -- **Chain ID**: 76950 -- **Chain Name**: Avalanche -- **Short Name**: QI1204I2 -- **Network ID**: 76950 -- **Currency**: - - **Name**: QI1204I2 Token - - **Symbol**: BHOX - - **Decimals**: 18 - -## RPC URLs - -QI1204I2 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/ba4e7766-4bc6-44ec-b43f-598647b4ee71 - -## QI1204I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1204I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1204i3.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1204i3.mdx deleted file mode 100644 index cf48ae3288..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1204i3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1204I3 - Avalanche Blockchain Network -description: Explore QI1204I3, a blockchain network with chain ID 17026. Learn about its native currency, QI1204I3 Token, and how to interact with the network. ---- - -# QI1204I3 - -QI1204I3 is a blockchain network with chain ID 17026. - -## Network Details - -- **Chain ID**: 17026 -- **Chain Name**: Avalanche -- **Short Name**: QI1204I3 -- **Network ID**: 17026 -- **Currency**: - - **Name**: QI1204I3 Token - - **Symbol**: BHOX - - **Decimals**: 18 - -## RPC URLs - -QI1204I3 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/e7aeac38-06b2-4aaa-87b4-2c2da10fa43e - -## QI1204I3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1204I3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1212i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1212i2.mdx deleted file mode 100644 index f8d8290618..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1212i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1212I2 - Avalanche Blockchain Network -description: Explore QI1212I2, a blockchain network with chain ID 4145. Learn about its native currency, QI1212I2 Token, and how to interact with the network. ---- - -# QI1212I2 - -QI1212I2 is a blockchain network with chain ID 4145. - -## Network Details - -- **Chain ID**: 4145 -- **Chain Name**: Avalanche -- **Short Name**: QI1212I2 -- **Network ID**: 4145 -- **Currency**: - - **Name**: QI1212I2 Token - - **Symbol**: HSCX - - **Decimals**: 18 - -## RPC URLs - -QI1212I2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI1212I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1212I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1212i3.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1212i3.mdx deleted file mode 100644 index aca579e8a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1212i3.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1212I3 - Avalanche Blockchain Network -description: Explore QI1212I3, a blockchain network with chain ID 92850. Learn about its native currency, QI1212I3 Token, and how to interact with the network. ---- - -# QI1212I3 - -QI1212I3 is a blockchain network with chain ID 92850. - -## Network Details - -- **Chain ID**: 92850 -- **Chain Name**: Avalanche -- **Short Name**: QI1212I3 -- **Network ID**: 92850 -- **Currency**: - - **Name**: QI1212I3 Token - - **Symbol**: HSCX - - **Decimals**: 18 - -## RPC URLs - -QI1212I3 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI1212I3 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1212I3 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1212i5.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1212i5.mdx deleted file mode 100644 index 4901a1a8a2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1212i5.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1212I5 - Avalanche Blockchain Network -description: Explore QI1212I5, a blockchain network with chain ID 98540. Learn about its native currency, QI1212I5 Token, and how to interact with the network. ---- - -# QI1212I5 - -QI1212I5 is a blockchain network with chain ID 98540. - -## Network Details - -- **Chain ID**: 98540 -- **Chain Name**: Avalanche -- **Short Name**: QI1212I5 -- **Network ID**: 98540 -- **Currency**: - - **Name**: QI1212I5 Token - - **Symbol**: HSCX - - **Decimals**: 18 - -## RPC URLs - -QI1212I5 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/ba4e7766-4bc6-44ec-b43f-598647b4ee71 - -## QI1212I5 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1212I5 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1212i6.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1212i6.mdx deleted file mode 100644 index 8c99ed7c39..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1212i6.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1212I6 - Avalanche Blockchain Network -description: Explore QI1212I6, a blockchain network with chain ID 51161. Learn about its native currency, QI1212I6 Token, and how to interact with the network. ---- - -# QI1212I6 - -QI1212I6 is a blockchain network with chain ID 51161. - -## Network Details - -- **Chain ID**: 51161 -- **Chain Name**: Avalanche -- **Short Name**: QI1212I6 -- **Network ID**: 51161 -- **Currency**: - - **Name**: QI1212I6 Token - - **Symbol**: HSCX - - **Decimals**: 18 - -## RPC URLs - -QI1212I6 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI1212I6 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1212I6 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1212i8.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1212i8.mdx deleted file mode 100644 index d984435232..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1212i8.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1212I8 - Avalanche Blockchain Network -description: Explore QI1212I8, a blockchain network with chain ID 40542. Learn about its native currency, QI1212I8 Token, and how to interact with the network. ---- - -# QI1212I8 - -QI1212I8 is a blockchain network with chain ID 40542. - -## Network Details - -- **Chain ID**: 40542 -- **Chain Name**: Avalanche -- **Short Name**: QI1212I8 -- **Network ID**: 40542 -- **Currency**: - - **Name**: QI1212I8 Token - - **Symbol**: HSCX - - **Decimals**: 18 - -## RPC URLs - -QI1212I8 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/ba4e7766-4bc6-44ec-b43f-598647b4ee71 - -## QI1212I8 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1212I8 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1220s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1220s1.mdx deleted file mode 100644 index 7f5a06a170..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1220s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1220s1 - Avalanche Blockchain Network -description: Explore QI1220s1, a blockchain network with chain ID 42451. Learn about its native currency, QI1220s1 Token, and how to interact with the network. ---- - -# QI1220s1 - -QI1220s1 is a blockchain network with chain ID 42451. - -## Network Details - -- **Chain ID**: 42451 -- **Chain Name**: Avalanche -- **Short Name**: QI1220s1 -- **Network ID**: 42451 -- **Currency**: - - **Name**: QI1220s1 Token - - **Symbol**: BKX - - **Decimals**: 18 - -## RPC URLs - -QI1220s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QI1220s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1220s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qi1228i2.mdx b/docs/pages/solutions/chainlist/non-integrated/qi1228i2.mdx deleted file mode 100644 index 6d88ca574d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qi1228i2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QI1228I2 - Avalanche Blockchain Network -description: Explore QI1228I2, a blockchain network with chain ID 91735. Learn about its native currency, QI1228I2 Token, and how to interact with the network. ---- - -# QI1228I2 - -QI1228I2 is a blockchain network with chain ID 91735. - -## Network Details - -- **Chain ID**: 91735 -- **Chain Name**: Avalanche -- **Short Name**: QI1228I2 -- **Network ID**: 91735 -- **Currency**: - - **Name**: QI1228I2 Token - - **Symbol**: ZMY - - **Decimals**: 18 - -## RPC URLs - -QI1228I2 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f51649a9-3420-4636-bb44-206f63998951 - -## QI1228I2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QI1228I2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qie-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/qie-blockchain.mdx deleted file mode 100644 index 03b988a1ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qie-blockchain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QIE Blockchain - QIE Blockchain Network -description: Explore QIE Blockchain, a blockchain network with chain ID 5656. Learn about its native currency, QIE Blockchain, and how to interact with the network. ---- - -# QIE Blockchain - -QIE Blockchain is a blockchain network with chain ID 5656. - -## Network Details - -- **Chain ID**: 5656 -- **Chain Name**: QIE -- **Short Name**: QIE -- **Network ID**: 5656 -- **Currency**: - - **Name**: QIE Blockchain - - **Symbol**: QIE - - **Decimals**: 18 - -## RPC URLs - -QIE Blockchain can be accessed through the following RPC endpoints: - -- https://rpc-main1.qiblockchain.online/ -- https://rpc-main2.qiblockchain.online/ - -## QIE Blockchain Block Explorers - -- [QIE Explorer](https://mainnet.qiblockchain.online) - -## Additional Information - -- **Official Website**: https://qiblockchain.online/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qie2408011.mdx b/docs/pages/solutions/chainlist/non-integrated/qie2408011.mdx deleted file mode 100644 index 03d69c442f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qie2408011.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIE2408011 - Avalanche Blockchain Network -description: Explore QIE2408011, a blockchain network with chain ID 35189. Learn about its native currency, QIE2408011 Token, and how to interact with the network. ---- - -# QIE2408011 - -QIE2408011 is a blockchain network with chain ID 35189. - -## Network Details - -- **Chain ID**: 35189 -- **Chain Name**: Avalanche -- **Short Name**: QIE2408011 -- **Network ID**: 35189 -- **Currency**: - - **Name**: QIE2408011 Token - - **Symbol**: QSW - - **Decimals**: 18 - -## RPC URLs - -QIE2408011 can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QIE2408011 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIE2408011 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qie2408021.mdx b/docs/pages/solutions/chainlist/non-integrated/qie2408021.mdx deleted file mode 100644 index e1c292714c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qie2408021.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIE2408021 - Avalanche Blockchain Network -description: Explore QIE2408021, a blockchain network with chain ID 5456. Learn about its native currency, QIE2408021 Token, and how to interact with the network. ---- - -# QIE2408021 - -QIE2408021 is a blockchain network with chain ID 5456. - -## Network Details - -- **Chain ID**: 5456 -- **Chain Name**: Avalanche -- **Short Name**: QIE2408021 -- **Network ID**: 5456 -- **Currency**: - - **Name**: QIE2408021 Token - - **Symbol**: DJW - - **Decimals**: 18 - -## RPC URLs - -QIE2408021 can be accessed through the following RPC endpoints: - -- https://testnet-qie2408021-d75c4.avax-test.network/ext/bc/BYicPtv7bJPKMdmD8VWPT5qeSTwq6pP3Jve4pWBCz7sz4ayXU/rpc?token=32c1ce1f09a80d3f85c8722b89bea8b17edf1c9d79aab9b664086005b0b66562 - -## QIE2408021 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIE2408021 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qie2409031.mdx b/docs/pages/solutions/chainlist/non-integrated/qie2409031.mdx deleted file mode 100644 index a38d58c33b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qie2409031.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIE2409031 - Avalanche Blockchain Network -description: Explore QIE2409031, a blockchain network with chain ID 89541. Learn about its native currency, QIE2409031 Token, and how to interact with the network. ---- - -# QIE2409031 - -QIE2409031 is a blockchain network with chain ID 89541. - -## Network Details - -- **Chain ID**: 89541 -- **Chain Name**: Avalanche -- **Short Name**: QIE2409031 -- **Network ID**: 89541 -- **Currency**: - - **Name**: QIE2409031 Token - - **Symbol**: OEI - - **Decimals**: 18 - -## RPC URLs - -QIE2409031 can be accessed through the following RPC endpoints: - -- https://testnet-qie2409031-z3385.avax-test.network/ext/bc/2qZAXcG8CKjvyZgKHPabAA1Dsav2ksqwB4syEittubkBBgPLCb/rpc?token=4cd880b15825e7cd3454731b81a5808990bb37dd8aa6e64dcded7112431f0e77 - -## QIE2409031 Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIE2409031 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim-2405081.mdx b/docs/pages/solutions/chainlist/non-integrated/qim-2405081.mdx deleted file mode 100644 index d81d343c86..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim-2405081.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM 2405081 - Avalanche Blockchain Network -description: Explore QIM 2405081, a blockchain network with chain ID 92314. Learn about its native currency, QIM 2405081 Token, and how to interact with the network. ---- - -# QIM 2405081 - -QIM 2405081 is a blockchain network with chain ID 92314. - -## Network Details - -- **Chain ID**: 92314 -- **Chain Name**: Avalanche -- **Short Name**: QIM 2405081 -- **Network ID**: 92314 -- **Currency**: - - **Name**: QIM 2405081 Token - - **Symbol**: WCC - - **Decimals**: 18 - -## RPC URLs - -QIM 2405081 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f069738d-9c43-497b-96c1-9dda60d647e2 - -## QIM 2405081 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM 2405081 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim-240530-test-interop.mdx b/docs/pages/solutions/chainlist/non-integrated/qim-240530-test-interop.mdx deleted file mode 100644 index dc755e901d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim-240530-test-interop.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM 240530 TEST INTEROP - Avalanche Blockchain Network -description: Explore QIM 240530 TEST INTEROP, a blockchain network with chain ID 44044. Learn about its native currency, QIM 240530 TEST INTEROP Token, and how to interact with the network. ---- - -# QIM 240530 TEST INTEROP - -QIM 240530 TEST INTEROP is a blockchain network with chain ID 44044. - -## Network Details - -- **Chain ID**: 44044 -- **Chain Name**: Avalanche -- **Short Name**: QIM 240530 TEST INTEROP -- **Network ID**: 44044 -- **Currency**: - - **Name**: QIM 240530 TEST INTEROP Token - - **Symbol**: WCC - - **Decimals**: 18 - -## RPC URLs - -QIM 240530 TEST INTEROP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qim240530t/testnet/rpc - -## QIM 240530 TEST INTEROP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM 240530 TEST INTEROP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim-demo-0527.mdx b/docs/pages/solutions/chainlist/non-integrated/qim-demo-0527.mdx deleted file mode 100644 index a9cef31081..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim-demo-0527.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM DEMO 0527 - Avalanche Blockchain Network -description: Explore QIM DEMO 0527, a blockchain network with chain ID 55432. Learn about its native currency, QIM DEMO 0527 Token, and how to interact with the network. ---- - -# QIM DEMO 0527 - -QIM DEMO 0527 is a blockchain network with chain ID 55432. - -## Network Details - -- **Chain ID**: 55432 -- **Chain Name**: Avalanche -- **Short Name**: QIM DEMO 0527 -- **Network ID**: 55432 -- **Currency**: - - **Name**: QIM DEMO 0527 Token - - **Symbol**: WCC - - **Decimals**: 18 - -## RPC URLs - -QIM DEMO 0527 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qimdemo052/testnet/rpc - -## QIM DEMO 0527 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM DEMO 0527 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2403061.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2403061.mdx deleted file mode 100644 index f954fe7683..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2403061.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2403061 - Avalanche Blockchain Network -description: Explore QIM2403061, a blockchain network with chain ID 57021. Learn about its native currency, QIM2403061 Token, and how to interact with the network. ---- - -# QIM2403061 - -QIM2403061 is a blockchain network with chain ID 57021. - -## Network Details - -- **Chain ID**: 57021 -- **Chain Name**: Avalanche -- **Short Name**: QIM2403061 -- **Network ID**: 57021 -- **Currency**: - - **Name**: QIM2403061 Token - - **Symbol**: VVC - - **Decimals**: 18 - -## RPC URLs - -QIM2403061 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2403061 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2403061 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2404261.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2404261.mdx deleted file mode 100644 index 374234e7ef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2404261.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2404261 - Avalanche Blockchain Network -description: Explore QIM2404261, a blockchain network with chain ID 26563. Learn about its native currency, QIM2404261 Token, and how to interact with the network. ---- - -# QIM2404261 - -QIM2404261 is a blockchain network with chain ID 26563. - -## Network Details - -- **Chain ID**: 26563 -- **Chain Name**: Avalanche -- **Short Name**: QIM2404261 -- **Network ID**: 26563 -- **Currency**: - - **Name**: QIM2404261 Token - - **Symbol**: YCW - - **Decimals**: 18 - -## RPC URLs - -QIM2404261 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2404261 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2404261 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405021.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405021.mdx deleted file mode 100644 index 1a673302ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405021.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405021 - Avalanche Blockchain Network -description: Explore QIM2405021, a blockchain network with chain ID 25284. Learn about its native currency, QIM2405021 Token, and how to interact with the network. ---- - -# QIM2405021 - -QIM2405021 is a blockchain network with chain ID 25284. - -## Network Details - -- **Chain ID**: 25284 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405021 -- **Network ID**: 25284 -- **Currency**: - - **Name**: QIM2405021 Token - - **Symbol**: UZP - - **Decimals**: 18 - -## RPC URLs - -QIM2405021 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405021 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405021 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405023-interop.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405023-interop.mdx deleted file mode 100644 index a7d231d07e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405023-interop.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405023 Interop - Avalanche Blockchain Network -description: Explore QIM2405023 Interop, a blockchain network with chain ID 10154. Learn about its native currency, QIM2405023 Interop Token, and how to interact with the network. ---- - -# QIM2405023 Interop - -QIM2405023 Interop is a blockchain network with chain ID 10154. - -## Network Details - -- **Chain ID**: 10154 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405023 Interop -- **Network ID**: 10154 -- **Currency**: - - **Name**: QIM2405023 Interop Token - - **Symbol**: UZP - - **Decimals**: 18 - -## RPC URLs - -QIM2405023 Interop can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405023 Interop Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405023 Interop Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405024-no-interop.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405024-no-interop.mdx deleted file mode 100644 index 8cae484d81..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405024-no-interop.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405024 NO INTEROP - Avalanche Blockchain Network -description: Explore QIM2405024 NO INTEROP, a blockchain network with chain ID 73486. Learn about its native currency, QIM2405024 NO INTEROP Token, and how to interact with the network. ---- - -# QIM2405024 NO INTEROP - -QIM2405024 NO INTEROP is a blockchain network with chain ID 73486. - -## Network Details - -- **Chain ID**: 73486 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405024 NO INTEROP -- **Network ID**: 73486 -- **Currency**: - - **Name**: QIM2405024 NO INTEROP Token - - **Symbol**: UZP - - **Decimals**: 18 - -## RPC URLs - -QIM2405024 NO INTEROP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405024 NO INTEROP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405024 NO INTEROP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405061-with-interoperability.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405061-with-interoperability.mdx deleted file mode 100644 index acecb85bdb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405061-with-interoperability.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405061 WITH INTEROPERABILITY - Avalanche Blockchain Network -description: Explore QIM2405061 WITH INTEROPERABILITY, a blockchain network with chain ID 12065. Learn about its native currency, QIM2405061 WITH INTEROPERABILITY Token, and how to interact with the network. ---- - -# QIM2405061 WITH INTEROPERABILITY - -QIM2405061 WITH INTEROPERABILITY is a blockchain network with chain ID 12065. - -## Network Details - -- **Chain ID**: 12065 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405061 WITH INTEROPERABILITY -- **Network ID**: 12065 -- **Currency**: - - **Name**: QIM2405061 WITH INTEROPERABILITY Token - - **Symbol**: BLY - - **Decimals**: 18 - -## RPC URLs - -QIM2405061 WITH INTEROPERABILITY can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405061 WITH INTEROPERABILITY Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405061 WITH INTEROPERABILITY Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405062-no-interop.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405062-no-interop.mdx deleted file mode 100644 index 2284a61e02..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405062-no-interop.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405062 NO INTEROP - Avalanche Blockchain Network -description: Explore QIM2405062 NO INTEROP, a blockchain network with chain ID 28408. Learn about its native currency, QIM2405062 NO INTEROP Token, and how to interact with the network. ---- - -# QIM2405062 NO INTEROP - -QIM2405062 NO INTEROP is a blockchain network with chain ID 28408. - -## Network Details - -- **Chain ID**: 28408 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405062 NO INTEROP -- **Network ID**: 28408 -- **Currency**: - - **Name**: QIM2405062 NO INTEROP Token - - **Symbol**: BLY - - **Decimals**: 18 - -## RPC URLs - -QIM2405062 NO INTEROP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405062 NO INTEROP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405062 NO INTEROP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405063-interop-no-precompile.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405063-interop-no-precompile.mdx deleted file mode 100644 index 276b7b64f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405063-interop-no-precompile.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405063 INTEROP NO PRECOMPILE - Avalanche Blockchain Network -description: Explore QIM2405063 INTEROP NO PRECOMPILE, a blockchain network with chain ID 54454. Learn about its native currency, QIM2405063 INTEROP NO PRECOMPILE Token, and how to interact with the network. ---- - -# QIM2405063 INTEROP NO PRECOMPILE - -QIM2405063 INTEROP NO PRECOMPILE is a blockchain network with chain ID 54454. - -## Network Details - -- **Chain ID**: 54454 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405063 INTEROP NO PRECOMPILE -- **Network ID**: 54454 -- **Currency**: - - **Name**: QIM2405063 INTEROP NO PRECOMPILE Token - - **Symbol**: BLY - - **Decimals**: 18 - -## RPC URLs - -QIM2405063 INTEROP NO PRECOMPILE can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405063 INTEROP NO PRECOMPILE Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405063 INTEROP NO PRECOMPILE Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405064-no-interop-precompile.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405064-no-interop-precompile.mdx deleted file mode 100644 index 9cf2a6989f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405064-no-interop-precompile.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405064 NO INTEROP PRECOMPILE - Avalanche Blockchain Network -description: Explore QIM2405064 NO INTEROP PRECOMPILE, a blockchain network with chain ID 3026. Learn about its native currency, QIM2405064 NO INTEROP PRECOMPILE Token, and how to interact with the network. ---- - -# QIM2405064 NO INTEROP PRECOMPILE - -QIM2405064 NO INTEROP PRECOMPILE is a blockchain network with chain ID 3026. - -## Network Details - -- **Chain ID**: 3026 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405064 NO INTEROP PRECOMPILE -- **Network ID**: 3026 -- **Currency**: - - **Name**: QIM2405064 NO INTEROP PRECOMPILE Token - - **Symbol**: BLY - - **Decimals**: 18 - -## RPC URLs - -QIM2405064 NO INTEROP PRECOMPILE can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405064 NO INTEROP PRECOMPILE Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405064 NO INTEROP PRECOMPILE Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405065-no-interop-no-sim.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405065-no-interop-no-sim.mdx deleted file mode 100644 index 664b6d42c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405065-no-interop-no-sim.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405065 NO INTEROP NO SIM - Avalanche Blockchain Network -description: Explore QIM2405065 NO INTEROP NO SIM, a blockchain network with chain ID 27550. Learn about its native currency, QIM2405065 NO INTEROP NO SIM Token, and how to interact with the network. ---- - -# QIM2405065 NO INTEROP NO SIM - -QIM2405065 NO INTEROP NO SIM is a blockchain network with chain ID 27550. - -## Network Details - -- **Chain ID**: 27550 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405065 NO INTEROP NO SIM -- **Network ID**: 27550 -- **Currency**: - - **Name**: QIM2405065 NO INTEROP NO SIM Token - - **Symbol**: BLY - - **Decimals**: 18 - -## RPC URLs - -QIM2405065 NO INTEROP NO SIM can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qim2405065/testnet/rpc - -## QIM2405065 NO INTEROP NO SIM Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405065 NO INTEROP NO SIM Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2405082.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2405082.mdx deleted file mode 100644 index 7c64351167..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2405082.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2405082 - Avalanche Blockchain Network -description: Explore QIM2405082, a blockchain network with chain ID 73813. Learn about its native currency, QIM2405082 Token, and how to interact with the network. ---- - -# QIM2405082 - -QIM2405082 is a blockchain network with chain ID 73813. - -## Network Details - -- **Chain ID**: 73813 -- **Chain Name**: Avalanche -- **Short Name**: QIM2405082 -- **Network ID**: 73813 -- **Currency**: - - **Name**: QIM2405082 Token - - **Symbol**: WCC - - **Decimals**: 18 - -## RPC URLs - -QIM2405082 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIM2405082 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2405082 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim240701-new-flow.mdx b/docs/pages/solutions/chainlist/non-integrated/qim240701-new-flow.mdx deleted file mode 100644 index 81c4d78124..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim240701-new-flow.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM240701 NEW FLOW - Avalanche Blockchain Network -description: Explore QIM240701 NEW FLOW, a blockchain network with chain ID 93002. Learn about its native currency, QIM240701 NEW FLOW Token, and how to interact with the network. ---- - -# QIM240701 NEW FLOW - -QIM240701 NEW FLOW is a blockchain network with chain ID 93002. - -## Network Details - -- **Chain ID**: 93002 -- **Chain Name**: Avalanche -- **Short Name**: QIM240701 NEW FLOW -- **Network ID**: 93002 -- **Currency**: - - **Name**: QIM240701 NEW FLOW Token - - **Symbol**: FIU - - **Decimals**: 18 - -## RPC URLs - -QIM240701 NEW FLOW can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QIM240701 NEW FLOW Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM240701 NEW FLOW Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2407041-test-interop-2.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2407041-test-interop-2.mdx deleted file mode 100644 index 152395bd25..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2407041-test-interop-2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2407041 TEST INTEROP 2 - Avalanche Blockchain Network -description: Explore QIM2407041 TEST INTEROP 2, a blockchain network with chain ID 61880. Learn about its native currency, QIM2407041 TEST INTEROP 2 Token, and how to interact with the network. ---- - -# QIM2407041 TEST INTEROP 2 - -QIM2407041 TEST INTEROP 2 is a blockchain network with chain ID 61880. - -## Network Details - -- **Chain ID**: 61880 -- **Chain Name**: Avalanche -- **Short Name**: QIM2407041 TEST INTEROP 2 -- **Network ID**: 61880 -- **Currency**: - - **Name**: QIM2407041 TEST INTEROP 2 Token - - **Symbol**: PJW - - **Decimals**: 18 - -## RPC URLs - -QIM2407041 TEST INTEROP 2 can be accessed through the following RPC endpoints: - -- https://testnet-qim2407041-ubbc4.avax-test.network/ext/bc/WGrSsnbtgiCDDwASajQAcoaMyn52xh4a2S4YdeZQT5i2KnG59/rpc?token=60273823b4d4b892fe7f9d7196242868273d7379aadf0c8da4f5b970d741557e - -## QIM2407041 TEST INTEROP 2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2407041 TEST INTEROP 2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qim2407291-multi-sig.mdx b/docs/pages/solutions/chainlist/non-integrated/qim2407291-multi-sig.mdx deleted file mode 100644 index 1af98a5567..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qim2407291-multi-sig.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIM2407291 Multi Sig - Avalanche Blockchain Network -description: Explore QIM2407291 Multi Sig, a blockchain network with chain ID 68787. Learn about its native currency, QIM2407291 Multi Sig Token, and how to interact with the network. ---- - -# QIM2407291 Multi Sig - -QIM2407291 Multi Sig is a blockchain network with chain ID 68787. - -## Network Details - -- **Chain ID**: 68787 -- **Chain Name**: Avalanche -- **Short Name**: QIM2407291 Multi Sig -- **Network ID**: 68787 -- **Currency**: - - **Name**: QIM2407291 Multi Sig Token - - **Symbol**: HWU - - **Decimals**: 18 - -## RPC URLs - -QIM2407291 Multi Sig can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## QIM2407291 Multi Sig Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIM2407291 Multi Sig Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qis0311-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qis0311-testnet.mdx deleted file mode 100644 index 47622851ab..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qis0311-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIS0311 Testnet - Avalanche Blockchain Network -description: Explore QIS0311 Testnet, a blockchain network with chain ID 81573. Learn about its native currency, QIS0311 Testnet Token, and how to interact with the network. ---- - -# QIS0311 Testnet - -QIS0311 Testnet is a blockchain network with chain ID 81573. - -## Network Details - -- **Chain ID**: 81573 -- **Chain Name**: Avalanche -- **Short Name**: QIS0311 Testnet -- **Network ID**: 81573 -- **Currency**: - - **Name**: QIS0311 Testnet Token - - **Symbol**: MVD - - **Decimals**: 18 - -## RPC URLs - -QIS0311 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIS0311 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIS0311 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qis0313-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qis0313-testnet.mdx deleted file mode 100644 index bf575e44c2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qis0313-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIS0313 Testnet - Avalanche Blockchain Network -description: Explore QIS0313 Testnet, a blockchain network with chain ID 93017. Learn about its native currency, QIS0313 Testnet Token, and how to interact with the network. ---- - -# QIS0313 Testnet - -QIS0313 Testnet is a blockchain network with chain ID 93017. - -## Network Details - -- **Chain ID**: 93017 -- **Chain Name**: Avalanche -- **Short Name**: QIS0313 Testnet -- **Network ID**: 93017 -- **Currency**: - - **Name**: QIS0313 Testnet Token - - **Symbol**: NCG - - **Decimals**: 18 - -## RPC URLs - -QIS0313 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIS0313 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIS0313 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qis0326-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qis0326-testnet.mdx deleted file mode 100644 index af7ac07278..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qis0326-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QIS0326 Testnet - Avalanche Blockchain Network -description: Explore QIS0326 Testnet, a blockchain network with chain ID 89283. Learn about its native currency, QIS0326 Testnet Token, and how to interact with the network. ---- - -# QIS0326 Testnet - -QIS0326 Testnet is a blockchain network with chain ID 89283. - -## Network Details - -- **Chain ID**: 89283 -- **Chain Name**: Avalanche -- **Short Name**: QIS0326 Testnet -- **Network ID**: 89283 -- **Currency**: - - **Name**: QIS0326 Testnet Token - - **Symbol**: AKK - - **Decimals**: 18 - -## RPC URLs - -QIS0326 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## QIS0326 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QIS0326 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-mixnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-mixnet.mdx deleted file mode 100644 index 7ab116eba9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-mixnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Qitmeer Network Mixnet - MEER Blockchain Network -description: Explore Qitmeer Network Mixnet, a blockchain network with chain ID 8132. Learn about its native currency, Qitmeer Mixnet, and how to interact with the network. ---- - -# Qitmeer Network Mixnet - -Qitmeer Network Mixnet is a blockchain network with chain ID 8132. - -## Network Details - -- **Chain ID**: 8132 -- **Chain Name**: MEER -- **Short Name**: meermix -- **Network ID**: 8132 -- **Currency**: - - **Name**: Qitmeer Mixnet - - **Symbol**: MEER-M - - **Decimals**: 18 - -## RPC URLs - -Qitmeer Network Mixnet can be accessed through the following RPC endpoints: - - - -## Qitmeer Network Mixnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-privnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-privnet.mdx deleted file mode 100644 index 4ff447c8aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-privnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Qitmeer Network Privnet - MEER Blockchain Network -description: Explore Qitmeer Network Privnet, a blockchain network with chain ID 8133. Learn about its native currency, Qitmeer Privnet, and how to interact with the network. ---- - -# Qitmeer Network Privnet - -Qitmeer Network Privnet is a blockchain network with chain ID 8133. - -## Network Details - -- **Chain ID**: 8133 -- **Chain Name**: MEER -- **Short Name**: meerpriv -- **Network ID**: 8133 -- **Currency**: - - **Name**: Qitmeer Privnet - - **Symbol**: MEER-P - - **Decimals**: 18 - -## RPC URLs - -Qitmeer Network Privnet can be accessed through the following RPC endpoints: - - - -## Qitmeer Network Privnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-testnet.mdx deleted file mode 100644 index 5f041d1c9d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Qitmeer Network Testnet - MEER Blockchain Network -description: Explore Qitmeer Network Testnet, a blockchain network with chain ID 8131. Learn about its native currency, Qitmeer Testnet, and how to interact with the network. ---- - -# Qitmeer Network Testnet - -Qitmeer Network Testnet is a blockchain network with chain ID 8131. - -## Network Details - -- **Chain ID**: 8131 -- **Chain Name**: MEER -- **Short Name**: meertest -- **Network ID**: 8131 -- **Currency**: - - **Name**: Qitmeer Testnet - - **Symbol**: MEER-T - - **Decimals**: 18 - -## RPC URLs - -Qitmeer Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet-qng.rpc.qitmeer.io -- https://testnet.meerlabs.com -- https://meer.testnet.meerfans.club - -## Qitmeer Network Testnet Block Explorers - -- [meerscan testnet](https://testnet-qng.qitmeer.io) - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Qitmeer Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network.mdx b/docs/pages/solutions/chainlist/non-integrated/qitmeer-network.mdx deleted file mode 100644 index 7da55d7c3d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qitmeer-network.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Qitmeer Network Mainnet - MEER Blockchain Network -description: Explore Qitmeer Network Mainnet, a blockchain network with chain ID 813. Learn about its native currency, Qitmeer, and how to interact with the network. ---- - -# Qitmeer Network Mainnet - -Qitmeer Network Mainnet is a blockchain network with chain ID 813. - -## Network Details - -- **Chain ID**: 813 -- **Chain Name**: MEER -- **Short Name**: meer -- **Network ID**: 813 -- **Currency**: - - **Name**: Qitmeer - - **Symbol**: MEER - - **Decimals**: 18 - -## RPC URLs - -Qitmeer Network Mainnet can be accessed through the following RPC endpoints: - -- https://evm-dataseed1.meerscan.io -- https://evm-dataseed2.meerscan.io -- https://evm-dataseed3.meerscan.io -- https://evm-dataseed.meerscan.com -- https://qng.rpc.qitmeer.io -- https://mainnet.meerlabs.com -- https://rpc.dimai.ai -- https://rpc.woowow.io - -## Qitmeer Network Mainnet Block Explorers - -- [meerscan](https://qng.qitmeer.io) -- [meerscan](https://qng.meerscan.io) - -## Additional Information - -- **Official Website**: https://github.com/Qitmeer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ql1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ql1-testnet.mdx deleted file mode 100644 index a728d0a8f9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ql1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QL1 Testnet - QOM Blockchain Network -description: Explore QL1 Testnet, a blockchain network with chain ID 7668378. Learn about its native currency, Shiba Predator, and how to interact with the network. ---- - -# QL1 Testnet - -QL1 Testnet is a blockchain network with chain ID 7668378. - -## Network Details - -- **Chain ID**: 7668378 -- **Chain Name**: QOM -- **Short Name**: tqom -- **Network ID**: 7668378 -- **Currency**: - - **Name**: Shiba Predator - - **Symbol**: QOM - - **Decimals**: 18 - -## RPC URLs - -QL1 Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.qom.one - -## QL1 Testnet Block Explorers - -- [QL1 Testnet Explorer](https://testnet.qom.one) - -## Additional Information - -- **Official Website**: https://qom.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QL1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ql1.mdx b/docs/pages/solutions/chainlist/non-integrated/ql1.mdx deleted file mode 100644 index 7be9dc813b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ql1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QL1 - QOM Blockchain Network -description: Explore QL1, a blockchain network with chain ID 766. Learn about its native currency, Shiba Predator, and how to interact with the network. ---- - -# QL1 - -QL1 is a blockchain network with chain ID 766. - -## Network Details - -- **Chain ID**: 766 -- **Chain Name**: QOM -- **Short Name**: qom -- **Network ID**: 766 -- **Currency**: - - **Name**: Shiba Predator - - **Symbol**: QOM - - **Decimals**: 18 - -## RPC URLs - -QL1 can be accessed through the following RPC endpoints: - -- https://rpc.qom.one - -## QL1 Block Explorers - -- [QL1 Mainnet Explorer](https://mainnet.qom.one) - -## Additional Information - -- **Official Website**: https://qom.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0103y1s.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0103y1s.mdx deleted file mode 100644 index d8cb5b474f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0103y1s.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr0103y1s - Avalanche Blockchain Network -description: Explore qr0103y1s, a blockchain network with chain ID 80375. Learn about its native currency, qr0103y1s Token, and how to interact with the network. ---- - -# qr0103y1s - -qr0103y1s is a blockchain network with chain ID 80375. - -## Network Details - -- **Chain ID**: 80375 -- **Chain Name**: Avalanche -- **Short Name**: qr0103y1s -- **Network ID**: 80375 -- **Currency**: - - **Name**: qr0103y1s Token - - **Symbol**: IJB - - **Decimals**: 18 - -## RPC URLs - -qr0103y1s can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0103y1s/testnet/rpc - -## qr0103y1s Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr0103y1s Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0109y1p.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0109y1p.mdx deleted file mode 100644 index eafa5f73d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0109y1p.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr0109y1p - Avalanche Blockchain Network -description: Explore qr0109y1p, a blockchain network with chain ID 40798. Learn about its native currency, qr0109y1p Token, and how to interact with the network. ---- - -# qr0109y1p - -qr0109y1p is a blockchain network with chain ID 40798. - -## Network Details - -- **Chain ID**: 40798 -- **Chain Name**: Avalanche -- **Short Name**: qr0109y1p -- **Network ID**: 40798 -- **Currency**: - - **Name**: qr0109y1p Token - - **Symbol**: KZP - - **Decimals**: 18 - -## RPC URLs - -qr0109y1p can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0109y1p/testnet/rpc - -## qr0109y1p Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr0109y1p Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0116s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0116s1.mdx deleted file mode 100644 index b1138e77f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0116s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0116S1 - Avalanche Blockchain Network -description: Explore QR0116S1, a blockchain network with chain ID 82368. Learn about its native currency, QR0116S1 Token, and how to interact with the network. ---- - -# QR0116S1 - -QR0116S1 is a blockchain network with chain ID 82368. - -## Network Details - -- **Chain ID**: 82368 -- **Chain Name**: Avalanche -- **Short Name**: QR0116S1 -- **Network ID**: 82368 -- **Currency**: - - **Name**: QR0116S1 Token - - **Symbol**: USJ - - **Decimals**: 18 - -## RPC URLs - -QR0116S1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0116s1/testnet/rpc - -## QR0116S1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0116S1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0116y1s.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0116y1s.mdx deleted file mode 100644 index 7c97dc70f9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0116y1s.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr0116y1s - Avalanche Blockchain Network -description: Explore qr0116y1s, a blockchain network with chain ID 68295. Learn about its native currency, qr0116y1s Token, and how to interact with the network. ---- - -# qr0116y1s - -qr0116y1s is a blockchain network with chain ID 68295. - -## Network Details - -- **Chain ID**: 68295 -- **Chain Name**: Avalanche -- **Short Name**: qr0116y1s -- **Network ID**: 68295 -- **Currency**: - - **Name**: qr0116y1s Token - - **Symbol**: ANG - - **Decimals**: 18 - -## RPC URLs - -qr0116y1s can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0116y1s/testnet/rpc - -## qr0116y1s Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr0116y1s Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0122i1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0122i1-testnet.mdx deleted file mode 100644 index b524217b6b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0122i1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0122I1 Testnet - Avalanche Blockchain Network -description: Explore QR0122I1 Testnet, a blockchain network with chain ID 79338. Learn about its native currency, QR0122I1 Testnet Token, and how to interact with the network. ---- - -# QR0122I1 Testnet - -QR0122I1 Testnet is a blockchain network with chain ID 79338. - -## Network Details - -- **Chain ID**: 79338 -- **Chain Name**: Avalanche -- **Short Name**: QR0122I1 Testnet -- **Network ID**: 79338 -- **Currency**: - - **Name**: QR0122I1 Testnet Token - - **Symbol**: JVTX - - **Decimals**: 18 - -## RPC URLs - -QR0122I1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0122i1te/testnet/rpc - -## QR0122I1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0122I1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0129i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0129i1.mdx deleted file mode 100644 index d0bc2a9943..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0129i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0129I1 - Avalanche Blockchain Network -description: Explore QR0129I1, a blockchain network with chain ID 20139. Learn about its native currency, QR0129I1 Token, and how to interact with the network. ---- - -# QR0129I1 - -QR0129I1 is a blockchain network with chain ID 20139. - -## Network Details - -- **Chain ID**: 20139 -- **Chain Name**: Avalanche -- **Short Name**: QR0129I1 -- **Network ID**: 20139 -- **Currency**: - - **Name**: QR0129I1 Token - - **Symbol**: YOD - - **Decimals**: 18 - -## RPC URLs - -QR0129I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0129i1/testnet/rpc - -## QR0129I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0129I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0201i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0201i1.mdx deleted file mode 100644 index c5eee7b6db..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0201i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0201I1 - Avalanche Blockchain Network -description: Explore QR0201I1, a blockchain network with chain ID 98557. Learn about its native currency, QR0201I1 Token, and how to interact with the network. ---- - -# QR0201I1 - -QR0201I1 is a blockchain network with chain ID 98557. - -## Network Details - -- **Chain ID**: 98557 -- **Chain Name**: Avalanche -- **Short Name**: QR0201I1 -- **Network ID**: 98557 -- **Currency**: - - **Name**: QR0201I1 Token - - **Symbol**: OCZ - - **Decimals**: 18 - -## RPC URLs - -QR0201I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0201i1/testnet/rpc - -## QR0201I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0201I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0205i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0205i1.mdx deleted file mode 100644 index 721cc84754..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0205i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0205I1 - Avalanche Blockchain Network -description: Explore QR0205I1, a blockchain network with chain ID 41425. Learn about its native currency, QR0205I1 Token, and how to interact with the network. ---- - -# QR0205I1 - -QR0205I1 is a blockchain network with chain ID 41425. - -## Network Details - -- **Chain ID**: 41425 -- **Chain Name**: Avalanche -- **Short Name**: QR0205I1 -- **Network ID**: 41425 -- **Currency**: - - **Name**: QR0205I1 Token - - **Symbol**: PVW - - **Decimals**: 18 - -## RPC URLs - -QR0205I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0205i1/testnet/rpc - -## QR0205I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0205I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0205y1s.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0205y1s.mdx deleted file mode 100644 index 3b57a574d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0205y1s.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0205Y1S - Avalanche Blockchain Network -description: Explore QR0205Y1S, a blockchain network with chain ID 951083. Learn about its native currency, QR0205Y1S Token, and how to interact with the network. ---- - -# QR0205Y1S - -QR0205Y1S is a blockchain network with chain ID 951083. - -## Network Details - -- **Chain ID**: 951083 -- **Chain Name**: Avalanche -- **Short Name**: QR0205Y1S -- **Network ID**: 951083 -- **Currency**: - - **Name**: QR0205Y1S Token - - **Symbol**: MYO - - **Decimals**: 18 - -## RPC URLs - -QR0205Y1S can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0205y1s/testnet/rpc - -## QR0205Y1S Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0205Y1S Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0209y1s.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0209y1s.mdx deleted file mode 100644 index d837bd31b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0209y1s.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0209Y1S - Avalanche Blockchain Network -description: Explore QR0209Y1S, a blockchain network with chain ID 950375. Learn about its native currency, QR0209Y1S Token, and how to interact with the network. ---- - -# QR0209Y1S - -QR0209Y1S is a blockchain network with chain ID 950375. - -## Network Details - -- **Chain ID**: 950375 -- **Chain Name**: Avalanche -- **Short Name**: QR0209Y1S -- **Network ID**: 950375 -- **Currency**: - - **Name**: QR0209Y1S Token - - **Symbol**: XPU - - **Decimals**: 18 - -## RPC URLs - -QR0209Y1S can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0209y1s/testnet/rpc - -## QR0209Y1S Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0209Y1S Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0213y1s.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0213y1s.mdx deleted file mode 100644 index 9a30300919..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0213y1s.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0213Y1S - Avalanche Blockchain Network -description: Explore QR0213Y1S, a blockchain network with chain ID 991424. Learn about its native currency, QR0213Y1S Token, and how to interact with the network. ---- - -# QR0213Y1S - -QR0213Y1S is a blockchain network with chain ID 991424. - -## Network Details - -- **Chain ID**: 991424 -- **Chain Name**: Avalanche -- **Short Name**: QR0213Y1S -- **Network ID**: 991424 -- **Currency**: - - **Name**: QR0213Y1S Token - - **Symbol**: GCH - - **Decimals**: 18 - -## RPC URLs - -QR0213Y1S can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0213y1s/testnet/rpc - -## QR0213Y1S Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0213Y1S Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0214y1p.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0214y1p.mdx deleted file mode 100644 index 740ae6e652..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0214y1p.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0214Y1P - Avalanche Blockchain Network -description: Explore QR0214Y1P, a blockchain network with chain ID 946751. Learn about its native currency, QR0214Y1P Token, and how to interact with the network. ---- - -# QR0214Y1P - -QR0214Y1P is a blockchain network with chain ID 946751. - -## Network Details - -- **Chain ID**: 946751 -- **Chain Name**: Avalanche -- **Short Name**: QR0214Y1P -- **Network ID**: 946751 -- **Currency**: - - **Name**: QR0214Y1P Token - - **Symbol**: QAT - - **Decimals**: 18 - -## RPC URLs - -QR0214Y1P can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0214y1p/testnet/rpc - -## QR0214Y1P Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0214Y1P Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0215y1mp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0215y1mp.mdx deleted file mode 100644 index ed68d2f753..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0215y1mp.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QR0215Y1MP - Avalanche Blockchain Network -description: Explore QR0215Y1MP, a blockchain network with chain ID 929038. Learn about its native currency, QR0215Y1MP Token, and how to interact with the network. ---- - -# QR0215Y1MP - -QR0215Y1MP is a blockchain network with chain ID 929038. - -## Network Details - -- **Chain ID**: 929038 -- **Chain Name**: Avalanche -- **Short Name**: QR0215Y1MP -- **Network ID**: 929038 -- **Currency**: - - **Name**: QR0215Y1MP Token - - **Symbol**: QAT - - **Decimals**: 18 - -## RPC URLs - -QR0215Y1MP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0215y1mp/mainnet/rpc - -## QR0215Y1MP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0224t1tp-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0224t1tp-testnet.mdx deleted file mode 100644 index 6c8062ef13..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0224t1tp-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr0224t1tp Testnet - Avalanche Blockchain Network -description: Explore qr0224t1tp Testnet, a blockchain network with chain ID 46109. Learn about its native currency, qr0224t1tp Testnet Token, and how to interact with the network. ---- - -# qr0224t1tp Testnet - -qr0224t1tp Testnet is a blockchain network with chain ID 46109. - -## Network Details - -- **Chain ID**: 46109 -- **Chain Name**: Avalanche -- **Short Name**: qr0224t1tp Testnet -- **Network ID**: 46109 -- **Currency**: - - **Name**: qr0224t1tp Testnet Token - - **Symbol**: CRH - - **Decimals**: 18 - -## RPC URLs - -qr0224t1tp Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0224t1tp/testnet/rpc - -## qr0224t1tp Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr0224t1tp Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0227t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0227t1ts.mdx deleted file mode 100644 index 4787680dd2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0227t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0227T1TS - Avalanche Blockchain Network -description: Explore QR0227T1TS, a blockchain network with chain ID 999511. Learn about its native currency, QR0227T1TS Token, and how to interact with the network. ---- - -# QR0227T1TS - -QR0227T1TS is a blockchain network with chain ID 999511. - -## Network Details - -- **Chain ID**: 999511 -- **Chain Name**: Avalanche -- **Short Name**: QR0227T1TS -- **Network ID**: 999511 -- **Currency**: - - **Name**: QR0227T1TS Token - - **Symbol**: YFL - - **Decimals**: 18 - -## RPC URLs - -QR0227T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0227t1ts/testnet/rpc - -## QR0227T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0227T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0304t1ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0304t1ts-testnet.mdx deleted file mode 100644 index 998441538d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0304t1ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0304T1TS Testnet - Avalanche Blockchain Network -description: Explore QR0304T1TS Testnet, a blockchain network with chain ID 61551. Learn about its native currency, QR0304T1TS Testnet Token, and how to interact with the network. ---- - -# QR0304T1TS Testnet - -QR0304T1TS Testnet is a blockchain network with chain ID 61551. - -## Network Details - -- **Chain ID**: 61551 -- **Chain Name**: Avalanche -- **Short Name**: QR0304T1TS Testnet -- **Network ID**: 61551 -- **Currency**: - - **Name**: QR0304T1TS Testnet Token - - **Symbol**: OYU - - **Decimals**: 18 - -## RPC URLs - -QR0304T1TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0304t1ts/testnet/rpc - -## QR0304T1TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0304T1TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0318sgcp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0318sgcp.mdx deleted file mode 100644 index 44a4258fad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0318sgcp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0318sGCP - Avalanche Blockchain Network -description: Explore QR0318sGCP, a blockchain network with chain ID 8154. Learn about its native currency, QR0318sGCP Token, and how to interact with the network. ---- - -# QR0318sGCP - -QR0318sGCP is a blockchain network with chain ID 8154. - -## Network Details - -- **Chain ID**: 8154 -- **Chain Name**: Avalanche -- **Short Name**: QR0318sGCP -- **Network ID**: 8154 -- **Currency**: - - **Name**: QR0318sGCP Token - - **Symbol**: VEG - - **Decimals**: 18 - -## RPC URLs - -QR0318sGCP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0318sgcp/testnet/rpc - -## QR0318sGCP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0318sGCP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0318t1ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0318t1ts-testnet.mdx deleted file mode 100644 index 51fe05b4c1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0318t1ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0318T1TS Testnet - Avalanche Blockchain Network -description: Explore QR0318T1TS Testnet, a blockchain network with chain ID 978993. Learn about its native currency, QR0318T1TS Testnet Token, and how to interact with the network. ---- - -# QR0318T1TS Testnet - -QR0318T1TS Testnet is a blockchain network with chain ID 978993. - -## Network Details - -- **Chain ID**: 978993 -- **Chain Name**: Avalanche -- **Short Name**: QR0318T1TS Testnet -- **Network ID**: 978993 -- **Currency**: - - **Name**: QR0318T1TS Testnet Token - - **Symbol**: OSF - - **Decimals**: 18 - -## RPC URLs - -QR0318T1TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0318t1ts/testnet/rpc - -## QR0318T1TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0318T1TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0326t2ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0326t2ts-testnet.mdx deleted file mode 100644 index 0d7b89a187..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0326t2ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0326T2TS Testnet - Avalanche Blockchain Network -description: Explore QR0326T2TS Testnet, a blockchain network with chain ID 933326. Learn about its native currency, QR0326T2TS Testnet Token, and how to interact with the network. ---- - -# QR0326T2TS Testnet - -QR0326T2TS Testnet is a blockchain network with chain ID 933326. - -## Network Details - -- **Chain ID**: 933326 -- **Chain Name**: Avalanche -- **Short Name**: QR0326T2TS Testnet -- **Network ID**: 933326 -- **Currency**: - - **Name**: QR0326T2TS Testnet Token - - **Symbol**: XFT - - **Decimals**: 18 - -## RPC URLs - -QR0326T2TS Testnet can be accessed through the following RPC endpoints: - - - -## QR0326T2TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0326T2TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0326t4ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0326t4ts-testnet.mdx deleted file mode 100644 index 9e3f504fac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0326t4ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0326T4TS Testnet - Avalanche Blockchain Network -description: Explore QR0326T4TS Testnet, a blockchain network with chain ID 961256. Learn about its native currency, QR0326T4TS Testnet Token, and how to interact with the network. ---- - -# QR0326T4TS Testnet - -QR0326T4TS Testnet is a blockchain network with chain ID 961256. - -## Network Details - -- **Chain ID**: 961256 -- **Chain Name**: Avalanche -- **Short Name**: QR0326T4TS Testnet -- **Network ID**: 961256 -- **Currency**: - - **Name**: QR0326T4TS Testnet Token - - **Symbol**: HTF - - **Decimals**: 18 - -## RPC URLs - -QR0326T4TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0326t4ts/testnet/rpc - -## QR0326T4TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0326T4TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0327s1d-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0327s1d-testnet.mdx deleted file mode 100644 index 71aa0b0ea3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0327s1d-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0327S1D Testnet - Avalanche Blockchain Network -description: Explore QR0327S1D Testnet, a blockchain network with chain ID 10050. Learn about its native currency, QR0327S1D Testnet Token, and how to interact with the network. ---- - -# QR0327S1D Testnet - -QR0327S1D Testnet is a blockchain network with chain ID 10050. - -## Network Details - -- **Chain ID**: 10050 -- **Chain Name**: Avalanche -- **Short Name**: QR0327S1D Testnet -- **Network ID**: 10050 -- **Currency**: - - **Name**: QR0327S1D Testnet Token - - **Symbol**: WZL - - **Decimals**: 18 - -## RPC URLs - -QR0327S1D Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0327s1dt/testnet/rpc - -## QR0327S1D Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0327S1D Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0408t1ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0408t1ts-testnet.mdx deleted file mode 100644 index 3244995091..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0408t1ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0408T1TS Testnet - Avalanche Blockchain Network -description: Explore QR0408T1TS Testnet, a blockchain network with chain ID 914031. Learn about its native currency, QR0408T1TS Testnet Token, and how to interact with the network. ---- - -# QR0408T1TS Testnet - -QR0408T1TS Testnet is a blockchain network with chain ID 914031. - -## Network Details - -- **Chain ID**: 914031 -- **Chain Name**: Avalanche -- **Short Name**: QR0408T1TS Testnet -- **Network ID**: 914031 -- **Currency**: - - **Name**: QR0408T1TS Testnet Token - - **Symbol**: HOK - - **Decimals**: 18 - -## RPC URLs - -QR0408T1TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0408t1ts/testnet/rpc - -## QR0408T1TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0408T1TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0408t2ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0408t2ts-testnet.mdx deleted file mode 100644 index bf3e5b47d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0408t2ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0408T2TS Testnet - Avalanche Blockchain Network -description: Explore QR0408T2TS Testnet, a blockchain network with chain ID 928010. Learn about its native currency, QR0408T2TS Testnet Token, and how to interact with the network. ---- - -# QR0408T2TS Testnet - -QR0408T2TS Testnet is a blockchain network with chain ID 928010. - -## Network Details - -- **Chain ID**: 928010 -- **Chain Name**: Avalanche -- **Short Name**: QR0408T2TS Testnet -- **Network ID**: 928010 -- **Currency**: - - **Name**: QR0408T2TS Testnet Token - - **Symbol**: XYZ - - **Decimals**: 18 - -## RPC URLs - -QR0408T2TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0408t2ts/testnet/rpc - -## QR0408T2TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0408T2TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0409s1-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0409s1-testnet.mdx deleted file mode 100644 index 876f3b602b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0409s1-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0409s1 Testnet - Avalanche Blockchain Network -description: Explore QR0409s1 Testnet, a blockchain network with chain ID 41720. Learn about its native currency, QR0409s1 Testnet Token, and how to interact with the network. ---- - -# QR0409s1 Testnet - -QR0409s1 Testnet is a blockchain network with chain ID 41720. - -## Network Details - -- **Chain ID**: 41720 -- **Chain Name**: Avalanche -- **Short Name**: QR0409s1 Testnet -- **Network ID**: 41720 -- **Currency**: - - **Name**: QR0409s1 Testnet Token - - **Symbol**: ZSP - - **Decimals**: 18 - -## RPC URLs - -QR0409s1 Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0409s1/testnet/rpc - -## QR0409s1 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0409s1 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0410s1d-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0410s1d-testnet.mdx deleted file mode 100644 index d1f2c79f0e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0410s1d-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0410s1d Testnet - Avalanche Blockchain Network -description: Explore QR0410s1d Testnet, a blockchain network with chain ID 51435. Learn about its native currency, QR0410s1d Testnet Token, and how to interact with the network. ---- - -# QR0410s1d Testnet - -QR0410s1d Testnet is a blockchain network with chain ID 51435. - -## Network Details - -- **Chain ID**: 51435 -- **Chain Name**: Avalanche -- **Short Name**: QR0410s1d Testnet -- **Network ID**: 51435 -- **Currency**: - - **Name**: QR0410s1d Testnet Token - - **Symbol**: CWV - - **Decimals**: 18 - -## RPC URLs - -QR0410s1d Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0410s1d/testnet/rpc - -## QR0410s1d Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0410s1d Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0422t1ts-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0422t1ts-testnet.mdx deleted file mode 100644 index bf50694dc2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0422t1ts-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0422T1TS Testnet - Avalanche Blockchain Network -description: Explore QR0422T1TS Testnet, a blockchain network with chain ID 933039. Learn about its native currency, QR0422T1TS Testnet Token, and how to interact with the network. ---- - -# QR0422T1TS Testnet - -QR0422T1TS Testnet is a blockchain network with chain ID 933039. - -## Network Details - -- **Chain ID**: 933039 -- **Chain Name**: Avalanche -- **Short Name**: QR0422T1TS Testnet -- **Network ID**: 933039 -- **Currency**: - - **Name**: QR0422T1TS Testnet Token - - **Symbol**: DIF - - **Decimals**: 18 - -## RPC URLs - -QR0422T1TS Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0422t1ts/testnet/rpc - -## QR0422T1TS Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0422T1TS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0426t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0426t1ts.mdx deleted file mode 100644 index 329a822259..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0426t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0426T1TS - Avalanche Blockchain Network -description: Explore QR0426T1TS, a blockchain network with chain ID 995201. Learn about its native currency, QR0426T1TS Token, and how to interact with the network. ---- - -# QR0426T1TS - -QR0426T1TS is a blockchain network with chain ID 995201. - -## Network Details - -- **Chain ID**: 995201 -- **Chain Name**: Avalanche -- **Short Name**: QR0426T1TS -- **Network ID**: 995201 -- **Currency**: - - **Name**: QR0426T1TS Token - - **Symbol**: XOF - - **Decimals**: 18 - -## RPC URLs - -QR0426T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0426t1ts/testnet/rpc - -## QR0426T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0426T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0429t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0429t1ts.mdx deleted file mode 100644 index 8ae2f5bb58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0429t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0429T1TS - Avalanche Blockchain Network -description: Explore QR0429T1TS, a blockchain network with chain ID 982558. Learn about its native currency, QR0429T1TS Token, and how to interact with the network. ---- - -# QR0429T1TS - -QR0429T1TS is a blockchain network with chain ID 982558. - -## Network Details - -- **Chain ID**: 982558 -- **Chain Name**: Avalanche -- **Short Name**: QR0429T1TS -- **Network ID**: 982558 -- **Currency**: - - **Name**: QR0429T1TS Token - - **Symbol**: EXT - - **Decimals**: 18 - -## RPC URLs - -QR0429T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0429t1ts/testnet/rpc - -## QR0429T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0429T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0501t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0501t1ts.mdx deleted file mode 100644 index a1a7519221..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0501t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0501T1TS - Avalanche Blockchain Network -description: Explore QR0501T1TS, a blockchain network with chain ID 939359. Learn about its native currency, QR0501T1TS Token, and how to interact with the network. ---- - -# QR0501T1TS - -QR0501T1TS is a blockchain network with chain ID 939359. - -## Network Details - -- **Chain ID**: 939359 -- **Chain Name**: Avalanche -- **Short Name**: QR0501T1TS -- **Network ID**: 939359 -- **Currency**: - - **Name**: QR0501T1TS Token - - **Symbol**: ZGM - - **Decimals**: 18 - -## RPC URLs - -QR0501T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0501t1ts/testnet/rpc - -## QR0501T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0501T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0506t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0506t1ts.mdx deleted file mode 100644 index 0c72410460..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0506t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0506T1TS - Avalanche Blockchain Network -description: Explore QR0506T1TS, a blockchain network with chain ID 934567. Learn about its native currency, QR0506T1TS Token, and how to interact with the network. ---- - -# QR0506T1TS - -QR0506T1TS is a blockchain network with chain ID 934567. - -## Network Details - -- **Chain ID**: 934567 -- **Chain Name**: Avalanche -- **Short Name**: QR0506T1TS -- **Network ID**: 934567 -- **Currency**: - - **Name**: QR0506T1TS Token - - **Symbol**: VPE - - **Decimals**: 18 - -## RPC URLs - -QR0506T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0506t1ts/testnet/rpc - -## QR0506T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0506T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0507y1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0507y1ts.mdx deleted file mode 100644 index 2ce9d00560..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0507y1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0507Y1TS - Avalanche Blockchain Network -description: Explore QR0507Y1TS, a blockchain network with chain ID 976517. Learn about its native currency, QR0507Y1TS Token, and how to interact with the network. ---- - -# QR0507Y1TS - -QR0507Y1TS is a blockchain network with chain ID 976517. - -## Network Details - -- **Chain ID**: 976517 -- **Chain Name**: Avalanche -- **Short Name**: QR0507Y1TS -- **Network ID**: 976517 -- **Currency**: - - **Name**: QR0507Y1TS Token - - **Symbol**: SQR - - **Decimals**: 18 - -## RPC URLs - -QR0507Y1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0507y1ts/testnet/rpc - -## QR0507Y1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0507Y1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0508t1mp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0508t1mp.mdx deleted file mode 100644 index ea8d522305..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0508t1mp.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QR0508T1MP - Avalanche Blockchain Network -description: Explore QR0508T1MP, a blockchain network with chain ID 959009. Learn about its native currency, QR0508T1MP Token, and how to interact with the network. ---- - -# QR0508T1MP - -QR0508T1MP is a blockchain network with chain ID 959009. - -## Network Details - -- **Chain ID**: 959009 -- **Chain Name**: Avalanche -- **Short Name**: QR0508T1MP -- **Network ID**: 959009 -- **Currency**: - - **Name**: QR0508T1MP Token - - **Symbol**: AHO - - **Decimals**: 18 - -## RPC URLs - -QR0508T1MP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0508t1mp/mainnet/rpc - -## QR0508T1MP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0508t1tp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0508t1tp.mdx deleted file mode 100644 index bc4b085b1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0508t1tp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0508T1TP - Avalanche Blockchain Network -description: Explore QR0508T1TP, a blockchain network with chain ID 919517. Learn about its native currency, QR0508T1TP Token, and how to interact with the network. ---- - -# QR0508T1TP - -QR0508T1TP is a blockchain network with chain ID 919517. - -## Network Details - -- **Chain ID**: 919517 -- **Chain Name**: Avalanche -- **Short Name**: QR0508T1TP -- **Network ID**: 919517 -- **Currency**: - - **Name**: QR0508T1TP Token - - **Symbol**: AHO - - **Decimals**: 18 - -## RPC URLs - -QR0508T1TP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0508t1tp/testnet/rpc - -## QR0508T1TP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0508T1TP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0510s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0510s1.mdx deleted file mode 100644 index 480d49012c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0510s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0510s1 - Avalanche Blockchain Network -description: Explore QR0510s1, a blockchain network with chain ID 59940. Learn about its native currency, QR0510s1 Token, and how to interact with the network. ---- - -# QR0510s1 - -QR0510s1 is a blockchain network with chain ID 59940. - -## Network Details - -- **Chain ID**: 59940 -- **Chain Name**: Avalanche -- **Short Name**: QR0510s1 -- **Network ID**: 59940 -- **Currency**: - - **Name**: QR0510s1 Token - - **Symbol**: RTQ - - **Decimals**: 18 - -## RPC URLs - -QR0510s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0510s1/testnet/rpc - -## QR0510s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0510s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0513t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0513t1ts.mdx deleted file mode 100644 index 074a5c7ebf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0513t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0513T1TS - Avalanche Blockchain Network -description: Explore QR0513T1TS, a blockchain network with chain ID 958798. Learn about its native currency, QR0513T1TS Token, and how to interact with the network. ---- - -# QR0513T1TS - -QR0513T1TS is a blockchain network with chain ID 958798. - -## Network Details - -- **Chain ID**: 958798 -- **Chain Name**: Avalanche -- **Short Name**: QR0513T1TS -- **Network ID**: 958798 -- **Currency**: - - **Name**: QR0513T1TS Token - - **Symbol**: PME - - **Decimals**: 18 - -## RPC URLs - -QR0513T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0513t1ts/testnet/rpc - -## QR0513T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0513T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0520t1td.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0520t1td.mdx deleted file mode 100644 index bc6c8bbb47..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0520t1td.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0520T1TD - Avalanche Blockchain Network -description: Explore QR0520T1TD, a blockchain network with chain ID 25688. Learn about its native currency, QR0520T1TD Token, and how to interact with the network. ---- - -# QR0520T1TD - -QR0520T1TD is a blockchain network with chain ID 25688. - -## Network Details - -- **Chain ID**: 25688 -- **Chain Name**: Avalanche -- **Short Name**: QR0520T1TD -- **Network ID**: 25688 -- **Currency**: - - **Name**: QR0520T1TD Token - - **Symbol**: DYH - - **Decimals**: 18 - -## RPC URLs - -QR0520T1TD can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0520t1td/testnet/rpc - -## QR0520T1TD Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0520T1TD Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0520t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0520t1ts.mdx deleted file mode 100644 index 9181a11799..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0520t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0520T1TS - Avalanche Blockchain Network -description: Explore QR0520T1TS, a blockchain network with chain ID 943503. Learn about its native currency, QR0520T1TS Token, and how to interact with the network. ---- - -# QR0520T1TS - -QR0520T1TS is a blockchain network with chain ID 943503. - -## Network Details - -- **Chain ID**: 943503 -- **Chain Name**: Avalanche -- **Short Name**: QR0520T1TS -- **Network ID**: 943503 -- **Currency**: - - **Name**: QR0520T1TS Token - - **Symbol**: JQH - - **Decimals**: 18 - -## RPC URLs - -QR0520T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0520t1ts/testnet/rpc - -## QR0520T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0520T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0521t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0521t1ts.mdx deleted file mode 100644 index 6f029f1dcc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0521t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0521T1TS - Avalanche Blockchain Network -description: Explore QR0521T1TS, a blockchain network with chain ID 996699. Learn about its native currency, QR0521T1TS Token, and how to interact with the network. ---- - -# QR0521T1TS - -QR0521T1TS is a blockchain network with chain ID 996699. - -## Network Details - -- **Chain ID**: 996699 -- **Chain Name**: Avalanche -- **Short Name**: QR0521T1TS -- **Network ID**: 996699 -- **Currency**: - - **Name**: QR0521T1TS Token - - **Symbol**: ATH - - **Decimals**: 18 - -## RPC URLs - -QR0521T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0521t1ts/testnet/rpc - -## QR0521T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0521T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0522t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0522t1ts.mdx deleted file mode 100644 index 5464b43ca0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0522t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0522T1TS - Avalanche Blockchain Network -description: Explore QR0522T1TS, a blockchain network with chain ID 970066. Learn about its native currency, QR0522T1TS Token, and how to interact with the network. ---- - -# QR0522T1TS - -QR0522T1TS is a blockchain network with chain ID 970066. - -## Network Details - -- **Chain ID**: 970066 -- **Chain Name**: Avalanche -- **Short Name**: QR0522T1TS -- **Network ID**: 970066 -- **Currency**: - - **Name**: QR0522T1TS Token - - **Symbol**: BUL - - **Decimals**: 18 - -## RPC URLs - -QR0522T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0522t1ts/testnet/rpc - -## QR0522T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0522T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0523s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0523s1t.mdx deleted file mode 100644 index b1c9ea08d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0523s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0523S1T - Avalanche Blockchain Network -description: Explore QR0523S1T, a blockchain network with chain ID 86157. Learn about its native currency, QR0523S1T Token, and how to interact with the network. ---- - -# QR0523S1T - -QR0523S1T is a blockchain network with chain ID 86157. - -## Network Details - -- **Chain ID**: 86157 -- **Chain Name**: Avalanche -- **Short Name**: QR0523S1T -- **Network ID**: 86157 -- **Currency**: - - **Name**: QR0523S1T Token - - **Symbol**: STZ - - **Decimals**: 18 - -## RPC URLs - -QR0523S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0523s1t/testnet/rpc - -## QR0523S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0523S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0523y1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0523y1ts.mdx deleted file mode 100644 index b15111e43a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0523y1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr0523y1ts - Avalanche Blockchain Network -description: Explore qr0523y1ts, a blockchain network with chain ID 994504. Learn about its native currency, qr0523y1ts Token, and how to interact with the network. ---- - -# qr0523y1ts - -qr0523y1ts is a blockchain network with chain ID 994504. - -## Network Details - -- **Chain ID**: 994504 -- **Chain Name**: Avalanche -- **Short Name**: qr0523y1ts -- **Network ID**: 994504 -- **Currency**: - - **Name**: qr0523y1ts Token - - **Symbol**: QHZ - - **Decimals**: 18 - -## RPC URLs - -qr0523y1ts can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0523y1ts/testnet/rpc - -## qr0523y1ts Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr0523y1ts Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0528s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0528s1t.mdx deleted file mode 100644 index 5d05f6983a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0528s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0528S1T - Avalanche Blockchain Network -description: Explore QR0528S1T, a blockchain network with chain ID 18263. Learn about its native currency, QR0528S1T Token, and how to interact with the network. ---- - -# QR0528S1T - -QR0528S1T is a blockchain network with chain ID 18263. - -## Network Details - -- **Chain ID**: 18263 -- **Chain Name**: Avalanche -- **Short Name**: QR0528S1T -- **Network ID**: 18263 -- **Currency**: - - **Name**: QR0528S1T Token - - **Symbol**: STZ - - **Decimals**: 18 - -## RPC URLs - -QR0528S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0528s1t/testnet/rpc - -## QR0528S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0528S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0528t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0528t1ts.mdx deleted file mode 100644 index 0c4d46ef76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0528t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0528T1TS - Avalanche Blockchain Network -description: Explore QR0528T1TS, a blockchain network with chain ID 95468. Learn about its native currency, QR0528T1TS Token, and how to interact with the network. ---- - -# QR0528T1TS - -QR0528T1TS is a blockchain network with chain ID 95468. - -## Network Details - -- **Chain ID**: 95468 -- **Chain Name**: Avalanche -- **Short Name**: QR0528T1TS -- **Network ID**: 95468 -- **Currency**: - - **Name**: QR0528T1TS Token - - **Symbol**: TLK - - **Decimals**: 18 - -## RPC URLs - -QR0528T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0528t1ts/testnet/rpc - -## QR0528T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0528T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0529t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0529t1ts.mdx deleted file mode 100644 index 0593c6a8ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0529t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0529T1TS - Avalanche Blockchain Network -description: Explore QR0529T1TS, a blockchain network with chain ID 918806. Learn about its native currency, QR0529T1TS Token, and how to interact with the network. ---- - -# QR0529T1TS - -QR0529T1TS is a blockchain network with chain ID 918806. - -## Network Details - -- **Chain ID**: 918806 -- **Chain Name**: Avalanche -- **Short Name**: QR0529T1TS -- **Network ID**: 918806 -- **Currency**: - - **Name**: QR0529T1TS Token - - **Symbol**: MCV - - **Decimals**: 18 - -## RPC URLs - -QR0529T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0529t1ts/testnet/rpc - -## QR0529T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0529T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0530t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0530t1ts.mdx deleted file mode 100644 index dfce383f1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0530t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0530T1TS - Avalanche Blockchain Network -description: Explore QR0530T1TS, a blockchain network with chain ID 980892. Learn about its native currency, QR0530T1TS Token, and how to interact with the network. ---- - -# QR0530T1TS - -QR0530T1TS is a blockchain network with chain ID 980892. - -## Network Details - -- **Chain ID**: 980892 -- **Chain Name**: Avalanche -- **Short Name**: QR0530T1TS -- **Network ID**: 980892 -- **Currency**: - - **Name**: QR0530T1TS Token - - **Symbol**: OXQ - - **Decimals**: 18 - -## RPC URLs - -QR0530T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0530t1ts/testnet/rpc - -## QR0530T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0530T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0531s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0531s1t.mdx deleted file mode 100644 index 69ed95fdcc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0531s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0531S1T - Avalanche Blockchain Network -description: Explore QR0531S1T, a blockchain network with chain ID 38168. Learn about its native currency, QR0531S1T Token, and how to interact with the network. ---- - -# QR0531S1T - -QR0531S1T is a blockchain network with chain ID 38168. - -## Network Details - -- **Chain ID**: 38168 -- **Chain Name**: Avalanche -- **Short Name**: QR0531S1T -- **Network ID**: 38168 -- **Currency**: - - **Name**: QR0531S1T Token - - **Symbol**: GKN - - **Decimals**: 18 - -## RPC URLs - -QR0531S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0531s1t/testnet/rpc - -## QR0531S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0531S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0604s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0604s1t.mdx deleted file mode 100644 index 5425e58997..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0604s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0604S1T - Avalanche Blockchain Network -description: Explore QR0604S1T, a blockchain network with chain ID 64947. Learn about its native currency, QR0604S1T Token, and how to interact with the network. ---- - -# QR0604S1T - -QR0604S1T is a blockchain network with chain ID 64947. - -## Network Details - -- **Chain ID**: 64947 -- **Chain Name**: Avalanche -- **Short Name**: QR0604S1T -- **Network ID**: 64947 -- **Currency**: - - **Name**: QR0604S1T Token - - **Symbol**: GKN - - **Decimals**: 18 - -## RPC URLs - -QR0604S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0604s1t/testnet/rpc - -## QR0604S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0604S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0605s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0605s1t.mdx deleted file mode 100644 index 05509fdf03..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0605s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0605S1T - Avalanche Blockchain Network -description: Explore QR0605S1T, a blockchain network with chain ID 66729. Learn about its native currency, QR0605S1T Token, and how to interact with the network. ---- - -# QR0605S1T - -QR0605S1T is a blockchain network with chain ID 66729. - -## Network Details - -- **Chain ID**: 66729 -- **Chain Name**: Avalanche -- **Short Name**: QR0605S1T -- **Network ID**: 66729 -- **Currency**: - - **Name**: QR0605S1T Token - - **Symbol**: GKN - - **Decimals**: 18 - -## RPC URLs - -QR0605S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0605s1t/testnet/rpc - -## QR0605S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0605S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0606s1t.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0606s1t.mdx deleted file mode 100644 index aff2eb4ccc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0606s1t.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0606S1T - Avalanche Blockchain Network -description: Explore QR0606S1T, a blockchain network with chain ID 32112. Learn about its native currency, QR0606S1T Token, and how to interact with the network. ---- - -# QR0606S1T - -QR0606S1T is a blockchain network with chain ID 32112. - -## Network Details - -- **Chain ID**: 32112 -- **Chain Name**: Avalanche -- **Short Name**: QR0606S1T -- **Network ID**: 32112 -- **Currency**: - - **Name**: QR0606S1T Token - - **Symbol**: GKN - - **Decimals**: 18 - -## RPC URLs - -QR0606S1T can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0606s1t/testnet/rpc - -## QR0606S1T Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0606S1T Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0606t1tp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0606t1tp.mdx deleted file mode 100644 index 82d3ac48e5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0606t1tp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0606T1TP - Avalanche Blockchain Network -description: Explore QR0606T1TP, a blockchain network with chain ID 43994. Learn about its native currency, QR0606T1TP Token, and how to interact with the network. ---- - -# QR0606T1TP - -QR0606T1TP is a blockchain network with chain ID 43994. - -## Network Details - -- **Chain ID**: 43994 -- **Chain Name**: Avalanche -- **Short Name**: QR0606T1TP -- **Network ID**: 43994 -- **Currency**: - - **Name**: QR0606T1TP Token - - **Symbol**: HRQ - - **Decimals**: 18 - -## RPC URLs - -QR0606T1TP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0606t1tp/testnet/rpc - -## QR0606T1TP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0606T1TP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0606t2tp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0606t2tp.mdx deleted file mode 100644 index 695a8c63af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0606t2tp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0606T2TP - Avalanche Blockchain Network -description: Explore QR0606T2TP, a blockchain network with chain ID 49995. Learn about its native currency, QR0606T2TP Token, and how to interact with the network. ---- - -# QR0606T2TP - -QR0606T2TP is a blockchain network with chain ID 49995. - -## Network Details - -- **Chain ID**: 49995 -- **Chain Name**: Avalanche -- **Short Name**: QR0606T2TP -- **Network ID**: 49995 -- **Currency**: - - **Name**: QR0606T2TP Token - - **Symbol**: HRQ - - **Decimals**: 18 - -## RPC URLs - -QR0606T2TP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0606t2tp/testnet/rpc - -## QR0606T2TP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0606T2TP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0606t3tp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0606t3tp.mdx deleted file mode 100644 index c353a03e9d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0606t3tp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0606T3TP - Avalanche Blockchain Network -description: Explore QR0606T3TP, a blockchain network with chain ID 41847. Learn about its native currency, QR0606T3TP Token, and how to interact with the network. ---- - -# QR0606T3TP - -QR0606T3TP is a blockchain network with chain ID 41847. - -## Network Details - -- **Chain ID**: 41847 -- **Chain Name**: Avalanche -- **Short Name**: QR0606T3TP -- **Network ID**: 41847 -- **Currency**: - - **Name**: QR0606T3TP Token - - **Symbol**: HRQ - - **Decimals**: 18 - -## RPC URLs - -QR0606T3TP can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0606t3tp/testnet/rpc - -## QR0606T3TP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0606T3TP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0607t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0607t1ts.mdx deleted file mode 100644 index a50044413d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0607t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0607t1ts - Avalanche Blockchain Network -description: Explore QR0607t1ts, a blockchain network with chain ID 922935. Learn about its native currency, QR0607t1ts Token, and how to interact with the network. ---- - -# QR0607t1ts - -QR0607t1ts is a blockchain network with chain ID 922935. - -## Network Details - -- **Chain ID**: 922935 -- **Chain Name**: Avalanche -- **Short Name**: QR0607t1ts -- **Network ID**: 922935 -- **Currency**: - - **Name**: QR0607t1ts Token - - **Symbol**: WAP - - **Decimals**: 18 - -## RPC URLs - -QR0607t1ts can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0607t1ts/testnet/rpc - -## QR0607t1ts Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0607t1ts Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0611sts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0611sts.mdx deleted file mode 100644 index 8063078840..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0611sts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0611STS - Avalanche Blockchain Network -description: Explore QR0611STS, a blockchain network with chain ID 68316. Learn about its native currency, QR0611STS Token, and how to interact with the network. ---- - -# QR0611STS - -QR0611STS is a blockchain network with chain ID 68316. - -## Network Details - -- **Chain ID**: 68316 -- **Chain Name**: Avalanche -- **Short Name**: QR0611STS -- **Network ID**: 68316 -- **Currency**: - - **Name**: QR0611STS Token - - **Symbol**: NAA - - **Decimals**: 18 - -## RPC URLs - -QR0611STS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0611sts/testnet/rpc - -## QR0611STS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0611STS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0612t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0612t1ts.mdx deleted file mode 100644 index 38177eae24..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0612t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0612T1TS - Avalanche Blockchain Network -description: Explore QR0612T1TS, a blockchain network with chain ID 74444. Learn about its native currency, QR0612T1TS Token, and how to interact with the network. ---- - -# QR0612T1TS - -QR0612T1TS is a blockchain network with chain ID 74444. - -## Network Details - -- **Chain ID**: 74444 -- **Chain Name**: Avalanche -- **Short Name**: QR0612T1TS -- **Network ID**: 74444 -- **Currency**: - - **Name**: QR0612T1TS Token - - **Symbol**: FYJ - - **Decimals**: 18 - -## RPC URLs - -QR0612T1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0612t1ts/testnet/rpc - -## QR0612T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0612T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0614t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0614t1ts.mdx deleted file mode 100644 index 31d5814c60..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0614t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0614T1tS - Avalanche Blockchain Network -description: Explore QR0614T1tS, a blockchain network with chain ID 85405. Learn about its native currency, QR0614T1tS Token, and how to interact with the network. ---- - -# QR0614T1tS - -QR0614T1tS is a blockchain network with chain ID 85405. - -## Network Details - -- **Chain ID**: 85405 -- **Chain Name**: Avalanche -- **Short Name**: QR0614T1tS -- **Network ID**: 85405 -- **Currency**: - - **Name**: QR0614T1tS Token - - **Symbol**: FTW - - **Decimals**: 18 - -## RPC URLs - -QR0614T1tS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0614t1ts/testnet/rpc - -## QR0614T1tS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0614T1tS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0701s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0701s1ts.mdx deleted file mode 100644 index da87751486..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0701s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0701S1TS - Avalanche Blockchain Network -description: Explore QR0701S1TS, a blockchain network with chain ID 22721. Learn about its native currency, QR0701S1TS Token, and how to interact with the network. ---- - -# QR0701S1TS - -QR0701S1TS is a blockchain network with chain ID 22721. - -## Network Details - -- **Chain ID**: 22721 -- **Chain Name**: Avalanche -- **Short Name**: QR0701S1TS -- **Network ID**: 22721 -- **Currency**: - - **Name**: QR0701S1TS Token - - **Symbol**: BHQ - - **Decimals**: 18 - -## RPC URLs - -QR0701S1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0701s1ts-b5089.avax-test.network/ext/bc/26cFteUtPKbyFiDzKKbV1t1PVhcLuXTfRnSh62Sqqd7VythcKJ/rpc?token=67052c49c6e612210e3b27042731ddcaf1cfe7f8c23f3e27c887ff52014b20b6 - -## QR0701S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0701S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0708a1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0708a1ts.mdx deleted file mode 100644 index dc22d6be45..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0708a1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0708A1TS - Avalanche Blockchain Network -description: Explore QR0708A1TS, a blockchain network with chain ID 31170. Learn about its native currency, QR0708A1TS Token, and how to interact with the network. ---- - -# QR0708A1TS - -QR0708A1TS is a blockchain network with chain ID 31170. - -## Network Details - -- **Chain ID**: 31170 -- **Chain Name**: Avalanche -- **Short Name**: QR0708A1TS -- **Network ID**: 31170 -- **Currency**: - - **Name**: QR0708A1TS Token - - **Symbol**: VQX - - **Decimals**: 18 - -## RPC URLs - -QR0708A1TS can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr0708a1ts/testnet/rpc - -## QR0708A1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0708A1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0708s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0708s1ts.mdx deleted file mode 100644 index 8eab702e37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0708s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0708S1TS - Avalanche Blockchain Network -description: Explore QR0708S1TS, a blockchain network with chain ID 22562. Learn about its native currency, QR0708S1TS Token, and how to interact with the network. ---- - -# QR0708S1TS - -QR0708S1TS is a blockchain network with chain ID 22562. - -## Network Details - -- **Chain ID**: 22562 -- **Chain Name**: Avalanche -- **Short Name**: QR0708S1TS -- **Network ID**: 22562 -- **Currency**: - - **Name**: QR0708S1TS Token - - **Symbol**: QIA - - **Decimals**: 18 - -## RPC URLs - -QR0708S1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0708s1ts-a41a7.avax-test.network/ext/bc/xWY9qgnqRgxxpAiZ5xMhoZ3K68JgcDhbKTT2FJAyUXkjVzNiL/rpc?token=34b52f712e1f25b3db1f47e6f79a3f93a6d30d8d55b02ca1446c3a30610d6fc4 - -## QR0708S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0708S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0708t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0708t1ts.mdx deleted file mode 100644 index d546c4018d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0708t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0708T1TS - Avalanche Blockchain Network -description: Explore QR0708T1TS, a blockchain network with chain ID 62454. Learn about its native currency, QR0708T1TS Token, and how to interact with the network. ---- - -# QR0708T1TS - -QR0708T1TS is a blockchain network with chain ID 62454. - -## Network Details - -- **Chain ID**: 62454 -- **Chain Name**: Avalanche -- **Short Name**: QR0708T1TS -- **Network ID**: 62454 -- **Currency**: - - **Name**: QR0708T1TS Token - - **Symbol**: AFH - - **Decimals**: 18 - -## RPC URLs - -QR0708T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0708t1ts-x17f8.avax-test.network/ext/bc/7xh1BHRDzwVvbo7hnEyxiJcRr8XGvae4E9CYTreCv8xEj4keX/rpc?token=069106c959a59e709a8d93f1170654928f2216e08d07e2f1041ce1993c564f91 - -## QR0708T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0708T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0715s1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0715s1ts.mdx deleted file mode 100644 index 722ce32f0a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0715s1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0715S1TS - Avalanche Blockchain Network -description: Explore QR0715S1TS, a blockchain network with chain ID 28596. Learn about its native currency, QR0715S1TS Token, and how to interact with the network. ---- - -# QR0715S1TS - -QR0715S1TS is a blockchain network with chain ID 28596. - -## Network Details - -- **Chain ID**: 28596 -- **Chain Name**: Avalanche -- **Short Name**: QR0715S1TS -- **Network ID**: 28596 -- **Currency**: - - **Name**: QR0715S1TS Token - - **Symbol**: XPQ - - **Decimals**: 18 - -## RPC URLs - -QR0715S1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0715s1ts-f9cf4.avax-test.network/ext/bc/2Y3tY5z3xtrjv3PyKsgK7mQ5XNiQMcV71SVWyifirbTjnyY5fX/rpc?token=c9517b8f6efa8e63ff559ec29d189e9c6c71fe6f9e2baf2767d4881dad5d15ed - -## QR0715S1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0715S1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0715t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0715t1ts.mdx deleted file mode 100644 index c149e72715..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0715t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0715T1TS - Avalanche Blockchain Network -description: Explore QR0715T1TS, a blockchain network with chain ID 85677. Learn about its native currency, QR0715T1TS Token, and how to interact with the network. ---- - -# QR0715T1TS - -QR0715T1TS is a blockchain network with chain ID 85677. - -## Network Details - -- **Chain ID**: 85677 -- **Chain Name**: Avalanche -- **Short Name**: QR0715T1TS -- **Network ID**: 85677 -- **Currency**: - - **Name**: QR0715T1TS Token - - **Symbol**: EAK - - **Decimals**: 18 - -## RPC URLs - -QR0715T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0715t1ts-yf0a5.avax-test.network/ext/bc/2gQwUZaBTv3iQz8uwQxXsnvi3vfspG5SW92MmmopZm8A3quaho/rpc?token=633edede6b5a8f598ccbee755c42d04d0483bf02e0f0b150974809aa91872a89 - -## QR0715T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0715T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0719t1ms.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0719t1ms.mdx deleted file mode 100644 index c821519d59..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0719t1ms.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QR0719T1MS - Avalanche Blockchain Network -description: Explore QR0719T1MS, a blockchain network with chain ID 936903. Learn about its native currency, QR0719T1MS Token, and how to interact with the network. ---- - -# QR0719T1MS - -QR0719T1MS is a blockchain network with chain ID 936903. - -## Network Details - -- **Chain ID**: 936903 -- **Chain Name**: Avalanche -- **Short Name**: QR0719T1MS -- **Network ID**: 936903 -- **Currency**: - - **Name**: QR0719T1MS Token - - **Symbol**: UWK - - **Decimals**: 18 - -## RPC URLs - -QR0719T1MS can be accessed through the following RPC endpoints: - -- https://mainnet-qr0719t1ms-a4edb.avax.network/ext/bc/xrbkk3pz7EJT3HXLJqZu73ijEyJx9KFhSGyC1cPnVpQtc414P/rpc?token=3bb3e9833b151e6ec53a978a861ed57092dadff0b17d5a3842010a47b1e692d9 - -## QR0719T1MS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0719t2ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0719t2ts.mdx deleted file mode 100644 index 8f66e980b9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0719t2ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0719T2TS - Avalanche Blockchain Network -description: Explore QR0719T2TS, a blockchain network with chain ID 47666. Learn about its native currency, QR0719T2TS Token, and how to interact with the network. ---- - -# QR0719T2TS - -QR0719T2TS is a blockchain network with chain ID 47666. - -## Network Details - -- **Chain ID**: 47666 -- **Chain Name**: Avalanche -- **Short Name**: QR0719T2TS -- **Network ID**: 47666 -- **Currency**: - - **Name**: QR0719T2TS Token - - **Symbol**: CXM - - **Decimals**: 18 - -## RPC URLs - -QR0719T2TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0719t2ts-yf696.avax-test.network/ext/bc/2sjvsEgvrVGodJy2QMmuS1sRo2HquPa8tAqS1NRcGu3NQZJe3g/rpc?token=07218e664691c5889d7c893a6e35d616bbe834bd078d99515f9edf75186270ef - -## QR0719T2TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0719T2TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0726k1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0726k1ts.mdx deleted file mode 100644 index 3ba516f078..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0726k1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0726K1TS - Avalanche Blockchain Network -description: Explore QR0726K1TS, a blockchain network with chain ID 59682. Learn about its native currency, QR0726K1TS Token, and how to interact with the network. ---- - -# QR0726K1TS - -QR0726K1TS is a blockchain network with chain ID 59682. - -## Network Details - -- **Chain ID**: 59682 -- **Chain Name**: Avalanche -- **Short Name**: QR0726K1TS -- **Network ID**: 59682 -- **Currency**: - - **Name**: QR0726K1TS Token - - **Symbol**: BXV - - **Decimals**: 18 - -## RPC URLs - -QR0726K1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0726k1ts-c603e.avax-test.network/ext/bc/M32JpVMAjr3YnDCmwSBSZPAkiApnd6A8UfdUAoSAbzAxvadic/rpc?token=984f594a7ad4039dfb0b3b35c9a84a98b8089d833df67cf093af5f11feb91363 - -## QR0726K1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0726K1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0726t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0726t1ts.mdx deleted file mode 100644 index 9dc0d14d1b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0726t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0726T1TS - Avalanche Blockchain Network -description: Explore QR0726T1TS, a blockchain network with chain ID 7997. Learn about its native currency, QR0726T1TS Token, and how to interact with the network. ---- - -# QR0726T1TS - -QR0726T1TS is a blockchain network with chain ID 7997. - -## Network Details - -- **Chain ID**: 7997 -- **Chain Name**: Avalanche -- **Short Name**: QR0726T1TS -- **Network ID**: 7997 -- **Currency**: - - **Name**: QR0726T1TS Token - - **Symbol**: TOP - - **Decimals**: 18 - -## RPC URLs - -QR0726T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0726t1ts-e814c.avax-test.network/ext/bc/JKuP5FFaEVamTYavzAEDoMHBqoeB7EH8Xw5VxsviZfhpomgWr/rpc?token=45fd1a876dfe5f424b36975f1c51cfdc24a4beea18dcb8c26e9ce4613447d6ae - -## QR0726T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0726T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0726y1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0726y1ts.mdx deleted file mode 100644 index dd9badb1e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0726y1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0726Y1TS - Avalanche Blockchain Network -description: Explore QR0726Y1TS, a blockchain network with chain ID 940168. Learn about its native currency, QR0726Y1TS Token, and how to interact with the network. ---- - -# QR0726Y1TS - -QR0726Y1TS is a blockchain network with chain ID 940168. - -## Network Details - -- **Chain ID**: 940168 -- **Chain Name**: Avalanche -- **Short Name**: QR0726Y1TS -- **Network ID**: 940168 -- **Currency**: - - **Name**: QR0726Y1TS Token - - **Symbol**: ZBO - - **Decimals**: 18 - -## RPC URLs - -QR0726Y1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0726y1ts-d775c.avax-test.network/ext/bc/9gzbBqA9oM7wRDD1NoKZPqeoMvgaZUUZwoWoPykpGz3HQjong/rpc?token=14982a7773db53236118962029b6b1daf539a4a19dcc8c9b87e1c5b5707c172d - -## QR0726Y1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0726Y1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0807t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0807t1ts.mdx deleted file mode 100644 index 17b3eb23e0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0807t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0807T1TS - Avalanche Blockchain Network -description: Explore QR0807T1TS, a blockchain network with chain ID 99920. Learn about its native currency, QR0807T1TS Token, and how to interact with the network. ---- - -# QR0807T1TS - -QR0807T1TS is a blockchain network with chain ID 99920. - -## Network Details - -- **Chain ID**: 99920 -- **Chain Name**: Avalanche -- **Short Name**: QR0807T1TS -- **Network ID**: 99920 -- **Currency**: - - **Name**: QR0807T1TS Token - - **Symbol**: FJZ - - **Decimals**: 18 - -## RPC URLs - -QR0807T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0807t1ts-x1d97.avax-test.network/ext/bc/6CS8mrHgW8oMdfsktz5eZoXED5Zr3qrTV2LLpbMSQvbWLruk3/rpc?token=c1702c22b976e24099105a6e76ec9998773358ede83976981a656ecb2b55e08b - -## QR0807T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0807T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0829t2ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0829t2ts.mdx deleted file mode 100644 index 71282a26e5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0829t2ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0829T2TS - Avalanche Blockchain Network -description: Explore QR0829T2TS, a blockchain network with chain ID 11187. Learn about its native currency, QR0829T2TS Token, and how to interact with the network. ---- - -# QR0829T2TS - -QR0829T2TS is a blockchain network with chain ID 11187. - -## Network Details - -- **Chain ID**: 11187 -- **Chain Name**: Avalanche -- **Short Name**: QR0829T2TS -- **Network ID**: 11187 -- **Currency**: - - **Name**: QR0829T2TS Token - - **Symbol**: IAH - - **Decimals**: 18 - -## RPC URLs - -QR0829T2TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0829t2ts-z3ebb.avax-test.network/ext/bc/2hEvXStaqp1g1rWmQpKCPzDjr88ZFqaVftwq2nSpr9wifsKS6x/rpc?token=0b0ee461627237a4c85e0cabe06595d8a028e4030441ee60d1c74c36e4f5cd2b - -## QR0829T2TS Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0829T2TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0830t1ms.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0830t1ms.mdx deleted file mode 100644 index 33ea7f1704..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0830t1ms.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QR0830T1MS - Avalanche Blockchain Network -description: Explore QR0830T1MS, a blockchain network with chain ID 931499. Learn about its native currency, QR0830T1MS Token, and how to interact with the network. ---- - -# QR0830T1MS - -QR0830T1MS is a blockchain network with chain ID 931499. - -## Network Details - -- **Chain ID**: 931499 -- **Chain Name**: Avalanche -- **Short Name**: QR0830T1MS -- **Network ID**: 931499 -- **Currency**: - - **Name**: QR0830T1MS Token - - **Symbol**: QQQ - - **Decimals**: 18 - -## RPC URLs - -QR0830T1MS can be accessed through the following RPC endpoints: - -- https://mainnet-qr0830t1ms-ubaf3.avax.network/ext/bc/tmX5HjBWUBRzy8wQd7LE5CFMmimCQDz5WH14QzdYJMxcVm1bC/rpc?token=b0f3197a1c1780f20d53776c653c3737037c3d82aa29efa608beeb583a740f5b - -## QR0830T1MS Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0906t1ts.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0906t1ts.mdx deleted file mode 100644 index 6bda716f9a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0906t1ts.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0906T1TS - Avalanche Blockchain Network -description: Explore QR0906T1TS, a blockchain network with chain ID 7010. Learn about its native currency, QR0906T1TS Token, and how to interact with the network. ---- - -# QR0906T1TS - -QR0906T1TS is a blockchain network with chain ID 7010. - -## Network Details - -- **Chain ID**: 7010 -- **Chain Name**: Avalanche -- **Short Name**: QR0906T1TS -- **Network ID**: 7010 -- **Currency**: - - **Name**: QR0906T1TS Token - - **Symbol**: LEGO - - **Decimals**: 18 - -## RPC URLs - -QR0906T1TS can be accessed through the following RPC endpoints: - -- https://testnet-qr0906t1ts-a49a8.avax-test.network/ext/bc/2WtFGU9rzuLnrDVRCVArr5nFQ7jU8wGty4df2SXDdkN8xmJz9q/rpc?token=cc3167e6cf66fd9b4b2d0f5497a4b116f488263fe37eb61789a5528020ddda6a - -## QR0906T1TS Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0906T1TS Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr0910t1tp.mdx b/docs/pages/solutions/chainlist/non-integrated/qr0910t1tp.mdx deleted file mode 100644 index df3aa7c29b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr0910t1tp.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR0910T1TP - Avalanche Blockchain Network -description: Explore QR0910T1TP, a blockchain network with chain ID 984205. Learn about its native currency, QR0910T1TP Token, and how to interact with the network. ---- - -# QR0910T1TP - -QR0910T1TP is a blockchain network with chain ID 984205. - -## Network Details - -- **Chain ID**: 984205 -- **Chain Name**: Avalanche -- **Short Name**: QR0910T1TP -- **Network ID**: 984205 -- **Currency**: - - **Name**: QR0910T1TP Token - - **Symbol**: FAN - - **Decimals**: 18 - -## RPC URLs - -QR0910T1TP can be accessed through the following RPC endpoints: - -- https://testnet-qr0910t1tp-b539f.avax-test.network/ext/bc/A6B6ho1Eo2aDzJSsfThRrcPyUb5pZFemxRsDdeggTCCBAzMqR/rpc?token=333f02971f32cdc346658875e8ad5a5945fbdc1a8acf5cb4c81ebc4d285bcec3 - -## QR0910T1TP Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR0910T1TP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr1120y1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr1120y1.mdx deleted file mode 100644 index e236dd4eb3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr1120y1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: qr1120y1 - Avalanche Blockchain Network -description: Explore qr1120y1, a blockchain network with chain ID 993535. Learn about its native currency, qr1120y1 Token, and how to interact with the network. ---- - -# qr1120y1 - -qr1120y1 is a blockchain network with chain ID 993535. - -## Network Details - -- **Chain ID**: 993535 -- **Chain Name**: Avalanche -- **Short Name**: qr1120y1 -- **Network ID**: 993535 -- **Currency**: - - **Name**: qr1120y1 Token - - **Symbol**: LMK - - **Decimals**: 18 - -## RPC URLs - -qr1120y1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr1120y1/testnet/rpc - -## qr1120y1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## qr1120y1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr1129i1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr1129i1.mdx deleted file mode 100644 index a7315b1b76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr1129i1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR1129I1 - Avalanche Blockchain Network -description: Explore QR1129I1, a blockchain network with chain ID 35730. Learn about its native currency, QR1129I1 Token, and how to interact with the network. ---- - -# QR1129I1 - -QR1129I1 is a blockchain network with chain ID 35730. - -## Network Details - -- **Chain ID**: 35730 -- **Chain Name**: Avalanche -- **Short Name**: QR1129I1 -- **Network ID**: 35730 -- **Currency**: - - **Name**: QR1129I1 Token - - **Symbol**: YXAX - - **Decimals**: 18 - -## RPC URLs - -QR1129I1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr1129i1/testnet/rpc - -## QR1129I1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR1129I1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/qr1205s1.mdx b/docs/pages/solutions/chainlist/non-integrated/qr1205s1.mdx deleted file mode 100644 index ade692f8c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/qr1205s1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QR1205s1 - Avalanche Blockchain Network -description: Explore QR1205s1, a blockchain network with chain ID 36908. Learn about its native currency, QR1205s1 Token, and how to interact with the network. ---- - -# QR1205s1 - -QR1205s1 is a blockchain network with chain ID 36908. - -## Network Details - -- **Chain ID**: 36908 -- **Chain Name**: Avalanche -- **Short Name**: QR1205s1 -- **Network ID**: 36908 -- **Currency**: - - **Name**: QR1205s1 Token - - **Symbol**: MDN - - **Decimals**: 18 - -## RPC URLs - -QR1205s1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/qr1205s1/testnet/rpc - -## QR1205s1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QR1205s1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain-testnet.mdx deleted file mode 100644 index 8424a6d262..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Quadrans Blockchain Testnet - tQDC Blockchain Network -description: Explore Quadrans Blockchain Testnet, a blockchain network with chain ID 10947. Learn about its native currency, Quadrans Testnet Coin, and how to interact with the network. ---- - -# Quadrans Blockchain Testnet - -Quadrans Blockchain Testnet is a blockchain network with chain ID 10947. - -## Network Details - -- **Chain ID**: 10947 -- **Chain Name**: tQDC -- **Short Name**: quadranstestnet -- **Network ID**: 10947 -- **Currency**: - - **Name**: Quadrans Testnet Coin - - **Symbol**: tQDC - - **Decimals**: 18 - -## RPC URLs - -Quadrans Blockchain Testnet can be accessed through the following RPC endpoints: - -- https://rpctest.quadrans.io -- https://rpctest2.quadrans.io - -## Quadrans Blockchain Testnet Block Explorers - -- [explorer](https://explorer.testnet.quadrans.io) - -## Additional Information - -- **Official Website**: https://quadrans.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Quadrans Blockchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain.mdx deleted file mode 100644 index ae8779f3be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quadrans-blockchain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Quadrans Blockchain - QDC Blockchain Network -description: Explore Quadrans Blockchain, a blockchain network with chain ID 10946. Learn about its native currency, Quadrans Coin, and how to interact with the network. ---- - -# Quadrans Blockchain - -Quadrans Blockchain is a blockchain network with chain ID 10946. - -## Network Details - -- **Chain ID**: 10946 -- **Chain Name**: QDC -- **Short Name**: quadrans -- **Network ID**: 10946 -- **Currency**: - - **Name**: Quadrans Coin - - **Symbol**: QDC - - **Decimals**: 18 - -## RPC URLs - -Quadrans Blockchain can be accessed through the following RPC endpoints: - -- https://rpc.quadrans.io -- https://rpcna.quadrans.io -- https://rpceu.quadrans.io - -## Quadrans Blockchain Block Explorers - -- [explorer](https://explorer.quadrans.io) - -## Additional Information - -- **Official Website**: https://quadrans.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quantum-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/quantum-chain-testnet.mdx deleted file mode 100644 index 01301b51bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quantum-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Quantum Chain Testnet - tQNET Blockchain Network -description: Explore Quantum Chain Testnet, a blockchain network with chain ID 12890. Learn about its native currency, Quantum Chain, and how to interact with the network. ---- - -# Quantum Chain Testnet - -Quantum Chain Testnet is a blockchain network with chain ID 12890. - -## Network Details - -- **Chain ID**: 12890 -- **Chain Name**: tQNET -- **Short Name**: tqnet -- **Network ID**: 12890 -- **Currency**: - - **Name**: Quantum Chain - - **Symbol**: tQNET - - **Decimals**: 18 - -## RPC URLs - -Quantum Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.quantumscan.org - -## Quantum Chain Testnet Block Explorers - -- [Quantum Scan Testnet](https://testnet.quantumscan.org) - -## Additional Information - -- **Official Website**: https://quantumnetwork.gg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Quantum Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/quantum-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/quantum-chain.mdx deleted file mode 100644 index 1ea0535389..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quantum-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Quantum Chain Mainnet - QNET Blockchain Network -description: Explore Quantum Chain Mainnet, a blockchain network with chain ID 81720. Learn about its native currency, Quantum Chain, and how to interact with the network. ---- - -# Quantum Chain Mainnet - -Quantum Chain Mainnet is a blockchain network with chain ID 81720. - -## Network Details - -- **Chain ID**: 81720 -- **Chain Name**: QNET -- **Short Name**: qnet -- **Network ID**: 81720 -- **Currency**: - - **Name**: Quantum Chain - - **Symbol**: QNET - - **Decimals**: 18 - -## RPC URLs - -Quantum Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.quantumscan.org - -## Quantum Chain Mainnet Block Explorers - -- [Quantum Scan Mainnet](https://quantumscan.org) - -## Additional Information - -- **Official Website**: https://quantumnetwork.gg - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quantum-network.mdx b/docs/pages/solutions/chainlist/non-integrated/quantum-network.mdx deleted file mode 100644 index 8c38cd7710..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quantum-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Quantum Network - Quantum Blockchain Network -description: Explore Quantum Network, a blockchain network with chain ID 44445. Learn about its native currency, Quantum, and how to interact with the network. ---- - -# Quantum Network - -Quantum Network is a blockchain network with chain ID 44445. - -## Network Details - -- **Chain ID**: 44445 -- **Chain Name**: Quantum -- **Short Name**: QTM -- **Network ID**: 44445 -- **Currency**: - - **Name**: Quantum - - **Symbol**: QTM - - **Decimals**: 18 - -## RPC URLs - -Quantum Network can be accessed through the following RPC endpoints: - -- https://rpcqtm.avescoin.io - -## Quantum Network Block Explorers - -- [Quantum Explorer](https://qtm.avescoin.io) - -## Additional Information - -- **Official Website**: https://avescoin.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarix-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/quarix-testnet.mdx deleted file mode 100644 index a5e924820e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarix-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Quarix Testnet - Quarix Blockchain Network -description: Explore Quarix Testnet, a blockchain network with chain ID 8888881. Learn about its native currency, QARE, and how to interact with the network. ---- - -# Quarix Testnet - -Quarix Testnet is a blockchain network with chain ID 8888881. - -## Network Details - -- **Chain ID**: 8888881 -- **Chain Name**: Quarix -- **Short Name**: quarix-testnet -- **Network ID**: 8888881 -- **Currency**: - - **Name**: QARE - - **Symbol**: QARE - - **Decimals**: 18 - -## RPC URLs - -Quarix Testnet can be accessed through the following RPC endpoints: - - - -## Quarix Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Quarix Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarix.mdx b/docs/pages/solutions/chainlist/non-integrated/quarix.mdx deleted file mode 100644 index 45036dfa1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarix.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Quarix - Quarix Blockchain Network -description: Explore Quarix, a blockchain network with chain ID 8888888. Learn about its native currency, QARE, and how to interact with the network. ---- - -# Quarix - -Quarix is a blockchain network with chain ID 8888888. - -## Network Details - -- **Chain ID**: 8888888 -- **Chain Name**: Quarix -- **Short Name**: quarix -- **Network ID**: 8888888 -- **Currency**: - - **Name**: QARE - - **Symbol**: QARE - - **Decimals**: 18 - -## RPC URLs - -Quarix can be accessed through the following RPC endpoints: - - - -## Quarix Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkblockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkblockchain.mdx deleted file mode 100644 index c8bfa9df0f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkblockchain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: quarkblockchain - QKI Blockchain Network -description: Explore quarkblockchain, a blockchain network with chain ID 20181205. Learn about its native currency, quarkblockchain Native Token, and how to interact with the network. ---- - -# quarkblockchain - -quarkblockchain is a blockchain network with chain ID 20181205. - -## Network Details - -- **Chain ID**: 20181205 -- **Chain Name**: QKI -- **Short Name**: qki -- **Network ID**: 20181205 -- **Currency**: - - **Name**: quarkblockchain Native Token - - **Symbol**: QKI - - **Decimals**: 18 - -## RPC URLs - -quarkblockchain can be accessed through the following RPC endpoints: - -- https://hz.rpc.qkiscan.cn -- https://jp.rpc.qkiscan.io -- https://rpc1.qkiscan.io -- https://rpc2.qkiscan.io -- https://rpc3.qkiscan.io - -## quarkblockchain Block Explorers - -- [qkiscan](https://qkiscan.io) - -## Additional Information - -- **Official Website**: https://quarkblockchain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-root.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-root.mdx deleted file mode 100644 index 6d6eed537d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-root.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QuarkChain Devnet Root - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Root, a blockchain network with chain ID 110000. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Root - -QuarkChain Devnet Root is a blockchain network with chain ID 110000. - -## Network Details - -- **Chain ID**: 110000 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-r -- **Network ID**: 110000 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Root can be accessed through the following RPC endpoints: - -- http://jrpc.devnet.quarkchain.io:38391 - -## QuarkChain Devnet Root Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-0.mdx deleted file mode 100644 index 3b4bd5ca42..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-0.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 0 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 0, a blockchain network with chain ID 110001. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 0 - -QuarkChain Devnet Shard 0 is a blockchain network with chain ID 110001. - -## Network Details - -- **Chain ID**: 110001 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s0 -- **Network ID**: 110001 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 0 can be accessed through the following RPC endpoints: - -- https://devnet-s0-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39900 - -## QuarkChain Devnet Shard 0 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/0) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-1.mdx deleted file mode 100644 index 933d6b0941..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 1 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 1, a blockchain network with chain ID 110002. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 1 - -QuarkChain Devnet Shard 1 is a blockchain network with chain ID 110002. - -## Network Details - -- **Chain ID**: 110002 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s1 -- **Network ID**: 110002 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 1 can be accessed through the following RPC endpoints: - -- https://devnet-s1-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39901 - -## QuarkChain Devnet Shard 1 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/1) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-2.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-2.mdx deleted file mode 100644 index a43ad94ff7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-2.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 2 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 2, a blockchain network with chain ID 110003. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 2 - -QuarkChain Devnet Shard 2 is a blockchain network with chain ID 110003. - -## Network Details - -- **Chain ID**: 110003 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s2 -- **Network ID**: 110003 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 2 can be accessed through the following RPC endpoints: - -- https://devnet-s2-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39902 - -## QuarkChain Devnet Shard 2 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/2) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-3.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-3.mdx deleted file mode 100644 index a8b1040585..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-3.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 3 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 3, a blockchain network with chain ID 110004. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 3 - -QuarkChain Devnet Shard 3 is a blockchain network with chain ID 110004. - -## Network Details - -- **Chain ID**: 110004 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s3 -- **Network ID**: 110004 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 3 can be accessed through the following RPC endpoints: - -- https://devnet-s3-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39903 - -## QuarkChain Devnet Shard 3 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/3) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-4.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-4.mdx deleted file mode 100644 index 4dcfa51d22..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-4.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 4 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 4, a blockchain network with chain ID 110005. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 4 - -QuarkChain Devnet Shard 4 is a blockchain network with chain ID 110005. - -## Network Details - -- **Chain ID**: 110005 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s4 -- **Network ID**: 110005 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 4 can be accessed through the following RPC endpoints: - -- https://devnet-s4-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39904 - -## QuarkChain Devnet Shard 4 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/4) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-5.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-5.mdx deleted file mode 100644 index 589a693791..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-5.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 5 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 5, a blockchain network with chain ID 110006. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 5 - -QuarkChain Devnet Shard 5 is a blockchain network with chain ID 110006. - -## Network Details - -- **Chain ID**: 110006 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s5 -- **Network ID**: 110006 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 5 can be accessed through the following RPC endpoints: - -- https://devnet-s5-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39905 - -## QuarkChain Devnet Shard 5 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/5) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-6.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-6.mdx deleted file mode 100644 index e0addfeae6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-6.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 6 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 6, a blockchain network with chain ID 110007. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 6 - -QuarkChain Devnet Shard 6 is a blockchain network with chain ID 110007. - -## Network Details - -- **Chain ID**: 110007 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s6 -- **Network ID**: 110007 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 6 can be accessed through the following RPC endpoints: - -- https://devnet-s6-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39906 - -## QuarkChain Devnet Shard 6 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/6) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-7.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-7.mdx deleted file mode 100644 index e343959023..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-devnet-shard-7.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Devnet Shard 7 - QuarkChain Blockchain Network -description: Explore QuarkChain Devnet Shard 7, a blockchain network with chain ID 110008. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Devnet Shard 7 - -QuarkChain Devnet Shard 7 is a blockchain network with chain ID 110008. - -## Network Details - -- **Chain ID**: 110008 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-d-s7 -- **Network ID**: 110008 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Devnet Shard 7 can be accessed through the following RPC endpoints: - -- https://devnet-s7-ethapi.quarkchain.io -- http://eth-jrpc.devnet.quarkchain.io:39907 - -## QuarkChain Devnet Shard 7 Block Explorers - -- [quarkchain-devnet](https://devnet.quarkchain.io/7) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2-testnet.mdx deleted file mode 100644 index 1ff7813f92..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: QuarkChain L2 Testnet - QuarkChain Blockchain Network -description: Explore QuarkChain L2 Testnet, a blockchain network with chain ID 110011. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain L2 Testnet - -QuarkChain L2 Testnet is a blockchain network with chain ID 110011. - -## Network Details - -- **Chain ID**: 110011 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-l2-t -- **Network ID**: 110011 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain L2 Testnet can be accessed through the following RPC endpoints: - -- https://testnet-l2-ethapi.quarkchain.io - -## QuarkChain L2 Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## QuarkChain L2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2.mdx deleted file mode 100644 index 99634f1258..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-l2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QuarkChain L2 Mainnet - QuarkChain Blockchain Network -description: Explore QuarkChain L2 Mainnet, a blockchain network with chain ID 100011. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain L2 Mainnet - -QuarkChain L2 Mainnet is a blockchain network with chain ID 100011. - -## Network Details - -- **Chain ID**: 100011 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-l2 -- **Network ID**: 100011 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain L2 Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-l2-ethapi.quarkchain.io - -## QuarkChain L2 Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-root.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-root.mdx deleted file mode 100644 index a2be50554e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-root.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: QuarkChain Mainnet Root - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Root, a blockchain network with chain ID 100000. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Root - -QuarkChain Mainnet Root is a blockchain network with chain ID 100000. - -## Network Details - -- **Chain ID**: 100000 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-r -- **Network ID**: 100000 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Root can be accessed through the following RPC endpoints: - -- http://jrpc.mainnet.quarkchain.io:38391 - -## QuarkChain Mainnet Root Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-0.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-0.mdx deleted file mode 100644 index 3d5e6584b0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-0.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 0 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 0, a blockchain network with chain ID 100001. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 0 - -QuarkChain Mainnet Shard 0 is a blockchain network with chain ID 100001. - -## Network Details - -- **Chain ID**: 100001 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s0 -- **Network ID**: 100001 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 0 can be accessed through the following RPC endpoints: - -- https://mainnet-s0-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39000 - -## QuarkChain Mainnet Shard 0 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/0) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-1.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-1.mdx deleted file mode 100644 index a94cd5a3a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-1.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 1 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 1, a blockchain network with chain ID 100002. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 1 - -QuarkChain Mainnet Shard 1 is a blockchain network with chain ID 100002. - -## Network Details - -- **Chain ID**: 100002 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s1 -- **Network ID**: 100002 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 1 can be accessed through the following RPC endpoints: - -- https://mainnet-s1-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39001 - -## QuarkChain Mainnet Shard 1 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/1) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-2.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-2.mdx deleted file mode 100644 index 815d2759af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-2.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 2 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 2, a blockchain network with chain ID 100003. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 2 - -QuarkChain Mainnet Shard 2 is a blockchain network with chain ID 100003. - -## Network Details - -- **Chain ID**: 100003 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s2 -- **Network ID**: 100003 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 2 can be accessed through the following RPC endpoints: - -- https://mainnet-s2-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39002 - -## QuarkChain Mainnet Shard 2 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/2) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-3.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-3.mdx deleted file mode 100644 index 22b3fd747e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-3.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 3 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 3, a blockchain network with chain ID 100004. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 3 - -QuarkChain Mainnet Shard 3 is a blockchain network with chain ID 100004. - -## Network Details - -- **Chain ID**: 100004 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s3 -- **Network ID**: 100004 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 3 can be accessed through the following RPC endpoints: - -- https://mainnet-s3-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39003 - -## QuarkChain Mainnet Shard 3 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/3) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-4.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-4.mdx deleted file mode 100644 index f3071f253f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-4.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 4 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 4, a blockchain network with chain ID 100005. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 4 - -QuarkChain Mainnet Shard 4 is a blockchain network with chain ID 100005. - -## Network Details - -- **Chain ID**: 100005 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s4 -- **Network ID**: 100005 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 4 can be accessed through the following RPC endpoints: - -- https://mainnet-s4-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39004 - -## QuarkChain Mainnet Shard 4 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/4) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-5.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-5.mdx deleted file mode 100644 index 6f147e0080..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-5.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 5 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 5, a blockchain network with chain ID 100006. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 5 - -QuarkChain Mainnet Shard 5 is a blockchain network with chain ID 100006. - -## Network Details - -- **Chain ID**: 100006 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s5 -- **Network ID**: 100006 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 5 can be accessed through the following RPC endpoints: - -- https://mainnet-s5-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39005 - -## QuarkChain Mainnet Shard 5 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/5) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-6.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-6.mdx deleted file mode 100644 index eb566a66ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-6.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 6 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 6, a blockchain network with chain ID 100007. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 6 - -QuarkChain Mainnet Shard 6 is a blockchain network with chain ID 100007. - -## Network Details - -- **Chain ID**: 100007 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s6 -- **Network ID**: 100007 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 6 can be accessed through the following RPC endpoints: - -- https://mainnet-s6-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39006 - -## QuarkChain Mainnet Shard 6 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/6) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-7.mdx b/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-7.mdx deleted file mode 100644 index 473feec855..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quarkchain-shard-7.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: QuarkChain Mainnet Shard 7 - QuarkChain Blockchain Network -description: Explore QuarkChain Mainnet Shard 7, a blockchain network with chain ID 100008. Learn about its native currency, QKC, and how to interact with the network. ---- - -# QuarkChain Mainnet Shard 7 - -QuarkChain Mainnet Shard 7 is a blockchain network with chain ID 100008. - -## Network Details - -- **Chain ID**: 100008 -- **Chain Name**: QuarkChain -- **Short Name**: qkc-s7 -- **Network ID**: 100008 -- **Currency**: - - **Name**: QKC - - **Symbol**: QKC - - **Decimals**: 18 - -## RPC URLs - -QuarkChain Mainnet Shard 7 can be accessed through the following RPC endpoints: - -- https://mainnet-s7-ethapi.quarkchain.io -- http://eth-jrpc.mainnet.quarkchain.io:39007 - -## QuarkChain Mainnet Shard 7 Block Explorers - -- [quarkchain-mainnet](https://mainnet.quarkchain.io/7) - -## Additional Information - -- **Official Website**: https://www.quarkchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quartz-by-unique.mdx b/docs/pages/solutions/chainlist/non-integrated/quartz-by-unique.mdx deleted file mode 100644 index 7771913e30..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quartz-by-unique.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Quartz by Unique - UNQ Blockchain Network -description: Explore Quartz by Unique, a blockchain network with chain ID 8881. Learn about its native currency, Quartz, and how to interact with the network. ---- - -# Quartz by Unique - -Quartz by Unique is a blockchain network with chain ID 8881. - -## Network Details - -- **Chain ID**: 8881 -- **Chain Name**: UNQ -- **Short Name**: qtz -- **Network ID**: 8881 -- **Currency**: - - **Name**: Quartz - - **Symbol**: QTZ - - **Decimals**: 18 - -## RPC URLs - -Quartz by Unique can be accessed through the following RPC endpoints: - -- https://rpc-quartz.unique.network -- https://quartz.api.onfinality.io/public-ws -- https://eu-rpc-quartz.unique.network -- https://asia-rpc-quartz.unique.network -- https://us-rpc-quartz.unique.network - -## Quartz by Unique Block Explorers - -- [Unique Scan / Quartz](https://uniquescan.io/quartz) - -## Additional Information - -- **Official Website**: https://unique.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/quokkacoin.mdx b/docs/pages/solutions/chainlist/non-integrated/quokkacoin.mdx deleted file mode 100644 index e8206d6718..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/quokkacoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Quokkacoin Mainnet - Qkacoin Blockchain Network -description: Explore Quokkacoin Mainnet, a blockchain network with chain ID 2077. Learn about its native currency, Qkacoin, and how to interact with the network. ---- - -# Quokkacoin Mainnet - -Quokkacoin Mainnet is a blockchain network with chain ID 2077. - -## Network Details - -- **Chain ID**: 2077 -- **Chain Name**: Qkacoin -- **Short Name**: QKA -- **Network ID**: 2077 -- **Currency**: - - **Name**: Qkacoin - - **Symbol**: QKA - - **Decimals**: 18 - -## RPC URLs - -Quokkacoin Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.qkacoin.org - -## Quokkacoin Mainnet Block Explorers - -- [blockscout](https://explorer.qkacoin.org) - -## Additional Information - -- **Official Website**: https://qkacoin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/raba-network.mdx b/docs/pages/solutions/chainlist/non-integrated/raba-network.mdx deleted file mode 100644 index 97f607fe67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/raba-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Raba Network Mainnet - Raba Blockchain Network -description: Explore Raba Network Mainnet, a blockchain network with chain ID 7484. Learn about its native currency, Raba, and how to interact with the network. ---- - -# Raba Network Mainnet - -Raba Network Mainnet is a blockchain network with chain ID 7484. - -## Network Details - -- **Chain ID**: 7484 -- **Chain Name**: Raba -- **Short Name**: raba -- **Network ID**: 7484 -- **Currency**: - - **Name**: Raba - - **Symbol**: RABA - - **Decimals**: 18 - -## RPC URLs - -Raba Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.x.raba.app/ -- wss://rpc.x.raba.app/ws/ - -## Raba Network Mainnet Block Explorers - -- [raba](https://x.raba.app/explorer) - -## Additional Information - -- **Official Website**: https://x.raba.app/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rabbit-analog-testnet-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/rabbit-analog-testnet-chain.mdx deleted file mode 100644 index 8444c32acd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rabbit-analog-testnet-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rabbit Analog Testnet Chain - rAna Blockchain Network -description: Explore Rabbit Analog Testnet Chain, a blockchain network with chain ID 1807. Learn about its native currency, Rabbit Analog Test Chain Native Token , and how to interact with the network. ---- - -# Rabbit Analog Testnet Chain - -Rabbit Analog Testnet Chain is a blockchain network with chain ID 1807. - -## Network Details - -- **Chain ID**: 1807 -- **Chain Name**: rAna -- **Short Name**: rAna -- **Network ID**: 1807 -- **Currency**: - - **Name**: Rabbit Analog Test Chain Native Token - - **Symbol**: rAna - - **Decimals**: 18 - -## RPC URLs - -Rabbit Analog Testnet Chain can be accessed through the following RPC endpoints: - -- https://rabbit.analog-rpc.com - -## Rabbit Analog Testnet Chain Block Explorers - -- [blockscout](https://rabbit.analogscan.com) - -## Additional Information - -- **Official Website**: https://rabbit.analogscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rabbit Analog Testnet Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/race-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/race-testnet.mdx deleted file mode 100644 index 63490a2991..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/race-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: RACE Testnet - ETH Blockchain Network -description: Explore RACE Testnet, a blockchain network with chain ID 6806. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# RACE Testnet - -RACE Testnet is a blockchain network with chain ID 6806. - -## Network Details - -- **Chain ID**: 6806 -- **Chain Name**: ETH -- **Short Name**: racesep -- **Network ID**: 6806 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -RACE Testnet can be accessed through the following RPC endpoints: - -- https://racetestnet.io/ - -## RACE Testnet Block Explorers - -- [blockscout](https://testnet.racescan.io) - -## Additional Information - -- **Official Website**: https://race.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## RACE Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/race.mdx b/docs/pages/solutions/chainlist/non-integrated/race.mdx deleted file mode 100644 index 9cc25b56b4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/race.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RACE Mainnet - ETH Blockchain Network -description: Explore RACE Mainnet, a blockchain network with chain ID 6805. Learn about its native currency, Ether, and how to interact with the network. ---- - -# RACE Mainnet - -RACE Mainnet is a blockchain network with chain ID 6805. - -## Network Details - -- **Chain ID**: 6805 -- **Chain Name**: ETH -- **Short Name**: raceeth -- **Network ID**: 6805 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -RACE Mainnet can be accessed through the following RPC endpoints: - -- https://racemainnet.io/ - -## RACE Mainnet Block Explorers - -- [blockscout](https://racescan.io) - -## Additional Information - -- **Official Website**: https://race.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/radical-gray-kite.mdx b/docs/pages/solutions/chainlist/non-integrated/radical-gray-kite.mdx deleted file mode 100644 index a3e3d31309..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/radical-gray-kite.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: radical-gray-kite - radical-gray-kite Blockchain Network -description: Explore radical-gray-kite, a blockchain network with chain ID 7832. Learn about its native currency, Ether, and how to interact with the network. ---- - -# radical-gray-kite - -radical-gray-kite is a blockchain network with chain ID 7832. - -## Network Details - -- **Chain ID**: 7832 -- **Chain Name**: radical-gray-kite -- **Short Name**: radical-gray-kite -- **Network ID**: 7832 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -radical-gray-kite can be accessed through the following RPC endpoints: - -- https://rpc-radical-gray-kite-odazkazxtk.t.conduit.xyz - -## radical-gray-kite Block Explorers - -- [radical-gray-kite Explorer](https://explorer-radical-gray-kite-odazkazxtk.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/7832 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## radical-gray-kite Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ramestta.mdx b/docs/pages/solutions/chainlist/non-integrated/ramestta.mdx deleted file mode 100644 index 67e42669c6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ramestta.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ramestta Mainnet - Ramestta Blockchain Network -description: Explore Ramestta Mainnet, a blockchain network with chain ID 1370. Learn about its native currency, Rama, and how to interact with the network. ---- - -# Ramestta Mainnet - -Ramestta Mainnet is a blockchain network with chain ID 1370. - -## Network Details - -- **Chain ID**: 1370 -- **Chain Name**: Ramestta -- **Short Name**: RAMA -- **Network ID**: 1370 -- **Currency**: - - **Name**: Rama - - **Symbol**: RAMA - - **Decimals**: 18 - -## RPC URLs - -Ramestta Mainnet can be accessed through the following RPC endpoints: - -- https://blockchain.ramestta.com -- https://blockchain2.ramestta.com - -## Ramestta Mainnet Block Explorers - -- [ramascan](https://ramascan.com) - -## Additional Information - -- **Official Website**: https://www.ramestta.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rangers-protocol-testnet-robin.mdx b/docs/pages/solutions/chainlist/non-integrated/rangers-protocol-testnet-robin.mdx deleted file mode 100644 index 1e75cfe090..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rangers-protocol-testnet-robin.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rangers Protocol Testnet Robin - Rangers Blockchain Network -description: Explore Rangers Protocol Testnet Robin, a blockchain network with chain ID 9527. Learn about its native currency, Rangers Protocol Gas, and how to interact with the network. ---- - -# Rangers Protocol Testnet Robin - -Rangers Protocol Testnet Robin is a blockchain network with chain ID 9527. - -## Network Details - -- **Chain ID**: 9527 -- **Chain Name**: Rangers -- **Short Name**: trpg -- **Network ID**: 9527 -- **Currency**: - - **Name**: Rangers Protocol Gas - - **Symbol**: tRPG - - **Decimals**: 18 - -## RPC URLs - -Rangers Protocol Testnet Robin can be accessed through the following RPC endpoints: - -- https://robin.rangersprotocol.com/api/jsonrpc - -## Rangers Protocol Testnet Robin Block Explorers - -- [rangersscan-robin](https://robin-rangersscan.rangersprotocol.com) - -## Additional Information - -- **Official Website**: https://rangersprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rangers Protocol Testnet Robin Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rangers-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/rangers-protocol.mdx deleted file mode 100644 index cee3aa572b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rangers-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Rangers Protocol Mainnet - Rangers Blockchain Network -description: Explore Rangers Protocol Mainnet, a blockchain network with chain ID 2025. Learn about its native currency, Rangers Protocol Gas, and how to interact with the network. ---- - -# Rangers Protocol Mainnet - -Rangers Protocol Mainnet is a blockchain network with chain ID 2025. - -## Network Details - -- **Chain ID**: 2025 -- **Chain Name**: Rangers -- **Short Name**: rpg -- **Network ID**: 2025 -- **Currency**: - - **Name**: Rangers Protocol Gas - - **Symbol**: RPG - - **Decimals**: 18 - -## RPC URLs - -Rangers Protocol Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.rangersprotocol.com/api/jsonrpc - -## Rangers Protocol Mainnet Block Explorers - -- [rangersscan](https://scan.rangersprotocol.com) - -## Additional Information - -- **Official Website**: https://rangersprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/raptorchain.mdx b/docs/pages/solutions/chainlist/non-integrated/raptorchain.mdx deleted file mode 100644 index f3dec1a7be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/raptorchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RaptorChain - RPTR Blockchain Network -description: Explore RaptorChain, a blockchain network with chain ID 1380996178. Learn about its native currency, Raptor, and how to interact with the network. ---- - -# RaptorChain - -RaptorChain is a blockchain network with chain ID 1380996178. - -## Network Details - -- **Chain ID**: 1380996178 -- **Chain Name**: RPTR -- **Short Name**: rptr -- **Network ID**: 1380996178 -- **Currency**: - - **Name**: Raptor - - **Symbol**: RPTR - - **Decimals**: 18 - -## RPC URLs - -RaptorChain can be accessed through the following RPC endpoints: - -- https://rpc.raptorchain.io/web3 - -## RaptorChain Block Explorers - -- [RaptorChain Explorer](https://explorer.raptorchain.io) - -## Additional Information - -- **Official Website**: https://raptorchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rari.mdx b/docs/pages/solutions/chainlist/non-integrated/rari.mdx deleted file mode 100644 index 703c9e2135..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rari.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RARI Chain Mainnet - RARI Blockchain Network -description: Explore RARI Chain Mainnet, a blockchain network with chain ID 1380012617. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# RARI Chain Mainnet - -RARI Chain Mainnet is a blockchain network with chain ID 1380012617. - -## Network Details - -- **Chain ID**: 1380012617 -- **Chain Name**: RARI -- **Short Name**: rari-mainnet -- **Network ID**: 1380012617 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -RARI Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rari.calderachain.xyz/http - -## RARI Chain Mainnet Block Explorers - -- [rarichain-explorer](https://mainnet.explorer.rarichain.org) - -## Additional Information - -- **Official Website**: https://rarichain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rarichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rarichain-testnet.mdx deleted file mode 100644 index 023a0090b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rarichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: RARI Chain Testnet - RARI Blockchain Network -description: Explore RARI Chain Testnet, a blockchain network with chain ID 1918988905. Learn about its native currency, Ethereum, and how to interact with the network. ---- - -# RARI Chain Testnet - -RARI Chain Testnet is a blockchain network with chain ID 1918988905. - -## Network Details - -- **Chain ID**: 1918988905 -- **Chain Name**: RARI -- **Short Name**: rari-testnet -- **Network ID**: 1918988905 -- **Currency**: - - **Name**: Ethereum - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -RARI Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rpc.rarichain.org/http - -## RARI Chain Testnet Block Explorers - -- [rarichain-testnet-explorer](https://explorer.rarichain.org) - -## Additional Information - -- **Official Website**: https://rarichain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## RARI Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/razor-skale-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/razor-skale-chain.mdx deleted file mode 100644 index 3da68a4961..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/razor-skale-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Razor Skale Chain - Razor Schain Blockchain Network -description: Explore Razor Skale Chain, a blockchain network with chain ID 278611351. Learn about its native currency, sFuel, and how to interact with the network. ---- - -# Razor Skale Chain - -Razor Skale Chain is a blockchain network with chain ID 278611351. - -## Network Details - -- **Chain ID**: 278611351 -- **Chain Name**: Razor Schain -- **Short Name**: razor -- **Network ID**: 278611351 -- **Currency**: - - **Name**: sFuel - - **Symbol**: SFUEL - - **Decimals**: 18 - -## RPC URLs - -Razor Skale Chain can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/turbulent-unique-scheat - -## Razor Skale Chain Block Explorers - -- [turbulent-unique-scheat](https://turbulent-unique-scheat.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://razor.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/re.al.mdx b/docs/pages/solutions/chainlist/non-integrated/re.al.mdx deleted file mode 100644 index 7bb418a33f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/re.al.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: re.al - re.al Blockchain Network -description: Explore re.al, a blockchain network with chain ID 111188. Learn about its native currency, re.al Ether, and how to interact with the network. ---- - -# re.al - -re.al is a blockchain network with chain ID 111188. - -## Network Details - -- **Chain ID**: 111188 -- **Chain Name**: re.al -- **Short Name**: re-al -- **Network ID**: 111188 -- **Currency**: - - **Name**: re.al Ether - - **Symbol**: reETH - - **Decimals**: 18 - -## RPC URLs - -re.al can be accessed through the following RPC endpoints: - -- https://tangible-real.gateway.tenderly.co -- wss://tangible-real.gateway.tenderly.co -- https://real.drpc.org -- wss://real.drpc.org - -## re.al Block Explorers - -- [blockscout](https://explorer.re.al) - -## Additional Information - -- **Official Website**: https://re.al - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/reactive-kopli.mdx b/docs/pages/solutions/chainlist/non-integrated/reactive-kopli.mdx deleted file mode 100644 index 1f9bc904fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reactive-kopli.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Reactive Kopli - REACT Blockchain Network -description: Explore Reactive Kopli, a blockchain network with chain ID 5318008. Learn about its native currency, Kopli React, and how to interact with the network. ---- - -# Reactive Kopli - -Reactive Kopli is a blockchain network with chain ID 5318008. - -## Network Details - -- **Chain ID**: 5318008 -- **Chain Name**: REACT -- **Short Name**: kreact -- **Network ID**: 5318008 -- **Currency**: - - **Name**: Kopli React - - **Symbol**: REACT - - **Decimals**: 18 - -## RPC URLs - -Reactive Kopli can be accessed through the following RPC endpoints: - -- https://kopli-rpc.reactive.network -- http://kopli-rpc.rkt.ink - -## Reactive Kopli Block Explorers - -- [reactscan](https://kopli.reactscan.net) - -## Additional Information - -- **Official Website**: https://reactive.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Reactive Kopli Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/realchain.mdx b/docs/pages/solutions/chainlist/non-integrated/realchain.mdx deleted file mode 100644 index d7724b54e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/realchain.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Realchain Mainnet - REAL Blockchain Network -description: Explore Realchain Mainnet, a blockchain network with chain ID 121. Learn about its native currency, Realchain, and how to interact with the network. ---- - -# Realchain Mainnet - -Realchain Mainnet is a blockchain network with chain ID 121. - -## Network Details - -- **Chain ID**: 121 -- **Chain Name**: REAL -- **Short Name**: REAL -- **Network ID**: 121 -- **Currency**: - - **Name**: Realchain - - **Symbol**: REAL - - **Decimals**: 18 - -## RPC URLs - -Realchain Mainnet can be accessed through the following RPC endpoints: - -- https://rcl-dataseed1.rclsidechain.com -- https://rcl-dataseed2.rclsidechain.com -- https://rcl-dataseed3.rclsidechain.com -- https://rcl-dataseed4.rclsidechain.com -- wss://rcl-dataseed1.rclsidechain.com/v1/ -- wss://rcl-dataseed2.rclsidechain.com/v1/ -- wss://rcl-dataseed3.rclsidechain.com/v1/ -- wss://rcl-dataseed4.rclsidechain.com/v1/ - -## Realchain Mainnet Block Explorers - -- [realscan](https://rclscan.com) - -## Additional Information - -- **Official Website**: https://www.rclsidechain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/really-64273.mdx b/docs/pages/solutions/chainlist/non-integrated/really-64273.mdx deleted file mode 100644 index b0f9a96678..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/really-64273.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: REALLY - Avalanche Blockchain Network -description: Explore REALLY, a blockchain network with chain ID 64273. Learn about its native currency, REALLY Token, and how to interact with the network. ---- - -# REALLY - -REALLY is a blockchain network with chain ID 64273. - -## Network Details - -- **Chain ID**: 64273 -- **Chain Name**: Avalanche -- **Short Name**: REALLY -- **Network ID**: 64273 -- **Currency**: - - **Name**: REALLY Token - - **Symbol**: FAN - - **Decimals**: 18 - -## RPC URLs - -REALLY can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/really/mainnet/rpc - -## REALLY Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/really.mdx b/docs/pages/solutions/chainlist/non-integrated/really.mdx deleted file mode 100644 index 98b813d104..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/really.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: REALLY - Avalanche Blockchain Network -description: Explore REALLY, a blockchain network with chain ID 41077. Learn about its native currency, REALLY Token, and how to interact with the network. ---- - -# REALLY - -REALLY is a blockchain network with chain ID 41077. - -## Network Details - -- **Chain ID**: 41077 -- **Chain Name**: Avalanche -- **Short Name**: REALLY -- **Network ID**: 41077 -- **Currency**: - - **Name**: REALLY Token - - **Symbol**: FAN - - **Decimals**: 18 - -## RPC URLs - -REALLY can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/really/testnet/rpc - -## REALLY Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## REALLY Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/reapchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/reapchain-testnet.mdx deleted file mode 100644 index e0aae31286..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reapchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Reapchain Testnet - REAP Blockchain Network -description: Explore Reapchain Testnet, a blockchain network with chain ID 221231. Learn about its native currency, test-Reap, and how to interact with the network. ---- - -# Reapchain Testnet - -Reapchain Testnet is a blockchain network with chain ID 221231. - -## Network Details - -- **Chain ID**: 221231 -- **Chain Name**: REAP -- **Short Name**: reap-testnet -- **Network ID**: 221231 -- **Currency**: - - **Name**: test-Reap - - **Symbol**: tREAP - - **Decimals**: 18 - -## RPC URLs - -Reapchain Testnet can be accessed through the following RPC endpoints: - -- https://test-eth.reapchain.org - -## Reapchain Testnet Block Explorers - -- [Reapchain Testnet Dashboard](https://test-dashboard.reapchain.org) - -## Additional Information - -- **Official Website**: https://reapchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Reapchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/reapchain.mdx b/docs/pages/solutions/chainlist/non-integrated/reapchain.mdx deleted file mode 100644 index 21fceec873..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reapchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Reapchain Mainnet - REAP Blockchain Network -description: Explore Reapchain Mainnet, a blockchain network with chain ID 221230. Learn about its native currency, Reap, and how to interact with the network. ---- - -# Reapchain Mainnet - -Reapchain Mainnet is a blockchain network with chain ID 221230. - -## Network Details - -- **Chain ID**: 221230 -- **Chain Name**: REAP -- **Short Name**: reap -- **Network ID**: 221230 -- **Currency**: - - **Name**: Reap - - **Symbol**: REAP - - **Decimals**: 18 - -## RPC URLs - -Reapchain Mainnet can be accessed through the following RPC endpoints: - -- https://eth.reapchain.org - -## Reapchain Mainnet Block Explorers - -- [Reapchain Dashboard](https://dashboard.reapchain.org) - -## Additional Information - -- **Official Website**: https://reapchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rebus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rebus-testnet.mdx deleted file mode 100644 index 0049115681..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rebus-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Rebus Testnet - REBUS Blockchain Network -description: Explore Rebus Testnet, a blockchain network with chain ID 3033. Learn about its native currency, Rebus, and how to interact with the network. ---- - -# Rebus Testnet - -Rebus Testnet is a blockchain network with chain ID 3033. - -## Network Details - -- **Chain ID**: 3033 -- **Chain Name**: REBUS -- **Short Name**: rebus-testnet -- **Network ID**: 3033 -- **Currency**: - - **Name**: Rebus - - **Symbol**: REBUS - - **Decimals**: 18 - -## RPC URLs - -Rebus Testnet can be accessed through the following RPC endpoints: - -- https://testnet.rebus.money/rpc - -## Rebus Testnet Block Explorers - -- [Rebus EVM Explorer (Blockscout)](https://evm.testnet.rebus.money) -- [Rebus Cosmos Explorer (ping.pub)](https://testnet.rebus.money/rebustestnet) - -## Additional Information - -- **Official Website**: https://www.rebuschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rebus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rebus.mdx b/docs/pages/solutions/chainlist/non-integrated/rebus.mdx deleted file mode 100644 index 541f8cd3cb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rebus.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Rebus Mainnet - REBUS Blockchain Network -description: Explore Rebus Mainnet, a blockchain network with chain ID 1011. Learn about its native currency, Rebus, and how to interact with the network. ---- - -# Rebus Mainnet - -Rebus Mainnet is a blockchain network with chain ID 1011. - -## Network Details - -- **Chain ID**: 1011 -- **Chain Name**: REBUS -- **Short Name**: rebus -- **Network ID**: 1011 -- **Currency**: - - **Name**: Rebus - - **Symbol**: REBUS - - **Decimals**: 18 - -## RPC URLs - -Rebus Mainnet can be accessed through the following RPC endpoints: - -- https://apievm.rebuschain.com/rpc - -## Rebus Mainnet Block Explorers - -- [Rebus EVM Explorer (Blockscout)](https://evm.rebuschain.com) -- [Rebus Cosmos Explorer (ping.pub)](https://cosmos.rebuschain.com) - -## Additional Information - -- **Official Website**: https://www.rebuschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/redbelly-network-devnet.mdx deleted file mode 100644 index 9879826c8c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Redbelly Network Devnet - RBN Blockchain Network -description: Explore Redbelly Network Devnet, a blockchain network with chain ID 152. Learn about its native currency, Redbelly Network Coin, and how to interact with the network. ---- - -# Redbelly Network Devnet - -Redbelly Network Devnet is a blockchain network with chain ID 152. - -## Network Details - -- **Chain ID**: 152 -- **Chain Name**: RBN -- **Short Name**: rbn-devnet -- **Network ID**: 152 -- **Currency**: - - **Name**: Redbelly Network Coin - - **Symbol**: RBNT - - **Decimals**: 18 - -## RPC URLs - -Redbelly Network Devnet can be accessed through the following RPC endpoints: - - - -## Redbelly Network Devnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://redbelly.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/redbelly-network-testnet.mdx deleted file mode 100644 index 597de6ea7c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Redbelly Network Testnet - RBN Blockchain Network -description: Explore Redbelly Network Testnet, a blockchain network with chain ID 153. Learn about its native currency, Redbelly Network Coin, and how to interact with the network. ---- - -# Redbelly Network Testnet - -Redbelly Network Testnet is a blockchain network with chain ID 153. - -## Network Details - -- **Chain ID**: 153 -- **Chain Name**: RBN -- **Short Name**: rbn-testnet -- **Network ID**: 153 -- **Currency**: - - **Name**: Redbelly Network Coin - - **Symbol**: RBNT - - **Decimals**: 18 - -## RPC URLs - -Redbelly Network Testnet can be accessed through the following RPC endpoints: - -- https://governors.testnet.redbelly.network - -## Redbelly Network Testnet Block Explorers - -- [Redbelly Network Testnet Explorer](https://explorer.testnet.redbelly.network) - -## Additional Information - -- **Official Website**: https://redbelly.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Redbelly Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-tge.mdx b/docs/pages/solutions/chainlist/non-integrated/redbelly-network-tge.mdx deleted file mode 100644 index 6246081768..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redbelly-network-tge.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Redbelly Network TGE - RBN Blockchain Network -description: Explore Redbelly Network TGE, a blockchain network with chain ID 154. Learn about its native currency, Redbelly Network Coin, and how to interact with the network. ---- - -# Redbelly Network TGE - -Redbelly Network TGE is a blockchain network with chain ID 154. - -## Network Details - -- **Chain ID**: 154 -- **Chain Name**: RBN -- **Short Name**: rbn-tge -- **Network ID**: 154 -- **Currency**: - - **Name**: Redbelly Network Coin - - **Symbol**: RBNT - - **Decimals**: 18 - -## RPC URLs - -Redbelly Network TGE can be accessed through the following RPC endpoints: - - - -## Redbelly Network TGE Block Explorers - - - -## Additional Information - -- **Official Website**: https://redbelly.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redbelly-network.mdx b/docs/pages/solutions/chainlist/non-integrated/redbelly-network.mdx deleted file mode 100644 index ae2b43f166..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redbelly-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Redbelly Network Mainnet - RBN Blockchain Network -description: Explore Redbelly Network Mainnet, a blockchain network with chain ID 151. Learn about its native currency, Redbelly Network Coin, and how to interact with the network. ---- - -# Redbelly Network Mainnet - -Redbelly Network Mainnet is a blockchain network with chain ID 151. - -## Network Details - -- **Chain ID**: 151 -- **Chain Name**: RBN -- **Short Name**: rbn -- **Network ID**: 151 -- **Currency**: - - **Name**: Redbelly Network Coin - - **Symbol**: RBNT - - **Decimals**: 18 - -## RPC URLs - -Redbelly Network Mainnet can be accessed through the following RPC endpoints: - - - -## Redbelly Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://redbelly.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redecoin.mdx b/docs/pages/solutions/chainlist/non-integrated/redecoin.mdx deleted file mode 100644 index b93d7db4ac..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redecoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RedeCoin - REDEV2 Blockchain Network -description: Explore RedeCoin, a blockchain network with chain ID 1972. Learn about its native currency, RedeCoin, and how to interact with the network. ---- - -# RedeCoin - -RedeCoin is a blockchain network with chain ID 1972. - -## Network Details - -- **Chain ID**: 1972 -- **Chain Name**: REDEV2 -- **Short Name**: rede -- **Network ID**: 1972 -- **Currency**: - - **Name**: RedeCoin - - **Symbol**: REDEV2 - - **Decimals**: 18 - -## RPC URLs - -RedeCoin can be accessed through the following RPC endpoints: - -- https://rpc2.redecoin.eu - -## RedeCoin Block Explorers - -- [RedeCoin Explorer](https://explorer3.redecoin.eu) - -## Additional Information - -- **Official Website**: https://www.redecoin.eu - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redefi-layer-1.mdx b/docs/pages/solutions/chainlist/non-integrated/redefi-layer-1.mdx deleted file mode 100644 index 0571f3f67a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redefi-layer-1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ReDeFi Layer 1 - ReDeFi Blockchain Network -description: Explore ReDeFi Layer 1, a blockchain network with chain ID 47803. Learn about its native currency, BAX, and how to interact with the network. ---- - -# ReDeFi Layer 1 - -ReDeFi Layer 1 is a blockchain network with chain ID 47803. - -## Network Details - -- **Chain ID**: 47803 -- **Chain Name**: ReDeFi -- **Short Name**: bax -- **Network ID**: 47803 -- **Currency**: - - **Name**: BAX - - **Symbol**: BAX - - **Decimals**: 18 - -## RPC URLs - -ReDeFi Layer 1 can be accessed through the following RPC endpoints: - -- https://layer1.redefi.world - -## ReDeFi Layer 1 Block Explorers - -- [ReDeFi Scan](https://scanlayer1.redefi.world) - -## Additional Information - -- **Official Website**: https://redefi.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redefi-layer-2.mdx b/docs/pages/solutions/chainlist/non-integrated/redefi-layer-2.mdx deleted file mode 100644 index 7a2babe9de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redefi-layer-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ReDeFi Layer 2 - ReDeFi Blockchain Network -description: Explore ReDeFi Layer 2, a blockchain network with chain ID 1899. Learn about its native currency, RED, and how to interact with the network. ---- - -# ReDeFi Layer 2 - -ReDeFi Layer 2 is a blockchain network with chain ID 1899. - -## Network Details - -- **Chain ID**: 1899 -- **Chain Name**: ReDeFi -- **Short Name**: red -- **Network ID**: 1899 -- **Currency**: - - **Name**: RED - - **Symbol**: RED - - **Decimals**: 18 - -## RPC URLs - -ReDeFi Layer 2 can be accessed through the following RPC endpoints: - -- https://layer2.redefi.world - -## ReDeFi Layer 2 Block Explorers - -- [ReDeFi Scan](https://scanlayer2.redefi.world) - -## Additional Information - -- **Official Website**: https://redefi.world - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redlight-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/redlight-chain.mdx deleted file mode 100644 index ba8734c1cb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redlight-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Redlight Chain Mainnet - REDLC Blockchain Network -description: Explore Redlight Chain Mainnet, a blockchain network with chain ID 2611. Learn about its native currency, Redlight Coin, and how to interact with the network. ---- - -# Redlight Chain Mainnet - -Redlight Chain Mainnet is a blockchain network with chain ID 2611. - -## Network Details - -- **Chain ID**: 2611 -- **Chain Name**: REDLC -- **Short Name**: REDLC -- **Network ID**: 2611 -- **Currency**: - - **Name**: Redlight Coin - - **Symbol**: REDLC - - **Decimals**: 18 - -## RPC URLs - -Redlight Chain Mainnet can be accessed through the following RPC endpoints: - -- https://dataseed2.redlightscan.finance - -## Redlight Chain Mainnet Block Explorers - -- [REDLC Explorer](https://redlightscan.finance) - -## Additional Information - -- **Official Website**: https://redlight.finance/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/redstone-holesky-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/redstone-holesky-testnet.mdx deleted file mode 100644 index 86f7cb08b9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redstone-holesky-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Redstone Holesky Testnet - ETH Blockchain Network -description: Explore Redstone Holesky Testnet, a blockchain network with chain ID 17001. Learn about its native currency, Redstone Testnet Ether, and how to interact with the network. ---- - -# Redstone Holesky Testnet - -Redstone Holesky Testnet is a blockchain network with chain ID 17001. - -## Network Details - -- **Chain ID**: 17001 -- **Chain Name**: ETH -- **Short Name**: redstone-holesky -- **Network ID**: 17001 -- **Currency**: - - **Name**: Redstone Testnet Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Redstone Holesky Testnet can be accessed through the following RPC endpoints: - -- https://rpc.holesky.redstone.xyz - -## Redstone Holesky Testnet Block Explorers - -- [Redstone Holesky Explorer](https://explorer.holesky.redstone.xyz) - -## Additional Information - -- **Official Website**: https://redstone.xyz/docs/network-info - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Redstone Holesky Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/redstone.mdx b/docs/pages/solutions/chainlist/non-integrated/redstone.mdx deleted file mode 100644 index 0be95ea6a8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/redstone.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Redstone - ETH Blockchain Network -description: Explore Redstone, a blockchain network with chain ID 690. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Redstone - -Redstone is a blockchain network with chain ID 690. - -## Network Details - -- **Chain ID**: 690 -- **Chain Name**: ETH -- **Short Name**: redstone -- **Network ID**: 690 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Redstone can be accessed through the following RPC endpoints: - -- https://rpc.redstonechain.com -- wss://rpc.redstonechain.com - -## Redstone Block Explorers - -- [blockscout](https://explorer.redstone.xyz) - -## Additional Information - -- **Official Website**: https://redstone.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/reg-tnet.mdx b/docs/pages/solutions/chainlist/non-integrated/reg-tnet.mdx deleted file mode 100644 index fe1bc1d1d1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reg-tnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Reg Tnet - Avalanche Blockchain Network -description: Explore Reg Tnet, a blockchain network with chain ID 5810. Learn about its native currency, Reg Tnet Token, and how to interact with the network. ---- - -# Reg Tnet - -Reg Tnet is a blockchain network with chain ID 5810. - -## Network Details - -- **Chain ID**: 5810 -- **Chain Name**: Avalanche -- **Short Name**: Reg Tnet -- **Network ID**: 5810 -- **Currency**: - - **Name**: Reg Tnet Token - - **Symbol**: LUG - - **Decimals**: 18 - -## RPC URLs - -Reg Tnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Reg Tnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Reg Tnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/reg1116test.mdx b/docs/pages/solutions/chainlist/non-integrated/reg1116test.mdx deleted file mode 100644 index ec2cbf854f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reg1116test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Reg1116test - Avalanche Blockchain Network -description: Explore Reg1116test, a blockchain network with chain ID 33909. Learn about its native currency, Reg1116test Token, and how to interact with the network. ---- - -# Reg1116test - -Reg1116test is a blockchain network with chain ID 33909. - -## Network Details - -- **Chain ID**: 33909 -- **Chain Name**: Avalanche -- **Short Name**: Reg1116test -- **Network ID**: 33909 -- **Currency**: - - **Name**: Reg1116test Token - - **Symbol**: JUO - - **Decimals**: 18 - -## RPC URLs - -Reg1116test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Reg1116test Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Reg1116test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rehearsal.mdx b/docs/pages/solutions/chainlist/non-integrated/rehearsal.mdx deleted file mode 100644 index 44ecb56b8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rehearsal.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Rehearsal - Avalanche Blockchain Network -description: Explore Rehearsal, a blockchain network with chain ID 17675. Learn about its native currency, Rehearsal Token, and how to interact with the network. ---- - -# Rehearsal - -Rehearsal is a blockchain network with chain ID 17675. - -## Network Details - -- **Chain ID**: 17675 -- **Chain Name**: Avalanche -- **Short Name**: Rehearsal -- **Network ID**: 17675 -- **Currency**: - - **Name**: Rehearsal Token - - **Symbol**: NXPC - - **Decimals**: 18 - -## RPC URLs - -Rehearsal can be accessed through the following RPC endpoints: - -- https://mainnet-rehearsal-yf442.avax.network/ext/bc/2uyD8GhZuYCMMNUX7R6AmejBww2koyEqkocjBMXPY7DDhPk4F9/rpc?token=bb6e29fde5ce75ca802da0830777db6fb5211b116e6a5086f9bd40802506aea6 - -## Rehearsal Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rei-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rei-chain-testnet.mdx deleted file mode 100644 index a6da115a04..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rei-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: REI Chain Testnet - REI Blockchain Network -description: Explore REI Chain Testnet, a blockchain network with chain ID 55556. Learn about its native currency, tRei, and how to interact with the network. ---- - -# REI Chain Testnet - -REI Chain Testnet is a blockchain network with chain ID 55556. - -## Network Details - -- **Chain ID**: 55556 -- **Chain Name**: REI -- **Short Name**: trei -- **Network ID**: 55556 -- **Currency**: - - **Name**: tRei - - **Symbol**: tREI - - **Decimals**: 18 - -## RPC URLs - -REI Chain Testnet can be accessed through the following RPC endpoints: - -- https://rei-testnet-rpc.moonrhythm.io - -## REI Chain Testnet Block Explorers - -- [reiscan](https://testnet.reiscan.com) - -## Additional Information - -- **Official Website**: https://reichain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## REI Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rei-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/rei-chain.mdx deleted file mode 100644 index 02e00a6026..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rei-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: REI Chain Mainnet - REI Blockchain Network -description: Explore REI Chain Mainnet, a blockchain network with chain ID 55555. Learn about its native currency, Rei, and how to interact with the network. ---- - -# REI Chain Mainnet - -REI Chain Mainnet is a blockchain network with chain ID 55555. - -## Network Details - -- **Chain ID**: 55555 -- **Chain Name**: REI -- **Short Name**: reichain -- **Network ID**: 55555 -- **Currency**: - - **Name**: Rei - - **Symbol**: REI - - **Decimals**: 18 - -## RPC URLs - -REI Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rei-rpc.moonrhythm.io - -## REI Chain Mainnet Block Explorers - -- [reiscan](https://reiscan.com) - -## Additional Information - -- **Official Website**: https://reichain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rei-network.mdx b/docs/pages/solutions/chainlist/non-integrated/rei-network.mdx deleted file mode 100644 index ec6d5bd42c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rei-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: REI Network - REI Blockchain Network -description: Explore REI Network, a blockchain network with chain ID 47805. Learn about its native currency, REI, and how to interact with the network. ---- - -# REI Network - -REI Network is a blockchain network with chain ID 47805. - -## Network Details - -- **Chain ID**: 47805 -- **Chain Name**: REI -- **Short Name**: REI -- **Network ID**: 47805 -- **Currency**: - - **Name**: REI - - **Symbol**: REI - - **Decimals**: 18 - -## RPC URLs - -REI Network can be accessed through the following RPC endpoints: - -- https://rpc.rei.network -- wss://rpc.rei.network - -## REI Network Block Explorers - -- [rei-scan](https://scan.rei.network) - -## Additional Information - -- **Official Website**: https://rei.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/resft-1-16-24.mdx b/docs/pages/solutions/chainlist/non-integrated/resft-1-16-24.mdx deleted file mode 100644 index 7ccf92252e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/resft-1-16-24.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ReSFT 1-16-24 - Avalanche Blockchain Network -description: Explore ReSFT 1-16-24, a blockchain network with chain ID 63367. Learn about its native currency, ReSFT 1-16-24 Token, and how to interact with the network. ---- - -# ReSFT 1-16-24 - -ReSFT 1-16-24 is a blockchain network with chain ID 63367. - -## Network Details - -- **Chain ID**: 63367 -- **Chain Name**: Avalanche -- **Short Name**: ReSFT 1-16-24 -- **Network ID**: 63367 -- **Currency**: - - **Name**: ReSFT 1-16-24 Token - - **Symbol**: ZAF - - **Decimals**: 18 - -## RPC URLs - -ReSFT 1-16-24 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ReSFT 1-16-24 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ReSFT 1-16-24 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/resincoin.mdx b/docs/pages/solutions/chainlist/non-integrated/resincoin.mdx deleted file mode 100644 index 54d0fe5cee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/resincoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ResinCoin Mainnet - RESIN Blockchain Network -description: Explore ResinCoin Mainnet, a blockchain network with chain ID 75000. Learn about its native currency, Ether, and how to interact with the network. ---- - -# ResinCoin Mainnet - -ResinCoin Mainnet is a blockchain network with chain ID 75000. - -## Network Details - -- **Chain ID**: 75000 -- **Chain Name**: RESIN -- **Short Name**: resin -- **Network ID**: 75000 -- **Currency**: - - **Name**: Ether - - **Symbol**: RESIN - - **Decimals**: 18 - -## RPC URLs - -ResinCoin Mainnet can be accessed through the following RPC endpoints: - - - -## ResinCoin Mainnet Block Explorers - -- [ResinScan](https://explorer.resincoin.dev) - -## Additional Information - -- **Official Website**: https://resincoin.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rexx.mdx b/docs/pages/solutions/chainlist/non-integrated/rexx.mdx deleted file mode 100644 index 224a4423e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rexx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: REXX Mainnet - REXX Blockchain Network -description: Explore REXX Mainnet, a blockchain network with chain ID 888882. Learn about its native currency, REXX, and how to interact with the network. ---- - -# REXX Mainnet - -REXX Mainnet is a blockchain network with chain ID 888882. - -## Network Details - -- **Chain ID**: 888882 -- **Chain Name**: REXX -- **Short Name**: REXX -- **Network ID**: 888882 -- **Currency**: - - **Name**: REXX - - **Symbol**: REXX - - **Decimals**: 18 - -## RPC URLs - -REXX Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.rexxnetwork.com - -## REXX Mainnet Block Explorers - -- [REXX Mainnet Explorer](https://rexxnetwork.com) - -## Additional Information - -- **Official Website**: https://rexxnetwork.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/reya-network.mdx b/docs/pages/solutions/chainlist/non-integrated/reya-network.mdx deleted file mode 100644 index 57fc2ce5f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/reya-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Reya Network - Reya Blockchain Network -description: Explore Reya Network, a blockchain network with chain ID 1729. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Reya Network - -Reya Network is a blockchain network with chain ID 1729. - -## Network Details - -- **Chain ID**: 1729 -- **Chain Name**: Reya -- **Short Name**: reya -- **Network ID**: 1729 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Reya Network can be accessed through the following RPC endpoints: - -- https://rpc.reya.network -- wss://ws.reya.network - -## Reya Network Block Explorers - -- [Reya Network Explorer](https://explorer.reya.network) - -## Additional Information - -- **Official Website**: https://reya.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rikeza-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rikeza-network-testnet.mdx deleted file mode 100644 index 9f36cb274f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rikeza-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rikeza Network Testnet - Rikeza Blockchain Network -description: Explore Rikeza Network Testnet, a blockchain network with chain ID 12715. Learn about its native currency, Rikeza, and how to interact with the network. ---- - -# Rikeza Network Testnet - -Rikeza Network Testnet is a blockchain network with chain ID 12715. - -## Network Details - -- **Chain ID**: 12715 -- **Chain Name**: Rikeza -- **Short Name**: tRIK -- **Network ID**: 12715 -- **Currency**: - - **Name**: Rikeza - - **Symbol**: RIK - - **Decimals**: 18 - -## RPC URLs - -Rikeza Network Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.rikscan.com - -## Rikeza Network Testnet Block Explorers - -- [Rikeza Blockchain explorer](https://testnet.rikscan.com) - -## Additional Information - -- **Official Website**: https://rikeza.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rikeza Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rikeza-network.mdx b/docs/pages/solutions/chainlist/non-integrated/rikeza-network.mdx deleted file mode 100644 index afae509b39..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rikeza-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Rikeza Network Mainnet - Rikeza Blockchain Network -description: Explore Rikeza Network Mainnet, a blockchain network with chain ID 1433. Learn about its native currency, Rikeza, and how to interact with the network. ---- - -# Rikeza Network Mainnet - -Rikeza Network Mainnet is a blockchain network with chain ID 1433. - -## Network Details - -- **Chain ID**: 1433 -- **Chain Name**: Rikeza -- **Short Name**: RIK -- **Network ID**: 1433 -- **Currency**: - - **Name**: Rikeza - - **Symbol**: RIK - - **Decimals**: 18 - -## RPC URLs - -Rikeza Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.rikscan.com - -## Rikeza Network Mainnet Block Explorers - -- [Rikeza Blockchain explorer](https://rikscan.com) - -## Additional Information - -- **Official Website**: https://rikeza.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rinia-testnet-old.mdx b/docs/pages/solutions/chainlist/non-integrated/rinia-testnet-old.mdx deleted file mode 100644 index 6dbd50cf82..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rinia-testnet-old.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rinia Testnet Old - FIRE Blockchain Network -description: Explore Rinia Testnet Old, a blockchain network with chain ID 9170. Learn about its native currency, Firechain, and how to interact with the network. ---- - -# Rinia Testnet Old - -Rinia Testnet Old is a blockchain network with chain ID 9170. - -## Network Details - -- **Chain ID**: 9170 -- **Chain Name**: FIRE -- **Short Name**: _old_tfire -- **Network ID**: 9170 -- **Currency**: - - **Name**: Firechain - - **Symbol**: FIRE - - **Decimals**: 18 - -## RPC URLs - -Rinia Testnet Old can be accessed through the following RPC endpoints: - - - -## Rinia Testnet Old Block Explorers - - - -## Additional Information - -- **Official Website**: https://thefirechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rinia Testnet Old Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rinia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rinia-testnet.mdx deleted file mode 100644 index 27288eef2d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rinia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rinia Testnet - FIRE Blockchain Network -description: Explore Rinia Testnet, a blockchain network with chain ID 917. Learn about its native currency, Firechain, and how to interact with the network. ---- - -# Rinia Testnet - -Rinia Testnet is a blockchain network with chain ID 917. - -## Network Details - -- **Chain ID**: 917 -- **Chain Name**: FIRE -- **Short Name**: tfire -- **Network ID**: 917 -- **Currency**: - - **Name**: Firechain - - **Symbol**: FIRE - - **Decimals**: 18 - -## RPC URLs - -Rinia Testnet can be accessed through the following RPC endpoints: - -- https://rinia-rpc1.thefirechain.com - -## Rinia Testnet Block Explorers - -- [FireScan](https://rinia.firescan.io) - -## Additional Information - -- **Official Website**: https://thefirechain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rinia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rinkeby.mdx b/docs/pages/solutions/chainlist/non-integrated/rinkeby.mdx deleted file mode 100644 index cecfc86e64..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rinkeby.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rinkeby - ETH Blockchain Network -description: Explore Rinkeby, a blockchain network with chain ID 4. Learn about its native currency, Rinkeby Ether, and how to interact with the network. ---- - -# Rinkeby - -Rinkeby is a blockchain network with chain ID 4. - -## Network Details - -- **Chain ID**: 4 -- **Chain Name**: ETH -- **Short Name**: rin -- **Network ID**: 4 -- **Currency**: - - **Name**: Rinkeby Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Rinkeby can be accessed through the following RPC endpoints: - - - -## Rinkeby Block Explorers - -- [etherscan-rinkeby](https://rinkeby.etherscan.io) - -## Additional Information - -- **Official Website**: https://www.rinkeby.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rinkeby Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rise-of-the-warbots-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rise-of-the-warbots-testnet.mdx deleted file mode 100644 index cd4155d4e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rise-of-the-warbots-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Rise of the Warbots Testnet - nmactest Blockchain Network -description: Explore Rise of the Warbots Testnet, a blockchain network with chain ID 7777. Learn about its native currency, Nano Machines, and how to interact with the network. ---- - -# Rise of the Warbots Testnet - -Rise of the Warbots Testnet is a blockchain network with chain ID 7777. - -## Network Details - -- **Chain ID**: 7777 -- **Chain Name**: nmactest -- **Short Name**: RiseOfTheWarbotsTestnet -- **Network ID**: 7777 -- **Currency**: - - **Name**: Nano Machines - - **Symbol**: NMAC - - **Decimals**: 18 - -## RPC URLs - -Rise of the Warbots Testnet can be accessed through the following RPC endpoints: - -- https://testnet1.riseofthewarbots.com -- https://testnet2.riseofthewarbots.com -- https://testnet3.riseofthewarbots.com -- https://testnet4.riseofthewarbots.com -- https://testnet5.riseofthewarbots.com - -## Rise of the Warbots Testnet Block Explorers - -- [avascan](https://testnet.avascan.info/blockchain/2mZ9doojfwHzXN3VXDQELKnKyZYxv7833U8Yq5eTfFx3hxJtiy) - -## Additional Information - -- **Official Website**: https://riseofthewarbots.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rise of the Warbots Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rivalz2.mdx b/docs/pages/solutions/chainlist/non-integrated/rivalz2.mdx deleted file mode 100644 index 4accc75f65..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rivalz2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rivalz2 - Rivalz2 Blockchain Network -description: Explore Rivalz2, a blockchain network with chain ID 6966. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Rivalz2 - -Rivalz2 is a blockchain network with chain ID 6966. - -## Network Details - -- **Chain ID**: 6966 -- **Chain Name**: Rivalz2 -- **Short Name**: ETH -- **Network ID**: 6966 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Rivalz2 can be accessed through the following RPC endpoints: - -- https://rivalz2.rpc.caldera.xyz/infra-partner-http - -## Rivalz2 Block Explorers - -- [Rivalz2 explorer](https://rivalz2.explorer.caldera.xyz/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rivalz2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/roburna-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/roburna-testnet.mdx deleted file mode 100644 index 745c44e627..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/roburna-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Roburna Testnet - RBAT Blockchain Network -description: Explore Roburna Testnet, a blockchain network with chain ID 159. Learn about its native currency, Roburna, and how to interact with the network. ---- - -# Roburna Testnet - -Roburna Testnet is a blockchain network with chain ID 159. - -## Network Details - -- **Chain ID**: 159 -- **Chain Name**: RBAT -- **Short Name**: rbat -- **Network ID**: 159 -- **Currency**: - - **Name**: Roburna - - **Symbol**: RBAT - - **Decimals**: 18 - -## RPC URLs - -Roburna Testnet can be accessed through the following RPC endpoints: - -- https://preseed-testnet-1.roburna.com - -## Roburna Testnet Block Explorers - -- [Rbascan Testnet Explorer](https://testnet.rbascan.com) - -## Additional Information - -- **Official Website**: https://www.roburna.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Roburna Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/roburna.mdx b/docs/pages/solutions/chainlist/non-integrated/roburna.mdx deleted file mode 100644 index 1aded5e903..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/roburna.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Roburna Mainnet - RBA Blockchain Network -description: Explore Roburna Mainnet, a blockchain network with chain ID 158. Learn about its native currency, Roburna, and how to interact with the network. ---- - -# Roburna Mainnet - -Roburna Mainnet is a blockchain network with chain ID 158. - -## Network Details - -- **Chain ID**: 158 -- **Chain Name**: RBA -- **Short Name**: rba -- **Network ID**: 158 -- **Currency**: - - **Name**: Roburna - - **Symbol**: RBA - - **Decimals**: 18 - -## RPC URLs - -Roburna Mainnet can be accessed through the following RPC endpoints: - -- https://dataseed.roburna.com - -## Roburna Mainnet Block Explorers - -- [Rbascan Explorer](https://rbascan.com) - -## Additional Information - -- **Official Website**: https://www.roburna.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rollux-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rollux-testnet.mdx deleted file mode 100644 index 2c5ec7769d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rollux-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: Rollux Testnet - SYS Blockchain Network -description: Explore Rollux Testnet, a blockchain network with chain ID 57000. Learn about its native currency, Testnet Syscoin, and how to interact with the network. ---- - -# Rollux Testnet - -Rollux Testnet is a blockchain network with chain ID 57000. - -## Network Details - -- **Chain ID**: 57000 -- **Chain Name**: SYS -- **Short Name**: tsys-rollux -- **Network ID**: 57000 -- **Currency**: - - **Name**: Testnet Syscoin - - **Symbol**: TSYS - - **Decimals**: 18 - -## RPC URLs - -Rollux Testnet can be accessed through the following RPC endpoints: - -- 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 - -## Rollux Testnet Block Explorers - -- [Rollux Testnet Explorer](https://rollux.tanenbaum.io) - -## Additional Information - -- **Official Website**: https://rollux.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rollux Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rollux.mdx b/docs/pages/solutions/chainlist/non-integrated/rollux.mdx deleted file mode 100644 index fd7a8c5077..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rollux.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rollux Mainnet - SYS Blockchain Network -description: Explore Rollux Mainnet, a blockchain network with chain ID 570. Learn about its native currency, Syscoin, and how to interact with the network. ---- - -# Rollux Mainnet - -Rollux Mainnet is a blockchain network with chain ID 570. - -## Network Details - -- **Chain ID**: 570 -- **Chain Name**: SYS -- **Short Name**: sys-rollux -- **Network ID**: 570 -- **Currency**: - - **Name**: Syscoin - - **Symbol**: SYS - - **Decimals**: 18 - -## RPC URLs - -Rollux Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.rollux.com -- wss://rpc.rollux.com/wss -- https://rpc.ankr.com/rollux -- https://rollux.rpc.syscoin.org -- wss://rollux.rpc.syscoin.org/wss - -## Rollux Mainnet Block Explorers - -- [Rollux Explorer](https://explorer.rollux.com) - -## Additional Information - -- **Official Website**: https://rollux.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/rootstock-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rootstock-testnet.mdx deleted file mode 100644 index e668582af1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rootstock-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Rootstock Testnet - Rootstock Blockchain Network -description: Explore Rootstock Testnet, a blockchain network with chain ID 31. Learn about its native currency, Testnet Smart Bitcoin, and how to interact with the network. ---- - -# Rootstock Testnet - -Rootstock Testnet is a blockchain network with chain ID 31. - -## Network Details - -- **Chain ID**: 31 -- **Chain Name**: Rootstock -- **Short Name**: trsk -- **Network ID**: 31 -- **Currency**: - - **Name**: Testnet Smart Bitcoin - - **Symbol**: tRBTC - - **Decimals**: 18 - -## RPC URLs - -Rootstock Testnet can be accessed through the following RPC endpoints: - -- https://public-node.testnet.rsk.co -- https://mycrypto.testnet.rsk.co - -## Rootstock Testnet Block Explorers - -- [Rootstock Blockscout](https://rootstock-testnet.blockscout.com) - -## Additional Information - -- **Official Website**: https://rootstock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rootstock Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rootstock.mdx b/docs/pages/solutions/chainlist/non-integrated/rootstock.mdx deleted file mode 100644 index 93c920454d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rootstock.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Rootstock Mainnet - Rootstock Blockchain Network -description: Explore Rootstock Mainnet, a blockchain network with chain ID 30. Learn about its native currency, Smart Bitcoin, and how to interact with the network. ---- - -# Rootstock Mainnet - -Rootstock Mainnet is a blockchain network with chain ID 30. - -## Network Details - -- **Chain ID**: 30 -- **Chain Name**: Rootstock -- **Short Name**: rsk -- **Network ID**: 30 -- **Currency**: - - **Name**: Smart Bitcoin - - **Symbol**: RBTC - - **Decimals**: 18 - -## RPC URLs - -Rootstock Mainnet can be accessed through the following RPC endpoints: - -- https://public-node.rsk.co -- https://mycrypto.rsk.co - -## Rootstock Mainnet Block Explorers - -- [blockscout](https://rootstock.blockscout.com) -- [Rootstock Explorer](https://explorer.rsk.co) - -## Additional Information - -- **Official Website**: https://rootstock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ropsten.mdx b/docs/pages/solutions/chainlist/non-integrated/ropsten.mdx deleted file mode 100644 index cc120db0fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ropsten.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ropsten - ETH Blockchain Network -description: Explore Ropsten, a blockchain network with chain ID 3. Learn about its native currency, Ropsten Ether, and how to interact with the network. ---- - -# Ropsten - -Ropsten is a blockchain network with chain ID 3. - -## Network Details - -- **Chain ID**: 3 -- **Chain Name**: ETH -- **Short Name**: rop -- **Network ID**: 3 -- **Currency**: - - **Name**: Ropsten Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ropsten can be accessed through the following RPC endpoints: - - - -## Ropsten Block Explorers - -- [etherscan](https://ropsten.etherscan.io) - -## Additional Information - -- **Official Website**: https://github.com/ethereum/ropsten - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ropsten Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/roseon-network.mdx b/docs/pages/solutions/chainlist/non-integrated/roseon-network.mdx deleted file mode 100644 index 01a41714bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/roseon-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Roseon Network - Roseon Network Blockchain Network -description: Explore Roseon Network, a blockchain network with chain ID 10052. Learn about its native currency, RoseonX, and how to interact with the network. ---- - -# Roseon Network - -Roseon Network is a blockchain network with chain ID 10052. - -## Network Details - -- **Chain ID**: 10052 -- **Chain Name**: Roseon Network -- **Short Name**: Roseon Network -- **Network ID**: 10052 -- **Currency**: - - **Name**: RoseonX - - **Symbol**: ROSX - - **Decimals**: 18 - -## RPC URLs - -Roseon Network can be accessed through the following RPC endpoints: - -- https://testnet.roseon.world - -## Roseon Network Block Explorers - -- [Roseon Network Explorer](https://testnet.explorer.roseon.world) - -## Additional Information - -- **Official Website**: https://thirdweb.com/10052 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Roseon Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rss3-vsl-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rss3-vsl-sepolia-testnet.mdx deleted file mode 100644 index bee588d2b4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rss3-vsl-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: RSS3 VSL Sepolia Testnet - RSS3 Blockchain Network -description: Explore RSS3 VSL Sepolia Testnet, a blockchain network with chain ID 2331. Learn about its native currency, RSS3, and how to interact with the network. ---- - -# RSS3 VSL Sepolia Testnet - -RSS3 VSL Sepolia Testnet is a blockchain network with chain ID 2331. - -## Network Details - -- **Chain ID**: 2331 -- **Chain Name**: RSS3 -- **Short Name**: rss3-testnet -- **Network ID**: 2331 -- **Currency**: - - **Name**: RSS3 - - **Symbol**: RSS3 - - **Decimals**: 18 - -## RPC URLs - -RSS3 VSL Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.rss3.io - -## RSS3 VSL Sepolia Testnet Block Explorers - -- [RSS3 VSL Sepolia Testnet Scan](https://scan.testnet.rss3.io) - -## Additional Information - -- **Official Website**: https://rss3.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## RSS3 VSL Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rss3-vsl.mdx b/docs/pages/solutions/chainlist/non-integrated/rss3-vsl.mdx deleted file mode 100644 index 79b682c156..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rss3-vsl.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: RSS3 VSL Mainnet - RSS3 Blockchain Network -description: Explore RSS3 VSL Mainnet, a blockchain network with chain ID 12553. Learn about its native currency, RSS3, and how to interact with the network. ---- - -# RSS3 VSL Mainnet - -RSS3 VSL Mainnet is a blockchain network with chain ID 12553. - -## Network Details - -- **Chain ID**: 12553 -- **Chain Name**: RSS3 -- **Short Name**: rss3 -- **Network ID**: 12553 -- **Currency**: - - **Name**: RSS3 - - **Symbol**: RSS3 - - **Decimals**: 18 - -## RPC URLs - -RSS3 VSL Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.rss3.io - -## RSS3 VSL Mainnet Block Explorers - -- [RSS3 VSL Scan](https://scan.rss3.io) - -## Additional Information - -- **Official Website**: https://rss3.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain-testnet.mdx deleted file mode 100644 index dea1af0107..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ruby Smart Chain Testnet - RUBY Blockchain Network -description: Explore Ruby Smart Chain Testnet, a blockchain network with chain ID 1912. Learn about its native currency, RUBY Smart Chain Native Token, and how to interact with the network. ---- - -# Ruby Smart Chain Testnet - -Ruby Smart Chain Testnet is a blockchain network with chain ID 1912. - -## Network Details - -- **Chain ID**: 1912 -- **Chain Name**: RUBY -- **Short Name**: tRUBY -- **Network ID**: 1912 -- **Currency**: - - **Name**: RUBY Smart Chain Native Token - - **Symbol**: tRUBY - - **Decimals**: 18 - -## RPC URLs - -Ruby Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rchain.rubychain.io/ - -## Ruby Smart Chain Testnet Block Explorers - -- [RUBY Smart Chain Testnet Explorer](https://testnet.rubyscan.net) - -## Additional Information - -- **Official Website**: https://rubychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ruby Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain.mdx deleted file mode 100644 index 0e1e2ce156..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ruby-smart-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ruby Smart Chain MAINNET - RUBY Blockchain Network -description: Explore Ruby Smart Chain MAINNET, a blockchain network with chain ID 1821. Learn about its native currency, RUBY Smart Chain Native Token, and how to interact with the network. ---- - -# Ruby Smart Chain MAINNET - -Ruby Smart Chain MAINNET is a blockchain network with chain ID 1821. - -## Network Details - -- **Chain ID**: 1821 -- **Chain Name**: RUBY -- **Short Name**: RUBY -- **Network ID**: 1821 -- **Currency**: - - **Name**: RUBY Smart Chain Native Token - - **Symbol**: RUBY - - **Decimals**: 18 - -## RPC URLs - -Ruby Smart Chain MAINNET can be accessed through the following RPC endpoints: - -- https://mainnet-data.rubychain.io/ -- https://mainnet.rubychain.io/ - -## Ruby Smart Chain MAINNET Block Explorers - -- [RUBY Smart Chain MAINNET Explorer](https://rubyscan.net) - -## Additional Information - -- **Official Website**: https://rubychain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/runevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/runevm-testnet.mdx deleted file mode 100644 index 281b1f1a3c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/runevm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: RUNEVM Testnet - RuneVM Blockchain Network -description: Explore RUNEVM Testnet, a blockchain network with chain ID 840000. Learn about its native currency, Test Bitcoin, and how to interact with the network. ---- - -# RUNEVM Testnet - -RUNEVM Testnet is a blockchain network with chain ID 840000. - -## Network Details - -- **Chain ID**: 840000 -- **Chain Name**: RuneVM -- **Short Name**: runevm-test -- **Network ID**: 840000 -- **Currency**: - - **Name**: Test Bitcoin - - **Symbol**: tBTC - - **Decimals**: 8 - -## RPC URLs - -RUNEVM Testnet can be accessed through the following RPC endpoints: - -- https://rpc.runevm.io/ - -## RUNEVM Testnet Block Explorers - -- [Tracehawk](https://explorer.runevm.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## RUNEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/runic-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/runic-chain-testnet.mdx deleted file mode 100644 index 040ae1f59c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/runic-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Runic Chain Testnet - Runic Blockchain Network -description: Explore Runic Chain Testnet, a blockchain network with chain ID 822. Learn about its native currency, Bitcoin, and how to interact with the network. ---- - -# Runic Chain Testnet - -Runic Chain Testnet is a blockchain network with chain ID 822. - -## Network Details - -- **Chain ID**: 822 -- **Chain Name**: Runic -- **Short Name**: runic-testnet -- **Network ID**: 822 -- **Currency**: - - **Name**: Bitcoin - - **Symbol**: rBTC - - **Decimals**: 18 - -## RPC URLs - -Runic Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.runic.build - -## Runic Chain Testnet Block Explorers - -- [RunicScan](https://scan.runic.build) - -## Additional Information - -- **Official Website**: https://runic.build - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Runic Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rupaya-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/rupaya-testnet.mdx deleted file mode 100644 index 7b64003e72..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rupaya-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Rupaya Testnet - Rupaya Testnet Blockchain Network -description: Explore Rupaya Testnet, a blockchain network with chain ID 799. Learn about its native currency, Test Rupaya, and how to interact with the network. ---- - -# Rupaya Testnet - -Rupaya Testnet is a blockchain network with chain ID 799. - -## Network Details - -- **Chain ID**: 799 -- **Chain Name**: Rupaya Testnet -- **Short Name**: RupayaTestnet -- **Network ID**: 799 -- **Currency**: - - **Name**: Test Rupaya - - **Symbol**: TRUPX - - **Decimals**: 18 - -## RPC URLs - -Rupaya Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.rupaya.io - -## Rupaya Testnet Block Explorers - -- [rupayascan](https://scan.testnet.rupaya.io) - -## Additional Information - -- **Official Website**: https://www.rupaya.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Rupaya Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/rupaya.mdx b/docs/pages/solutions/chainlist/non-integrated/rupaya.mdx deleted file mode 100644 index 42bf56b7b8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/rupaya.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Rupaya - RUPX Blockchain Network -description: Explore Rupaya, a blockchain network with chain ID 499. Learn about its native currency, Rupaya, and how to interact with the network. ---- - -# Rupaya - -Rupaya is a blockchain network with chain ID 499. - -## Network Details - -- **Chain ID**: 499 -- **Chain Name**: RUPX -- **Short Name**: rupx -- **Network ID**: 499 -- **Currency**: - - **Name**: Rupaya - - **Symbol**: RUPX - - **Decimals**: 18 - -## RPC URLs - -Rupaya can be accessed through the following RPC endpoints: - - - -## Rupaya Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.rupaya.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/s-testnet-1-5-24.mdx b/docs/pages/solutions/chainlist/non-integrated/s-testnet-1-5-24.mdx deleted file mode 100644 index 55188eb054..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/s-testnet-1-5-24.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: S Testnet 1-5-24 - Avalanche Blockchain Network -description: Explore S Testnet 1-5-24, a blockchain network with chain ID 74356. Learn about its native currency, S Testnet 1-5-24 Token, and how to interact with the network. ---- - -# S Testnet 1-5-24 - -S Testnet 1-5-24 is a blockchain network with chain ID 74356. - -## Network Details - -- **Chain ID**: 74356 -- **Chain Name**: Avalanche -- **Short Name**: S Testnet 1-5-24 -- **Network ID**: 74356 -- **Currency**: - - **Name**: S Testnet 1-5-24 Token - - **Symbol**: ZLQ - - **Decimals**: 18 - -## RPC URLs - -S Testnet 1-5-24 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## S Testnet 1-5-24 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## S Testnet 1-5-24 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/saakuru-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/saakuru-testnet.mdx deleted file mode 100644 index 9c34f66062..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/saakuru-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Saakuru Testnet - Saakuru Blockchain Network -description: Explore Saakuru Testnet, a blockchain network with chain ID 247253. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Saakuru Testnet - -Saakuru Testnet is a blockchain network with chain ID 247253. - -## Network Details - -- **Chain ID**: 247253 -- **Chain Name**: Saakuru -- **Short Name**: saakuru-testnet -- **Network ID**: 247253 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Saakuru Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.saakuru.network - -## Saakuru Testnet Block Explorers - -- [saakuru-explorer-testnet](https://explorer-testnet.saakuru.network) - -## Additional Information - -- **Official Website**: https://saakuru.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Saakuru Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/saakuru.mdx b/docs/pages/solutions/chainlist/non-integrated/saakuru.mdx deleted file mode 100644 index e6c9745ef4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/saakuru.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Saakuru Mainnet - Saakuru Blockchain Network -description: Explore Saakuru Mainnet, a blockchain network with chain ID 7225878. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Saakuru Mainnet - -Saakuru Mainnet is a blockchain network with chain ID 7225878. - -## Network Details - -- **Chain ID**: 7225878 -- **Chain Name**: Saakuru -- **Short Name**: saakuru -- **Network ID**: 7225878 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Saakuru Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.saakuru.network - -## Saakuru Mainnet Block Explorers - -- [saakuru-explorer](https://explorer.saakuru.network) - -## Additional Information - -- **Official Website**: https://saakuru.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/safe(anwang)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/safe(anwang)-testnet.mdx deleted file mode 100644 index 934cf166ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/safe(anwang)-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Safe(AnWang) Testnet - Safe(AnWang) Blockchain Network -description: Explore Safe(AnWang) Testnet, a blockchain network with chain ID 6666666. Learn about its native currency, SAFE(AnWang), and how to interact with the network. ---- - -# Safe(AnWang) Testnet - -Safe(AnWang) Testnet is a blockchain network with chain ID 6666666. - -## Network Details - -- **Chain ID**: 6666666 -- **Chain Name**: Safe(AnWang) -- **Short Name**: SafeTestnet -- **Network ID**: 6666666 -- **Currency**: - - **Name**: SAFE(AnWang) - - **Symbol**: SAFE - - **Decimals**: 18 - -## RPC URLs - -Safe(AnWang) Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.anwang.com - -## Safe(AnWang) Testnet Block Explorers - -- [Safe(AnWang) Testnet Explorer](http://safe4-testnet.anwang.com) - -## Additional Information - -- **Official Website**: https://www.anwang.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Safe(AnWang) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/safe(anwang).mdx b/docs/pages/solutions/chainlist/non-integrated/safe(anwang).mdx deleted file mode 100644 index 050b8447ba..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/safe(anwang).mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Safe(AnWang) Mainnet - Safe(AnWang) Blockchain Network -description: Explore Safe(AnWang) Mainnet, a blockchain network with chain ID 6666665. Learn about its native currency, SAFE(AnWang), and how to interact with the network. ---- - -# Safe(AnWang) Mainnet - -Safe(AnWang) Mainnet is a blockchain network with chain ID 6666665. - -## Network Details - -- **Chain ID**: 6666665 -- **Chain Name**: Safe(AnWang) -- **Short Name**: SafeMainnet -- **Network ID**: 6666665 -- **Currency**: - - **Name**: SAFE(AnWang) - - **Symbol**: SAFE - - **Decimals**: 18 - -## RPC URLs - -Safe(AnWang) Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.anwang.com - -## Safe(AnWang) Mainnet Block Explorers - -- [Safe(AnWang) Explorer](http://safe4.anwang.com) - -## Additional Information - -- **Official Website**: https://www.anwang.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/saharaai-network.mdx b/docs/pages/solutions/chainlist/non-integrated/saharaai-network.mdx deleted file mode 100644 index f81e8f9dd2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/saharaai-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SaharaAI Network - Sahara Blockchain Network -description: Explore SaharaAI Network, a blockchain network with chain ID 3132023. Learn about its native currency, SAHARA, and how to interact with the network. ---- - -# SaharaAI Network - -SaharaAI Network is a blockchain network with chain ID 3132023. - -## Network Details - -- **Chain ID**: 3132023 -- **Chain Name**: Sahara -- **Short Name**: sahara -- **Network ID**: 3132023 -- **Currency**: - - **Name**: SAHARA - - **Symbol**: SAH - - **Decimals**: 18 - -## RPC URLs - -SaharaAI Network can be accessed through the following RPC endpoints: - -- https://mainnet.saharalabs.ai - -## SaharaAI Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://saharalabs.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/saharaai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/saharaai-testnet.mdx deleted file mode 100644 index d7b24ea414..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/saharaai-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SaharaAI Testnet - Sahara Blockchain Network -description: Explore SaharaAI Testnet, a blockchain network with chain ID 313313. Learn about its native currency, SAHARA, and how to interact with the network. ---- - -# SaharaAI Testnet - -SaharaAI Testnet is a blockchain network with chain ID 313313. - -## Network Details - -- **Chain ID**: 313313 -- **Chain Name**: Sahara -- **Short Name**: saharatest -- **Network ID**: 313313 -- **Currency**: - - **Name**: SAHARA - - **Symbol**: SAH - - **Decimals**: 18 - -## RPC URLs - -SaharaAI Testnet can be accessed through the following RPC endpoints: - -- https://testnet.saharalabs.ai - -## SaharaAI Testnet Block Explorers - -- [Testnet Scan](https://explorer.saharaa.info) - -## Additional Information - -- **Official Website**: https://saharalabs.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SaharaAI Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/saitablockchain(sbc).mdx b/docs/pages/solutions/chainlist/non-integrated/saitablockchain(sbc).mdx deleted file mode 100644 index 273d154c62..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/saitablockchain(sbc).mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SaitaBlockChain(SBC) - SaitaBlockChain(SBC) Blockchain Network -description: Explore SaitaBlockChain(SBC), a blockchain network with chain ID 1209. Learn about its native currency, SaitaBlockChain(SBC), and how to interact with the network. ---- - -# SaitaBlockChain(SBC) - -SaitaBlockChain(SBC) is a blockchain network with chain ID 1209. - -## Network Details - -- **Chain ID**: 1209 -- **Chain Name**: SaitaBlockChain(SBC) -- **Short Name**: SBC -- **Network ID**: 1209 -- **Currency**: - - **Name**: SaitaBlockChain(SBC) - - **Symbol**: STC - - **Decimals**: 18 - -## RPC URLs - -SaitaBlockChain(SBC) can be accessed through the following RPC endpoints: - -- https://rpc-nodes.saitascan.io - -## SaitaBlockChain(SBC) Block Explorers - -- [Saitascan explorer](https://saitascan.io) - -## Additional Information - -- **Official Website**: https://saitachain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sakura.mdx b/docs/pages/solutions/chainlist/non-integrated/sakura.mdx deleted file mode 100644 index 0187c9c6c4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sakura.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sakura - Sakura Blockchain Network -description: Explore Sakura, a blockchain network with chain ID 1022. Learn about its native currency, Sakura, and how to interact with the network. ---- - -# Sakura - -Sakura is a blockchain network with chain ID 1022. - -## Network Details - -- **Chain ID**: 1022 -- **Chain Name**: Sakura -- **Short Name**: sku -- **Network ID**: 1022 -- **Currency**: - - **Name**: Sakura - - **Symbol**: SKU - - **Decimals**: 18 - -## RPC URLs - -Sakura can be accessed through the following RPC endpoints: - - - -## Sakura Block Explorers - - - -## Additional Information - -- **Official Website**: https://clover.finance/sakura - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sample-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sample-testnet.mdx deleted file mode 100644 index a8587a231a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sample-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Sample Testnet - Avalanche Blockchain Network -description: Explore Sample Testnet, a blockchain network with chain ID 94918. Learn about its native currency, Sample Testnet Token, and how to interact with the network. ---- - -# Sample Testnet - -Sample Testnet is a blockchain network with chain ID 94918. - -## Network Details - -- **Chain ID**: 94918 -- **Chain Name**: Avalanche -- **Short Name**: Sample Testnet -- **Network ID**: 94918 -- **Currency**: - - **Name**: Sample Testnet Token - - **Symbol**: INS - - **Decimals**: 18 - -## RPC URLs - -Sample Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/sampletest/testnet/rpc - -## Sample Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Sample Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sanko.mdx b/docs/pages/solutions/chainlist/non-integrated/sanko.mdx deleted file mode 100644 index e8ab1ad437..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sanko.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sanko - Sanko Blockchain Network -description: Explore Sanko, a blockchain network with chain ID 1996. Learn about its native currency, DMT, and how to interact with the network. ---- - -# Sanko - -Sanko is a blockchain network with chain ID 1996. - -## Network Details - -- **Chain ID**: 1996 -- **Chain Name**: Sanko -- **Short Name**: Sanko -- **Network ID**: 1996 -- **Currency**: - - **Name**: DMT - - **Symbol**: DMT - - **Decimals**: 18 - -## RPC URLs - -Sanko can be accessed through the following RPC endpoints: - -- https://mainnet.sanko.xyz - -## Sanko Block Explorers - -- [Sanko Explorer](https://explorer.sanko.xyz) - -## Additional Information - -- **Official Website**: https://sanko.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network-deprecated.mdx deleted file mode 100644 index d9b63a31a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network-deprecated.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Santiment Intelligence Network DEPRECATED - Santiment Intelligence Network DEPRECATED Blockchain Network -description: Explore Santiment Intelligence Network DEPRECATED, a blockchain network with chain ID 11888. Learn about its native currency, SANold, and how to interact with the network. ---- - -# Santiment Intelligence Network DEPRECATED - -Santiment Intelligence Network DEPRECATED is a blockchain network with chain ID 11888. - -## Network Details - -- **Chain ID**: 11888 -- **Chain Name**: Santiment Intelligence Network DEPRECATED -- **Short Name**: SANold -- **Network ID**: 11888 -- **Currency**: - - **Name**: SANold - - **Symbol**: SANold - - **Decimals**: 18 - -## RPC URLs - -Santiment Intelligence Network DEPRECATED can be accessed through the following RPC endpoints: - -- https://sanrchain-node.santiment.net - -## Santiment Intelligence Network DEPRECATED Block Explorers - -- [Santiment Intelligence Explorer](https://app-explorer-pos.sanr.app) - -## Additional Information - -- **Official Website**: https://sanr.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network.mdx b/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network.mdx deleted file mode 100644 index f0ff2ac2da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/santiment-intelligence-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Santiment Intelligence Network - Santiment Intelligence Network Blockchain Network -description: Explore Santiment Intelligence Network, a blockchain network with chain ID 32382. Learn about its native currency, SANR, and how to interact with the network. ---- - -# Santiment Intelligence Network - -Santiment Intelligence Network is a blockchain network with chain ID 32382. - -## Network Details - -- **Chain ID**: 32382 -- **Chain Name**: Santiment Intelligence Network -- **Short Name**: SANR -- **Network ID**: 32382 -- **Currency**: - - **Name**: SANR - - **Symbol**: SANR - - **Decimals**: 18 - -## RPC URLs - -Santiment Intelligence Network can be accessed through the following RPC endpoints: - -- https://node.sanr.app - -## Santiment Intelligence Network Block Explorers - -- [Santiment Intelligence Explorer](https://app-explorer-pos.sanr.app) - -## Additional Information - -- **Official Website**: https://sanr.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sapphire-by-unique.mdx b/docs/pages/solutions/chainlist/non-integrated/sapphire-by-unique.mdx deleted file mode 100644 index 43ca811600..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sapphire-by-unique.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Sapphire by Unique - UNQ Blockchain Network -description: Explore Sapphire by Unique, a blockchain network with chain ID 8883. Learn about its native currency, Quartz, and how to interact with the network. ---- - -# Sapphire by Unique - -Sapphire by Unique is a blockchain network with chain ID 8883. - -## Network Details - -- **Chain ID**: 8883 -- **Chain Name**: UNQ -- **Short Name**: sph -- **Network ID**: 8883 -- **Currency**: - - **Name**: Quartz - - **Symbol**: QTZ - - **Decimals**: 18 - -## RPC URLs - -Sapphire by Unique can be accessed through the following RPC endpoints: - -- https://rpc-sapphire.unique.network -- https://us-rpc-sapphire.unique.network -- https://eu-rpc-sapphire.unique.network -- https://asia-rpc-sapphire.unique.network - -## Sapphire by Unique Block Explorers - -- [Unique Scan / Sapphire](https://uniquescan.io/sapphire) - -## Additional Information - -- **Official Website**: https://unique.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sardis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sardis-testnet.mdx deleted file mode 100644 index 21ca309eaf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sardis-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Sardis Testnet - SRDX Blockchain Network -description: Explore Sardis Testnet, a blockchain network with chain ID 11612. Learn about its native currency, Sardis, and how to interact with the network. ---- - -# Sardis Testnet - -Sardis Testnet is a blockchain network with chain ID 11612. - -## Network Details - -- **Chain ID**: 11612 -- **Chain Name**: SRDX -- **Short Name**: SRDXt -- **Network ID**: 11612 -- **Currency**: - - **Name**: Sardis - - **Symbol**: SRDX - - **Decimals**: 18 - -## RPC URLs - -Sardis Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.sardisnetwork.com - -## Sardis Testnet Block Explorers - -- [Sardis](https://testnet.sardisnetwork.com) - -## Additional Information - -- **Official Website**: https://mysardis.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Sardis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sardis.mdx b/docs/pages/solutions/chainlist/non-integrated/sardis.mdx deleted file mode 100644 index b7f7a04482..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sardis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sardis Mainnet - SRDX Blockchain Network -description: Explore Sardis Mainnet, a blockchain network with chain ID 51712. Learn about its native currency, Sardis, and how to interact with the network. ---- - -# Sardis Mainnet - -Sardis Mainnet is a blockchain network with chain ID 51712. - -## Network Details - -- **Chain ID**: 51712 -- **Chain Name**: SRDX -- **Short Name**: SRDXm -- **Network ID**: 51712 -- **Currency**: - - **Name**: Sardis - - **Symbol**: SRDX - - **Decimals**: 18 - -## RPC URLs - -Sardis Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.sardisnetwork.com - -## Sardis Mainnet Block Explorers - -- [Sardis](https://contract-mainnet.sardisnetwork.com) - -## Additional Information - -- **Official Website**: https://mysardis.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshichain-testnet.mdx deleted file mode 100644 index 87e2192d64..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SatoshiChain Testnet - SATS Blockchain Network -description: Explore SatoshiChain Testnet, a blockchain network with chain ID 5758. Learn about its native currency, SatoshiChain Coin, and how to interact with the network. ---- - -# SatoshiChain Testnet - -SatoshiChain Testnet is a blockchain network with chain ID 5758. - -## Network Details - -- **Chain ID**: 5758 -- **Chain Name**: SATS -- **Short Name**: satst -- **Network ID**: 5758 -- **Currency**: - - **Name**: SatoshiChain Coin - - **Symbol**: SATS - - **Decimals**: 18 - -## RPC URLs - -SatoshiChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.satoshichain.io - -## SatoshiChain Testnet Block Explorers - -- [SatoshiChain Testnet Explorer](https://testnet.satoshiscan.io) - -## Additional Information - -- **Official Website**: https://satoshichain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SatoshiChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshichain.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshichain.mdx deleted file mode 100644 index 7e2f8cca8b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshichain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SatoshiChain Mainnet - SATS Blockchain Network -description: Explore SatoshiChain Mainnet, a blockchain network with chain ID 12009. Learn about its native currency, SatoshiChain Coin, and how to interact with the network. ---- - -# SatoshiChain Mainnet - -SatoshiChain Mainnet is a blockchain network with chain ID 12009. - -## Network Details - -- **Chain ID**: 12009 -- **Chain Name**: SATS -- **Short Name**: sats -- **Network ID**: 12009 -- **Currency**: - - **Name**: SatoshiChain Coin - - **Symbol**: SATS - - **Decimals**: 18 - -## RPC URLs - -SatoshiChain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.satoshichain.io - -## SatoshiChain Mainnet Block Explorers - -- [SatoshiChain Explorer](https://satoshiscan.io) - -## Additional Information - -- **Official Website**: https://satoshichain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshie-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshie-testnet.mdx deleted file mode 100644 index b0d337a84c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshie-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SatoshIE Testnet - TUSHY Blockchain Network -description: Explore SatoshIE Testnet, a blockchain network with chain ID 1986. Learn about its native currency, Tushy Token, and how to interact with the network. ---- - -# SatoshIE Testnet - -SatoshIE Testnet is a blockchain network with chain ID 1986. - -## Network Details - -- **Chain ID**: 1986 -- **Chain Name**: TUSHY -- **Short Name**: satoshie_testnet -- **Network ID**: 1986 -- **Currency**: - - **Name**: Tushy Token - - **Symbol**: TUSHY - - **Decimals**: 18 - -## RPC URLs - -SatoshIE Testnet can be accessed through the following RPC endpoints: - -- http://testnet.satosh.ie - -## SatoshIE Testnet Block Explorers - -- [testnetexplorer](http://explore-testnet.satosh.ie) - -## Additional Information - -- **Official Website**: https://satosh.ie - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SatoshIE Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshie.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshie.mdx deleted file mode 100644 index 21cbc9eba3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshie.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SatoshIE - TUSHY Blockchain Network -description: Explore SatoshIE, a blockchain network with chain ID 1985. Learn about its native currency, Tushy Token, and how to interact with the network. ---- - -# SatoshIE - -SatoshIE is a blockchain network with chain ID 1985. - -## Network Details - -- **Chain ID**: 1985 -- **Chain Name**: TUSHY -- **Short Name**: satoshie -- **Network ID**: 1985 -- **Currency**: - - **Name**: Tushy Token - - **Symbol**: TUSHY - - **Decimals**: 18 - -## RPC URLs - -SatoshIE can be accessed through the following RPC endpoints: - -- http://rpc.satosh.ie - -## SatoshIE Block Explorers - -- [mainnetexplorer](http://explore.satosh.ie) - -## Additional Information - -- **Official Website**: https://satosh.ie - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshivm-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshivm-alpha.mdx deleted file mode 100644 index e0aa9801f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshivm-alpha.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SatoshiVM Alpha Mainnet - SatoshiVM Blockchain Network -description: Explore SatoshiVM Alpha Mainnet, a blockchain network with chain ID 3109. Learn about its native currency, BTC, and how to interact with the network. ---- - -# SatoshiVM Alpha Mainnet - -SatoshiVM Alpha Mainnet is a blockchain network with chain ID 3109. - -## Network Details - -- **Chain ID**: 3109 -- **Chain Name**: SatoshiVM -- **Short Name**: SAVM -- **Network ID**: 3109 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -SatoshiVM Alpha Mainnet can be accessed through the following RPC endpoints: - -- https://alpha-rpc-node-http.svmscan.io - -## SatoshiVM Alpha Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.satoshivm.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/satoshivm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/satoshivm-testnet.mdx deleted file mode 100644 index a815f53877..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satoshivm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SatoshiVM Testnet - SatoshiVM Blockchain Network -description: Explore SatoshiVM Testnet, a blockchain network with chain ID 3110. Learn about its native currency, BTC, and how to interact with the network. ---- - -# SatoshiVM Testnet - -SatoshiVM Testnet is a blockchain network with chain ID 3110. - -## Network Details - -- **Chain ID**: 3110 -- **Chain Name**: SatoshiVM -- **Short Name**: tSAVM -- **Network ID**: 3110 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -SatoshiVM Testnet can be accessed through the following RPC endpoints: - -- https://test-rpc-node-http.svmscan.io - -## SatoshiVM Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.satoshivm.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SatoshiVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/satschain.mdx b/docs/pages/solutions/chainlist/non-integrated/satschain.mdx deleted file mode 100644 index 1db3753268..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/satschain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SatsChain - SatsChain Blockchain Network -description: Explore SatsChain, a blockchain network with chain ID 11521. Learn about its native currency, SATS, and how to interact with the network. ---- - -# SatsChain - -SatsChain is a blockchain network with chain ID 11521. - -## Network Details - -- **Chain ID**: 11521 -- **Chain Name**: SatsChain -- **Short Name**: satschain -- **Network ID**: 11521 -- **Currency**: - - **Name**: SATS - - **Symbol**: SATS - - **Decimals**: 18 - -## RPC URLs - -SatsChain can be accessed through the following RPC endpoints: - -- https://rpc-satschain-1.bevm.io - -## SatsChain Block Explorers - -- [satschain scan](https://scan-satschain.bevm.io) - -## Additional Information - -- **Official Website**: https://github.com/BTCSatsNetwork - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/scalind.mdx b/docs/pages/solutions/chainlist/non-integrated/scalind.mdx deleted file mode 100644 index 82a53bd421..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scalind.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Scalind - ETH Blockchain Network -description: Explore Scalind, a blockchain network with chain ID 1911. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Scalind - -Scalind is a blockchain network with chain ID 1911. - -## Network Details - -- **Chain ID**: 1911 -- **Chain Name**: ETH -- **Short Name**: scal -- **Network ID**: 1911 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Scalind can be accessed through the following RPC endpoints: - -- https://rpc.scalind.com - -## Scalind Block Explorers - -- [scalind](https://explorer.scalind.com) - -## Additional Information - -- **Official Website**: https://scalind.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/scg-k-69743.mdx b/docs/pages/solutions/chainlist/non-integrated/scg-k-69743.mdx deleted file mode 100644 index fcc7dd2441..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scg-k-69743.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SCG-K - Avalanche Blockchain Network -description: Explore SCG-K, a blockchain network with chain ID 69743. Learn about its native currency, SCG-K Token, and how to interact with the network. ---- - -# SCG-K - -SCG-K is a blockchain network with chain ID 69743. - -## Network Details - -- **Chain ID**: 69743 -- **Chain Name**: Avalanche -- **Short Name**: SCG-K -- **Network ID**: 69743 -- **Currency**: - - **Name**: SCG-K Token - - **Symbol**: REC - - **Decimals**: 18 - -## RPC URLs - -SCG-K can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/scgk/mainnet/rpc - -## SCG-K Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/scg-k.mdx b/docs/pages/solutions/chainlist/non-integrated/scg-k.mdx deleted file mode 100644 index 02c1f8297a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scg-k.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SCG-K - Avalanche Blockchain Network -description: Explore SCG-K, a blockchain network with chain ID 60841. Learn about its native currency, SCG-K Token, and how to interact with the network. ---- - -# SCG-K - -SCG-K is a blockchain network with chain ID 60841. - -## Network Details - -- **Chain ID**: 60841 -- **Chain Name**: Avalanche -- **Short Name**: SCG-K -- **Network ID**: 60841 -- **Currency**: - - **Name**: SCG-K Token - - **Symbol**: REC - - **Decimals**: 18 - -## RPC URLs - -SCG-K can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/scgk/testnet/rpc - -## SCG-K Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SCG-K Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scolcoin-weichain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/scolcoin-weichain-testnet.mdx deleted file mode 100644 index 0bb1e67f98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scolcoin-weichain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Scolcoin WeiChain Testnet - SCOLWEI-testnet Blockchain Network -description: Explore Scolcoin WeiChain Testnet, a blockchain network with chain ID 6552. Learn about its native currency, Scolcoin, and how to interact with the network. ---- - -# Scolcoin WeiChain Testnet - -Scolcoin WeiChain Testnet is a blockchain network with chain ID 6552. - -## Network Details - -- **Chain ID**: 6552 -- **Chain Name**: SCOLWEI-testnet -- **Short Name**: SRC-test -- **Network ID**: 6552 -- **Currency**: - - **Name**: Scolcoin - - **Symbol**: SCOL - - **Decimals**: 18 - -## RPC URLs - -Scolcoin WeiChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.scolcoin.com - -## Scolcoin WeiChain Testnet Block Explorers - -- [Scolscan Testnet Explorer](https://testnet-explorer.scolcoin.com) - -## Additional Information - -- **Official Website**: https://scolcoin.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Scolcoin WeiChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scolcoin.mdx b/docs/pages/solutions/chainlist/non-integrated/scolcoin.mdx deleted file mode 100644 index 28997c165f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scolcoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Scolcoin Mainnet - SCOLWEI Blockchain Network -description: Explore Scolcoin Mainnet, a blockchain network with chain ID 65450. Learn about its native currency, Scolcoin, and how to interact with the network. ---- - -# Scolcoin Mainnet - -Scolcoin Mainnet is a blockchain network with chain ID 65450. - -## Network Details - -- **Chain ID**: 65450 -- **Chain Name**: SCOLWEI -- **Short Name**: SRC -- **Network ID**: 65450 -- **Currency**: - - **Name**: Scolcoin - - **Symbol**: SCOL - - **Decimals**: 18 - -## RPC URLs - -Scolcoin Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.scolcoin.com - -## Scolcoin Mainnet Block Explorers - -- [Scolscan Explorer](https://explorer.scolcoin.com) - -## Additional Information - -- **Official Website**: https://scolcoin.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/script-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/script-testnet.mdx deleted file mode 100644 index 55c2c6a4ea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/script-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Script Testnet - SPAY Blockchain Network -description: Explore Script Testnet, a blockchain network with chain ID 742. Learn about its native currency, Script, and how to interact with the network. ---- - -# Script Testnet - -Script Testnet is a blockchain network with chain ID 742. - -## Network Details - -- **Chain ID**: 742 -- **Chain Name**: SPAY -- **Short Name**: SPAY -- **Network ID**: 742 -- **Currency**: - - **Name**: Script - - **Symbol**: SPAY - - **Decimals**: 18 - -## RPC URLs - -Script Testnet can be accessed through the following RPC endpoints: - -- https://testeth-rpc-api.script.tv/rpc - -## Script Testnet Block Explorers - -- [Script Explorer](https://explorer.script.tv) - -## Additional Information - -- **Official Website**: https://token.script.tv - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Script Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scroll-alpha-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/scroll-alpha-testnet.mdx deleted file mode 100644 index f20258c401..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scroll-alpha-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Scroll Alpha Testnet - ETH Blockchain Network -description: Explore Scroll Alpha Testnet, a blockchain network with chain ID 534353. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Scroll Alpha Testnet - -Scroll Alpha Testnet is a blockchain network with chain ID 534353. - -## Network Details - -- **Chain ID**: 534353 -- **Chain Name**: ETH -- **Short Name**: scr-alpha -- **Network ID**: 534353 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Scroll Alpha Testnet can be accessed through the following RPC endpoints: - -- https://alpha-rpc.scroll.io/l2 - -## Scroll Alpha Testnet Block Explorers - -- [Scroll Alpha Testnet Block Explorer](https://alpha-blockscout.scroll.io) - -## Additional Information - -- **Official Website**: https://scroll.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Scroll Alpha Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scroll-pre-alpha-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/scroll-pre-alpha-testnet.mdx deleted file mode 100644 index f355eab4a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scroll-pre-alpha-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Scroll Pre-Alpha Testnet - ETH Blockchain Network -description: Explore Scroll Pre-Alpha Testnet, a blockchain network with chain ID 534354. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Scroll Pre-Alpha Testnet - -Scroll Pre-Alpha Testnet is a blockchain network with chain ID 534354. - -## Network Details - -- **Chain ID**: 534354 -- **Chain Name**: ETH -- **Short Name**: scr-prealpha -- **Network ID**: 534354 -- **Currency**: - - **Name**: Ether - - **Symbol**: TSETH - - **Decimals**: 18 - -## RPC URLs - -Scroll Pre-Alpha Testnet can be accessed through the following RPC endpoints: - - - -## Scroll Pre-Alpha Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://scroll.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Scroll Pre-Alpha Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scroll-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/scroll-sepolia-testnet.mdx deleted file mode 100644 index 061dbf0b76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scroll-sepolia-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Scroll Sepolia Testnet - ETH Blockchain Network -description: Explore Scroll Sepolia Testnet, a blockchain network with chain ID 534351. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Scroll Sepolia Testnet - -Scroll Sepolia Testnet is a blockchain network with chain ID 534351. - -## Network Details - -- **Chain ID**: 534351 -- **Chain Name**: ETH -- **Short Name**: scr-sepolia -- **Network ID**: 534351 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Scroll Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia-rpc.scroll.io -- https://rpc.ankr.com/scroll_sepolia_testnet -- https://scroll-sepolia.chainstacklabs.com -- https://scroll-testnet-public.unifra.io - -## Scroll Sepolia Testnet Block Explorers - -- [Scroll Sepolia Etherscan](https://sepolia.scrollscan.com) - -## Additional Information - -- **Official Website**: https://scroll.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Scroll Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/scroll.mdx b/docs/pages/solutions/chainlist/non-integrated/scroll.mdx deleted file mode 100644 index 3aa8d46842..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/scroll.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Scroll - ETH Blockchain Network -description: Explore Scroll, a blockchain network with chain ID 534352. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Scroll - -Scroll is a blockchain network with chain ID 534352. - -## Network Details - -- **Chain ID**: 534352 -- **Chain Name**: ETH -- **Short Name**: scr -- **Network ID**: 534352 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Scroll can be accessed through the following RPC endpoints: - -- https://rpc.scroll.io -- https://rpc.ankr.com/scroll -- https://scroll-mainnet.chainstacklabs.com - -## Scroll Block Explorers - -- [Scrollscan](https://scrollscan.com) - -## Additional Information - -- **Official Website**: https://scroll.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/secret.mdx b/docs/pages/solutions/chainlist/non-integrated/secret.mdx deleted file mode 100644 index 0cc087e36b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/secret.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Secret - Secret Blockchain Network -description: Explore Secret, a blockchain network with chain ID 75335. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Secret - -Secret is a blockchain network with chain ID 75335. - -## Network Details - -- **Chain ID**: 75335 -- **Chain Name**: Secret -- **Short Name**: Secret -- **Network ID**: 75335 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Secret can be accessed through the following RPC endpoints: - -- https://rpc-secret-xj64ve9mdm.t.conduit.xyz - -## Secret Block Explorers - -- [Secret Explorer](https://explorer-secret-xj64ve9mdm.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/75335 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Secret Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/securechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/securechain-testnet.mdx deleted file mode 100644 index 348fb63669..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/securechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SecureChain Testnet - SCAI Blockchain Network -description: Explore SecureChain Testnet, a blockchain network with chain ID 3434. Learn about its native currency, SCAI, and how to interact with the network. ---- - -# SecureChain Testnet - -SecureChain Testnet is a blockchain network with chain ID 3434. - -## Network Details - -- **Chain ID**: 3434 -- **Chain Name**: SCAI -- **Short Name**: SCAIt -- **Network ID**: 3434 -- **Currency**: - - **Name**: SCAI - - **Symbol**: SCAI - - **Decimals**: 18 - -## RPC URLs - -SecureChain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.securechain.ai - -## SecureChain Testnet Block Explorers - -- [SecureChain](https://testnet.securechain.ai) - -## Additional Information - -- **Official Website**: https://securechain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SecureChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/securechain.mdx b/docs/pages/solutions/chainlist/non-integrated/securechain.mdx deleted file mode 100644 index 62c3ca23bd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/securechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SecureChain Mainnet - SCAI Blockchain Network -description: Explore SecureChain Mainnet, a blockchain network with chain ID 34. Learn about its native currency, SecureChain, and how to interact with the network. ---- - -# SecureChain Mainnet - -SecureChain Mainnet is a blockchain network with chain ID 34. - -## Network Details - -- **Chain ID**: 34 -- **Chain Name**: SCAI -- **Short Name**: scai -- **Network ID**: 34 -- **Currency**: - - **Name**: SecureChain - - **Symbol**: SCAI - - **Decimals**: 18 - -## RPC URLs - -SecureChain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.scai.network - -## SecureChain Mainnet Block Explorers - -- [SecureChain Mainnet](https://explorer.securechain.ai) - -## Additional Information - -- **Official Website**: https://securechain.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/seele.mdx b/docs/pages/solutions/chainlist/non-integrated/seele.mdx deleted file mode 100644 index 68b0b3bf99..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/seele.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Seele Mainnet - Seele Blockchain Network -description: Explore Seele Mainnet, a blockchain network with chain ID 186. Learn about its native currency, Seele, and how to interact with the network. ---- - -# Seele Mainnet - -Seele Mainnet is a blockchain network with chain ID 186. - -## Network Details - -- **Chain ID**: 186 -- **Chain Name**: Seele -- **Short Name**: Seele -- **Network ID**: 186 -- **Currency**: - - **Name**: Seele - - **Symbol**: Seele - - **Decimals**: 18 - -## RPC URLs - -Seele Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.seelen.pro/ - -## Seele Mainnet Block Explorers - -- [seeleview](https://seeleview.net) - -## Additional Information - -- **Official Website**: https://seelen.pro/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sei-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sei-devnet.mdx deleted file mode 100644 index c8dbbe7026..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sei-devnet.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Sei Devnet - Sei Blockchain Network -description: Explore Sei Devnet, a blockchain network with chain ID 713715. Learn about its native currency, Sei, and how to interact with the network. ---- - -# Sei Devnet - -Sei Devnet is a blockchain network with chain ID 713715. - -## Network Details - -- **Chain ID**: 713715 -- **Chain Name**: Sei -- **Short Name**: sei-devnet -- **Network ID**: 713715 -- **Currency**: - - **Name**: Sei - - **Symbol**: SEI - - **Decimals**: 18 - -## RPC URLs - -Sei Devnet can be accessed through the following RPC endpoints: - -- https://evm-rpc-arctic-1.sei-apis.com -- https://evm-rpc.arctic-1.seinetwork.io - -## Sei Devnet Block Explorers - -- [Seistream](https://seistream.app) -- [Seitrace](https://seitrace.com) - -## Additional Information - -- **Official Website**: https://www.sei.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sei-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sei-testnet.mdx deleted file mode 100644 index 8f994fa56c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sei-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Sei Testnet - Sei Blockchain Network -description: Explore Sei Testnet, a blockchain network with chain ID 1328. Learn about its native currency, Sei, and how to interact with the network. ---- - -# Sei Testnet - -Sei Testnet is a blockchain network with chain ID 1328. - -## Network Details - -- **Chain ID**: 1328 -- **Chain Name**: Sei -- **Short Name**: sei-testnet -- **Network ID**: 1328 -- **Currency**: - - **Name**: Sei - - **Symbol**: SEI - - **Decimals**: 18 - -## RPC URLs - -Sei Testnet can be accessed through the following RPC endpoints: - -- https://evm-rpc-testnet.sei-apis.com -- wss://evm-ws-testnet.sei-apis.com - -## Sei Testnet Block Explorers - -- [Seitrace](https://seitrace.com) - -## Additional Information - -- **Official Website**: https://www.sei.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Sei Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sei.mdx b/docs/pages/solutions/chainlist/non-integrated/sei.mdx deleted file mode 100644 index f2a8b0bf5a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sei.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Sei Network - Sei Blockchain Network -description: Explore Sei Network, a blockchain network with chain ID 1329. Learn about its native currency, Sei, and how to interact with the network. ---- - -# Sei Network - -Sei Network is a blockchain network with chain ID 1329. - -## Network Details - -- **Chain ID**: 1329 -- **Chain Name**: Sei -- **Short Name**: sei -- **Network ID**: 1329 -- **Currency**: - - **Name**: Sei - - **Symbol**: SEI - - **Decimals**: 18 - -## RPC URLs - -Sei Network can be accessed through the following RPC endpoints: - -- https://evm-rpc.sei-apis.com -- wss://evm-ws.sei-apis.com - -## Sei Network Block Explorers - -- [Seitrace](https://seitrace.com) - -## Additional Information - -- **Official Website**: https://www.sei.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/selendra-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/selendra-network-testnet.mdx deleted file mode 100644 index 3480b49a87..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/selendra-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Selendra Network Testnet - tSEL Blockchain Network -description: Explore Selendra Network Testnet, a blockchain network with chain ID 1953. Learn about its native currency, Selendra, and how to interact with the network. ---- - -# Selendra Network Testnet - -Selendra Network Testnet is a blockchain network with chain ID 1953. - -## Network Details - -- **Chain ID**: 1953 -- **Chain Name**: tSEL -- **Short Name**: tSEL -- **Network ID**: 1953 -- **Currency**: - - **Name**: Selendra - - **Symbol**: tSEL - - **Decimals**: 18 - -## RPC URLs - -Selendra Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc0-testnet.selendra.org -- https://rpc1-testnet.selendra.org - -## Selendra Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://selendra.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Selendra Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/selendra-network.mdx b/docs/pages/solutions/chainlist/non-integrated/selendra-network.mdx deleted file mode 100644 index 9ae9a0e51a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/selendra-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Selendra Network Mainnet - SEL Blockchain Network -description: Explore Selendra Network Mainnet, a blockchain network with chain ID 1961. Learn about its native currency, Selendra, and how to interact with the network. ---- - -# Selendra Network Mainnet - -Selendra Network Mainnet is a blockchain network with chain ID 1961. - -## Network Details - -- **Chain ID**: 1961 -- **Chain Name**: SEL -- **Short Name**: SEL -- **Network ID**: 1961 -- **Currency**: - - **Name**: Selendra - - **Symbol**: SEL - - **Decimals**: 18 - -## RPC URLs - -Selendra Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc0.selendra.org -- https://rpc1.selendra.org - -## Selendra Network Mainnet Block Explorers - -- [Selendra Scan](https://scan.selendra.org) - -## Additional Information - -- **Official Website**: https://selendra.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/senjepowers-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/senjepowers-testnet.mdx deleted file mode 100644 index 490a48955e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/senjepowers-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SenjePowers Testnet - SPC Blockchain Network -description: Explore SenjePowers Testnet, a blockchain network with chain ID 3698. Learn about its native currency, SenjePowers, and how to interact with the network. ---- - -# SenjePowers Testnet - -SenjePowers Testnet is a blockchain network with chain ID 3698. - -## Network Details - -- **Chain ID**: 3698 -- **Chain Name**: SPC -- **Short Name**: SPCt -- **Network ID**: 3698 -- **Currency**: - - **Name**: SenjePowers - - **Symbol**: SPC - - **Decimals**: 18 - -## RPC URLs - -SenjePowers Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.senjepowersscan.com - -## SenjePowers Testnet Block Explorers - -- [SenjePowers](https://testnet.senjepowersscan.com) - -## Additional Information - -- **Official Website**: https://senjepowersscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SenjePowers Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/senjepowers.mdx b/docs/pages/solutions/chainlist/non-integrated/senjepowers.mdx deleted file mode 100644 index 917bdd2401..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/senjepowers.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SenjePowers Mainnet - SPC Blockchain Network -description: Explore SenjePowers Mainnet, a blockchain network with chain ID 3699. Learn about its native currency, SenjePowers, and how to interact with the network. ---- - -# SenjePowers Mainnet - -SenjePowers Mainnet is a blockchain network with chain ID 3699. - -## Network Details - -- **Chain ID**: 3699 -- **Chain Name**: SPC -- **Short Name**: SPCm -- **Network ID**: 3699 -- **Currency**: - - **Name**: SenjePowers - - **Symbol**: SPC - - **Decimals**: 18 - -## RPC URLs - -SenjePowers Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.senjepowersscan.com - -## SenjePowers Mainnet Block Explorers - -- [SenjePowers](https://senjepowersscan.com) - -## Additional Information - -- **Official Website**: https://senjepowersscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sepolia-pgn-(public-goods-network).mdx b/docs/pages/solutions/chainlist/non-integrated/sepolia-pgn-(public-goods-network).mdx deleted file mode 100644 index c5d642295f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sepolia-pgn-(public-goods-network).mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sepolia PGN (Public Goods Network) - ETH Blockchain Network -description: Explore Sepolia PGN (Public Goods Network), a blockchain network with chain ID 58008. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Sepolia PGN (Public Goods Network) - -Sepolia PGN (Public Goods Network) is a blockchain network with chain ID 58008. - -## Network Details - -- **Chain ID**: 58008 -- **Chain Name**: ETH -- **Short Name**: sepPGN -- **Network ID**: 58008 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Sepolia PGN (Public Goods Network) can be accessed through the following RPC endpoints: - -- https://sepolia.publicgoods.network - -## Sepolia PGN (Public Goods Network) Block Explorers - -- [blockscout](https://explorer.sepolia.publicgoods.network) - -## Additional Information - -- **Official Website**: https://publicgoods.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/setheum.mdx b/docs/pages/solutions/chainlist/non-integrated/setheum.mdx deleted file mode 100644 index 63add8062a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/setheum.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Setheum - Setheum Blockchain Network -description: Explore Setheum, a blockchain network with chain ID 258. Learn about its native currency, Setheum, and how to interact with the network. ---- - -# Setheum - -Setheum is a blockchain network with chain ID 258. - -## Network Details - -- **Chain ID**: 258 -- **Chain Name**: Setheum -- **Short Name**: setm -- **Network ID**: 258 -- **Currency**: - - **Name**: Setheum - - **Symbol**: SETM - - **Decimals**: 18 - -## RPC URLs - -Setheum can be accessed through the following RPC endpoints: - - - -## Setheum Block Explorers - - - -## Additional Information - -- **Official Website**: https://setheum.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/settlus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/settlus-testnet.mdx deleted file mode 100644 index 76449005be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/settlus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Settlus Testnet - Settlus Blockchain Network -description: Explore Settlus Testnet, a blockchain network with chain ID 5372. Learn about its native currency, Setl, and how to interact with the network. ---- - -# Settlus Testnet - -Settlus Testnet is a blockchain network with chain ID 5372. - -## Network Details - -- **Chain ID**: 5372 -- **Chain Name**: Settlus -- **Short Name**: settlus-testnet -- **Network ID**: 5372 -- **Currency**: - - **Name**: Setl - - **Symbol**: SETL - - **Decimals**: 18 - -## RPC URLs - -Settlus Testnet can be accessed through the following RPC endpoints: - -- https://settlus-test-eth.settlus.io - -## Settlus Testnet Block Explorers - -- [Settlus Scan](https://testnet.settlus.network) - -## Additional Information - -- **Official Website**: https://settlus.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Settlus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sft-1-8-24.mdx b/docs/pages/solutions/chainlist/non-integrated/sft-1-8-24.mdx deleted file mode 100644 index 9debe7a3b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sft-1-8-24.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SFT 1-8-24 - Avalanche Blockchain Network -description: Explore SFT 1-8-24, a blockchain network with chain ID 75817. Learn about its native currency, SFT 1-8-24 Token, and how to interact with the network. ---- - -# SFT 1-8-24 - -SFT 1-8-24 is a blockchain network with chain ID 75817. - -## Network Details - -- **Chain ID**: 75817 -- **Chain Name**: Avalanche -- **Short Name**: SFT 1-8-24 -- **Network ID**: 75817 -- **Currency**: - - **Name**: SFT 1-8-24 Token - - **Symbol**: ZAF - - **Decimals**: 18 - -## RPC URLs - -SFT 1-8-24 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## SFT 1-8-24 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SFT 1-8-24 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shape-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shape-sepolia-testnet.mdx deleted file mode 100644 index 403c690c26..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shape-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Shape Sepolia Testnet - ETH Blockchain Network -description: Explore Shape Sepolia Testnet, a blockchain network with chain ID 11011. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Shape Sepolia Testnet - -Shape Sepolia Testnet is a blockchain network with chain ID 11011. - -## Network Details - -- **Chain ID**: 11011 -- **Chain Name**: ETH -- **Short Name**: shapesep -- **Network ID**: 11011 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Shape Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.shape.network - -## Shape Sepolia Testnet Block Explorers - -- [blockscout](https://shape-sepolia-explorer.alchemy.com) - -## Additional Information - -- **Official Website**: https://shape.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shape Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shape.mdx b/docs/pages/solutions/chainlist/non-integrated/shape.mdx deleted file mode 100644 index e23583b232..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shape.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shape - ETH Blockchain Network -description: Explore Shape, a blockchain network with chain ID 360. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Shape - -Shape is a blockchain network with chain ID 360. - -## Network Details - -- **Chain ID**: 360 -- **Chain Name**: ETH -- **Short Name**: shape -- **Network ID**: 360 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Shape can be accessed through the following RPC endpoints: - - - -## Shape Block Explorers - - - -## Additional Information - -- **Official Website**: https://shape.us - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-1.x.mdx b/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-1.x.mdx deleted file mode 100644 index d763bed846..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-1.x.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shardeum Liberty 1.X - Shardeum Blockchain Network -description: Explore Shardeum Liberty 1.X, a blockchain network with chain ID 8080. Learn about its native currency, Shardeum SHM, and how to interact with the network. ---- - -# Shardeum Liberty 1.X - -Shardeum Liberty 1.X is a blockchain network with chain ID 8080. - -## Network Details - -- **Chain ID**: 8080 -- **Chain Name**: Shardeum -- **Short Name**: Liberty10 -- **Network ID**: 8080 -- **Currency**: - - **Name**: Shardeum SHM - - **Symbol**: SHM - - **Decimals**: 18 - -## RPC URLs - -Shardeum Liberty 1.X can be accessed through the following RPC endpoints: - -- https://liberty10.shardeum.org/ - -## Shardeum Liberty 1.X Block Explorers - -- [Shardeum Scan](https://explorer-liberty10.shardeum.org) - -## Additional Information - -- **Official Website**: https://docs.shardeum.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-2.x.mdx b/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-2.x.mdx deleted file mode 100644 index 9cfe4d52f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shardeum-liberty-2.x.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shardeum Liberty 2.X - Shardeum Blockchain Network -description: Explore Shardeum Liberty 2.X, a blockchain network with chain ID 8081. Learn about its native currency, Shardeum SHM, and how to interact with the network. ---- - -# Shardeum Liberty 2.X - -Shardeum Liberty 2.X is a blockchain network with chain ID 8081. - -## Network Details - -- **Chain ID**: 8081 -- **Chain Name**: Shardeum -- **Short Name**: Liberty20 -- **Network ID**: 8081 -- **Currency**: - - **Name**: Shardeum SHM - - **Symbol**: SHM - - **Decimals**: 18 - -## RPC URLs - -Shardeum Liberty 2.X can be accessed through the following RPC endpoints: - -- https://liberty20.shardeum.org/ - -## Shardeum Liberty 2.X Block Explorers - -- [Shardeum Scan](https://explorer-liberty20.shardeum.org) - -## Additional Information - -- **Official Website**: https://docs.shardeum.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shardeum-sphinx-1.x.mdx b/docs/pages/solutions/chainlist/non-integrated/shardeum-sphinx-1.x.mdx deleted file mode 100644 index 862a549fde..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shardeum-sphinx-1.x.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shardeum Sphinx 1.X - Shardeum Blockchain Network -description: Explore Shardeum Sphinx 1.X, a blockchain network with chain ID 8082. Learn about its native currency, Shardeum SHM, and how to interact with the network. ---- - -# Shardeum Sphinx 1.X - -Shardeum Sphinx 1.X is a blockchain network with chain ID 8082. - -## Network Details - -- **Chain ID**: 8082 -- **Chain Name**: Shardeum -- **Short Name**: Sphinx10 -- **Network ID**: 8082 -- **Currency**: - - **Name**: Shardeum SHM - - **Symbol**: SHM - - **Decimals**: 18 - -## RPC URLs - -Shardeum Sphinx 1.X can be accessed through the following RPC endpoints: - -- https://sphinx.shardeum.org/ - -## Shardeum Sphinx 1.X Block Explorers - -- [Shardeum Scan](https://explorer-sphinx.shardeum.org) - -## Additional Information - -- **Official Website**: https://docs.shardeum.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sharecle.mdx b/docs/pages/solutions/chainlist/non-integrated/sharecle.mdx deleted file mode 100644 index 8891d797cd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sharecle.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sharecle Mainnet - SHARECLE Blockchain Network -description: Explore Sharecle Mainnet, a blockchain network with chain ID 1234567. Learn about its native currency, SHARECLE COIN, and how to interact with the network. ---- - -# Sharecle Mainnet - -Sharecle Mainnet is a blockchain network with chain ID 1234567. - -## Network Details - -- **Chain ID**: 1234567 -- **Chain Name**: SHARECLE -- **Short Name**: shr -- **Network ID**: 1234567 -- **Currency**: - - **Name**: SHARECLE COIN - - **Symbol**: SHR - - **Decimals**: 18 - -## RPC URLs - -Sharecle Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.sharecle.com - -## Sharecle Mainnet Block Explorers - -- [Etherscan](https://etherscan.io) - -## Additional Information - -- **Official Website**: https://sharecle.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet-1-18.mdx b/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet-1-18.mdx deleted file mode 100644 index bc9ac873e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet-1-18.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Shelby's Testnet 1-18 - Avalanche Blockchain Network -description: Explore Shelby's Testnet 1-18, a blockchain network with chain ID 91558. Learn about its native currency, Shelby's Testnet 1-18 Token, and how to interact with the network. ---- - -# Shelby's Testnet 1-18 - -Shelby's Testnet 1-18 is a blockchain network with chain ID 91558. - -## Network Details - -- **Chain ID**: 91558 -- **Chain Name**: Avalanche -- **Short Name**: Shelby's Testnet 1-18 -- **Network ID**: 91558 -- **Currency**: - - **Name**: Shelby's Testnet 1-18 Token - - **Symbol**: LIE - - **Decimals**: 18 - -## RPC URLs - -Shelby's Testnet 1-18 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Shelby's Testnet 1-18 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shelby's Testnet 1-18 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet.mdx deleted file mode 100644 index 8ce31ebadf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shelby's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Shelby's Testnet - Avalanche Blockchain Network -description: Explore Shelby's Testnet, a blockchain network with chain ID 20141. Learn about its native currency, Shelby's Testnet Token, and how to interact with the network. ---- - -# Shelby's Testnet - -Shelby's Testnet is a blockchain network with chain ID 20141. - -## Network Details - -- **Chain ID**: 20141 -- **Chain Name**: Avalanche -- **Short Name**: Shelby's Testnet -- **Network ID**: 20141 -- **Currency**: - - **Name**: Shelby's Testnet Token - - **Symbol**: FUC - - **Decimals**: 18 - -## RPC URLs - -Shelby's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/c6fcfa18-e711-4f91-b8d4-ad59cfd30316 - -## Shelby's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shelby's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sherpax-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sherpax-testnet.mdx deleted file mode 100644 index be88ced042..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sherpax-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Sherpax Testnet - Sherpax Testnet Blockchain Network -description: Explore Sherpax Testnet, a blockchain network with chain ID 1507. Learn about its native currency, KSX, and how to interact with the network. ---- - -# Sherpax Testnet - -Sherpax Testnet is a blockchain network with chain ID 1507. - -## Network Details - -- **Chain ID**: 1507 -- **Chain Name**: Sherpax Testnet -- **Short Name**: SherpaxTestnet -- **Network ID**: 1507 -- **Currency**: - - **Name**: KSX - - **Symbol**: KSX - - **Decimals**: 18 - -## RPC URLs - -Sherpax Testnet can be accessed through the following RPC endpoints: - -- https://sherpax-testnet.chainx.org/rpc - -## Sherpax Testnet Block Explorers - -- [Sherpax Testnet Explorer](https://evm-pre.sherpax.io) - -## Additional Information - -- **Official Website**: https://sherpax.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Sherpax Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sherpax.mdx b/docs/pages/solutions/chainlist/non-integrated/sherpax.mdx deleted file mode 100644 index 64d7eda032..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sherpax.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sherpax Mainnet - Sherpax Mainnet Blockchain Network -description: Explore Sherpax Mainnet, a blockchain network with chain ID 1506. Learn about its native currency, KSX, and how to interact with the network. ---- - -# Sherpax Mainnet - -Sherpax Mainnet is a blockchain network with chain ID 1506. - -## Network Details - -- **Chain ID**: 1506 -- **Chain Name**: Sherpax Mainnet -- **Short Name**: Sherpax -- **Network ID**: 1506 -- **Currency**: - - **Name**: KSX - - **Symbol**: KSX - - **Decimals**: 18 - -## RPC URLs - -Sherpax Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.sherpax.io/rpc - -## Sherpax Mainnet Block Explorers - -- [Sherpax Mainnet Explorer](https://evm.sherpax.io) - -## Additional Information - -- **Official Website**: https://sherpax.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shibachain.mdx b/docs/pages/solutions/chainlist/non-integrated/shibachain.mdx deleted file mode 100644 index 1472991885..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shibachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ShibaChain - SHIB Blockchain Network -description: Explore ShibaChain, a blockchain network with chain ID 27. Learn about its native currency, SHIBA INU COIN, and how to interact with the network. ---- - -# ShibaChain - -ShibaChain is a blockchain network with chain ID 27. - -## Network Details - -- **Chain ID**: 27 -- **Chain Name**: SHIB -- **Short Name**: shib -- **Network ID**: 27 -- **Currency**: - - **Name**: SHIBA INU COIN - - **Symbol**: SHIB - - **Decimals**: 18 - -## RPC URLs - -ShibaChain can be accessed through the following RPC endpoints: - -- https://rpc.shibchain.org - -## ShibaChain Block Explorers - -- [Shiba Explorer](https://exp.shibchain.org) - -## Additional Information - -- **Official Website**: https://shibchain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shibarium-beta.mdx b/docs/pages/solutions/chainlist/non-integrated/shibarium-beta.mdx deleted file mode 100644 index 5250e92dfa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shibarium-beta.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shibarium Beta - Shibarium Blockchain Network -description: Explore Shibarium Beta, a blockchain network with chain ID 719. Learn about its native currency, BONE, and how to interact with the network. ---- - -# Shibarium Beta - -Shibarium Beta is a blockchain network with chain ID 719. - -## Network Details - -- **Chain ID**: 719 -- **Chain Name**: Shibarium -- **Short Name**: shibarium -- **Network ID**: 719 -- **Currency**: - - **Name**: BONE - - **Symbol**: BONE - - **Decimals**: 18 - -## RPC URLs - -Shibarium Beta can be accessed through the following RPC endpoints: - -- https://puppynet.shibrpc.com - -## Shibarium Beta Block Explorers - -- [shibscan](https://puppyscan.shib.io) - -## Additional Information - -- **Official Website**: https://beta.shibariumtech.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shibarium.mdx b/docs/pages/solutions/chainlist/non-integrated/shibarium.mdx deleted file mode 100644 index 824fbdee67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shibarium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shibarium - Shibarium Blockchain Network -description: Explore Shibarium, a blockchain network with chain ID 109. Learn about its native currency, BONE Shibarium, and how to interact with the network. ---- - -# Shibarium - -Shibarium is a blockchain network with chain ID 109. - -## Network Details - -- **Chain ID**: 109 -- **Chain Name**: Shibarium -- **Short Name**: shibariumecosystem -- **Network ID**: 109 -- **Currency**: - - **Name**: BONE Shibarium - - **Symbol**: BONE - - **Decimals**: 18 - -## RPC URLs - -Shibarium can be accessed through the following RPC endpoints: - -- https://www.shibrpc.com - -## Shibarium Block Explorers - -- [shibariumscan](https://www.shibariumscan.io) - -## Additional Information - -- **Official Website**: https://shibariumecosystem.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shiden.mdx b/docs/pages/solutions/chainlist/non-integrated/shiden.mdx deleted file mode 100644 index 78c574cc8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shiden.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Shiden - SDN Blockchain Network -description: Explore Shiden, a blockchain network with chain ID 336. Learn about its native currency, Shiden, and how to interact with the network. ---- - -# Shiden - -Shiden is a blockchain network with chain ID 336. - -## Network Details - -- **Chain ID**: 336 -- **Chain Name**: SDN -- **Short Name**: sdn -- **Network ID**: 336 -- **Currency**: - - **Name**: Shiden - - **Symbol**: SDN - - **Decimals**: 18 - -## RPC URLs - -Shiden can be accessed through the following RPC endpoints: - -- 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 - -## Shiden Block Explorers - -- [blockscout](https://blockscout.com/shiden) -- [subscan](https://shiden.subscan.io) - -## Additional Information - -- **Official Website**: https://shiden.astar.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shido-block.mdx b/docs/pages/solutions/chainlist/non-integrated/shido-block.mdx deleted file mode 100644 index c6c4812b92..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shido-block.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Shido Mainnet Block - Shido Mainnet Blockchain Network -description: Explore Shido Mainnet Block, a blockchain network with chain ID 9008. Learn about its native currency, Shido Mainnet Token, and how to interact with the network. ---- - -# Shido Mainnet Block - -Shido Mainnet Block is a blockchain network with chain ID 9008. - -## Network Details - -- **Chain ID**: 9008 -- **Chain Name**: Shido Mainnet -- **Short Name**: Shido -- **Network ID**: 9008 -- **Currency**: - - **Name**: Shido Mainnet Token - - **Symbol**: SHIDO - - **Decimals**: 18 - -## RPC URLs - -Shido Mainnet Block can be accessed through the following RPC endpoints: - -- https://rpc-nodes.shidoscan.com -- wss://wss-nodes.shidoscan.com -- https://rpc-delta-nodes.shidoscan.com -- wss://wss-delta-nodes.shidoscan.com - -## Shido Mainnet Block Block Explorers - -- [Shidoblock Mainnet Explorer](https://shidoscan.com) - -## Additional Information - -- **Official Website**: https://shido.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shido-testnet-block.mdx b/docs/pages/solutions/chainlist/non-integrated/shido-testnet-block.mdx deleted file mode 100644 index fb21808778..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shido-testnet-block.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Shido Testnet Block - Shido Testnet Blockchain Network -description: Explore Shido Testnet Block, a blockchain network with chain ID 9007. Learn about its native currency, Shido Testnet Token, and how to interact with the network. ---- - -# Shido Testnet Block - -Shido Testnet Block is a blockchain network with chain ID 9007. - -## Network Details - -- **Chain ID**: 9007 -- **Chain Name**: Shido Testnet -- **Short Name**: ShidoTestnet -- **Network ID**: 9007 -- **Currency**: - - **Name**: Shido Testnet Token - - **Symbol**: SHIDO - - **Decimals**: 18 - -## RPC URLs - -Shido Testnet Block can be accessed through the following RPC endpoints: - -- https://rpc-testnet-nodes.shidoscan.com -- wss://wss-testnet-nodes.shidoscan.com - -## Shido Testnet Block Block Explorers - -- [Shidoblock Testnet Explorer](https://testnet.shidoscan.com) - -## Additional Information - -- **Official Website**: https://www.nexablock.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shido Testnet Block Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated-1072.mdx b/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated-1072.mdx deleted file mode 100644 index 38f6c9742d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated-1072.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ShimmerEVM Testnet Deprecated 1072 - ShimmerEVM Blockchain Network -description: Explore ShimmerEVM Testnet Deprecated 1072, a blockchain network with chain ID 1072. Learn about its native currency, SMR, and how to interact with the network. ---- - -# ShimmerEVM Testnet Deprecated 1072 - -ShimmerEVM Testnet Deprecated 1072 is a blockchain network with chain ID 1072. - -## Network Details - -- **Chain ID**: 1072 -- **Chain Name**: ShimmerEVM -- **Short Name**: shimmerevm-testnet-deprecated-1072 -- **Network ID**: 1072 -- **Currency**: - - **Name**: SMR - - **Symbol**: SMR - - **Decimals**: 6 - -## RPC URLs - -ShimmerEVM Testnet Deprecated 1072 can be accessed through the following RPC endpoints: - - - -## ShimmerEVM Testnet Deprecated 1072 Block Explorers - -- [explorer](https://explorer.evm.testnet.shimmer.network) - -## Additional Information - -- **Official Website**: https://shimmer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ShimmerEVM Testnet Deprecated 1072 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated.mdx deleted file mode 100644 index 046591e515..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet-deprecated.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ShimmerEVM Testnet Deprecated - ShimmerEVM Blockchain Network -description: Explore ShimmerEVM Testnet Deprecated, a blockchain network with chain ID 1071. Learn about its native currency, SMR, and how to interact with the network. ---- - -# ShimmerEVM Testnet Deprecated - -ShimmerEVM Testnet Deprecated is a blockchain network with chain ID 1071. - -## Network Details - -- **Chain ID**: 1071 -- **Chain Name**: ShimmerEVM -- **Short Name**: shimmerevm-testnet-deprecated -- **Network ID**: 1071 -- **Currency**: - - **Name**: SMR - - **Symbol**: SMR - - **Decimals**: 18 - -## RPC URLs - -ShimmerEVM Testnet Deprecated can be accessed through the following RPC endpoints: - - - -## ShimmerEVM Testnet Deprecated Block Explorers - -- [explorer](https://explorer.evm.testnet.shimmer.network) - -## Additional Information - -- **Official Website**: https://shimmer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ShimmerEVM Testnet Deprecated Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet.mdx deleted file mode 100644 index b526f91838..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shimmerevm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ShimmerEVM Testnet - ShimmerEVM Blockchain Network -description: Explore ShimmerEVM Testnet, a blockchain network with chain ID 1073. Learn about its native currency, SMR, and how to interact with the network. ---- - -# ShimmerEVM Testnet - -ShimmerEVM Testnet is a blockchain network with chain ID 1073. - -## Network Details - -- **Chain ID**: 1073 -- **Chain Name**: ShimmerEVM -- **Short Name**: shimmerevm-testnet -- **Network ID**: 1073 -- **Currency**: - - **Name**: SMR - - **Symbol**: SMR - - **Decimals**: 18 - -## RPC URLs - -ShimmerEVM Testnet can be accessed through the following RPC endpoints: - -- https://json-rpc.evm.testnet.shimmer.network - -## ShimmerEVM Testnet Block Explorers - -- [explorer](https://explorer.evm.testnet.shimmer.network) - -## Additional Information - -- **Official Website**: https://shimmer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ShimmerEVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shimmerevm.mdx b/docs/pages/solutions/chainlist/non-integrated/shimmerevm.mdx deleted file mode 100644 index b915a81881..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shimmerevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ShimmerEVM - ShimmerEVM Blockchain Network -description: Explore ShimmerEVM, a blockchain network with chain ID 148. Learn about its native currency, SMR, and how to interact with the network. ---- - -# ShimmerEVM - -ShimmerEVM is a blockchain network with chain ID 148. - -## Network Details - -- **Chain ID**: 148 -- **Chain Name**: ShimmerEVM -- **Short Name**: shimmerevm -- **Network ID**: 148 -- **Currency**: - - **Name**: SMR - - **Symbol**: SMR - - **Decimals**: 18 - -## RPC URLs - -ShimmerEVM can be accessed through the following RPC endpoints: - -- https://json-rpc.evm.shimmer.network - -## ShimmerEVM Block Explorers - -- [explorer](https://explorer.evm.shimmer.network) - -## Additional Information - -- **Official Website**: https://shimmer.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shinarium-beta.mdx b/docs/pages/solutions/chainlist/non-integrated/shinarium-beta.mdx deleted file mode 100644 index 0c225001c4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shinarium-beta.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shinarium Beta - Shinarium Blockchain Network -description: Explore Shinarium Beta, a blockchain network with chain ID 534849. Learn about its native currency, Shina Inu, and how to interact with the network. ---- - -# Shinarium Beta - -Shinarium Beta is a blockchain network with chain ID 534849. - -## Network Details - -- **Chain ID**: 534849 -- **Chain Name**: Shinarium -- **Short Name**: shi -- **Network ID**: 534849 -- **Currency**: - - **Name**: Shina Inu - - **Symbol**: SHI - - **Decimals**: 18 - -## RPC URLs - -Shinarium Beta can be accessed through the following RPC endpoints: - -- https://rpc.shinarium.org - -## Shinarium Beta Block Explorers - -- [shinascan](https://shinascan.shinarium.org) - -## Additional Information - -- **Official Website**: https://shinarium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shinarium.mdx b/docs/pages/solutions/chainlist/non-integrated/shinarium.mdx deleted file mode 100644 index 40be3145f1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shinarium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shinarium Mainnet - Shinarium Blockchain Network -description: Explore Shinarium Mainnet, a blockchain network with chain ID 214. Learn about its native currency, Shina Inu, and how to interact with the network. ---- - -# Shinarium Mainnet - -Shinarium Mainnet is a blockchain network with chain ID 214. - -## Network Details - -- **Chain ID**: 214 -- **Chain Name**: Shinarium -- **Short Name**: shinarium -- **Network ID**: 214 -- **Currency**: - - **Name**: Shina Inu - - **Symbol**: SHI - - **Decimals**: 18 - -## RPC URLs - -Shinarium Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.shinarium.org - -## Shinarium Mainnet Block Explorers - -- [shinascan](https://shinascan.shinarium.org) - -## Additional Information - -- **Official Website**: https://shinarium.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shine-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/shine-chain.mdx deleted file mode 100644 index 649d35c4e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shine-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shine Chain - SC20 Blockchain Network -description: Explore Shine Chain, a blockchain network with chain ID 11221. Learn about its native currency, Shine, and how to interact with the network. ---- - -# Shine Chain - -Shine Chain is a blockchain network with chain ID 11221. - -## Network Details - -- **Chain ID**: 11221 -- **Chain Name**: SC20 -- **Short Name**: SC20 -- **Network ID**: 11221 -- **Currency**: - - **Name**: Shine - - **Symbol**: SC20 - - **Decimals**: 18 - -## RPC URLs - -Shine Chain can be accessed through the following RPC endpoints: - -- https://rpc.shinescan.io - -## Shine Chain Block Explorers - -- [shinescan](https://shinescan.io) - -## Additional Information - -- **Official Website**: https://shinechain.tech - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shrapnel-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shrapnel-subnet.mdx deleted file mode 100644 index d3fcaed5cf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shrapnel-subnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shrapnel Subnet - shrapnel Blockchain Network -description: Explore Shrapnel Subnet, a blockchain network with chain ID 2044. Learn about its native currency, Shrapnel Gas Token, and how to interact with the network. ---- - -# Shrapnel Subnet - -Shrapnel Subnet is a blockchain network with chain ID 2044. - -## Network Details - -- **Chain ID**: 2044 -- **Chain Name**: shrapnel -- **Short Name**: Shrapnel -- **Network ID**: 2044 -- **Currency**: - - **Name**: Shrapnel Gas Token - - **Symbol**: SHRAPG - - **Decimals**: 18 - -## RPC URLs - -Shrapnel Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/shrapnel/mainnet/rpc - -## Shrapnel Subnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.shrapnel.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/shrapnel-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shrapnel-testnet.mdx deleted file mode 100644 index d0413a7b3f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shrapnel-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Shrapnel Testnet - SHRAPNEL Blockchain Network -description: Explore Shrapnel Testnet, a blockchain network with chain ID 2038. Learn about its native currency, SHRAPG, and how to interact with the network. ---- - -# Shrapnel Testnet - -Shrapnel Testnet is a blockchain network with chain ID 2038. - -## Network Details - -- **Chain ID**: 2038 -- **Chain Name**: SHRAPNEL -- **Short Name**: shraptest -- **Network ID**: 2038 -- **Currency**: - - **Name**: SHRAPG - - **Symbol**: SHRAPG - - **Decimals**: 18 - -## RPC URLs - -Shrapnel Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/shrapnel/testnet/rpc - -## Shrapnel Testnet Block Explorers - -- [SHRAPNEL Explorer](https://subnets-test.avax.network/shrapnel) - -## Additional Information - -- **Official Website**: https://www.shrapnel.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shrapnel Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shyft-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/shyft-testnet.mdx deleted file mode 100644 index 04199b2c23..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shyft-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Shyft Testnet - SHYFTT Blockchain Network -description: Explore Shyft Testnet, a blockchain network with chain ID 11437. Learn about its native currency, Shyft Test Token, and how to interact with the network. ---- - -# Shyft Testnet - -Shyft Testnet is a blockchain network with chain ID 11437. - -## Network Details - -- **Chain ID**: 11437 -- **Chain Name**: SHYFTT -- **Short Name**: shyftt -- **Network ID**: 11437 -- **Currency**: - - **Name**: Shyft Test Token - - **Symbol**: SHYFTT - - **Decimals**: 18 - -## RPC URLs - -Shyft Testnet can be accessed through the following RPC endpoints: - - - -## Shyft Testnet Block Explorers - -- [Shyft Testnet BX](https://bx.testnet.shyft.network) - -## Additional Information - -- **Official Website**: https://shyft.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Shyft Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/shyft.mdx b/docs/pages/solutions/chainlist/non-integrated/shyft.mdx deleted file mode 100644 index c19e1f2c76..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/shyft.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Shyft Mainnet - SHYFT Blockchain Network -description: Explore Shyft Mainnet, a blockchain network with chain ID 7341. Learn about its native currency, Shyft, and how to interact with the network. ---- - -# Shyft Mainnet - -Shyft Mainnet is a blockchain network with chain ID 7341. - -## Network Details - -- **Chain ID**: 7341 -- **Chain Name**: SHYFT -- **Short Name**: shyft -- **Network ID**: 7341 -- **Currency**: - - **Name**: Shyft - - **Symbol**: SHYFT - - **Decimals**: 18 - -## RPC URLs - -Shyft Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.shyft.network/ - -## Shyft Mainnet Block Explorers - -- [Shyft BX](https://bx.shyft.network) - -## Additional Information - -- **Official Website**: https://shyft.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/siberium-network.mdx b/docs/pages/solutions/chainlist/non-integrated/siberium-network.mdx deleted file mode 100644 index 2801581aae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/siberium-network.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Siberium Network - SBR Blockchain Network -description: Explore Siberium Network, a blockchain network with chain ID 111111. Learn about its native currency, Siberium, and how to interact with the network. ---- - -# Siberium Network - -Siberium Network is a blockchain network with chain ID 111111. - -## Network Details - -- **Chain ID**: 111111 -- **Chain Name**: SBR -- **Short Name**: sbr -- **Network ID**: 111111 -- **Currency**: - - **Name**: Siberium - - **Symbol**: SIBR - - **Decimals**: 18 - -## RPC URLs - -Siberium Network can be accessed through the following RPC endpoints: - -- https://rpc.main.siberium.net -- https://rpc.main.siberium.net.ru - -## Siberium Network Block Explorers - -- [Siberium Mainnet Explorer - blockscout - 2](https://explorer.main.siberium.net.ru) - -## Additional Information - -- **Official Website**: https://siberium.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/siberium-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/siberium-test-network.mdx deleted file mode 100644 index 5f920a5d91..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/siberium-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Siberium Test Network - SBR Blockchain Network -description: Explore Siberium Test Network, a blockchain network with chain ID 111000. Learn about its native currency, TestSIBR, and how to interact with the network. ---- - -# Siberium Test Network - -Siberium Test Network is a blockchain network with chain ID 111000. - -## Network Details - -- **Chain ID**: 111000 -- **Chain Name**: SBR -- **Short Name**: testsbr -- **Network ID**: 111000 -- **Currency**: - - **Name**: TestSIBR - - **Symbol**: SIBR - - **Decimals**: 18 - -## RPC URLs - -Siberium Test Network can be accessed through the following RPC endpoints: - -- https://rpc.test.siberium.net - -## Siberium Test Network Block Explorers - -- [Siberium Testnet Explorer - blockscout](https://explorer.test.siberium.net) - -## Additional Information - -- **Official Website**: https://siberium.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Siberium Test Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sic-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sic-testnet.mdx deleted file mode 100644 index 4e7a2fa736..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sic-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SIC Testnet - SIC Testnet Blockchain Network -description: Explore SIC Testnet, a blockchain network with chain ID 5102. Learn about its native currency, ETH, and how to interact with the network. ---- - -# SIC Testnet - -SIC Testnet is a blockchain network with chain ID 5102. - -## Network Details - -- **Chain ID**: 5102 -- **Chain Name**: SIC Testnet -- **Short Name**: sic-testnet -- **Network ID**: 5102 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -SIC Testnet can be accessed through the following RPC endpoints: - -- https://rpc-sic-testnet-zvr7tlkzsi.t.conduit.xyz - -## SIC Testnet Block Explorers - -- [blockscout](https://explorerl2new-sic-testnet-zvr7tlkzsi.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://www.fwb.help/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SIC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm-sepolia-testnet.mdx deleted file mode 100644 index 7d538beec5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Silicon zkEVM Sepolia Testnet - Silicon Blockchain Network -description: Explore Silicon zkEVM Sepolia Testnet, a blockchain network with chain ID 1414. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Silicon zkEVM Sepolia Testnet - -Silicon zkEVM Sepolia Testnet is a blockchain network with chain ID 1414. - -## Network Details - -- **Chain ID**: 1414 -- **Chain Name**: Silicon -- **Short Name**: silicon-sepolia-testnet -- **Network ID**: 1414 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Silicon zkEVM Sepolia Testnet can be accessed through the following RPC endpoints: - - - -## Silicon zkEVM Sepolia Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Silicon zkEVM Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm.mdx b/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm.mdx deleted file mode 100644 index 27ddcf2c2f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/silicon-zkevm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Silicon zkEVM - Silicon Blockchain Network -description: Explore Silicon zkEVM, a blockchain network with chain ID 2355. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Silicon zkEVM - -Silicon zkEVM is a blockchain network with chain ID 2355. - -## Network Details - -- **Chain ID**: 2355 -- **Chain Name**: Silicon -- **Short Name**: silicon-zk -- **Network ID**: 2355 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Silicon zkEVM can be accessed through the following RPC endpoints: - - - -## Silicon zkEVM Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/singularity-zero-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/singularity-zero-testnet.mdx deleted file mode 100644 index edd6adc3e0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/singularity-zero-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Singularity ZERO Testnet - ZERO Blockchain Network -description: Explore Singularity ZERO Testnet, a blockchain network with chain ID 12051. Learn about its native currency, ZERO, and how to interact with the network. ---- - -# Singularity ZERO Testnet - -Singularity ZERO Testnet is a blockchain network with chain ID 12051. - -## Network Details - -- **Chain ID**: 12051 -- **Chain Name**: ZERO -- **Short Name**: tZERO -- **Network ID**: 12051 -- **Currency**: - - **Name**: ZERO - - **Symbol**: tZERO - - **Decimals**: 18 - -## RPC URLs - -Singularity ZERO Testnet can be accessed through the following RPC endpoints: - -- https://betaenv.singularity.gold:18545 - -## Singularity ZERO Testnet Block Explorers - -- [zeroscan](https://betaenv.singularity.gold:18002) - -## Additional Information - -- **Official Website**: https://www.singularity.gold - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Singularity ZERO Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/singularity-zero.mdx b/docs/pages/solutions/chainlist/non-integrated/singularity-zero.mdx deleted file mode 100644 index 014818f42a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/singularity-zero.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Singularity ZERO Mainnet - ZERO Blockchain Network -description: Explore Singularity ZERO Mainnet, a blockchain network with chain ID 12052. Learn about its native currency, ZERO, and how to interact with the network. ---- - -# Singularity ZERO Mainnet - -Singularity ZERO Mainnet is a blockchain network with chain ID 12052. - -## Network Details - -- **Chain ID**: 12052 -- **Chain Name**: ZERO -- **Short Name**: ZERO -- **Network ID**: 12052 -- **Currency**: - - **Name**: ZERO - - **Symbol**: ZERO - - **Decimals**: 18 - -## RPC URLs - -Singularity ZERO Mainnet can be accessed through the following RPC endpoints: - -- https://zerorpc.singularity.gold - -## Singularity ZERO Mainnet Block Explorers - -- [zeroscan](https://zeroscan.singularity.gold) - -## Additional Information - -- **Official Website**: https://www.singularity.gold - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/siriusnet-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/siriusnet-v2.mdx deleted file mode 100644 index 7587205059..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/siriusnet-v2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SiriusNet V2 - SIN2 Blockchain Network -description: Explore SiriusNet V2, a blockchain network with chain ID 217. Learn about its native currency, MCD, and how to interact with the network. ---- - -# SiriusNet V2 - -SiriusNet V2 is a blockchain network with chain ID 217. - -## Network Details - -- **Chain ID**: 217 -- **Chain Name**: SIN2 -- **Short Name**: SIN2 -- **Network ID**: 217 -- **Currency**: - - **Name**: MCD - - **Symbol**: MCD - - **Decimals**: 18 - -## RPC URLs - -SiriusNet V2 can be accessed through the following RPC endpoints: - -- https://rpc2.siriusnet.io - -## SiriusNet V2 Block Explorers - -- [siriusnet explorer](https://scan.siriusnet.io) - -## Additional Information - -- **Official Website**: https://siriusnet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/siriusnet.mdx b/docs/pages/solutions/chainlist/non-integrated/siriusnet.mdx deleted file mode 100644 index f92d3a658a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/siriusnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SiriusNet - SIN Blockchain Network -description: Explore SiriusNet, a blockchain network with chain ID 67390. Learn about its native currency, MCD, and how to interact with the network. ---- - -# SiriusNet - -SiriusNet is a blockchain network with chain ID 67390. - -## Network Details - -- **Chain ID**: 67390 -- **Chain Name**: SIN -- **Short Name**: mcl -- **Network ID**: 67390 -- **Currency**: - - **Name**: MCD - - **Symbol**: MCD - - **Decimals**: 18 - -## RPC URLs - -SiriusNet can be accessed through the following RPC endpoints: - -- https://u0tnafcv6j:o2T045sxuCNXL878RDQLp5__Zj-es2cvdjtgkl4etn0@u0v7kwtvtg-u0wj114sve-rpc.us0-aws.kaleido.io/ - -## SiriusNet Block Explorers - -- [siriusnetscan](https://siriusnet.tryethernal.com) - -## Additional Information - -- **Official Website**: https://macaucasinolisboa.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/six-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/six-protocol-testnet.mdx deleted file mode 100644 index d6feb34d33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/six-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Six Protocol Testnet - FIVENET Blockchain Network -description: Explore Six Protocol Testnet, a blockchain network with chain ID 150. Learn about its native currency, SIX testnet evm token, and how to interact with the network. ---- - -# Six Protocol Testnet - -Six Protocol Testnet is a blockchain network with chain ID 150. - -## Network Details - -- **Chain ID**: 150 -- **Chain Name**: FIVENET -- **Short Name**: sixt -- **Network ID**: 150 -- **Currency**: - - **Name**: SIX testnet evm token - - **Symbol**: tSIX - - **Decimals**: 18 - -## RPC URLs - -Six Protocol Testnet can be accessed through the following RPC endpoints: - -- https://rpc-evm.fivenet.sixprotocol.net - -## Six Protocol Testnet Block Explorers - -- [SIX Scan fivenet](https://sixscan.io/fivenet) - -## Additional Information - -- **Official Website**: https://six.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Six Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/six-protocol.mdx b/docs/pages/solutions/chainlist/non-integrated/six-protocol.mdx deleted file mode 100644 index 1ad665934b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/six-protocol.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Six Protocol - SIXNET Blockchain Network -description: Explore Six Protocol, a blockchain network with chain ID 98. Learn about its native currency, SIX evm token, and how to interact with the network. ---- - -# Six Protocol - -Six Protocol is a blockchain network with chain ID 98. - -## Network Details - -- **Chain ID**: 98 -- **Chain Name**: SIXNET -- **Short Name**: six -- **Network ID**: 98 -- **Currency**: - - **Name**: SIX evm token - - **Symbol**: SIX - - **Decimals**: 18 - -## RPC URLs - -Six Protocol can be accessed through the following RPC endpoints: - -- https://sixnet-rpc-evm.sixprotocol.net - -## Six Protocol Block Explorers - -- [SIX Scan](https://sixscan.io/sixnet) - -## Additional Information - -- **Official Website**: https://six.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sjatsh.mdx b/docs/pages/solutions/chainlist/non-integrated/sjatsh.mdx deleted file mode 100644 index 2a5cec5239..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sjatsh.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SJATSH - ETH Blockchain Network -description: Explore SJATSH, a blockchain network with chain ID 10086. Learn about its native currency, Ether, and how to interact with the network. ---- - -# SJATSH - -SJATSH is a blockchain network with chain ID 10086. - -## Network Details - -- **Chain ID**: 10086 -- **Chain Name**: ETH -- **Short Name**: SJ -- **Network ID**: 10086 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -SJATSH can be accessed through the following RPC endpoints: - -- http://geth.free.idcfengye.com - -## SJATSH Block Explorers - - - -## Additional Information - -- **Official Website**: https://sjis.me - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub-testnet.mdx deleted file mode 100644 index f129943926..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SKALE Calypso Hub Testnet - giant-half-dual-testnet Blockchain Network -description: Explore SKALE Calypso Hub Testnet, a blockchain network with chain ID 974399131. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Calypso Hub Testnet - -SKALE Calypso Hub Testnet is a blockchain network with chain ID 974399131. - -## Network Details - -- **Chain ID**: 974399131 -- **Chain Name**: giant-half-dual-testnet -- **Short Name**: calypso-testnet -- **Network ID**: 974399131 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Calypso Hub Testnet can be accessed through the following RPC endpoints: - -- https://testnet.skalenodes.com/v1/giant-half-dual-testnet - -## SKALE Calypso Hub Testnet Block Explorers - -- [Blockscout](https://giant-half-dual-testnet.explorer.testnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://calypsohub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SKALE Calypso Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub.mdx deleted file mode 100644 index 959faebd85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-calypso-hub.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SKALE Calypso Hub - honorable-steel-rasalhague Blockchain Network -description: Explore SKALE Calypso Hub, a blockchain network with chain ID 1564830818. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Calypso Hub - -SKALE Calypso Hub is a blockchain network with chain ID 1564830818. - -## Network Details - -- **Chain ID**: 1564830818 -- **Chain Name**: honorable-steel-rasalhague -- **Short Name**: calypso-mainnet -- **Network ID**: 1564830818 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Calypso Hub can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/honorable-steel-rasalhague - -## SKALE Calypso Hub Block Explorers - -- [Blockscout](https://honorable-steel-rasalhague.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://calypsohub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub-testnet.mdx deleted file mode 100644 index e36d88cebe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SKALE Europa Hub Testnet - juicy-low-small-testnet Blockchain Network -description: Explore SKALE Europa Hub Testnet, a blockchain network with chain ID 1444673419. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Europa Hub Testnet - -SKALE Europa Hub Testnet is a blockchain network with chain ID 1444673419. - -## Network Details - -- **Chain ID**: 1444673419 -- **Chain Name**: juicy-low-small-testnet -- **Short Name**: europa-testnet -- **Network ID**: 1444673419 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Europa Hub Testnet can be accessed through the following RPC endpoints: - -- https://testnet.skalenodes.com/v1/juicy-low-small-testnet - -## SKALE Europa Hub Testnet Block Explorers - -- [Blockscout](https://juicy-low-small-testnet.explorer.testnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://europahub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SKALE Europa Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub.mdx deleted file mode 100644 index 9f9fcc711b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-europa-hub.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: SKALE Europa Hub - europa Blockchain Network -description: Explore SKALE Europa Hub, a blockchain network with chain ID 2046399126. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Europa Hub - -SKALE Europa Hub is a blockchain network with chain ID 2046399126. - -## Network Details - -- **Chain ID**: 2046399126 -- **Chain Name**: europa -- **Short Name**: europa -- **Network ID**: 2046399126 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Europa Hub can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/elated-tan-skat -- wss://mainnet.skalenodes.com/v1/elated-tan-skat - -## SKALE Europa Hub Block Explorers - -- [Blockscout](https://elated-tan-skat.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: https://europahub.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub-testnet.mdx deleted file mode 100644 index f62100e35a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: SKALE Titan Hub Testnet - aware-fake-trim-testnet Blockchain Network -description: Explore SKALE Titan Hub Testnet, a blockchain network with chain ID 1020352220. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Titan Hub Testnet - -SKALE Titan Hub Testnet is a blockchain network with chain ID 1020352220. - -## Network Details - -- **Chain ID**: 1020352220 -- **Chain Name**: aware-fake-trim-testnet -- **Short Name**: titan-testnet -- **Network ID**: 1020352220 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Titan Hub Testnet can be accessed through the following RPC endpoints: - -- https://testnet.skalenodes.com/v1/aware-fake-trim-testnet -- wss://testnet.skalenodes.com/v1/ws/aware-fake-trim-testnet - -## SKALE Titan Hub Testnet Block Explorers - -- [Blockscout](https://aware-fake-trim-testnet.explorer.testnet.skalenodes.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SKALE Titan Hub Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub.mdx b/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub.mdx deleted file mode 100644 index a6ae2f6b3a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skale-titan-hub.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: SKALE Titan Hub - parallel-stormy-spica Blockchain Network -description: Explore SKALE Titan Hub, a blockchain network with chain ID 1350216234. Learn about its native currency, sFUEL, and how to interact with the network. ---- - -# SKALE Titan Hub - -SKALE Titan Hub is a blockchain network with chain ID 1350216234. - -## Network Details - -- **Chain ID**: 1350216234 -- **Chain Name**: parallel-stormy-spica -- **Short Name**: titan-mainnet -- **Network ID**: 1350216234 -- **Currency**: - - **Name**: sFUEL - - **Symbol**: sFUEL - - **Decimals**: 18 - -## RPC URLs - -SKALE Titan Hub can be accessed through the following RPC endpoints: - -- https://mainnet.skalenodes.com/v1/parallel-stormy-spica -- wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica - -## SKALE Titan Hub Block Explorers - -- [Blockscout](https://parallel-stormy-spica.explorer.mainnet.skalenodes.com) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/skopje-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/skopje-testnet.mdx deleted file mode 100644 index b83304eb43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/skopje-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Skopje Testnet - Skopje Testnet Blockchain Network -description: Explore Skopje Testnet, a blockchain network with chain ID 476462898. Learn about its native currency, SkpGPT, and how to interact with the network. ---- - -# Skopje Testnet - -Skopje Testnet is a blockchain network with chain ID 476462898. - -## Network Details - -- **Chain ID**: 476462898 -- **Chain Name**: Skopje Testnet -- **Short Name**: Skopje -- **Network ID**: 476462898 -- **Currency**: - - **Name**: SkpGPT - - **Symbol**: SkpGPT - - **Decimals**: 18 - -## RPC URLs - -Skopje Testnet can be accessed through the following RPC endpoints: - -- https://skopje-rpc.gptprotocol.io - -## Skopje Testnet Block Explorers - -- [blockscout](https://skopje-explorer.gptprotocol.io) - -## Additional Information - -- **Official Website**: https://gptprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Skopje Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/slingshot-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/slingshot-testnet.mdx deleted file mode 100644 index f4ddf2a537..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/slingshot-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SlingShot Testnet - SLING Blockchain Network -description: Explore SlingShot Testnet, a blockchain network with chain ID 97435. Learn about its native currency, Sling Test, and how to interact with the network. ---- - -# SlingShot Testnet - -SlingShot Testnet is a blockchain network with chain ID 97435. - -## Network Details - -- **Chain ID**: 97435 -- **Chain Name**: SLING -- **Short Name**: sling -- **Network ID**: 97435 -- **Currency**: - - **Name**: Sling Test - - **Symbol**: SLINGT - - **Decimals**: 18 - -## RPC URLs - -SlingShot Testnet can be accessed through the following RPC endpoints: - -- https://rpc-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz - -## SlingShot Testnet Block Explorers - -- [SlingShot Test Explorer](https://explorer-dependent-emerald-whippet-gh6kch3nen.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://slingshotdao.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SlingShot Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/slingshot.mdx b/docs/pages/solutions/chainlist/non-integrated/slingshot.mdx deleted file mode 100644 index 25a410bde9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/slingshot.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SlingShot - SLING Blockchain Network -description: Explore SlingShot, a blockchain network with chain ID 33401. Learn about its native currency, Sling, and how to interact with the network. ---- - -# SlingShot - -SlingShot is a blockchain network with chain ID 33401. - -## Network Details - -- **Chain ID**: 33401 -- **Chain Name**: SLING -- **Short Name**: slingshot -- **Network ID**: 33401 -- **Currency**: - - **Name**: Sling - - **Symbol**: SLING - - **Decimals**: 18 - -## RPC URLs - -SlingShot can be accessed through the following RPC endpoints: - -- https://rpc.slingshotdao.com - -## SlingShot Block Explorers - -- [SlingShot Explorer](https://explore.slingshotdao.com) - -## Additional Information - -- **Official Website**: https://slingshotdao.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash-testnet.mdx deleted file mode 100644 index 0e552b3c67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Smart Bitcoin Cash Testnet - smartBCHTest Blockchain Network -description: Explore Smart Bitcoin Cash Testnet, a blockchain network with chain ID 10001. Learn about its native currency, Bitcoin Cash Test Token, and how to interact with the network. ---- - -# Smart Bitcoin Cash Testnet - -Smart Bitcoin Cash Testnet is a blockchain network with chain ID 10001. - -## Network Details - -- **Chain ID**: 10001 -- **Chain Name**: smartBCHTest -- **Short Name**: smartbchtest -- **Network ID**: 10001 -- **Currency**: - - **Name**: Bitcoin Cash Test Token - - **Symbol**: BCHT - - **Decimals**: 18 - -## RPC URLs - -Smart Bitcoin Cash Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.smartbch.org -- https://smartbch.devops.cash/testnet - -## Smart Bitcoin Cash Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: http://smartbch.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Smart Bitcoin Cash Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash.mdx deleted file mode 100644 index 1a999613e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-bitcoin-cash.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Smart Bitcoin Cash - smartBCH Blockchain Network -description: Explore Smart Bitcoin Cash, a blockchain network with chain ID 10000. Learn about its native currency, Bitcoin Cash, and how to interact with the network. ---- - -# Smart Bitcoin Cash - -Smart Bitcoin Cash is a blockchain network with chain ID 10000. - -## Network Details - -- **Chain ID**: 10000 -- **Chain Name**: smartBCH -- **Short Name**: smartbch -- **Network ID**: 10000 -- **Currency**: - - **Name**: Bitcoin Cash - - **Symbol**: BCH - - **Decimals**: 18 - -## RPC URLs - -Smart Bitcoin Cash can be accessed through the following RPC endpoints: - -- https://smartbch.greyh.at -- https://rpc-mainnet.smartbch.org -- https://smartbch.fountainhead.cash/mainnet -- https://smartbch.devops.cash/mainnet - -## Smart Bitcoin Cash Block Explorers - - - -## Additional Information - -- **Official Website**: https://smartbch.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-host-teknoloji-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-host-teknoloji-testnet.mdx deleted file mode 100644 index 08f3005afd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-host-teknoloji-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Smart Host Teknoloji TESTNET - SHT Blockchain Network -description: Explore Smart Host Teknoloji TESTNET, a blockchain network with chain ID 1177. Learn about its native currency, Smart Host Teknoloji TESTNET, and how to interact with the network. ---- - -# Smart Host Teknoloji TESTNET - -Smart Host Teknoloji TESTNET is a blockchain network with chain ID 1177. - -## Network Details - -- **Chain ID**: 1177 -- **Chain Name**: SHT -- **Short Name**: sht -- **Network ID**: 1177 -- **Currency**: - - **Name**: Smart Host Teknoloji TESTNET - - **Symbol**: tSHT - - **Decimals**: 18 - -## RPC URLs - -Smart Host Teknoloji TESTNET can be accessed through the following RPC endpoints: - -- https://s2.tl.web.tr:4041 - -## Smart Host Teknoloji TESTNET Block Explorers - -- [Smart Host Teknoloji TESTNET Explorer](https://s2.tl.web.tr:4000) - -## Additional Information - -- **Official Website**: https://smart-host.com.tr - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Smart Host Teknoloji TESTNET Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-layer-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-layer-network-testnet.mdx deleted file mode 100644 index 31baa9ed92..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-layer-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Smart Layer Network Testnet - SLN Blockchain Network -description: Explore Smart Layer Network Testnet, a blockchain network with chain ID 82459. Learn about its native currency, Service Unit Token, and how to interact with the network. ---- - -# Smart Layer Network Testnet - -Smart Layer Network Testnet is a blockchain network with chain ID 82459. - -## Network Details - -- **Chain ID**: 82459 -- **Chain Name**: SLN -- **Short Name**: tSLN -- **Network ID**: 82459 -- **Currency**: - - **Name**: Service Unit Token - - **Symbol**: SU - - **Decimals**: 18 - -## RPC URLs - -Smart Layer Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc.test.smartlayer.network - -## Smart Layer Network Testnet Block Explorers - -- [SLN Testnet Explorer](https://explorer.test.smartlayer.network) - -## Additional Information - -- **Official Website**: https://www.smartlayer.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Smart Layer Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-layer-network.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-layer-network.mdx deleted file mode 100644 index 1da4b0a757..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-layer-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Smart Layer Network - SLN Blockchain Network -description: Explore Smart Layer Network, a blockchain network with chain ID 5169. Learn about its native currency, Service Unit Token, and how to interact with the network. ---- - -# Smart Layer Network - -Smart Layer Network is a blockchain network with chain ID 5169. - -## Network Details - -- **Chain ID**: 5169 -- **Chain Name**: SLN -- **Short Name**: SLN -- **Network ID**: 5169 -- **Currency**: - - **Name**: Service Unit Token - - **Symbol**: SU - - **Decimals**: 18 - -## RPC URLs - -Smart Layer Network can be accessed through the following RPC endpoints: - -- https://rpc.main.smartlayer.network - -## Smart Layer Network Block Explorers - -- [SLN Mainnet Explorer](https://explorer.main.smartlayer.network) - -## Additional Information - -- **Official Website**: https://www.smartlayer.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/smart-trade-networks.mdx b/docs/pages/solutions/chainlist/non-integrated/smart-trade-networks.mdx deleted file mode 100644 index 104d877990..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smart-trade-networks.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Smart Trade Networks - Smart Trade Networks Blockchain Network -description: Explore Smart Trade Networks, a blockchain network with chain ID 18122. Learn about its native currency, STN, and how to interact with the network. ---- - -# Smart Trade Networks - -Smart Trade Networks is a blockchain network with chain ID 18122. - -## Network Details - -- **Chain ID**: 18122 -- **Chain Name**: Smart Trade Networks -- **Short Name**: STN -- **Network ID**: 18122 -- **Currency**: - - **Name**: STN - - **Symbol**: STN - - **Decimals**: 18 - -## RPC URLs - -Smart Trade Networks can be accessed through the following RPC endpoints: - -- https://beefledgerwallet.com:8544 - -## Smart Trade Networks Block Explorers - -- [stnscan](https://stnscan.com) - -## Additional Information - -- **Official Website**: https://www.smarttradenetworks.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/smartmesh.mdx b/docs/pages/solutions/chainlist/non-integrated/smartmesh.mdx deleted file mode 100644 index ee5b8f1384..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/smartmesh.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SmartMesh Mainnet - Spectrum Blockchain Network -description: Explore SmartMesh Mainnet, a blockchain network with chain ID 20180430. Learn about its native currency, SmartMesh Native Token, and how to interact with the network. ---- - -# SmartMesh Mainnet - -SmartMesh Mainnet is a blockchain network with chain ID 20180430. - -## Network Details - -- **Chain ID**: 20180430 -- **Chain Name**: Spectrum -- **Short Name**: spectrum -- **Network ID**: 20180430 -- **Currency**: - - **Name**: SmartMesh Native Token - - **Symbol**: SMT - - **Decimals**: 18 - -## RPC URLs - -SmartMesh Mainnet can be accessed through the following RPC endpoints: - -- https://jsonapi1.smartmesh.cn - -## SmartMesh Mainnet Block Explorers - -- [spectrum](https://spectrum.pub) - -## Additional Information - -- **Official Website**: https://smartmesh.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/social-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/social-smart-chain.mdx deleted file mode 100644 index 2d12686c56..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/social-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Social Smart Chain Mainnet - SoChain Blockchain Network -description: Explore Social Smart Chain Mainnet, a blockchain network with chain ID 281121. Learn about its native currency, SoChain, and how to interact with the network. ---- - -# Social Smart Chain Mainnet - -Social Smart Chain Mainnet is a blockchain network with chain ID 281121. - -## Network Details - -- **Chain ID**: 281121 -- **Chain Name**: SoChain -- **Short Name**: SoChain -- **Network ID**: 281121 -- **Currency**: - - **Name**: SoChain - - **Symbol**: $OC - - **Decimals**: 18 - -## RPC URLs - -Social Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://socialsmartchain.digitalnext.business - -## Social Smart Chain Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://digitalnext.business/SocialSmartChain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/soma-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/soma-network-testnet.mdx deleted file mode 100644 index 1e71099408..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soma-network-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: SOMA Network Testnet - SOMA Blockchain Network -description: Explore SOMA Network Testnet, a blockchain network with chain ID 2323. Learn about its native currency, SMA, and how to interact with the network. ---- - -# SOMA Network Testnet - -SOMA Network Testnet is a blockchain network with chain ID 2323. - -## Network Details - -- **Chain ID**: 2323 -- **Chain Name**: SOMA -- **Short Name**: sma -- **Network ID**: 2323 -- **Currency**: - - **Name**: SMA - - **Symbol**: tSMA - - **Decimals**: 18 - -## RPC URLs - -SOMA Network Testnet can be accessed through the following RPC endpoints: - -- https://data-testnet-v1.somanetwork.io/ -- https://testnet-au-server-2.somanetwork.io -- https://testnet-au-server-1.somanetwork.io -- https://testnet-sg-server-1.somanetwork.io -- https://testnet-sg-server-2.somanetwork.io - -## SOMA Network Testnet Block Explorers - -- [SOMA Testnet Explorer](https://testnet.somascan.io) - -## Additional Information - -- **Official Website**: https://somanetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SOMA Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/soma-network.mdx b/docs/pages/solutions/chainlist/non-integrated/soma-network.mdx deleted file mode 100644 index d7fad5d35f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soma-network.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: SOMA Network Mainnet - SOMA Blockchain Network -description: Explore SOMA Network Mainnet, a blockchain network with chain ID 2332. Learn about its native currency, Soma Native Token, and how to interact with the network. ---- - -# SOMA Network Mainnet - -SOMA Network Mainnet is a blockchain network with chain ID 2332. - -## Network Details - -- **Chain ID**: 2332 -- **Chain Name**: SOMA -- **Short Name**: smam -- **Network ID**: 2332 -- **Currency**: - - **Name**: Soma Native Token - - **Symbol**: SMA - - **Decimals**: 18 - -## RPC URLs - -SOMA Network Mainnet can be accessed through the following RPC endpoints: - -- https://data-mainnet-v1.somanetwork.io/ -- https://id-mainnet.somanetwork.io -- https://hk-mainnet.somanetwork.io -- https://sg-mainnet.somanetwork.io - -## SOMA Network Mainnet Block Explorers - -- [SOMA Explorer Mainnet](https://somascan.io) - -## Additional Information - -- **Official Website**: https://somanetwork.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/soneium-minato.mdx b/docs/pages/solutions/chainlist/non-integrated/soneium-minato.mdx deleted file mode 100644 index a049a8b8e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soneium-minato.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Soneium Minato - Sepolia Blockchain Network -description: Explore Soneium Minato, a blockchain network with chain ID 1946. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Soneium Minato - -Soneium Minato is a blockchain network with chain ID 1946. - -## Network Details - -- **Chain ID**: 1946 -- **Chain Name**: Sepolia -- **Short Name**: ETH -- **Network ID**: 1946 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Soneium Minato can be accessed through the following RPC endpoints: - -- https://rpc.minato.soneium.org/ - -## Soneium Minato Block Explorers - -- [Minato - Soneium L2 Testnet](https://explorer-testnet.soneium.org) - -## Additional Information - -- **Official Website**: https://soneium.org/en/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Soneium Minato Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/songbird-canary-network.mdx b/docs/pages/solutions/chainlist/non-integrated/songbird-canary-network.mdx deleted file mode 100644 index 42863f83f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/songbird-canary-network.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Songbird Canary-Network - SGB Blockchain Network -description: Explore Songbird Canary-Network, a blockchain network with chain ID 19. Learn about its native currency, Songbird, and how to interact with the network. ---- - -# Songbird Canary-Network - -Songbird Canary-Network is a blockchain network with chain ID 19. - -## Network Details - -- **Chain ID**: 19 -- **Chain Name**: SGB -- **Short Name**: sgb -- **Network ID**: 19 -- **Currency**: - - **Name**: Songbird - - **Symbol**: SGB - - **Decimals**: 18 - -## RPC URLs - -Songbird Canary-Network can be accessed through the following RPC endpoints: - -- 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 - -## Songbird Canary-Network Block Explorers - -- [blockscout](https://songbird-explorer.flare.network) -- [flarescan](https://songbird.flarescan.com) - -## Additional Information - -- **Official Website**: https://flare.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/songbird-testnet-coston.mdx b/docs/pages/solutions/chainlist/non-integrated/songbird-testnet-coston.mdx deleted file mode 100644 index ab0eea0af7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/songbird-testnet-coston.mdx +++ /dev/null @@ -1,46 +0,0 @@ ---- -title: Songbird Testnet Coston - SGB Blockchain Network -description: Explore Songbird Testnet Coston, a blockchain network with chain ID 16. Learn about its native currency, Coston Flare, and how to interact with the network. ---- - -# Songbird Testnet Coston - -Songbird Testnet Coston is a blockchain network with chain ID 16. - -## Network Details - -- **Chain ID**: 16 -- **Chain Name**: SGB -- **Short Name**: cflr -- **Network ID**: 16 -- **Currency**: - - **Name**: Coston Flare - - **Symbol**: CFLR - - **Decimals**: 18 - -## RPC URLs - -Songbird Testnet Coston can be accessed through the following RPC endpoints: - -- https://coston-api.flare.network/ext/C/rpc -- 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 - -## Songbird Testnet Coston Block Explorers - -- [blockscout](https://coston-explorer.flare.network) -- [flarescan](https://coston.testnet.flarescan.com) - -## Additional Information - -- **Official Website**: https://flare.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Songbird Testnet Coston Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sophon.mdx b/docs/pages/solutions/chainlist/non-integrated/sophon.mdx deleted file mode 100644 index a5ad7fe147..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sophon.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Sophon Testnet - Sophon Testnet Blockchain Network -description: Explore Sophon Testnet, a blockchain network with chain ID 531050104. Learn about its native currency, SOPH, and how to interact with the network. ---- - -# Sophon Testnet - -Sophon Testnet is a blockchain network with chain ID 531050104. - -## Network Details - -- **Chain ID**: 531050104 -- **Chain Name**: Sophon Testnet -- **Short Name**: SEPSOPH -- **Network ID**: 531050104 -- **Currency**: - - **Name**: SOPH - - **Symbol**: SOPH - - **Decimals**: 18 - -## RPC URLs - -Sophon Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.sophon.xyz/ - -## Sophon Testnet Block Explorers - -- [Blockexplorer](https://explorer.testnet.sophon.xyz/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Sophon Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/soraai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/soraai-testnet.mdx deleted file mode 100644 index ca9792345f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soraai-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SoraAI Testnet - SETH Blockchain Network -description: Explore SoraAI Testnet, a blockchain network with chain ID 145. Learn about its native currency, SoraETH, and how to interact with the network. ---- - -# SoraAI Testnet - -SoraAI Testnet is a blockchain network with chain ID 145. - -## Network Details - -- **Chain ID**: 145 -- **Chain Name**: SETH -- **Short Name**: SETH -- **Network ID**: 145 -- **Currency**: - - **Name**: SoraETH - - **Symbol**: SETH - - **Decimals**: 18 - -## RPC URLs - -SoraAI Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.soraai.bot - -## SoraAI Testnet Block Explorers - -- [blockscout](https://explorer.soraai.bot) - -## Additional Information - -- **Official Website**: https://soraai.bot - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SoraAI Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/soterone-old.mdx b/docs/pages/solutions/chainlist/non-integrated/soterone-old.mdx deleted file mode 100644 index e5ec1ae8b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soterone-old.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SoterOne Mainnet old - SOTER Blockchain Network -description: Explore SoterOne Mainnet old, a blockchain network with chain ID 218. Learn about its native currency, SoterOne Mainnet Ether, and how to interact with the network. ---- - -# SoterOne Mainnet old - -SoterOne Mainnet old is a blockchain network with chain ID 218. - -## Network Details - -- **Chain ID**: 218 -- **Chain Name**: SOTER -- **Short Name**: SO1-old -- **Network ID**: 218 -- **Currency**: - - **Name**: SoterOne Mainnet Ether - - **Symbol**: SOTER - - **Decimals**: 18 - -## RPC URLs - -SoterOne Mainnet old can be accessed through the following RPC endpoints: - -- https://rpc.soter.one - -## SoterOne Mainnet old Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.soterone.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/soterone.mdx b/docs/pages/solutions/chainlist/non-integrated/soterone.mdx deleted file mode 100644 index 32cb754bb5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soterone.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SoterOne Mainnet - SOTER Blockchain Network -description: Explore SoterOne Mainnet, a blockchain network with chain ID 68. Learn about its native currency, SoterOne Mainnet Ether, and how to interact with the network. ---- - -# SoterOne Mainnet - -SoterOne Mainnet is a blockchain network with chain ID 68. - -## Network Details - -- **Chain ID**: 68 -- **Chain Name**: SOTER -- **Short Name**: SO1 -- **Network ID**: 68 -- **Currency**: - - **Name**: SoterOne Mainnet Ether - - **Symbol**: SOTER - - **Decimals**: 18 - -## RPC URLs - -SoterOne Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.soter.one - -## SoterOne Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.soterone.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/soverun.mdx b/docs/pages/solutions/chainlist/non-integrated/soverun.mdx deleted file mode 100644 index 9ab5ee65b0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/soverun.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Soverun Mainnet - SVRN Blockchain Network -description: Explore Soverun Mainnet, a blockchain network with chain ID 10101010. Learn about its native currency, Soverun, and how to interact with the network. ---- - -# Soverun Mainnet - -Soverun Mainnet is a blockchain network with chain ID 10101010. - -## Network Details - -- **Chain ID**: 10101010 -- **Chain Name**: SVRN -- **Short Name**: SVRNm -- **Network ID**: 10101010 -- **Currency**: - - **Name**: Soverun - - **Symbol**: SVRN - - **Decimals**: 18 - -## RPC URLs - -Soverun Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.soverun.com - -## Soverun Mainnet Block Explorers - -- [Soverun](https://explorer.soverun.com) - -## Additional Information - -- **Official Website**: https://soverun.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/space-48795.mdx b/docs/pages/solutions/chainlist/non-integrated/space-48795.mdx deleted file mode 100644 index f01893ea66..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/space-48795.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Space Subnet Testnet - SPACETESTNET Blockchain Network -description: Explore Space Subnet Testnet, a blockchain network with chain ID 48795. Learn about its native currency, FUEL, and how to interact with the network. ---- - -# Space Subnet Testnet - -Space Subnet Testnet is a blockchain network with chain ID 48795. - -## Network Details - -- **Chain ID**: 48795 -- **Chain Name**: SPACETESTNET -- **Short Name**: spacetestnet -- **Network ID**: 48795 -- **Currency**: - - **Name**: FUEL - - **Symbol**: FUEL - - **Decimals**: 18 - -## RPC URLs - -Space Subnet Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/space/testnet/rpc - -## Space Subnet Testnet Block Explorers - -- [SPACE Explorer](https://subnets-test.avax.network/space) - -## Additional Information - -- **Official Website**: https://otherworld.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Space Subnet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/space.mdx b/docs/pages/solutions/chainlist/non-integrated/space.mdx deleted file mode 100644 index 2daf7a1892..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/space.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Space Subnet - SPACE Blockchain Network -description: Explore Space Subnet, a blockchain network with chain ID 8227. Learn about its native currency, FUEL, and how to interact with the network. ---- - -# Space Subnet - -Space Subnet is a blockchain network with chain ID 8227. - -## Network Details - -- **Chain ID**: 8227 -- **Chain Name**: SPACE -- **Short Name**: space -- **Network ID**: 8227 -- **Currency**: - - **Name**: FUEL - - **Symbol**: FUEL - - **Decimals**: 18 - -## RPC URLs - -Space Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/space/mainnet/rpc - -## Space Subnet Block Explorers - -- [SPACE Explorer](https://subnets.avax.network/space) - -## Additional Information - -- **Official Website**: https://otherworld.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/spicy-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/spicy-chain.mdx deleted file mode 100644 index 77260eeb98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/spicy-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chiliz Spicy Testnet - CHZ Blockchain Network -description: Explore Chiliz Spicy Testnet, a blockchain network with chain ID 88882. Learn about its native currency, Chiliz, and how to interact with the network. ---- - -# Chiliz Spicy Testnet - -Chiliz Spicy Testnet is a blockchain network with chain ID 88882. - -## Network Details - -- **Chain ID**: 88882 -- **Chain Name**: CHZ -- **Short Name**: chzspicy -- **Network ID**: 88882 -- **Currency**: - - **Name**: Chiliz - - **Symbol**: CHZ - - **Decimals**: 18 - -## RPC URLs - -Chiliz Spicy Testnet can be accessed through the following RPC endpoints: - -- https://spicy-rpc.chiliz.com - -## Chiliz Spicy Testnet Block Explorers - -- [spicy-explorer](https://testnet.chiliscan.com) - -## Additional Information - -- **Official Website**: https://www.chiliz.com/en/chain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chiliz Spicy Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sports-chain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/sports-chain-network.mdx deleted file mode 100644 index c65ef8d764..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sports-chain-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Sports Chain Network - SCN Blockchain Network -description: Explore Sports Chain Network, a blockchain network with chain ID 1904. Learn about its native currency, SCN, and how to interact with the network. ---- - -# Sports Chain Network - -Sports Chain Network is a blockchain network with chain ID 1904. - -## Network Details - -- **Chain ID**: 1904 -- **Chain Name**: SCN -- **Short Name**: SCN -- **Network ID**: 1904 -- **Currency**: - - **Name**: SCN - - **Symbol**: SCN - - **Decimals**: 18 - -## RPC URLs - -Sports Chain Network can be accessed through the following RPC endpoints: - -- https://rpc.sportschainnetwork.xyz/ - -## Sports Chain Network Block Explorers - -- [blockscout](https://explorer.sportschainnetwork.xyz) - -## Additional Information - -- **Official Website**: https://sportschainnetwork.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sps-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sps-testnet.mdx deleted file mode 100644 index 59888aa351..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sps-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SPS Testnet - SPS-Testnet Blockchain Network -description: Explore SPS Testnet, a blockchain network with chain ID 14000. Learn about its native currency, ECG, and how to interact with the network. ---- - -# SPS Testnet - -SPS Testnet is a blockchain network with chain ID 14000. - -## Network Details - -- **Chain ID**: 14000 -- **Chain Name**: SPS-Testnet -- **Short Name**: SPS-Test -- **Network ID**: 14000 -- **Currency**: - - **Name**: ECG - - **Symbol**: ECG - - **Decimals**: 18 - -## RPC URLs - -SPS Testnet can be accessed through the following RPC endpoints: - -- https://www.3sps.net - -## SPS Testnet Block Explorers - -- [SPS Test Explorer](https://explorer.3sps.net) - -## Additional Information - -- **Official Website**: https://ssquad.games/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SPS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sps.mdx b/docs/pages/solutions/chainlist/non-integrated/sps.mdx deleted file mode 100644 index 17ed58d84f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sps.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SPS - SPS Blockchain Network -description: Explore SPS, a blockchain network with chain ID 13000. Learn about its native currency, ECG, and how to interact with the network. ---- - -# SPS - -SPS is a blockchain network with chain ID 13000. - -## Network Details - -- **Chain ID**: 13000 -- **Chain Name**: SPS -- **Short Name**: SPS -- **Network ID**: 13000 -- **Currency**: - - **Name**: ECG - - **Symbol**: ECG - - **Decimals**: 18 - -## RPC URLs - -SPS can be accessed through the following RPC endpoints: - -- https://rpc.ssquad.games - -## SPS Block Explorers - -- [SPS Explorer](http://spsscan.ssquad.games) - -## Additional Information - -- **Official Website**: https://ssquad.games/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-02-07.mdx b/docs/pages/solutions/chainlist/non-integrated/st-02-07.mdx deleted file mode 100644 index c18a2dc17d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-02-07.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST 02-07 - Avalanche Blockchain Network -description: Explore ST 02-07, a blockchain network with chain ID 7865. Learn about its native currency, ST 02-07 Token, and how to interact with the network. ---- - -# ST 02-07 - -ST 02-07 is a blockchain network with chain ID 7865. - -## Network Details - -- **Chain ID**: 7865 -- **Chain Name**: Avalanche -- **Short Name**: ST 02-07 -- **Network ID**: 7865 -- **Currency**: - - **Name**: ST 02-07 Token - - **Symbol**: TJO - - **Decimals**: 18 - -## RPC URLs - -ST 02-07 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ST 02-07 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST 02-07 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-11-16-v7-regression.mdx b/docs/pages/solutions/chainlist/non-integrated/st-11-16-v7-regression.mdx deleted file mode 100644 index 0e2de5f653..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-11-16-v7-regression.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST 11-16 v7 Regression - Avalanche Blockchain Network -description: Explore ST 11-16 v7 Regression, a blockchain network with chain ID 23934. Learn about its native currency, ST 11-16 v7 Regression Token, and how to interact with the network. ---- - -# ST 11-16 v7 Regression - -ST 11-16 v7 Regression is a blockchain network with chain ID 23934. - -## Network Details - -- **Chain ID**: 23934 -- **Chain Name**: Avalanche -- **Short Name**: ST 11-16 v7 Regression -- **Network ID**: 23934 -- **Currency**: - - **Name**: ST 11-16 v7 Regression Token - - **Symbol**: WLA - - **Decimals**: 18 - -## RPC URLs - -ST 11-16 v7 Regression can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ST 11-16 v7 Regression Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST 11-16 v7 Regression Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-12-07-v1.mdx b/docs/pages/solutions/chainlist/non-integrated/st-12-07-v1.mdx deleted file mode 100644 index 272f37163f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-12-07-v1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST 12-07 V1 - Avalanche Blockchain Network -description: Explore ST 12-07 V1, a blockchain network with chain ID 19683. Learn about its native currency, ST 12-07 V1 Token, and how to interact with the network. ---- - -# ST 12-07 V1 - -ST 12-07 V1 is a blockchain network with chain ID 19683. - -## Network Details - -- **Chain ID**: 19683 -- **Chain Name**: Avalanche -- **Short Name**: ST 12-07 V1 -- **Network ID**: 19683 -- **Currency**: - - **Name**: ST 12-07 V1 Token - - **Symbol**: XRL - - **Decimals**: 18 - -## RPC URLs - -ST 12-07 V1 can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-test.io/d26b972e-1832-4d3a-bf7b-d0ce1f4331c2 - -## ST 12-07 V1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST 12-07 V1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-12-12-v1.mdx b/docs/pages/solutions/chainlist/non-integrated/st-12-12-v1.mdx deleted file mode 100644 index 526c741a0b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-12-12-v1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST 12-12 V1 - Avalanche Blockchain Network -description: Explore ST 12-12 V1, a blockchain network with chain ID 83862. Learn about its native currency, ST 12-12 V1 Token, and how to interact with the network. ---- - -# ST 12-12 V1 - -ST 12-12 V1 is a blockchain network with chain ID 83862. - -## Network Details - -- **Chain ID**: 83862 -- **Chain Name**: Avalanche -- **Short Name**: ST 12-12 V1 -- **Network ID**: 83862 -- **Currency**: - - **Name**: ST 12-12 V1 Token - - **Symbol**: GXE - - **Decimals**: 18 - -## RPC URLs - -ST 12-12 V1 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ST 12-12 V1 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST 12-12 V1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-12-12-v2.mdx b/docs/pages/solutions/chainlist/non-integrated/st-12-12-v2.mdx deleted file mode 100644 index 4e775b508c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-12-12-v2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST 12-12 V2 - Avalanche Blockchain Network -description: Explore ST 12-12 V2, a blockchain network with chain ID 59069. Learn about its native currency, ST 12-12 V2 Token, and how to interact with the network. ---- - -# ST 12-12 V2 - -ST 12-12 V2 is a blockchain network with chain ID 59069. - -## Network Details - -- **Chain ID**: 59069 -- **Chain Name**: Avalanche -- **Short Name**: ST 12-12 V2 -- **Network ID**: 59069 -- **Currency**: - - **Name**: ST 12-12 V2 Token - - **Symbol**: GXE - - **Decimals**: 18 - -## RPC URLs - -ST 12-12 V2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ST 12-12 V2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST 12-12 V2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/st-found-1-05-24.mdx b/docs/pages/solutions/chainlist/non-integrated/st-found-1-05-24.mdx deleted file mode 100644 index 7638dcde9b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/st-found-1-05-24.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ST Found 1-05-24 - Avalanche Blockchain Network -description: Explore ST Found 1-05-24, a blockchain network with chain ID 39142. Learn about its native currency, ST Found 1-05-24 Token, and how to interact with the network. ---- - -# ST Found 1-05-24 - -ST Found 1-05-24 is a blockchain network with chain ID 39142. - -## Network Details - -- **Chain ID**: 39142 -- **Chain Name**: Avalanche -- **Short Name**: ST Found 1-05-24 -- **Network ID**: 39142 -- **Currency**: - - **Name**: ST Found 1-05-24 Token - - **Symbol**: LGT - - **Decimals**: 18 - -## RPC URLs - -ST Found 1-05-24 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## ST Found 1-05-24 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ST Found 1-05-24 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/stability-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/stability-testnet.mdx deleted file mode 100644 index 73ba43011c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stability-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Stability Testnet - stabilityTestnet Blockchain Network -description: Explore Stability Testnet, a blockchain network with chain ID 20180427. Learn about its native currency, FREE, and how to interact with the network. ---- - -# Stability Testnet - -Stability Testnet is a blockchain network with chain ID 20180427. - -## Network Details - -- **Chain ID**: 20180427 -- **Chain Name**: stabilityTestnet -- **Short Name**: stabilitytestnet -- **Network ID**: 20180427 -- **Currency**: - - **Name**: FREE - - **Symbol**: FREE - - **Decimals**: 18 - -## RPC URLs - -Stability Testnet can be accessed through the following RPC endpoints: - -- https://free.testnet.stabilityprotocol.com - -## Stability Testnet Block Explorers - -- [blockscout](https://stability-testnet.blockscout.com) - -## Additional Information - -- **Official Website**: https://stabilityprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Stability Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/star-social-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/star-social-testnet.mdx deleted file mode 100644 index c45249697b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/star-social-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Star Social Testnet - SNS Blockchain Network -description: Explore Star Social Testnet, a blockchain network with chain ID 700. Learn about its native currency, Social, and how to interact with the network. ---- - -# Star Social Testnet - -Star Social Testnet is a blockchain network with chain ID 700. - -## Network Details - -- **Chain ID**: 700 -- **Chain Name**: SNS -- **Short Name**: SNS -- **Network ID**: 700 -- **Currency**: - - **Name**: Social - - **Symbol**: SNS - - **Decimals**: 18 - -## RPC URLs - -Star Social Testnet can be accessed through the following RPC endpoints: - -- https://avastar.cc/ext/bc/C/rpc - -## Star Social Testnet Block Explorers - -- [starscan](https://avastar.info) - -## Additional Information - -- **Official Website**: https://info.avastar.cc - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Star Social Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/starchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/starchain-testnet.mdx deleted file mode 100644 index 8955f83196..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/starchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: StarCHAIN Testnet - StarCHAIN Blockchain Network -description: Explore StarCHAIN Testnet, a blockchain network with chain ID 1570. Learn about its native currency, STARX, and how to interact with the network. ---- - -# StarCHAIN Testnet - -StarCHAIN Testnet is a blockchain network with chain ID 1570. - -## Network Details - -- **Chain ID**: 1570 -- **Chain Name**: StarCHAIN -- **Short Name**: starchain-testnet -- **Network ID**: 1570 -- **Currency**: - - **Name**: STARX - - **Symbol**: STARX - - **Decimals**: 18 - -## RPC URLs - -StarCHAIN Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc1.starworksglobal.com - -## StarCHAIN Testnet Block Explorers - -- [StarCHAIN Explorer](https://testnet.starchainscan.io) - -## Additional Information - -- **Official Website**: https://www.starworksglobal.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## StarCHAIN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/starchain.mdx b/docs/pages/solutions/chainlist/non-integrated/starchain.mdx deleted file mode 100644 index bb4b9dca9d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/starchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: StarCHAIN - StarCHAIN Blockchain Network -description: Explore StarCHAIN, a blockchain network with chain ID 1578. Learn about its native currency, STARX, and how to interact with the network. ---- - -# StarCHAIN - -StarCHAIN is a blockchain network with chain ID 1578. - -## Network Details - -- **Chain ID**: 1578 -- **Chain Name**: StarCHAIN -- **Short Name**: starchain -- **Network ID**: 1578 -- **Currency**: - - **Name**: STARX - - **Symbol**: STARX - - **Decimals**: 18 - -## RPC URLs - -StarCHAIN can be accessed through the following RPC endpoints: - -- https://rpc.starworksglobal.com - -## StarCHAIN Block Explorers - -- [StarCHAIN Explorer](https://starchainscan.io) - -## Additional Information - -- **Official Website**: https://www.starworksglobal.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/stavax-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/stavax-testnet.mdx deleted file mode 100644 index d891100382..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stavax-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Stavax Testnet - Avalanche Blockchain Network -description: Explore Stavax Testnet, a blockchain network with chain ID 210815. Learn about its native currency, Stavax Testnet Token, and how to interact with the network. ---- - -# Stavax Testnet - -Stavax Testnet is a blockchain network with chain ID 210815. - -## Network Details - -- **Chain ID**: 210815 -- **Chain Name**: Avalanche -- **Short Name**: Stavax Testnet -- **Network ID**: 210815 -- **Currency**: - - **Name**: Stavax Testnet Token - - **Symbol**: STA - - **Decimals**: 18 - -## RPC URLs - -Stavax Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/stavaxtest/testnet/rpc - -## Stavax Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Stavax Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/stealthnet-testing.mdx b/docs/pages/solutions/chainlist/non-integrated/stealthnet-testing.mdx deleted file mode 100644 index 9dad887c1a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stealthnet-testing.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Stealthnet Testing - Avalanche Blockchain Network -description: Explore Stealthnet Testing , a blockchain network with chain ID 24010. Learn about its native currency, Stealthnet Testing Token, and how to interact with the network. ---- - -# Stealthnet Testing - -Stealthnet Testing is a blockchain network with chain ID 24010. - -## Network Details - -- **Chain ID**: 24010 -- **Chain Name**: Avalanche -- **Short Name**: Stealthnet Testing -- **Network ID**: 24010 -- **Currency**: - - **Name**: Stealthnet Testing Token - - **Symbol**: AVCLDDEV - - **Decimals**: 18 - -## RPC URLs - -Stealthnet Testing can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/stealthnet/testnet/rpc - -## Stealthnet Testing Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Stealthnet Testing Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/step-network.mdx b/docs/pages/solutions/chainlist/non-integrated/step-network.mdx deleted file mode 100644 index d5eaef43d8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/step-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Step Network - STEP Blockchain Network -description: Explore Step Network, a blockchain network with chain ID 1234. Learn about its native currency, FITFI, and how to interact with the network. ---- - -# Step Network - -Step Network is a blockchain network with chain ID 1234. - -## Network Details - -- **Chain ID**: 1234 -- **Chain Name**: STEP -- **Short Name**: step -- **Network ID**: 1234 -- **Currency**: - - **Name**: FITFI - - **Symbol**: FITFI - - **Decimals**: 18 - -## RPC URLs - -Step Network can be accessed through the following RPC endpoints: - -- https://rpc.step.network - -## Step Network Block Explorers - -- [StepScan](https://stepscan.io) - -## Additional Information - -- **Official Website**: https://step.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/step-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/step-testnet.mdx deleted file mode 100644 index cfe2778149..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/step-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Step Testnet - STEP Blockchain Network -description: Explore Step Testnet, a blockchain network with chain ID 12345. Learn about its native currency, FITFI, and how to interact with the network. ---- - -# Step Testnet - -Step Testnet is a blockchain network with chain ID 12345. - -## Network Details - -- **Chain ID**: 12345 -- **Chain Name**: STEP -- **Short Name**: steptest -- **Network ID**: 12345 -- **Currency**: - - **Name**: FITFI - - **Symbol**: FITFI - - **Decimals**: 18 - -## RPC URLs - -Step Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.step.network - -## Step Testnet Block Explorers - -- [StepScan](https://testnet.stepscan.io) - -## Additional Information - -- **Official Website**: https://step.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Step Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/storagechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/storagechain-testnet.mdx deleted file mode 100644 index 2fedfa71dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/storagechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Storagechain Testnet - Storagechain Blockchain Network -description: Explore Storagechain Testnet, a blockchain network with chain ID 8727. Learn about its native currency, Storagechain, and how to interact with the network. ---- - -# Storagechain Testnet - -Storagechain Testnet is a blockchain network with chain ID 8727. - -## Network Details - -- **Chain ID**: 8727 -- **Chain Name**: Storagechain -- **Short Name**: tstor -- **Network ID**: 8727 -- **Currency**: - - **Name**: Storagechain - - **Symbol**: STOR - - **Decimals**: 18 - -## RPC URLs - -Storagechain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-validator.storagechain.io - -## Storagechain Testnet Block Explorers - -- [Storscan](https://explorer-storagechain.invo.zone/?network=StorageChain%20Testnet) - -## Additional Information - -- **Official Website**: https://storagechain.io/about-us - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Storagechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/storagechain.mdx b/docs/pages/solutions/chainlist/non-integrated/storagechain.mdx deleted file mode 100644 index f4a4aae655..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/storagechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Storagechain Mainnet - Storagechain Blockchain Network -description: Explore Storagechain Mainnet, a blockchain network with chain ID 8726. Learn about its native currency, Storagechain, and how to interact with the network. ---- - -# Storagechain Mainnet - -Storagechain Mainnet is a blockchain network with chain ID 8726. - -## Network Details - -- **Chain ID**: 8726 -- **Chain Name**: Storagechain -- **Short Name**: stor -- **Network ID**: 8726 -- **Currency**: - - **Name**: Storagechain - - **Symbol**: STOR - - **Decimals**: 18 - -## RPC URLs - -Storagechain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-validator.storagechain.io - -## Storagechain Mainnet Block Explorers - -- [Storscan](https://explorer-storagechain.invo.zone/?network=StorageChain) - -## Additional Information - -- **Official Website**: https://storagechain.io/about-us - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/story-iliad-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/story-iliad-testnet.mdx deleted file mode 100644 index 041dd2e53a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/story-iliad-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Story Iliad Testnet - Story Iliad Testnet Blockchain Network -description: Explore Story Iliad Testnet, a blockchain network with chain ID 1513. Learn about its native currency, IP, and how to interact with the network. ---- - -# Story Iliad Testnet - -Story Iliad Testnet is a blockchain network with chain ID 1513. - -## Network Details - -- **Chain ID**: 1513 -- **Chain Name**: Story Iliad Testnet -- **Short Name**: IP -- **Network ID**: 1513 -- **Currency**: - - **Name**: IP - - **Symbol**: $IP - - **Decimals**: 18 - -## RPC URLs - -Story Iliad Testnet can be accessed through the following RPC endpoints: - -- https://testnet.storyrpc.io/ -- https://lingering-frequent-dew.story-testnet.quiknode.pro/ -- https://story-testnet.us.nodefleet.net - -## Story Iliad Testnet Block Explorers - -- [Story Iliad Network explorer](https://testnet.storyscan.xyz/) - -## Additional Information - -- **Official Website**: https://www.story.foundation/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Story Iliad Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/straitsx.mdx b/docs/pages/solutions/chainlist/non-integrated/straitsx.mdx deleted file mode 100644 index 6128888fa9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/straitsx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: StraitsX - Avalanche Blockchain Network -description: Explore StraitsX, a blockchain network with chain ID 5566. Learn about its native currency, StraitsX Token, and how to interact with the network. ---- - -# StraitsX - -StraitsX is a blockchain network with chain ID 5566. - -## Network Details - -- **Chain ID**: 5566 -- **Chain Name**: Avalanche -- **Short Name**: StraitsX -- **Network ID**: 5566 -- **Currency**: - - **Name**: StraitsX Token - - **Symbol**: STX - - **Decimals**: 18 - -## RPC URLs - -StraitsX can be accessed through the following RPC endpoints: - -- https://mainnet-straitsx-y2550.avax.network/ext/bc/EJ4DyXHe4ydhsLLMiDPsHtoq5RDqgyao6Lwb9znKhs59q4NQx/rpc?token=1b1459649e0020ee44e60cb6ac025d67dc60e04c8a48875a3b581e2b8f797a6b - -## StraitsX Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/stratis.mdx b/docs/pages/solutions/chainlist/non-integrated/stratis.mdx deleted file mode 100644 index 906cc3e91b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stratis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Stratis Mainnet - Stratis Blockchain Network -description: Explore Stratis Mainnet, a blockchain network with chain ID 105105. Learn about its native currency, Stratis, and how to interact with the network. ---- - -# Stratis Mainnet - -Stratis Mainnet is a blockchain network with chain ID 105105. - -## Network Details - -- **Chain ID**: 105105 -- **Chain Name**: Stratis -- **Short Name**: stratis -- **Network ID**: 105105 -- **Currency**: - - **Name**: Stratis - - **Symbol**: STRAX - - **Decimals**: 18 - -## RPC URLs - -Stratis Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.stratisevm.com - -## Stratis Mainnet Block Explorers - -- [Stratis Explorer](https://explorer.stratisevm.com) - -## Additional Information - -- **Official Website**: https://www.stratisplatform.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/stratos-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/stratos-testnet.mdx deleted file mode 100644 index f9b672ecb5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stratos-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Stratos Testnet - STOS Blockchain Network -description: Explore Stratos Testnet, a blockchain network with chain ID 2047. Learn about its native currency, STOS, and how to interact with the network. ---- - -# Stratos Testnet - -Stratos Testnet is a blockchain network with chain ID 2047. - -## Network Details - -- **Chain ID**: 2047 -- **Chain Name**: STOS -- **Short Name**: stos-testnet -- **Network ID**: 2047 -- **Currency**: - - **Name**: STOS - - **Symbol**: STOS - - **Decimals**: 18 - -## RPC URLs - -Stratos Testnet can be accessed through the following RPC endpoints: - -- https://web3-rpc-mesos.thestratos.org - -## Stratos Testnet Block Explorers - -- [Stratos EVM Explorer (Blockscout)](https://web3-explorer-mesos.thestratos.org) -- [Stratos Cosmos Explorer (BigDipper)](https://big-dipper-mesos.thestratos.org) - -## Additional Information - -- **Official Website**: https://www.thestratos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Stratos Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/stratos.mdx b/docs/pages/solutions/chainlist/non-integrated/stratos.mdx deleted file mode 100644 index 86227bc258..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stratos.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Stratos - STOS Blockchain Network -description: Explore Stratos, a blockchain network with chain ID 2048. Learn about its native currency, STOS, and how to interact with the network. ---- - -# Stratos - -Stratos is a blockchain network with chain ID 2048. - -## Network Details - -- **Chain ID**: 2048 -- **Chain Name**: STOS -- **Short Name**: stos-mainnet -- **Network ID**: 2048 -- **Currency**: - - **Name**: STOS - - **Symbol**: STOS - - **Decimals**: 18 - -## RPC URLs - -Stratos can be accessed through the following RPC endpoints: - -- https://web3-rpc.thestratos.org - -## Stratos Block Explorers - -- [Stratos EVM Explorer (Blockscout)](https://web3-explorer.thestratos.org) -- [Stratos Cosmos Explorer (BigDipper)](https://explorer.thestratos.org) - -## Additional Information - -- **Official Website**: https://www.thestratos.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/stratovm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/stratovm-testnet.mdx deleted file mode 100644 index 98a3ddfd01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stratovm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: StratoVM Testnet - StratoVM Blockchain Network -description: Explore StratoVM Testnet, a blockchain network with chain ID 93747. Learn about its native currency, SVM, and how to interact with the network. ---- - -# StratoVM Testnet - -StratoVM Testnet is a blockchain network with chain ID 93747. - -## Network Details - -- **Chain ID**: 93747 -- **Chain Name**: StratoVM -- **Short Name**: stratovm -- **Network ID**: 93747 -- **Currency**: - - **Name**: SVM - - **Symbol**: SVM - - **Decimals**: 18 - -## RPC URLs - -StratoVM Testnet can be accessed through the following RPC endpoints: - -- https://rpc.stratovm.io - -## StratoVM Testnet Block Explorers - -- [StratoVM Block Explorer](https://explorer.stratovm.io) - -## Additional Information - -- **Official Website**: https://www.stratovm.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## StratoVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/streamux-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/streamux-blockchain.mdx deleted file mode 100644 index 799a1d9083..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/streamux-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: StreamuX Blockchain - StreamuX Blockchain Network -description: Explore StreamuX Blockchain, a blockchain network with chain ID 8098. Learn about its native currency, StreamuX, and how to interact with the network. ---- - -# StreamuX Blockchain - -StreamuX Blockchain is a blockchain network with chain ID 8098. - -## Network Details - -- **Chain ID**: 8098 -- **Chain Name**: StreamuX -- **Short Name**: StreamuX -- **Network ID**: 8098 -- **Currency**: - - **Name**: StreamuX - - **Symbol**: SmuX - - **Decimals**: 18 - -## RPC URLs - -StreamuX Blockchain can be accessed through the following RPC endpoints: - -- https://u0ma6t6heb:KDNwOsRDGcyM2Oeui1p431Bteb4rvcWkuPgQNHwB4FM@u0xy4x6x82-u0e2mg517m-rpc.us0-aws.kaleido.io/ - -## StreamuX Blockchain Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.streamux.cloud - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/stripe-test.mdx b/docs/pages/solutions/chainlist/non-integrated/stripe-test.mdx deleted file mode 100644 index 2603026337..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/stripe-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Stripe Test - Avalanche Blockchain Network -description: Explore Stripe Test, a blockchain network with chain ID 16316. Learn about its native currency, Stripe Test Token, and how to interact with the network. ---- - -# Stripe Test - -Stripe Test is a blockchain network with chain ID 16316. - -## Network Details - -- **Chain ID**: 16316 -- **Chain Name**: Avalanche -- **Short Name**: Stripe Test -- **Network ID**: 16316 -- **Currency**: - - **Name**: Stripe Test Token - - **Symbol**: STR - - **Decimals**: 18 - -## RPC URLs - -Stripe Test can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Stripe Test Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Stripe Test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/structx.mdx b/docs/pages/solutions/chainlist/non-integrated/structx.mdx deleted file mode 100644 index cb4f358306..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/structx.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Structx Mainnet - utx Blockchain Network -description: Explore Structx Mainnet, a blockchain network with chain ID 208. Learn about its native currency, Notes, and how to interact with the network. ---- - -# Structx Mainnet - -Structx Mainnet is a blockchain network with chain ID 208. - -## Network Details - -- **Chain ID**: 208 -- **Chain Name**: utx -- **Short Name**: utx -- **Network ID**: 208 -- **Currency**: - - **Name**: Notes - - **Symbol**: utx - - **Decimals**: 18 - -## RPC URLs - -Structx Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.structx.io - -## Structx Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://structx.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/summit-test.mdx b/docs/pages/solutions/chainlist/non-integrated/summit-test.mdx deleted file mode 100644 index baee0c3286..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/summit-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: summit-test - Avalanche Blockchain Network -description: Explore summit-test, a blockchain network with chain ID 70073. Learn about its native currency, summit-test Token, and how to interact with the network. ---- - -# summit-test - -summit-test is a blockchain network with chain ID 70073. - -## Network Details - -- **Chain ID**: 70073 -- **Chain Name**: Avalanche -- **Short Name**: summit-test -- **Network ID**: 70073 -- **Currency**: - - **Name**: summit-test Token - - **Symbol**: SMT - - **Decimals**: 18 - -## RPC URLs - -summit-test can be accessed through the following RPC endpoints: - -- https://testnet-summit1-w06af.avax-test.network/ext/bc/2LHB37XKJEzmwP1gmnbTWTJyx9T9JNAWTc5fCCfVDACmMNFXPX/rpc?token=1891f42efc3f7e14b4190f340db7a80d0182c3cda289a746f64a0126cd76a3e7 - -## summit-test Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## summit-test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/super-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/super-smart-chain-testnet.mdx deleted file mode 100644 index 86da43ad86..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/super-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Super Smart Chain Testnet - TSCS Blockchain Network -description: Explore Super Smart Chain Testnet, a blockchain network with chain ID 1969. Learn about its native currency, Super Chain Native Token, and how to interact with the network. ---- - -# Super Smart Chain Testnet - -Super Smart Chain Testnet is a blockchain network with chain ID 1969. - -## Network Details - -- **Chain ID**: 1969 -- **Chain Name**: TSCS -- **Short Name**: tscs -- **Network ID**: 1969 -- **Currency**: - - **Name**: Super Chain Native Token - - **Symbol**: TSCS - - **Decimals**: 18 - -## RPC URLs - -Super Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnetrpc.scschain.com - -## Super Smart Chain Testnet Block Explorers - -- [blockscout](https://testnetscan.scschain.com) - -## Additional Information - -- **Official Website**: https://testnet.scschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Super Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/super-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/super-smart-chain.mdx deleted file mode 100644 index 3ecaba08de..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/super-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Super Smart Chain Mainnet - SCS Blockchain Network -description: Explore Super Smart Chain Mainnet, a blockchain network with chain ID 1970. Learn about its native currency, Super Chain Native Token, and how to interact with the network. ---- - -# Super Smart Chain Mainnet - -Super Smart Chain Mainnet is a blockchain network with chain ID 1970. - -## Network Details - -- **Chain ID**: 1970 -- **Chain Name**: SCS -- **Short Name**: scs -- **Network ID**: 1970 -- **Currency**: - - **Name**: Super Chain Native Token - - **Symbol**: SCS - - **Decimals**: 18 - -## RPC URLs - -Super Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.scschain.com - -## Super Smart Chain Mainnet Block Explorers - -- [blockscout](https://scan.scschain.com) - -## Additional Information - -- **Official Website**: https://scschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/superloyalty-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/superloyalty-testnet.mdx deleted file mode 100644 index 2fefa63f06..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/superloyalty-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Superloyalty Testnet - Superloyalty Testnet Blockchain Network -description: Explore Superloyalty Testnet, a blockchain network with chain ID 5105. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Superloyalty Testnet - -Superloyalty Testnet is a blockchain network with chain ID 5105. - -## Network Details - -- **Chain ID**: 5105 -- **Chain Name**: Superloyalty Testnet -- **Short Name**: superloyalty-testnet -- **Network ID**: 5105 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Superloyalty Testnet can be accessed through the following RPC endpoints: - -- https://rpc-superloyalty-testnet-1m5gwjbsv1.t.conduit.xyz - -## Superloyalty Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.superloyal.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Superloyalty Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/superlumio.mdx b/docs/pages/solutions/chainlist/non-integrated/superlumio.mdx deleted file mode 100644 index b9448cd197..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/superlumio.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SuperLumio - SuperLumio Blockchain Network -description: Explore SuperLumio, a blockchain network with chain ID 8866. Learn about its native currency, Ether, and how to interact with the network. ---- - -# SuperLumio - -SuperLumio is a blockchain network with chain ID 8866. - -## Network Details - -- **Chain ID**: 8866 -- **Chain Name**: SuperLumio -- **Short Name**: superlumio -- **Network ID**: 8866 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -SuperLumio can be accessed through the following RPC endpoints: - -- https://mainnet.lumio.io/ - -## SuperLumio Block Explorers - -- [Lumio explorer](https://explorer.lumio.io) - -## Additional Information - -- **Official Website**: https://lumio.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/supernet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/supernet-testnet.mdx deleted file mode 100644 index 9ca469530a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/supernet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Supernet Testnet - Supernet Testnet Blockchain Network -description: Explore Supernet Testnet, a blockchain network with chain ID 998899. Learn about its native currency, CHAIN, and how to interact with the network. ---- - -# Supernet Testnet - -Supernet Testnet is a blockchain network with chain ID 998899. - -## Network Details - -- **Chain ID**: 998899 -- **Chain Name**: Supernet Testnet -- **Short Name**: supernetchain -- **Network ID**: 998899 -- **Currency**: - - **Name**: CHAIN - - **Symbol**: CHAIN - - **Decimals**: 18 - -## RPC URLs - -Supernet Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.supernet.chaingames.io/ - -## Supernet Testnet Block Explorers - -- [supernet-testnet-explorer](https://testnet-explorer.supernet.chaingames.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Supernet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/superposition-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/superposition-testnet.mdx deleted file mode 100644 index 1ee2679928..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/superposition-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Superposition Testnet - Arbitrum Blockchain Network -description: Explore Superposition Testnet, a blockchain network with chain ID 98985. Learn about its native currency, SPN, and how to interact with the network. ---- - -# Superposition Testnet - -Superposition Testnet is a blockchain network with chain ID 98985. - -## Network Details - -- **Chain ID**: 98985 -- **Chain Name**: Arbitrum -- **Short Name**: SPN -- **Network ID**: 98985 -- **Currency**: - - **Name**: SPN - - **Symbol**: SPN - - **Decimals**: 18 - -## RPC URLs - -Superposition Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.superposition.so/ - -## Superposition Testnet Block Explorers - -- [Superposition Testnet explorer](https://testnet-explorer.superposition.so/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Superposition Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/superposition.mdx b/docs/pages/solutions/chainlist/non-integrated/superposition.mdx deleted file mode 100644 index 9a2b97d1e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/superposition.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Superposition - Superposition Blockchain Network -description: Explore Superposition, a blockchain network with chain ID 55244. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Superposition - -Superposition is a blockchain network with chain ID 55244. - -## Network Details - -- **Chain ID**: 55244 -- **Chain Name**: Superposition -- **Short Name**: SPN -- **Network ID**: 55244 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Superposition can be accessed through the following RPC endpoints: - -- https://rpc.superposition.so - -## Superposition Block Explorers - -- [Superposition Explorer](https://explorer.superposition.so) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/superseed-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/superseed-sepolia-testnet.mdx deleted file mode 100644 index 4e3ec771b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/superseed-sepolia-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Superseed Sepolia Testnet - ETH Blockchain Network -description: Explore Superseed Sepolia Testnet, a blockchain network with chain ID 53302. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Superseed Sepolia Testnet - -Superseed Sepolia Testnet is a blockchain network with chain ID 53302. - -## Network Details - -- **Chain ID**: 53302 -- **Chain Name**: ETH -- **Short Name**: seedsep -- **Network ID**: 53302 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Superseed Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.superseed.xyz -- wss://sepolia.superseed.xyz - -## Superseed Sepolia Testnet Block Explorers - -- [seedscout](https://sepolia-explorer.superseed.xyz) - -## Additional Information - -- **Official Website**: https://www.superseed.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Superseed Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sur-blockchain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/sur-blockchain-network.mdx deleted file mode 100644 index faaf5a9c33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sur-blockchain-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SUR Blockchain Network - SUR Blockchain Network -description: Explore SUR Blockchain Network, a blockchain network with chain ID 262. Learn about its native currency, Suren, and how to interact with the network. ---- - -# SUR Blockchain Network - -SUR Blockchain Network is a blockchain network with chain ID 262. - -## Network Details - -- **Chain ID**: 262 -- **Chain Name**: SUR -- **Short Name**: SUR -- **Network ID**: 262 -- **Currency**: - - **Name**: Suren - - **Symbol**: SRN - - **Decimals**: 18 - -## RPC URLs - -SUR Blockchain Network can be accessed through the following RPC endpoints: - -- https://sur.nilin.org - -## SUR Blockchain Network Block Explorers - -- [Surnet Explorer](https://explorer.surnet.org) - -## Additional Information - -- **Official Website**: https://surnet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/susono.mdx b/docs/pages/solutions/chainlist/non-integrated/susono.mdx deleted file mode 100644 index 214bdafd78..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/susono.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Susono - SUS Blockchain Network -description: Explore Susono, a blockchain network with chain ID 13812. Learn about its native currency, Susono, and how to interact with the network. ---- - -# Susono - -Susono is a blockchain network with chain ID 13812. - -## Network Details - -- **Chain ID**: 13812 -- **Chain Name**: SUS -- **Short Name**: sus -- **Network ID**: 13812 -- **Currency**: - - **Name**: Susono - - **Symbol**: OPN - - **Decimals**: 18 - -## RPC URLs - -Susono can be accessed through the following RPC endpoints: - -- https://gateway.opn.network/node/ext/bc/2VsZe5DstWw2bfgdx3YbjKcMsJnNDjni95sZorBEdk9L9Qr9Fr/rpc - -## Susono Block Explorers - -- [Susono](http://explorer.opn.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/swamps-l2.mdx b/docs/pages/solutions/chainlist/non-integrated/swamps-l2.mdx deleted file mode 100644 index 6234ba1602..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swamps-l2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Swamps L2 - SWP Blockchain Network -description: Explore Swamps L2, a blockchain network with chain ID 45454. Learn about its native currency, SWP, and how to interact with the network. ---- - -# Swamps L2 - -Swamps L2 is a blockchain network with chain ID 45454. - -## Network Details - -- **Chain ID**: 45454 -- **Chain Name**: SWP -- **Short Name**: SWP -- **Network ID**: 45454 -- **Currency**: - - **Name**: SWP - - **Symbol**: SWP - - **Decimals**: 18 - -## RPC URLs - -Swamps L2 can be accessed through the following RPC endpoints: - -- https://swamps.tc.l2aas.com - -## Swamps L2 Block Explorers - -- [blockscout](https://swamps-explorer.tc.l2aas.com) - -## Additional Information - -- **Official Website**: https://www.swamps.fi - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/swan-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/swan-chain.mdx deleted file mode 100644 index 5555aa9e85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swan-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Swan Chain Mainnet - SWAN Blockchain Network -description: Explore Swan Chain Mainnet, a blockchain network with chain ID 254. Learn about its native currency, SWANETH, and how to interact with the network. ---- - -# Swan Chain Mainnet - -Swan Chain Mainnet is a blockchain network with chain ID 254. - -## Network Details - -- **Chain ID**: 254 -- **Chain Name**: SWAN -- **Short Name**: Swan -- **Network ID**: 254 -- **Currency**: - - **Name**: SWANETH - - **Symbol**: sETH - - **Decimals**: 18 - -## RPC URLs - -Swan Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc01.swanchain.io - -## Swan Chain Mainnet Block Explorers - -- [Swanchain Explorer](https://swanscan.io) - -## Additional Information - -- **Official Website**: https://swanchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/swan-proxima-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/swan-proxima-testnet.mdx deleted file mode 100644 index c2cd0c3efa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swan-proxima-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Swan Proxima Testnet - SWAN Blockchain Network -description: Explore Swan Proxima Testnet, a blockchain network with chain ID 20241133. Learn about its native currency, SWANETH, and how to interact with the network. ---- - -# Swan Proxima Testnet - -Swan Proxima Testnet is a blockchain network with chain ID 20241133. - -## Network Details - -- **Chain ID**: 20241133 -- **Chain Name**: SWAN -- **Short Name**: Proxima -- **Network ID**: 20241133 -- **Currency**: - - **Name**: SWANETH - - **Symbol**: sETH - - **Decimals**: 18 - -## RPC URLs - -Swan Proxima Testnet can be accessed through the following RPC endpoints: - -- https://rpc-proxima.swanchain.io - -## Swan Proxima Testnet Block Explorers - -- [Swan Proxima Chain explorer](https://proxima-explorer.swanchain.io) - -## Additional Information - -- **Official Website**: https://swanchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Swan Proxima Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/swan-saturn-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/swan-saturn-testnet.mdx deleted file mode 100644 index 0b9361a9b2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swan-saturn-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Swan Saturn Testnet - SWAN Blockchain Network -description: Explore Swan Saturn Testnet, a blockchain network with chain ID 2024. Learn about its native currency, SWANETH, and how to interact with the network. ---- - -# Swan Saturn Testnet - -Swan Saturn Testnet is a blockchain network with chain ID 2024. - -## Network Details - -- **Chain ID**: 2024 -- **Chain Name**: SWAN -- **Short Name**: saturn -- **Network ID**: 2024 -- **Currency**: - - **Name**: SWANETH - - **Symbol**: sETH - - **Decimals**: 18 - -## RPC URLs - -Swan Saturn Testnet can be accessed through the following RPC endpoints: - -- https://saturn-rpc.swanchain.io - -## Swan Saturn Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://swanchain.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Swan Saturn Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/swapdex.mdx b/docs/pages/solutions/chainlist/non-integrated/swapdex.mdx deleted file mode 100644 index 5da375eece..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swapdex.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: SwapDEX - SDX Blockchain Network -description: Explore SwapDEX, a blockchain network with chain ID 230. Learn about its native currency, SwapDEX, and how to interact with the network. ---- - -# SwapDEX - -SwapDEX is a blockchain network with chain ID 230. - -## Network Details - -- **Chain ID**: 230 -- **Chain Name**: SDX -- **Short Name**: SDX -- **Network ID**: 230 -- **Currency**: - - **Name**: SwapDEX - - **Symbol**: SDX - - **Decimals**: 18 - -## RPC URLs - -SwapDEX can be accessed through the following RPC endpoints: - -- https://rpc.swapdex.network -- wss://ss.swapdex.network - -## SwapDEX Block Explorers - -- [SwapDEX](https://evm.swapdex.network) - -## Additional Information - -- **Official Website**: https://swapdex.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/swaptest.mdx b/docs/pages/solutions/chainlist/non-integrated/swaptest.mdx deleted file mode 100644 index 87a93b85aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swaptest.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SwapTest - Avalanche Blockchain Network -description: Explore SwapTest, a blockchain network with chain ID 88945. Learn about its native currency, SwapTest Token, and how to interact with the network. ---- - -# SwapTest - -SwapTest is a blockchain network with chain ID 88945. - -## Network Details - -- **Chain ID**: 88945 -- **Chain Name**: Avalanche -- **Short Name**: SwapTest -- **Network ID**: 88945 -- **Currency**: - - **Name**: SwapTest Token - - **Symbol**: ZQG - - **Decimals**: 18 - -## RPC URLs - -SwapTest can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/swaptest/testnet/rpc - -## SwapTest Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SwapTest Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/swissdlt.mdx b/docs/pages/solutions/chainlist/non-integrated/swissdlt.mdx deleted file mode 100644 index 917a5daf35..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swissdlt.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SwissDLT - SDLT Blockchain Network -description: Explore SwissDLT, a blockchain network with chain ID 94. Learn about its native currency, BCTS, and how to interact with the network. ---- - -# SwissDLT - -SwissDLT is a blockchain network with chain ID 94. - -## Network Details - -- **Chain ID**: 94 -- **Chain Name**: SDLT -- **Short Name**: sdlt -- **Network ID**: 94 -- **Currency**: - - **Name**: BCTS - - **Symbol**: BCTS - - **Decimals**: 18 - -## RPC URLs - -SwissDLT can be accessed through the following RPC endpoints: - -- https://rpc.swissdlt.ch - -## SwissDLT Block Explorers - -- [SwissDLT Explorer](https://explorer.swissdlt.ch) - -## Additional Information - -- **Official Website**: https://bcts.ch - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/swisstronik-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/swisstronik-testnet.mdx deleted file mode 100644 index 335c2304c1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/swisstronik-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Swisstronik Testnet - SWTR Blockchain Network -description: Explore Swisstronik Testnet, a blockchain network with chain ID 1291. Learn about its native currency, Swisstronik, and how to interact with the network. ---- - -# Swisstronik Testnet - -Swisstronik Testnet is a blockchain network with chain ID 1291. - -## Network Details - -- **Chain ID**: 1291 -- **Chain Name**: SWTR -- **Short Name**: swtr -- **Network ID**: 1291 -- **Currency**: - - **Name**: Swisstronik - - **Symbol**: SWTR - - **Decimals**: 18 - -## RPC URLs - -Swisstronik Testnet can be accessed through the following RPC endpoints: - -- https://json-rpc.testnet.swisstronik.com - -## Swisstronik Testnet Block Explorers - -- [Swisstronik Scout](https://explorer-evm.testnet.swisstronik.com) - -## Additional Information - -- **Official Website**: https://www.swisstronik.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Swisstronik Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sx-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/sx-network-testnet.mdx deleted file mode 100644 index 0385266e5a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sx-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SX Network Testnet - SX Blockchain Network -description: Explore SX Network Testnet, a blockchain network with chain ID 647. Learn about its native currency, SX Network, and how to interact with the network. ---- - -# SX Network Testnet - -SX Network Testnet is a blockchain network with chain ID 647. - -## Network Details - -- **Chain ID**: 647 -- **Chain Name**: SX -- **Short Name**: SX-Testnet -- **Network ID**: 647 -- **Currency**: - - **Name**: SX Network - - **Symbol**: SX - - **Decimals**: 18 - -## RPC URLs - -SX Network Testnet can be accessed through the following RPC endpoints: - -- https://rpc.toronto.sx.technology - -## SX Network Testnet Block Explorers - -- [SX Network Toronto Explorer](https://explorer.toronto.sx.technology) - -## Additional Information - -- **Official Website**: https://www.sx.technology - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SX Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/sx-network.mdx b/docs/pages/solutions/chainlist/non-integrated/sx-network.mdx deleted file mode 100644 index 7416ef3ba2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sx-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SX Network Mainnet - SX Blockchain Network -description: Explore SX Network Mainnet, a blockchain network with chain ID 416. Learn about its native currency, SX Network, and how to interact with the network. ---- - -# SX Network Mainnet - -SX Network Mainnet is a blockchain network with chain ID 416. - -## Network Details - -- **Chain ID**: 416 -- **Chain Name**: SX -- **Short Name**: SX -- **Network ID**: 416 -- **Currency**: - - **Name**: SX Network - - **Symbol**: SX - - **Decimals**: 18 - -## RPC URLs - -SX Network Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.sx.technology - -## SX Network Mainnet Block Explorers - -- [SX Network Explorer](https://explorer.sx.technology) - -## Additional Information - -- **Official Website**: https://www.sx.technology - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sx-rollup.mdx b/docs/pages/solutions/chainlist/non-integrated/sx-rollup.mdx deleted file mode 100644 index b7620e0fd5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sx-rollup.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: SX Rollup - SX Blockchain Network -description: Explore SX Rollup, a blockchain network with chain ID 4162. Learn about its native currency, SX Network, and how to interact with the network. ---- - -# SX Rollup - -SX Rollup is a blockchain network with chain ID 4162. - -## Network Details - -- **Chain ID**: 4162 -- **Chain Name**: SX -- **Short Name**: SXR -- **Network ID**: 4162 -- **Currency**: - - **Name**: SX Network - - **Symbol**: SX - - **Decimals**: 18 - -## RPC URLs - -SX Rollup can be accessed through the following RPC endpoints: - -- https://rpc.sx-rollup.gelato.digital - -## SX Rollup Block Explorers - -- [SX L2 Explorer](https://explorerl2.sx.technology) - -## Additional Information - -- **Official Website**: https://www.sx.technology - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/sx-toronto-rollup.mdx b/docs/pages/solutions/chainlist/non-integrated/sx-toronto-rollup.mdx deleted file mode 100644 index 0de77387c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/sx-toronto-rollup.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: SX Toronto Rollup - SX Blockchain Network -description: Explore SX Toronto Rollup, a blockchain network with chain ID 79479957. Learn about its native currency, SX Network, and how to interact with the network. ---- - -# SX Toronto Rollup - -SX Toronto Rollup is a blockchain network with chain ID 79479957. - -## Network Details - -- **Chain ID**: 79479957 -- **Chain Name**: SX -- **Short Name**: SXR-Testnet -- **Network ID**: 79479957 -- **Currency**: - - **Name**: SX Network - - **Symbol**: SX - - **Decimals**: 18 - -## RPC URLs - -SX Toronto Rollup can be accessed through the following RPC endpoints: - -- https://rpc.sx-rollup-testnet.t.raas.gelato.cloud - -## SX Toronto Rollup Block Explorers - -- [SX Toronto L2 Explorer](https://explorerl2.toronto.sx.technology) - -## Additional Information - -- **Official Website**: https://www.sx.technology - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## SX Toronto Rollup Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/symplexia-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/symplexia-smart-chain.mdx deleted file mode 100644 index 12f47ef55e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/symplexia-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Symplexia Smart Chain - Plexchain Blockchain Network -description: Explore Symplexia Smart Chain, a blockchain network with chain ID 1149. Learn about its native currency, Plex Native Token, and how to interact with the network. ---- - -# Symplexia Smart Chain - -Symplexia Smart Chain is a blockchain network with chain ID 1149. - -## Network Details - -- **Chain ID**: 1149 -- **Chain Name**: Plexchain -- **Short Name**: Plexchain -- **Network ID**: 1149 -- **Currency**: - - **Name**: Plex Native Token - - **Symbol**: PLEX - - **Decimals**: 18 - -## RPC URLs - -Symplexia Smart Chain can be accessed through the following RPC endpoints: - -- https://plex-rpc.plexfinance.us - -## Symplexia Smart Chain Block Explorers - -- [Plexchain Explorer](https://explorer.plexfinance.us) - -## Additional Information - -- **Official Website**: https://plexfinance.us/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/synapse-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/synapse-chain-testnet.mdx deleted file mode 100644 index f2215d554e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/synapse-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Synapse Chain Testnet - ETH Blockchain Network -description: Explore Synapse Chain Testnet, a blockchain network with chain ID 444. Learn about its native currency, Sepolia ETH, and how to interact with the network. ---- - -# Synapse Chain Testnet - -Synapse Chain Testnet is a blockchain network with chain ID 444. - -## Network Details - -- **Chain ID**: 444 -- **Chain Name**: ETH -- **Short Name**: synapse-sepolia -- **Network ID**: 444 -- **Currency**: - - **Name**: Sepolia ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Synapse Chain Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.synapseprotocol.com - -## Synapse Chain Testnet Block Explorers - -- [Synapse Chain Sepolia](https://sepolia.synapsescan.com) - -## Additional Information - -- **Official Website**: https://synapseprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Synapse Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/syndicate-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/syndicate-chain.mdx deleted file mode 100644 index e39f798fa0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syndicate-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Syndicate Chain - Syndicate Blockchain Network -description: Explore Syndicate Chain, a blockchain network with chain ID 510. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Syndicate Chain - -Syndicate Chain is a blockchain network with chain ID 510. - -## Network Details - -- **Chain ID**: 510 -- **Chain Name**: Syndicate -- **Short Name**: syndicate-chain-mainnet -- **Network ID**: 510 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Syndicate Chain can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.syndicate.io - -## Syndicate Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://syndicate.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/syndicate-frame-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/syndicate-frame-chain.mdx deleted file mode 100644 index ce3c50c9c3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syndicate-frame-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Syndicate Frame Chain - Syndicate Frame Blockchain Network -description: Explore Syndicate Frame Chain, a blockchain network with chain ID 5101. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Syndicate Frame Chain - -Syndicate Frame Chain is a blockchain network with chain ID 5101. - -## Network Details - -- **Chain ID**: 5101 -- **Chain Name**: Syndicate Frame -- **Short Name**: syndicate-chain-frame -- **Network ID**: 5101 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Syndicate Frame Chain can be accessed through the following RPC endpoints: - -- https://rpc-frame.syndicate.io - -## Syndicate Frame Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://syndicate.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/syndicate-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/syndicate-testnet.mdx deleted file mode 100644 index a663aa0e69..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syndicate-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Syndicate Testnet - Syndicate Blockchain Network -description: Explore Syndicate Testnet, a blockchain network with chain ID 5100. Learn about its native currency, S-Ether, and how to interact with the network. ---- - -# Syndicate Testnet - -Syndicate Testnet is a blockchain network with chain ID 5100. - -## Network Details - -- **Chain ID**: 5100 -- **Chain Name**: Syndicate -- **Short Name**: syndicate-chain-testnet -- **Network ID**: 5100 -- **Currency**: - - **Name**: S-Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Syndicate Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.syndicate.io - -## Syndicate Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://syndicate.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Syndicate Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/syndr-l3-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/syndr-l3-sepolia.mdx deleted file mode 100644 index ced8e192f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syndr-l3-sepolia.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Syndr L3 Sepolia - SYNDRSEPOLIA Blockchain Network -description: Explore Syndr L3 Sepolia, a blockchain network with chain ID 444444. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Syndr L3 Sepolia - -Syndr L3 Sepolia is a blockchain network with chain ID 444444. - -## Network Details - -- **Chain ID**: 444444 -- **Chain Name**: SYNDRSEPOLIA -- **Short Name**: syndr -- **Network ID**: 444444 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Syndr L3 Sepolia can be accessed through the following RPC endpoints: - -- https://sepolia.syndr.com/http -- wss://sepolia.syndr.com/ws - -## Syndr L3 Sepolia Block Explorers - -- [Syndr L3 Sepolia Testnet Explorer](https://sepolia-explorer.syndr.com) - -## Additional Information - -- **Official Website**: https://syndr.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Syndr L3 Sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/syndr-l3.mdx b/docs/pages/solutions/chainlist/non-integrated/syndr-l3.mdx deleted file mode 100644 index f8c1985929..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syndr-l3.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Syndr L3 - SYNDR Blockchain Network -description: Explore Syndr L3, a blockchain network with chain ID 404. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Syndr L3 - -Syndr L3 is a blockchain network with chain ID 404. - -## Network Details - -- **Chain ID**: 404 -- **Chain Name**: SYNDR -- **Short Name**: syndr-l3 -- **Network ID**: 404 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Syndr L3 can be accessed through the following RPC endpoints: - -- https://rpc.syndr.com -- wss://rpc.syndr.com/ws - -## Syndr L3 Block Explorers - -- [Syndr L3 Explorer](https://explorer.syndr.com) - -## Additional Information - -- **Official Website**: https://syndr.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/syscoin-tanenbaum-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/syscoin-tanenbaum-testnet.mdx deleted file mode 100644 index bb183e643c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syscoin-tanenbaum-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Syscoin Tanenbaum Testnet - SYS Blockchain Network -description: Explore Syscoin Tanenbaum Testnet, a blockchain network with chain ID 5700. Learn about its native currency, Testnet Syscoin, and how to interact with the network. ---- - -# Syscoin Tanenbaum Testnet - -Syscoin Tanenbaum Testnet is a blockchain network with chain ID 5700. - -## Network Details - -- **Chain ID**: 5700 -- **Chain Name**: SYS -- **Short Name**: tsys -- **Network ID**: 5700 -- **Currency**: - - **Name**: Testnet Syscoin - - **Symbol**: tSYS - - **Decimals**: 18 - -## RPC URLs - -Syscoin Tanenbaum Testnet can be accessed through the following RPC endpoints: - -- https://rpc.tanenbaum.io -- wss://rpc.tanenbaum.io/wss -- https://syscoin-tanenbaum-evm.publicnode.com -- wss://syscoin-tanenbaum-evm.publicnode.com - -## Syscoin Tanenbaum Testnet Block Explorers - -- [Syscoin Testnet Block Explorer](https://tanenbaum.io) - -## Additional Information - -- **Official Website**: https://syscoin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Syscoin Tanenbaum Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/syscoin.mdx b/docs/pages/solutions/chainlist/non-integrated/syscoin.mdx deleted file mode 100644 index fb08cd97e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/syscoin.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Syscoin Mainnet - SYS Blockchain Network -description: Explore Syscoin Mainnet, a blockchain network with chain ID 57. Learn about its native currency, Syscoin, and how to interact with the network. ---- - -# Syscoin Mainnet - -Syscoin Mainnet is a blockchain network with chain ID 57. - -## Network Details - -- **Chain ID**: 57 -- **Chain Name**: SYS -- **Short Name**: sys -- **Network ID**: 57 -- **Currency**: - - **Name**: Syscoin - - **Symbol**: SYS - - **Decimals**: 18 - -## RPC URLs - -Syscoin Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## Syscoin Mainnet Block Explorers - -- [Syscoin Block Explorer](https://explorer.syscoin.org) - -## Additional Information - -- **Official Website**: https://www.syscoin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/t-0117.mdx b/docs/pages/solutions/chainlist/non-integrated/t-0117.mdx deleted file mode 100644 index 7522bd8fdd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/t-0117.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: T 0117 - Avalanche Blockchain Network -description: Explore T 0117, a blockchain network with chain ID 94565. Learn about its native currency, T 0117 Token, and how to interact with the network. ---- - -# T 0117 - -T 0117 is a blockchain network with chain ID 94565. - -## Network Details - -- **Chain ID**: 94565 -- **Chain Name**: Avalanche -- **Short Name**: T 0117 -- **Network ID**: 94565 -- **Currency**: - - **Name**: T 0117 Token - - **Symbol**: RUI - - **Decimals**: 18 - -## RPC URLs - -T 0117 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## T 0117 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## T 0117 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/t-ekta.mdx b/docs/pages/solutions/chainlist/non-integrated/t-ekta.mdx deleted file mode 100644 index e62d5fd570..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/t-ekta.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: T-EKTA - T-EKTA Blockchain Network -description: Explore T-EKTA, a blockchain network with chain ID 1004. Learn about its native currency, T-EKTA, and how to interact with the network. ---- - -# T-EKTA - -T-EKTA is a blockchain network with chain ID 1004. - -## Network Details - -- **Chain ID**: 1004 -- **Chain Name**: T-EKTA -- **Short Name**: t-ekta -- **Network ID**: 1004 -- **Currency**: - - **Name**: T-EKTA - - **Symbol**: T-EKTA - - **Decimals**: 18 - -## RPC URLs - -T-EKTA can be accessed through the following RPC endpoints: - -- https://test.ekta.io:8545 - -## T-EKTA Block Explorers - -- [test-ektascan](https://test.ektascan.io) - -## Additional Information - -- **Official Website**: https://www.ekta.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## T-EKTA Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/t.e.a.m-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/t.e.a.m-blockchain.mdx deleted file mode 100644 index 4e49f4b4e6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/t.e.a.m-blockchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: T.E.A.M Blockchain - TEAM Blockchain Network -description: Explore T.E.A.M Blockchain, a blockchain network with chain ID 88888888. Learn about its native currency, TEAM, and how to interact with the network. ---- - -# T.E.A.M Blockchain - -T.E.A.M Blockchain is a blockchain network with chain ID 88888888. - -## Network Details - -- **Chain ID**: 88888888 -- **Chain Name**: TEAM -- **Short Name**: team -- **Network ID**: 88888888 -- **Currency**: - - **Name**: TEAM - - **Symbol**: $TEAM - - **Decimals**: 18 - -## RPC URLs - -T.E.A.M Blockchain can be accessed through the following RPC endpoints: - -- https://rpc.teamblockchain.team - -## T.E.A.M Blockchain Block Explorers - -- [teamscan](https://teamblockchain.team) - -## Additional Information - -- **Official Website**: https://teamblockchain.team - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tabichain.mdx b/docs/pages/solutions/chainlist/non-integrated/tabichain.mdx deleted file mode 100644 index 0d06a0d1fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tabichain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tabi Testnet - TabiNetwork Blockchain Network -description: Explore Tabi Testnet, a blockchain network with chain ID 9789. Learn about its native currency, Tabi, and how to interact with the network. ---- - -# Tabi Testnet - -Tabi Testnet is a blockchain network with chain ID 9789. - -## Network Details - -- **Chain ID**: 9789 -- **Chain Name**: TabiNetwork -- **Short Name**: tabitest -- **Network ID**: 9789 -- **Currency**: - - **Name**: Tabi - - **Symbol**: TABI - - **Decimals**: 18 - -## RPC URLs - -Tabi Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.tabichain.com - -## Tabi Testnet Block Explorers - -- [Tabi Testnet Explorer](https://testnet.tabiscan.com) - -## Additional Information - -- **Official Website**: https://www.tabichain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tabi Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taf-eco-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/taf-eco-chain.mdx deleted file mode 100644 index bffb059f8f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taf-eco-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Taf ECO Chain Mainnet - Taf ECO Chain Blockchain Network -description: Explore Taf ECO Chain Mainnet, a blockchain network with chain ID 224168. Learn about its native currency, Taf ECO Chain Mainnet, and how to interact with the network. ---- - -# Taf ECO Chain Mainnet - -Taf ECO Chain Mainnet is a blockchain network with chain ID 224168. - -## Network Details - -- **Chain ID**: 224168 -- **Chain Name**: Taf ECO Chain -- **Short Name**: TAFECO -- **Network ID**: 224168 -- **Currency**: - - **Name**: Taf ECO Chain Mainnet - - **Symbol**: TAFECO - - **Decimals**: 18 - -## RPC URLs - -Taf ECO Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.tafchain.com/v1 - -## Taf ECO Chain Mainnet Block Explorers - -- [Taf ECO Chain Mainnet](https://ecoscan.tafchain.com) - -## Additional Information - -- **Official Website**: https://www.tafchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/taiko-(alpha-2-testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/taiko-(alpha-2-testnet).mdx deleted file mode 100644 index c4bef3a73c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taiko-(alpha-2-testnet).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Taiko (Alpha-2 Testnet) - ETH Blockchain Network -description: Explore Taiko (Alpha-2 Testnet), a blockchain network with chain ID 167004. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Taiko (Alpha-2 Testnet) - -Taiko (Alpha-2 Testnet) is a blockchain network with chain ID 167004. - -## Network Details - -- **Chain ID**: 167004 -- **Chain Name**: ETH -- **Short Name**: taiko-a2 -- **Network ID**: 167004 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Taiko (Alpha-2 Testnet) can be accessed through the following RPC endpoints: - -- https://rpc.a2.taiko.xyz - -## Taiko (Alpha-2 Testnet) Block Explorers - -- [blockscout](https://explorer.a2.taiko.xyz) - -## Additional Information - -- **Official Website**: https://taiko.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Taiko (Alpha-2 Testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taiko-hekla-l2.mdx b/docs/pages/solutions/chainlist/non-integrated/taiko-hekla-l2.mdx deleted file mode 100644 index 5e9667adee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taiko-hekla-l2.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Taiko Hekla L2 - ETH Blockchain Network -description: Explore Taiko Hekla L2, a blockchain network with chain ID 167009. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Taiko Hekla L2 - -Taiko Hekla L2 is a blockchain network with chain ID 167009. - -## Network Details - -- **Chain ID**: 167009 -- **Chain Name**: ETH -- **Short Name**: tko-hekla -- **Network ID**: 167009 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Taiko Hekla L2 can be accessed through the following RPC endpoints: - -- https://rpc.hekla.taiko.xyz -- wss://ws.hekla.taiko.xyz - -## Taiko Hekla L2 Block Explorers - -- [blockscout](https://blockscoutapi.hekla.taiko.xyz) -- [routescan](https://hekla.taikoscan.network) - -## Additional Information - -- **Official Website**: https://taiko.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Taiko Hekla L2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taiko-katla-l2.mdx b/docs/pages/solutions/chainlist/non-integrated/taiko-katla-l2.mdx deleted file mode 100644 index a79d4cc55f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taiko-katla-l2.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Taiko Katla L2 - ETH Blockchain Network -description: Explore Taiko Katla L2, a blockchain network with chain ID 167008. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Taiko Katla L2 - -Taiko Katla L2 is a blockchain network with chain ID 167008. - -## Network Details - -- **Chain ID**: 167008 -- **Chain Name**: ETH -- **Short Name**: tko-katla -- **Network ID**: 167008 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Taiko Katla L2 can be accessed through the following RPC endpoints: - -- https://rpc.katla.taiko.xyz -- wss://ws.katla.taiko.xyz -- https://taiko-katla.drpc.org -- wss://taiko-katla.drpc.org - -## Taiko Katla L2 Block Explorers - -- [blockscout](https://explorer.katla.taiko.xyz) - -## Additional Information - -- **Official Website**: https://taiko.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/taiko.mdx b/docs/pages/solutions/chainlist/non-integrated/taiko.mdx deleted file mode 100644 index b10131a4bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taiko.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Taiko Mainnet - ETH Blockchain Network -description: Explore Taiko Mainnet, a blockchain network with chain ID 167000. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Taiko Mainnet - -Taiko Mainnet is a blockchain network with chain ID 167000. - -## Network Details - -- **Chain ID**: 167000 -- **Chain Name**: ETH -- **Short Name**: tko-mainnet -- **Network ID**: 167000 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Taiko Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.taiko.xyz -- wss://ws.mainnet.taiko.xyz - -## Taiko Mainnet Block Explorers - -- [etherscan](https://taikoscan.io) - -## Additional Information - -- **Official Website**: https://taiko.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tangle-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tangle-testnet.mdx deleted file mode 100644 index 3aa4c16d7a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tangle-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Tangle Testnet - Tangle Testnet Blockchain Network -description: Explore Tangle Testnet, a blockchain network with chain ID 3799. Learn about its native currency, Testnet Tangle Network Token, and how to interact with the network. ---- - -# Tangle Testnet - -Tangle Testnet is a blockchain network with chain ID 3799. - -## Network Details - -- **Chain ID**: 3799 -- **Chain Name**: Tangle Testnet -- **Short Name**: tTangle -- **Network ID**: 3799 -- **Currency**: - - **Name**: Testnet Tangle Network Token - - **Symbol**: tTNT - - **Decimals**: 18 - -## RPC URLs - -Tangle Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.tangle.tools -- https://testnet-rpc-archive.tangle.tools -- wss://testnet-rpc.tangle.tools -- wss://testnet-rpc-archive.tangle.tools - -## Tangle Testnet Block Explorers - -- [ttntscan](https://testnet-explorer.tangle.tools) - -## Additional Information - -- **Official Website**: https://docs.tangle.tools - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tangle Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tangle.mdx b/docs/pages/solutions/chainlist/non-integrated/tangle.mdx deleted file mode 100644 index d747a32925..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tangle.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Tangle - Tangle Blockchain Network -description: Explore Tangle, a blockchain network with chain ID 5845. Learn about its native currency, Tangle, and how to interact with the network. ---- - -# Tangle - -Tangle is a blockchain network with chain ID 5845. - -## Network Details - -- **Chain ID**: 5845 -- **Chain Name**: Tangle -- **Short Name**: tangle -- **Network ID**: 5845 -- **Currency**: - - **Name**: Tangle - - **Symbol**: TNT - - **Decimals**: 18 - -## RPC URLs - -Tangle can be accessed through the following RPC endpoints: - -- https://rpc.tangle.tools -- wss://rpc.tangle.tools - -## Tangle Block Explorers - -- [Tangle EVM Explorer](https://explorer.tangle.tools) - -## Additional Information - -- **Official Website**: https://docs.tangle.tools - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tanssi-demo.mdx b/docs/pages/solutions/chainlist/non-integrated/tanssi-demo.mdx deleted file mode 100644 index 0bdf18a8eb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tanssi-demo.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Tanssi Demo - TANGO Blockchain Network -description: Explore Tanssi Demo, a blockchain network with chain ID 5678. Learn about its native currency, TANGO, and how to interact with the network. ---- - -# Tanssi Demo - -Tanssi Demo is a blockchain network with chain ID 5678. - -## Network Details - -- **Chain ID**: 5678 -- **Chain Name**: TANGO -- **Short Name**: tango -- **Network ID**: 5678 -- **Currency**: - - **Name**: TANGO - - **Symbol**: TANGO - - **Decimals**: 18 - -## RPC URLs - -Tanssi Demo can be accessed through the following RPC endpoints: - -- https://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network -- wss://fraa-dancebox-3001-rpc.a.dancebox.tanssi.network - -## Tanssi Demo Block Explorers - -- [BlockScout](https://3001-blockscout.a.dancebox.tanssi.network) - -## Additional Information - -- **Official Website**: https://docs.tanssi.network/builders/tanssi-network/networks/dancebox/demo-evm-containerchain - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tao-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tao-evm-testnet.mdx deleted file mode 100644 index f61e46744b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tao-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TAO EVM Testnet - TAO EVM Blockchain Network -description: Explore TAO EVM Testnet, a blockchain network with chain ID 10324. Learn about its native currency, TAO, and how to interact with the network. ---- - -# TAO EVM Testnet - -TAO EVM Testnet is a blockchain network with chain ID 10324. - -## Network Details - -- **Chain ID**: 10324 -- **Chain Name**: TAO EVM -- **Short Name**: TAOt -- **Network ID**: 10324 -- **Currency**: - - **Name**: TAO - - **Symbol**: TAO - - **Decimals**: 18 - -## RPC URLs - -TAO EVM Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.taoevm.io - -## TAO EVM Testnet Block Explorers - -- [TAO Testnet Explorer](https://testnet.taoscan.org) - -## Additional Information - -- **Official Website**: https://taoevm.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TAO EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tao-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/tao-evm.mdx deleted file mode 100644 index 569bf6a636..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tao-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TAO EVM Mainnet - TAO EVM Blockchain Network -description: Explore TAO EVM Mainnet, a blockchain network with chain ID 10321. Learn about its native currency, TAO, and how to interact with the network. ---- - -# TAO EVM Mainnet - -TAO EVM Mainnet is a blockchain network with chain ID 10321. - -## Network Details - -- **Chain ID**: 10321 -- **Chain Name**: TAO EVM -- **Short Name**: TAOm -- **Network ID**: 10321 -- **Currency**: - - **Name**: TAO - - **Symbol**: TAO - - **Decimals**: 18 - -## RPC URLs - -TAO EVM Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.taoevm.io - -## TAO EVM Mainnet Block Explorers - -- [TAO Mainnet Explorer](https://taoscan.org) - -## Additional Information - -- **Official Website**: https://taoevm.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tao-network.mdx b/docs/pages/solutions/chainlist/non-integrated/tao-network.mdx deleted file mode 100644 index 6993e79cd2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tao-network.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Tao Network - TAO Blockchain Network -description: Explore Tao Network, a blockchain network with chain ID 558. Learn about its native currency, Tao, and how to interact with the network. ---- - -# Tao Network - -Tao Network is a blockchain network with chain ID 558. - -## Network Details - -- **Chain ID**: 558 -- **Chain Name**: TAO -- **Short Name**: tao -- **Network ID**: 558 -- **Currency**: - - **Name**: Tao - - **Symbol**: TAO - - **Decimals**: 18 - -## RPC URLs - -Tao Network can be accessed through the following RPC endpoints: - -- https://rpc.testnet.tao.network -- http://rpc.testnet.tao.network:8545 -- https://rpc.tao.network -- wss://rpc.tao.network - -## Tao Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://tao.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tao Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taproot.mdx b/docs/pages/solutions/chainlist/non-integrated/taproot.mdx deleted file mode 100644 index d282051bbf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taproot.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TAPROOT Mainnet - TAPROOT CHAIN Blockchain Network -description: Explore TAPROOT Mainnet, a blockchain network with chain ID 911. Learn about its native currency, TBTC, and how to interact with the network. ---- - -# TAPROOT Mainnet - -TAPROOT Mainnet is a blockchain network with chain ID 911. - -## Network Details - -- **Chain ID**: 911 -- **Chain Name**: TAPROOT CHAIN -- **Short Name**: TAPROOT-Mainnet -- **Network ID**: 911 -- **Currency**: - - **Name**: TBTC - - **Symbol**: TBTC - - **Decimals**: 18 - -## RPC URLs - -TAPROOT Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.taprootchain.io - -## TAPROOT Mainnet Block Explorers - -- [TAPROOT Scan](https://scan.taprootchain.io) - -## Additional Information - -- **Official Website**: https://taprootchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/taraxa-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/taraxa-testnet.mdx deleted file mode 100644 index 01da66a6dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taraxa-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Taraxa Testnet - Tara Blockchain Network -description: Explore Taraxa Testnet, a blockchain network with chain ID 842. Learn about its native currency, Tara, and how to interact with the network. ---- - -# Taraxa Testnet - -Taraxa Testnet is a blockchain network with chain ID 842. - -## Network Details - -- **Chain ID**: 842 -- **Chain Name**: Tara -- **Short Name**: taratest -- **Network ID**: 842 -- **Currency**: - - **Name**: Tara - - **Symbol**: TARA - - **Decimals**: 18 - -## RPC URLs - -Taraxa Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.taraxa.io/ - -## Taraxa Testnet Block Explorers - -- [Taraxa Explorer](https://explorer.testnet.taraxa.io) - -## Additional Information - -- **Official Website**: https://taraxa.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Taraxa Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taraxa.mdx b/docs/pages/solutions/chainlist/non-integrated/taraxa.mdx deleted file mode 100644 index 439318c393..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taraxa.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Taraxa Mainnet - Tara Blockchain Network -description: Explore Taraxa Mainnet, a blockchain network with chain ID 841. Learn about its native currency, Tara, and how to interact with the network. ---- - -# Taraxa Mainnet - -Taraxa Mainnet is a blockchain network with chain ID 841. - -## Network Details - -- **Chain ID**: 841 -- **Chain Name**: Tara -- **Short Name**: tara -- **Network ID**: 841 -- **Currency**: - - **Name**: Tara - - **Symbol**: TARA - - **Decimals**: 18 - -## RPC URLs - -Taraxa Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.taraxa.io/ - -## Taraxa Mainnet Block Explorers - -- [Taraxa Explorer](https://explorer.mainnet.taraxa.io) - -## Additional Information - -- **Official Website**: https://taraxa.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/taycan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/taycan-testnet.mdx deleted file mode 100644 index 96ba7a06ad..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taycan-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Taycan Testnet - Taycan Blockchain Network -description: Explore Taycan Testnet, a blockchain network with chain ID 2023. Learn about its native currency, test-Shuffle, and how to interact with the network. ---- - -# Taycan Testnet - -Taycan Testnet is a blockchain network with chain ID 2023. - -## Network Details - -- **Chain ID**: 2023 -- **Chain Name**: Taycan -- **Short Name**: taycan-testnet -- **Network ID**: 2023 -- **Currency**: - - **Name**: test-Shuffle - - **Symbol**: tSFL - - **Decimals**: 18 - -## RPC URLs - -Taycan Testnet can be accessed through the following RPC endpoints: - -- https://test-taycan.hupayx.io - -## Taycan Testnet Block Explorers - -- [Taycan Explorer(Blockscout)](https://evmscan-test.hupayx.io) -- [Taycan Cosmos Explorer](https://cosmoscan-test.hupayx.io) - -## Additional Information - -- **Official Website**: https://hupayx.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Taycan Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/taycan.mdx b/docs/pages/solutions/chainlist/non-integrated/taycan.mdx deleted file mode 100644 index 8d966324a1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/taycan.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Taycan - Taycan Blockchain Network -description: Explore Taycan, a blockchain network with chain ID 22023. Learn about its native currency, shuffle, and how to interact with the network. ---- - -# Taycan - -Taycan is a blockchain network with chain ID 22023. - -## Network Details - -- **Chain ID**: 22023 -- **Chain Name**: Taycan -- **Short Name**: SFL -- **Network ID**: 22023 -- **Currency**: - - **Name**: shuffle - - **Symbol**: SFL - - **Decimals**: 18 - -## RPC URLs - -Taycan can be accessed through the following RPC endpoints: - -- https://taycan-rpc.hupayx.io:8545 - -## Taycan Block Explorers - -- [Taycan Explorer(Blockscout)](https://taycan-evmscan.hupayx.io) -- [Taycan Cosmos Explorer(BigDipper)](https://taycan-cosmoscan.hupayx.io) - -## Additional Information - -- **Official Website**: https://hupayx.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tbsi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tbsi-testnet.mdx deleted file mode 100644 index 6850cb4246..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tbsi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TBSI Testnet - TBSI Blockchain Network -description: Explore TBSI Testnet, a blockchain network with chain ID 1708. Learn about its native currency, Jinda, and how to interact with the network. ---- - -# TBSI Testnet - -TBSI Testnet is a blockchain network with chain ID 1708. - -## Network Details - -- **Chain ID**: 1708 -- **Chain Name**: TBSI -- **Short Name**: tTBSI -- **Network ID**: 1708 -- **Currency**: - - **Name**: Jinda - - **Symbol**: JINDA - - **Decimals**: 18 - -## RPC URLs - -TBSI Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.blockchain.or.th - -## TBSI Testnet Block Explorers - -- [blockscout](https://exp.testnet.blockchain.or.th) - -## Additional Information - -- **Official Website**: https://blockchain.or.th - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TBSI Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tbsi.mdx b/docs/pages/solutions/chainlist/non-integrated/tbsi.mdx deleted file mode 100644 index 1ad815f297..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tbsi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TBSI Mainnet - TBSI Blockchain Network -description: Explore TBSI Mainnet, a blockchain network with chain ID 1707. Learn about its native currency, Jinda, and how to interact with the network. ---- - -# TBSI Mainnet - -TBSI Mainnet is a blockchain network with chain ID 1707. - -## Network Details - -- **Chain ID**: 1707 -- **Chain Name**: TBSI -- **Short Name**: TBSI -- **Network ID**: 1707 -- **Currency**: - - **Name**: Jinda - - **Symbol**: JINDA - - **Decimals**: 18 - -## RPC URLs - -TBSI Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.blockchain.or.th - -## TBSI Mainnet Block Explorers - -- [blockscout](https://exp.blockchain.or.th) - -## Additional Information - -- **Official Website**: https://blockchain.or.th - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tbwg-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/tbwg-chain.mdx deleted file mode 100644 index f7d82b3d43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tbwg-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TBWG Chain - TBWG Blockchain Network -description: Explore TBWG Chain, a blockchain network with chain ID 35. Learn about its native currency, TBWG Ether, and how to interact with the network. ---- - -# TBWG Chain - -TBWG Chain is a blockchain network with chain ID 35. - -## Network Details - -- **Chain ID**: 35 -- **Chain Name**: TBWG -- **Short Name**: tbwg -- **Network ID**: 35 -- **Currency**: - - **Name**: TBWG Ether - - **Symbol**: TBG - - **Decimals**: 18 - -## RPC URLs - -TBWG Chain can be accessed through the following RPC endpoints: - -- https://rpc.tbwg.io - -## TBWG Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://tbwg.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tcc-network.mdx b/docs/pages/solutions/chainlist/non-integrated/tcc-network.mdx deleted file mode 100644 index b3c5a0fd22..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tcc-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TCC Network - TCC Network Blockchain Network -description: Explore TCC Network, a blockchain network with chain ID 181155. Learn about its native currency, The ChampCoin, and how to interact with the network. ---- - -# TCC Network - -TCC Network is a blockchain network with chain ID 181155. - -## Network Details - -- **Chain ID**: 181155 -- **Chain Name**: TCC Network -- **Short Name**: TCC -- **Network ID**: 181155 -- **Currency**: - - **Name**: The ChampCoin - - **Symbol**: TCC - - **Decimals**: 18 - -## RPC URLs - -TCC Network can be accessed through the following RPC endpoints: - - - -## TCC Network Block Explorers - -- [Tcc Scan](https://scan.tccworld.org/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tcg-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/tcg-verse.mdx deleted file mode 100644 index 491f21194c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tcg-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TCG Verse Mainnet - TCG Verse Blockchain Network -description: Explore TCG Verse Mainnet, a blockchain network with chain ID 2400. Learn about its native currency, OAS, and how to interact with the network. ---- - -# TCG Verse Mainnet - -TCG Verse Mainnet is a blockchain network with chain ID 2400. - -## Network Details - -- **Chain ID**: 2400 -- **Chain Name**: TCG Verse -- **Short Name**: TCGV -- **Network ID**: 2400 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -TCG Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.tcgverse.xyz - -## TCG Verse Mainnet Block Explorers - -- [TCG Verse Explorer](https://explorer.tcgverse.xyz) - -## Additional Information - -- **Official Website**: https://tcgverse.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/techpay.mdx b/docs/pages/solutions/chainlist/non-integrated/techpay.mdx deleted file mode 100644 index 31decd2f24..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/techpay.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TechPay Mainnet - TPC Blockchain Network -description: Explore TechPay Mainnet, a blockchain network with chain ID 2569. Learn about its native currency, TechPay, and how to interact with the network. ---- - -# TechPay Mainnet - -TechPay Mainnet is a blockchain network with chain ID 2569. - -## Network Details - -- **Chain ID**: 2569 -- **Chain Name**: TPC -- **Short Name**: tpc -- **Network ID**: 2569 -- **Currency**: - - **Name**: TechPay - - **Symbol**: TPC - - **Decimals**: 18 - -## RPC URLs - -TechPay Mainnet can be accessed through the following RPC endpoints: - -- https://api.techpay.io/ - -## TechPay Mainnet Block Explorers - -- [tpcscan](https://tpcscan.com) - -## Additional Information - -- **Official Website**: https://techpay.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tectum-emission-token.mdx b/docs/pages/solutions/chainlist/non-integrated/tectum-emission-token.mdx deleted file mode 100644 index e755ada82e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tectum-emission-token.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tectum Emission Token - TET Blockchain Network -description: Explore Tectum Emission Token, a blockchain network with chain ID 1003. Learn about its native currency, Tectum, and how to interact with the network. ---- - -# Tectum Emission Token - -Tectum Emission Token is a blockchain network with chain ID 1003. - -## Network Details - -- **Chain ID**: 1003 -- **Chain Name**: TET -- **Short Name**: tet -- **Network ID**: 1003 -- **Currency**: - - **Name**: Tectum - - **Symbol**: TET - - **Decimals**: 8 - -## RPC URLs - -Tectum Emission Token can be accessed through the following RPC endpoints: - -- https://rpc.softnote.com/ - -## Tectum Emission Token Block Explorers - -- [Tectum explorer](https://explorer.tectum.io) - -## Additional Information - -- **Official Website**: https://softnote.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/teleport-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/teleport-testnet.mdx deleted file mode 100644 index 8000f666c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/teleport-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Teleport Testnet - Teleport Blockchain Network -description: Explore Teleport Testnet, a blockchain network with chain ID 8001. Learn about its native currency, Tele, and how to interact with the network. ---- - -# Teleport Testnet - -Teleport Testnet is a blockchain network with chain ID 8001. - -## Network Details - -- **Chain ID**: 8001 -- **Chain Name**: Teleport -- **Short Name**: teleport-testnet -- **Network ID**: 8001 -- **Currency**: - - **Name**: Tele - - **Symbol**: TELE - - **Decimals**: 18 - -## RPC URLs - -Teleport Testnet can be accessed through the following RPC endpoints: - -- https://evm-rpc.testnet.teleport.network - -## Teleport Testnet Block Explorers - -- [Teleport EVM Explorer (Blockscout)](https://evm-explorer.testnet.teleport.network) -- [Teleport Cosmos Explorer (Big Dipper)](https://explorer.testnet.teleport.network) - -## Additional Information - -- **Official Website**: https://teleport.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Teleport Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/teleport.mdx b/docs/pages/solutions/chainlist/non-integrated/teleport.mdx deleted file mode 100644 index eaf7e83273..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/teleport.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Teleport - Teleport Blockchain Network -description: Explore Teleport, a blockchain network with chain ID 8000. Learn about its native currency, Tele, and how to interact with the network. ---- - -# Teleport - -Teleport is a blockchain network with chain ID 8000. - -## Network Details - -- **Chain ID**: 8000 -- **Chain Name**: Teleport -- **Short Name**: teleport -- **Network ID**: 8000 -- **Currency**: - - **Name**: Tele - - **Symbol**: TELE - - **Decimals**: 18 - -## RPC URLs - -Teleport can be accessed through the following RPC endpoints: - -- https://evm-rpc.teleport.network - -## Teleport Block Explorers - -- [Teleport EVM Explorer (Blockscout)](https://evm-explorer.teleport.network) -- [Teleport Cosmos Explorer (Big Dipper)](https://explorer.teleport.network) - -## Additional Information - -- **Official Website**: https://teleport.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/telos-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/telos-evm-testnet.mdx deleted file mode 100644 index fc5f15a56a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/telos-evm-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Telos EVM Testnet - TLOS Blockchain Network -description: Explore Telos EVM Testnet, a blockchain network with chain ID 41. Learn about its native currency, Telos, and how to interact with the network. ---- - -# Telos EVM Testnet - -Telos EVM Testnet is a blockchain network with chain ID 41. - -## Network Details - -- **Chain ID**: 41 -- **Chain Name**: TLOS -- **Short Name**: TelosEVMTestnet -- **Network ID**: 41 -- **Currency**: - - **Name**: Telos - - **Symbol**: TLOS - - **Decimals**: 18 - -## RPC URLs - -Telos EVM Testnet can be accessed through the following RPC endpoints: - -- https://testnet.telos.net/evm -- https://telos-testnet.drpc.org -- wss://telos-testnet.drpc.org - -## Telos EVM Testnet Block Explorers - -- [teloscan](https://testnet.teloscan.io) - -## Additional Information - -- **Official Website**: https://telos.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Telos EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/telos-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/telos-evm.mdx deleted file mode 100644 index 5bbb980db6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/telos-evm.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Telos EVM Mainnet - TLOS Blockchain Network -description: Explore Telos EVM Mainnet, a blockchain network with chain ID 40. Learn about its native currency, Telos, and how to interact with the network. ---- - -# Telos EVM Mainnet - -Telos EVM Mainnet is a blockchain network with chain ID 40. - -## Network Details - -- **Chain ID**: 40 -- **Chain Name**: TLOS -- **Short Name**: TelosEVM -- **Network ID**: 40 -- **Currency**: - - **Name**: Telos - - **Symbol**: TLOS - - **Decimals**: 18 - -## RPC URLs - -Telos EVM Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.telos.net/evm -- https://telos.drpc.org -- wss://telos.drpc.org - -## Telos EVM Mainnet Block Explorers - -- [teloscan](https://teloscan.io) - -## Additional Information - -- **Official Website**: https://telos.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ten-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ten-testnet.mdx deleted file mode 100644 index 0cb8a170bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ten-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ten Testnet - ETH Blockchain Network -description: Explore Ten Testnet, a blockchain network with chain ID 443. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Ten Testnet - -Ten Testnet is a blockchain network with chain ID 443. - -## Network Details - -- **Chain ID**: 443 -- **Chain Name**: ETH -- **Short Name**: ten-testnet -- **Network ID**: 443 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Ten Testnet can be accessed through the following RPC endpoints: - -- https://testnet.ten.xyz - -## Ten Testnet Block Explorers - -- [Ten Sepolia Rollup Explorer](https://tenscan.io) - -## Additional Information - -- **Official Website**: https://ten.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ten Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tenet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tenet-testnet.mdx deleted file mode 100644 index e27c407888..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tenet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tenet Testnet - TENET Blockchain Network -description: Explore Tenet Testnet, a blockchain network with chain ID 155. Learn about its native currency, TENET, and how to interact with the network. ---- - -# Tenet Testnet - -Tenet Testnet is a blockchain network with chain ID 155. - -## Network Details - -- **Chain ID**: 155 -- **Chain Name**: TENET -- **Short Name**: tenet-testnet -- **Network ID**: 155 -- **Currency**: - - **Name**: TENET - - **Symbol**: TENET - - **Decimals**: 18 - -## RPC URLs - -Tenet Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.tenet.org - -## Tenet Testnet Block Explorers - -- [TenetScan Testnet](https://testnet.tenetscan.io) - -## Additional Information - -- **Official Website**: https://tenet.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tenet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tenet.mdx b/docs/pages/solutions/chainlist/non-integrated/tenet.mdx deleted file mode 100644 index a362205f20..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tenet.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: Tenet - TENET Blockchain Network -description: Explore Tenet, a blockchain network with chain ID 1559. Learn about its native currency, TENET, and how to interact with the network. ---- - -# Tenet - -Tenet is a blockchain network with chain ID 1559. - -## Network Details - -- **Chain ID**: 1559 -- **Chain Name**: TENET -- **Short Name**: tenet -- **Network ID**: 1559 -- **Currency**: - - **Name**: TENET - - **Symbol**: TENET - - **Decimals**: 18 - -## RPC URLs - -Tenet can be accessed through the following RPC endpoints: - -- https://rpc.tenet.org -- https://tenet-evm.publicnode.com -- wss://tenet-evm.publicnode.com - -## Tenet Block Explorers - -- [TenetScan Mainnet](https://tenetscan.io) - -## Additional Information - -- **Official Website**: https://tenet.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tenzro.mdx b/docs/pages/solutions/chainlist/non-integrated/tenzro.mdx deleted file mode 100644 index b087f9fa01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tenzro.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tenzro - Avalanche Blockchain Network -description: Explore Tenzro, a blockchain network with chain ID 11516. Learn about its native currency, Tenzro Token, and how to interact with the network. ---- - -# Tenzro - -Tenzro is a blockchain network with chain ID 11516. - -## Network Details - -- **Chain ID**: 11516 -- **Chain Name**: Avalanche -- **Short Name**: Tenzro -- **Network ID**: 11516 -- **Currency**: - - **Name**: Tenzro Token - - **Symbol**: TNZO - - **Decimals**: 18 - -## RPC URLs - -Tenzro can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/tenzro/testnet/rpc - -## Tenzro Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tenzro Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ternoa-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ternoa-testnet.mdx deleted file mode 100644 index 6c15acdf95..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ternoa-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ternoa Testnet - Ternoa Blockchain Network -description: Explore Ternoa Testnet, a blockchain network with chain ID 752024. Learn about its native currency, Capsule Coin, and how to interact with the network. ---- - -# Ternoa Testnet - -Ternoa Testnet is a blockchain network with chain ID 752024. - -## Network Details - -- **Chain ID**: 752024 -- **Chain Name**: Ternoa -- **Short Name**: ternoa -- **Network ID**: 752024 -- **Currency**: - - **Name**: Capsule Coin - - **Symbol**: CAPS - - **Decimals**: 18 - -## RPC URLs - -Ternoa Testnet can be accessed through the following RPC endpoints: - -- https://rpc.zkevm.ternoa.network - -## Ternoa Testnet Block Explorers - -- [Tracehawk](https://explorer.zkevm.ternoa.network) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ternoa Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/teslafunds.mdx b/docs/pages/solutions/chainlist/non-integrated/teslafunds.mdx deleted file mode 100644 index f5cbe4e0a6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/teslafunds.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Teslafunds - TSF Blockchain Network -description: Explore Teslafunds, a blockchain network with chain ID 1856. Learn about its native currency, Teslafunds Ether, and how to interact with the network. ---- - -# Teslafunds - -Teslafunds is a blockchain network with chain ID 1856. - -## Network Details - -- **Chain ID**: 1856 -- **Chain Name**: TSF -- **Short Name**: tsf -- **Network ID**: 1856 -- **Currency**: - - **Name**: Teslafunds Ether - - **Symbol**: TSF - - **Decimals**: 18 - -## RPC URLs - -Teslafunds can be accessed through the following RPC endpoints: - -- https://tsfapi.europool.me - -## Teslafunds Block Explorers - - - -## Additional Information - -- **Official Website**: https://teslafunds.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/test-1.mdx b/docs/pages/solutions/chainlist/non-integrated/test-1.mdx deleted file mode 100644 index 6d98b90953..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/test-1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: test-1 - test-1 Blockchain Network -description: Explore test-1, a blockchain network with chain ID 40298. Learn about its native currency, Ether, and how to interact with the network. ---- - -# test-1 - -test-1 is a blockchain network with chain ID 40298. - -## Network Details - -- **Chain ID**: 40298 -- **Chain Name**: test-1 -- **Short Name**: test-1 -- **Network ID**: 40298 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -test-1 can be accessed through the following RPC endpoints: - -- https://rpc-test-1-f8ti0di6px.t.conduit.xyz - -## test-1 Block Explorers - -- [test-1 Explorer](https://explorer-test-1-f8ti0di6px.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/40298 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## test-1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/test-subnet-resources.mdx b/docs/pages/solutions/chainlist/non-integrated/test-subnet-resources.mdx deleted file mode 100644 index 5b661691e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/test-subnet-resources.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Test Subnet Resources - Avalanche Blockchain Network -description: Explore Test Subnet Resources, a blockchain network with chain ID 2144. Learn about its native currency, Test Subnet Resources Token, and how to interact with the network. ---- - -# Test Subnet Resources - -Test Subnet Resources is a blockchain network with chain ID 2144. - -## Network Details - -- **Chain ID**: 2144 -- **Chain Name**: Avalanche -- **Short Name**: Test Subnet Resources -- **Network ID**: 2144 -- **Currency**: - - **Name**: Test Subnet Resources Token - - **Symbol**: LNV - - **Decimals**: 18 - -## RPC URLs - -Test Subnet Resources can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testsubnet/testnet/rpc - -## Test Subnet Resources Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Test Subnet Resources Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/test-using-resources-82529.mdx b/docs/pages/solutions/chainlist/non-integrated/test-using-resources-82529.mdx deleted file mode 100644 index 0660b7b47f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/test-using-resources-82529.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Test Using Resources - Avalanche Blockchain Network -description: Explore Test Using Resources, a blockchain network with chain ID 82529. Learn about its native currency, Test Using Resources Token, and how to interact with the network. ---- - -# Test Using Resources - -Test Using Resources is a blockchain network with chain ID 82529. - -## Network Details - -- **Chain ID**: 82529 -- **Chain Name**: Avalanche -- **Short Name**: Test Using Resources -- **Network ID**: 82529 -- **Currency**: - - **Name**: Test Using Resources Token - - **Symbol**: JMH - - **Decimals**: 18 - -## RPC URLs - -Test Using Resources can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testsize/testnet/rpc - -## Test Using Resources Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Test Using Resources Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/test-using-resources.mdx b/docs/pages/solutions/chainlist/non-integrated/test-using-resources.mdx deleted file mode 100644 index 8b143d5fc7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/test-using-resources.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Test Using Resources - Avalanche Blockchain Network -description: Explore Test Using Resources, a blockchain network with chain ID 51290. Learn about its native currency, Test Using Resources Token, and how to interact with the network. ---- - -# Test Using Resources - -Test Using Resources is a blockchain network with chain ID 51290. - -## Network Details - -- **Chain ID**: 51290 -- **Chain Name**: Avalanche -- **Short Name**: Test Using Resources -- **Network ID**: 51290 -- **Currency**: - - **Name**: Test Using Resources Token - - **Symbol**: JMH - - **Decimals**: 18 - -## RPC URLs - -Test Using Resources can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testsize2/testnet/rpc - -## Test Using Resources Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Test Using Resources Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/test.mdx b/docs/pages/solutions/chainlist/non-integrated/test.mdx deleted file mode 100644 index 9f4382bcea..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: test - test Blockchain Network -description: Explore test, a blockchain network with chain ID 68696. Learn about its native currency, Ether, and how to interact with the network. ---- - -# test - -test is a blockchain network with chain ID 68696. - -## Network Details - -- **Chain ID**: 68696 -- **Chain Name**: test -- **Short Name**: test -- **Network ID**: 68696 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -test can be accessed through the following RPC endpoints: - -- https://rpc-test-h2ezgr1dc4.t.conduit.xyz - -## test Block Explorers - -- [test Explorer](https://explorer-test-h2ezgr1dc4.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/68696 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-28982.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-28982.mdx deleted file mode 100644 index 71ce5333b3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-28982.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 28982. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 28982. - -## Network Details - -- **Chain ID**: 28982 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 28982 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: RUI - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-41604.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-41604.mdx deleted file mode 100644 index b0f65ed250..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-41604.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 41604. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 41604. - -## Network Details - -- **Chain ID**: 41604 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 41604 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: LFC - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-48702.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-48702.mdx deleted file mode 100644 index 6661ca47af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-48702.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 48702. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 48702. - -## Network Details - -- **Chain ID**: 48702 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 48702 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: LUG - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-74738.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-74738.mdx deleted file mode 100644 index bb6c1a93a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-74738.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 74738. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 74738. - -## Network Details - -- **Chain ID**: 74738 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 74738 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: CWA - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-92496.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-92496.mdx deleted file mode 100644 index 720e657100..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-92496.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 92496. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 92496. - -## Network Details - -- **Chain ID**: 92496 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 92496 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: OWO - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testnet/testnet/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-95395.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-95395.mdx deleted file mode 100644 index 04c7d3a6e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-95395.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Avalanche Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 95395. Learn about its native currency, Testnet Token, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 95395. - -## Network Details - -- **Chain ID**: 95395 -- **Chain Name**: Avalanche -- **Short Name**: Testnet -- **Network ID**: 95395 -- **Currency**: - - **Name**: Testnet Token - - **Symbol**: MFD - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-ajj.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-ajj.mdx deleted file mode 100644 index 84348b46d6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-ajj.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet-AJJ - Avalanche Blockchain Network -description: Explore Testnet-AJJ, a blockchain network with chain ID 26730. Learn about its native currency, Testnet-AJJ Token, and how to interact with the network. ---- - -# Testnet-AJJ - -Testnet-AJJ is a blockchain network with chain ID 26730. - -## Network Details - -- **Chain ID**: 26730 -- **Chain Name**: Avalanche -- **Short Name**: Testnet-AJJ -- **Network ID**: 26730 -- **Currency**: - - **Name**: Testnet-AJJ Token - - **Symbol**: AJJ - - **Decimals**: 18 - -## RPC URLs - -Testnet-AJJ can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Testnet-AJJ Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet-AJJ Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-beone-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-beone-chain.mdx deleted file mode 100644 index 2d26ee58fe..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-beone-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet BeOne Chain - tBOC Blockchain Network -description: Explore Testnet BeOne Chain, a blockchain network with chain ID 8181. Learn about its native currency, Testnet BeOne Chain, and how to interact with the network. ---- - -# Testnet BeOne Chain - -Testnet BeOne Chain is a blockchain network with chain ID 8181. - -## Network Details - -- **Chain ID**: 8181 -- **Chain Name**: tBOC -- **Short Name**: tBOC -- **Network ID**: 8181 -- **Currency**: - - **Name**: Testnet BeOne Chain - - **Symbol**: tBOC - - **Decimals**: 18 - -## RPC URLs - -Testnet BeOne Chain can be accessed through the following RPC endpoints: - -- https://pre-boc1.beonechain.com - -## Testnet BeOne Chain Block Explorers - -- [Testnet BeOne Chain](https://testnet.beonescan.com) - -## Additional Information - -- **Official Website**: https://testnet.beonescan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet BeOne Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-firsttest.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-firsttest.mdx deleted file mode 100644 index 9629070dd1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-firsttest.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TESTNet FirstTEST - Avalanche Blockchain Network -description: Explore TESTNet FirstTEST, a blockchain network with chain ID 7158. Learn about its native currency, TESTNet FirstTEST Token, and how to interact with the network. ---- - -# TESTNet FirstTEST - -TESTNet FirstTEST is a blockchain network with chain ID 7158. - -## Network Details - -- **Chain ID**: 7158 -- **Chain Name**: Avalanche -- **Short Name**: TESTNet FirstTEST -- **Network ID**: 7158 -- **Currency**: - - **Name**: TESTNet FirstTEST Token - - **Symbol**: TEST - - **Decimals**: 18 - -## RPC URLs - -TESTNet FirstTEST can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testnetfir/testnet/rpc - -## TESTNet FirstTEST Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TESTNet FirstTEST Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-secondtest.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-secondtest.mdx deleted file mode 100644 index ad5edae40d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-secondtest.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TESTNet SecondTEST - Avalanche Blockchain Network -description: Explore TESTNet SecondTEST, a blockchain network with chain ID 74843. Learn about its native currency, TESTNet SecondTEST Token, and how to interact with the network. ---- - -# TESTNet SecondTEST - -TESTNet SecondTEST is a blockchain network with chain ID 74843. - -## Network Details - -- **Chain ID**: 74843 -- **Chain Name**: Avalanche -- **Short Name**: TESTNet SecondTEST -- **Network ID**: 74843 -- **Currency**: - - **Name**: TESTNet SecondTEST Token - - **Symbol**: BOC - - **Decimals**: 18 - -## RPC URLs - -TESTNet SecondTEST can be accessed through the following RPC endpoints: - -- https://testnet-testnetsec-c65fd.avax-test.network/ext/bc/yqC44Ng8grjpgko6RJ16gpE2R9mJ3vQmrgfoHERnsTpQE98vQ/rpc?token=cfa5e817d91c819c70fcd0597ea4ca9b06377b8855aa876ed8923f5ab02957f0 - -## TESTNet SecondTEST Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TESTNet SecondTEST Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet-zeroone.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet-zeroone.mdx deleted file mode 100644 index 8451259709..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet-zeroone.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet Zeroone Subnet - TESTNETZER Blockchain Network -description: Explore Testnet Zeroone Subnet, a blockchain network with chain ID 56400. Learn about its native currency, ZERO, and how to interact with the network. ---- - -# Testnet Zeroone Subnet - -Testnet Zeroone Subnet is a blockchain network with chain ID 56400. - -## Network Details - -- **Chain ID**: 56400 -- **Chain Name**: TESTNETZER -- **Short Name**: testnetzer -- **Network ID**: 56400 -- **Currency**: - - **Name**: ZERO - - **Symbol**: ZERO - - **Decimals**: 18 - -## RPC URLs - -Testnet Zeroone Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/testnetzer/testnet/rpc - -## Testnet Zeroone Subnet Block Explorers - -- [TESTNETZER Explorer](https://subnets-test.avax.network/testnetzer) - -## Additional Information - -- **Official Website**: https://zeroone.art/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Zeroone Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/testnet.mdx deleted file mode 100644 index 3ed192c52a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Testnet - Flow Blockchain Network -description: Explore Testnet, a blockchain network with chain ID 545. Learn about its native currency, FLOW, and how to interact with the network. ---- - -# Testnet - -Testnet is a blockchain network with chain ID 545. - -## Network Details - -- **Chain ID**: 545 -- **Chain Name**: Flow -- **Short Name**: flow-testnet -- **Network ID**: 545 -- **Currency**: - - **Name**: FLOW - - **Symbol**: FLOW - - **Decimals**: 18 - -## RPC URLs - -Testnet can be accessed through the following RPC endpoints: - -- https://testnet.evm.nodes.onflow.org - -## Testnet Block Explorers - -- [Flow Diver](https://testnet.flowdiver.io) - -## Additional Information - -- **Official Website**: https://developers.flow.com/evm/about - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thaichain-2.0-thaifi.mdx b/docs/pages/solutions/chainlist/non-integrated/thaichain-2.0-thaifi.mdx deleted file mode 100644 index d2f4eca5c9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thaichain-2.0-thaifi.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ThaiChain 2.0 ThaiFi - TCH Blockchain Network -description: Explore ThaiChain 2.0 ThaiFi, a blockchain network with chain ID 17. Learn about its native currency, Thaifi Ether, and how to interact with the network. ---- - -# ThaiChain 2.0 ThaiFi - -ThaiChain 2.0 ThaiFi is a blockchain network with chain ID 17. - -## Network Details - -- **Chain ID**: 17 -- **Chain Name**: TCH -- **Short Name**: tfi -- **Network ID**: 17 -- **Currency**: - - **Name**: Thaifi Ether - - **Symbol**: TFI - - **Decimals**: 18 - -## RPC URLs - -ThaiChain 2.0 ThaiFi can be accessed through the following RPC endpoints: - -- https://rpc.thaifi.com - -## ThaiChain 2.0 ThaiFi Block Explorers - - - -## Additional Information - -- **Official Website**: https://exp.thaifi.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thaichain.mdx b/docs/pages/solutions/chainlist/non-integrated/thaichain.mdx deleted file mode 100644 index 695a2e3ef3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thaichain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: ThaiChain - TCH Blockchain Network -description: Explore ThaiChain, a blockchain network with chain ID 7. Learn about its native currency, ThaiChain Ether, and how to interact with the network. ---- - -# ThaiChain - -ThaiChain is a blockchain network with chain ID 7. - -## Network Details - -- **Chain ID**: 7 -- **Chain Name**: TCH -- **Short Name**: tch -- **Network ID**: 7 -- **Currency**: - - **Name**: ThaiChain Ether - - **Symbol**: TCH - - **Decimals**: 18 - -## RPC URLs - -ThaiChain can be accessed through the following RPC endpoints: - -- https://rpc.dome.cloud -- https://rpc.thaichain.org - -## ThaiChain Block Explorers - -- [Thaichain Explorer](https://exp.thaichain.org) - -## Additional Information - -- **Official Website**: https://thaichain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thari.mdx b/docs/pages/solutions/chainlist/non-integrated/thari.mdx deleted file mode 100644 index 03e8143448..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thari.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thari - Avalanche Blockchain Network -description: Explore Thari, a blockchain network with chain ID 37195. Learn about its native currency, Thari Token, and how to interact with the network. ---- - -# Thari - -Thari is a blockchain network with chain ID 37195. - -## Network Details - -- **Chain ID**: 37195 -- **Chain Name**: Avalanche -- **Short Name**: Thari -- **Network ID**: 37195 -- **Currency**: - - **Name**: Thari Token - - **Symbol**: THARI - - **Decimals**: 18 - -## RPC URLs - -Thari can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/thari/testnet/rpc - -## Thari Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thari Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/the-fan-economy.mdx b/docs/pages/solutions/chainlist/non-integrated/the-fan-economy.mdx deleted file mode 100644 index a711557842..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/the-fan-economy.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: The Fan Economy - avax Blockchain Network -description: Explore The Fan Economy, a blockchain network with chain ID 1127893. Learn about its native currency, Fan Finanace, and how to interact with the network. ---- - -# The Fan Economy - -The Fan Economy is a blockchain network with chain ID 1127893. - -## Network Details - -- **Chain ID**: 1127893 -- **Chain Name**: avax -- **Short Name**: FanFi -- **Network ID**: 1127893 -- **Currency**: - - **Name**: Fan Finanace - - **Symbol**: FanFi - - **Decimals**: 18 - -## RPC URLs - -The Fan Economy can be accessed through the following RPC endpoints: - -- https://subnets.avacloud.io/a9351d9b-ec31-4607-aa15-f6b44c8a79c0 - -## The Fan Economy Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## The Fan Economy Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/the-root-network---porcini-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/the-root-network---porcini-testnet.mdx deleted file mode 100644 index e4cb3ba196..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/the-root-network---porcini-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: The Root Network - Porcini Testnet - TRN Blockchain Network -description: Explore The Root Network - Porcini Testnet, a blockchain network with chain ID 7672. Learn about its native currency, XRP, and how to interact with the network. ---- - -# The Root Network - Porcini Testnet - -The Root Network - Porcini Testnet is a blockchain network with chain ID 7672. - -## Network Details - -- **Chain ID**: 7672 -- **Chain Name**: TRN -- **Short Name**: trn-porcini -- **Network ID**: 7672 -- **Currency**: - - **Name**: XRP - - **Symbol**: XRP - - **Decimals**: 6 - -## RPC URLs - -The Root Network - Porcini Testnet can be accessed through the following RPC endpoints: - -- https://porcini.rootnet.app/archive -- wss://porcini.rootnet.app/archive/ws - -## The Root Network - Porcini Testnet Block Explorers - -- [rootnet](https://explorer.rootnet.cloud) - -## Additional Information - -- **Official Website**: https://www.futureverse.com/technology/root - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## The Root Network - Porcini Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/the-root-network--.mdx b/docs/pages/solutions/chainlist/non-integrated/the-root-network--.mdx deleted file mode 100644 index 70a1df1abb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/the-root-network--.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: The Root Network - Mainnet - TRN Blockchain Network -description: Explore The Root Network - Mainnet, a blockchain network with chain ID 7668. Learn about its native currency, XRP, and how to interact with the network. ---- - -# The Root Network - Mainnet - -The Root Network - Mainnet is a blockchain network with chain ID 7668. - -## Network Details - -- **Chain ID**: 7668 -- **Chain Name**: TRN -- **Short Name**: trn-mainnet -- **Network ID**: 7668 -- **Currency**: - - **Name**: XRP - - **Symbol**: XRP - - **Decimals**: 6 - -## RPC URLs - -The Root Network - Mainnet can be accessed through the following RPC endpoints: - -- https://root.rootnet.live/archive -- wss://root.rootnet.live/archive/ws - -## The Root Network - Mainnet Block Explorers - -- [rootnet](https://explorer.rootnet.live) - -## Additional Information - -- **Official Website**: https://www.futureverse.com/technology/root - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/then-teal-meerkat.mdx b/docs/pages/solutions/chainlist/non-integrated/then-teal-meerkat.mdx deleted file mode 100644 index f0d07ac88c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/then-teal-meerkat.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: then-teal-meerkat - then-teal-meerkat Blockchain Network -description: Explore then-teal-meerkat, a blockchain network with chain ID 62615. Learn about its native currency, Ether, and how to interact with the network. ---- - -# then-teal-meerkat - -then-teal-meerkat is a blockchain network with chain ID 62615. - -## Network Details - -- **Chain ID**: 62615 -- **Chain Name**: then-teal-meerkat -- **Short Name**: then-teal-meerkat -- **Network ID**: 62615 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -then-teal-meerkat can be accessed through the following RPC endpoints: - -- https://rpc-then-teal-meerkat-ce9xudc3do.t.conduit.xyz - -## then-teal-meerkat Block Explorers - -- [then-teal-meerkat Explorer](https://explorer-then-teal-meerkat-ce9xudc3do.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/62615 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## then-teal-meerkat Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/theta-amber-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/theta-amber-testnet.mdx deleted file mode 100644 index e15cfd1f5b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/theta-amber-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Theta Amber Testnet - Theta Blockchain Network -description: Explore Theta Amber Testnet, a blockchain network with chain ID 364. Learn about its native currency, Theta Fuel, and how to interact with the network. ---- - -# Theta Amber Testnet - -Theta Amber Testnet is a blockchain network with chain ID 364. - -## Network Details - -- **Chain ID**: 364 -- **Chain Name**: Theta -- **Short Name**: theta-amber -- **Network ID**: 364 -- **Currency**: - - **Name**: Theta Fuel - - **Symbol**: TFUEL - - **Decimals**: 18 - -## RPC URLs - -Theta Amber Testnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-api-amber.thetatoken.org/rpc - -## Theta Amber Testnet Block Explorers - -- [Theta Amber Testnet Explorer](https://guardian-testnet-amber-explorer.thetatoken.org) - -## Additional Information - -- **Official Website**: https://www.thetatoken.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Theta Amber Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/theta-sapphire-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/theta-sapphire-testnet.mdx deleted file mode 100644 index 1307d3b36d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/theta-sapphire-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Theta Sapphire Testnet - Theta Blockchain Network -description: Explore Theta Sapphire Testnet, a blockchain network with chain ID 363. Learn about its native currency, Theta Fuel, and how to interact with the network. ---- - -# Theta Sapphire Testnet - -Theta Sapphire Testnet is a blockchain network with chain ID 363. - -## Network Details - -- **Chain ID**: 363 -- **Chain Name**: Theta -- **Short Name**: theta-sapphire -- **Network ID**: 363 -- **Currency**: - - **Name**: Theta Fuel - - **Symbol**: TFUEL - - **Decimals**: 18 - -## RPC URLs - -Theta Sapphire Testnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-api-sapphire.thetatoken.org/rpc - -## Theta Sapphire Testnet Block Explorers - -- [Theta Sapphire Testnet Explorer](https://guardian-testnet-sapphire-explorer.thetatoken.org) - -## Additional Information - -- **Official Website**: https://www.thetatoken.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Theta Sapphire Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/theta-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/theta-testnet.mdx deleted file mode 100644 index 76d62002fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/theta-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Theta Testnet - Theta Blockchain Network -description: Explore Theta Testnet, a blockchain network with chain ID 365. Learn about its native currency, Theta Fuel, and how to interact with the network. ---- - -# Theta Testnet - -Theta Testnet is a blockchain network with chain ID 365. - -## Network Details - -- **Chain ID**: 365 -- **Chain Name**: Theta -- **Short Name**: theta-testnet -- **Network ID**: 365 -- **Currency**: - - **Name**: Theta Fuel - - **Symbol**: TFUEL - - **Decimals**: 18 - -## RPC URLs - -Theta Testnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-api-testnet.thetatoken.org/rpc - -## Theta Testnet Block Explorers - -- [Theta Testnet Explorer](https://testnet-explorer.thetatoken.org) - -## Additional Information - -- **Official Website**: https://www.thetatoken.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Theta Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/theta.mdx b/docs/pages/solutions/chainlist/non-integrated/theta.mdx deleted file mode 100644 index 80a59814ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/theta.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Theta Mainnet - Theta Blockchain Network -description: Explore Theta Mainnet, a blockchain network with chain ID 361. Learn about its native currency, Theta Fuel, and how to interact with the network. ---- - -# Theta Mainnet - -Theta Mainnet is a blockchain network with chain ID 361. - -## Network Details - -- **Chain ID**: 361 -- **Chain Name**: Theta -- **Short Name**: theta-mainnet -- **Network ID**: 361 -- **Currency**: - - **Name**: Theta Fuel - - **Symbol**: TFUEL - - **Decimals**: 18 - -## RPC URLs - -Theta Mainnet can be accessed through the following RPC endpoints: - -- https://eth-rpc-api.thetatoken.org/rpc - -## Theta Mainnet Block Explorers - -- [Theta Mainnet Explorer](https://explorer.thetatoken.org) - -## Additional Information - -- **Official Website**: https://www.thetatoken.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thetan-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/thetan-testnet.mdx deleted file mode 100644 index 16fa3b1a79..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thetan-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thetan Testnet - Avalanche Blockchain Network -description: Explore Thetan Testnet, a blockchain network with chain ID 98857. Learn about its native currency, Thetan Testnet Token, and how to interact with the network. ---- - -# Thetan Testnet - -Thetan Testnet is a blockchain network with chain ID 98857. - -## Network Details - -- **Chain ID**: 98857 -- **Chain Name**: Avalanche -- **Short Name**: Thetan Testnet -- **Network ID**: 98857 -- **Currency**: - - **Name**: Thetan Testnet Token - - **Symbol**: THG - - **Decimals**: 18 - -## RPC URLs - -Thetan Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/thetantest/testnet/rpc - -## Thetan Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thetan Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-0.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-0.mdx deleted file mode 100644 index ec2b948444..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-0.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thinkium Mainnet Chain 0 - Thinkium Blockchain Network -description: Explore Thinkium Mainnet Chain 0, a blockchain network with chain ID 70000. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Mainnet Chain 0 - -Thinkium Mainnet Chain 0 is a blockchain network with chain ID 70000. - -## Network Details - -- **Chain ID**: 70000 -- **Chain Name**: Thinkium -- **Short Name**: TKM0 -- **Network ID**: 70000 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Mainnet Chain 0 can be accessed through the following RPC endpoints: - -- https://proxy.thinkiumrpc.net/ - -## Thinkium Mainnet Chain 0 Block Explorers - -- [thinkiumscan](https://chain0.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-1.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-1.mdx deleted file mode 100644 index 5acf3d66be..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-1.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thinkium Mainnet Chain 1 - Thinkium Blockchain Network -description: Explore Thinkium Mainnet Chain 1, a blockchain network with chain ID 70001. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Mainnet Chain 1 - -Thinkium Mainnet Chain 1 is a blockchain network with chain ID 70001. - -## Network Details - -- **Chain ID**: 70001 -- **Chain Name**: Thinkium -- **Short Name**: TKM1 -- **Network ID**: 70001 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Mainnet Chain 1 can be accessed through the following RPC endpoints: - -- https://proxy1.thinkiumrpc.net/ - -## Thinkium Mainnet Chain 1 Block Explorers - -- [thinkiumscan](https://chain1.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-103.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-103.mdx deleted file mode 100644 index 7131fde3ab..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-103.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thinkium Mainnet Chain 103 - Thinkium Blockchain Network -description: Explore Thinkium Mainnet Chain 103, a blockchain network with chain ID 70103. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Mainnet Chain 103 - -Thinkium Mainnet Chain 103 is a blockchain network with chain ID 70103. - -## Network Details - -- **Chain ID**: 70103 -- **Chain Name**: Thinkium -- **Short Name**: TKM103 -- **Network ID**: 70103 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Mainnet Chain 103 can be accessed through the following RPC endpoints: - -- https://proxy103.thinkiumrpc.net/ - -## Thinkium Mainnet Chain 103 Block Explorers - -- [thinkiumscan](https://chain103.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-2.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-2.mdx deleted file mode 100644 index 5ba6e232bf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-chain-2.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Thinkium Mainnet Chain 2 - Thinkium Blockchain Network -description: Explore Thinkium Mainnet Chain 2, a blockchain network with chain ID 70002. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Mainnet Chain 2 - -Thinkium Mainnet Chain 2 is a blockchain network with chain ID 70002. - -## Network Details - -- **Chain ID**: 70002 -- **Chain Name**: Thinkium -- **Short Name**: TKM2 -- **Network ID**: 70002 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Mainnet Chain 2 can be accessed through the following RPC endpoints: - -- https://proxy2.thinkiumrpc.net/ - -## Thinkium Mainnet Chain 2 Block Explorers - -- [thinkiumscan](https://chain2.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-0.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-0.mdx deleted file mode 100644 index 218793fe85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-0.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thinkium Testnet Chain 0 - Thinkium Blockchain Network -description: Explore Thinkium Testnet Chain 0, a blockchain network with chain ID 60000. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Testnet Chain 0 - -Thinkium Testnet Chain 0 is a blockchain network with chain ID 60000. - -## Network Details - -- **Chain ID**: 60000 -- **Chain Name**: Thinkium -- **Short Name**: TKM-test0 -- **Network ID**: 60000 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Testnet Chain 0 can be accessed through the following RPC endpoints: - -- https://test.thinkiumrpc.net/ - -## Thinkium Testnet Chain 0 Block Explorers - -- [thinkiumscan](https://test0.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thinkium Testnet Chain 0 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-1.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-1.mdx deleted file mode 100644 index f23ec3bedd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-1.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thinkium Testnet Chain 1 - Thinkium Blockchain Network -description: Explore Thinkium Testnet Chain 1, a blockchain network with chain ID 60001. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Testnet Chain 1 - -Thinkium Testnet Chain 1 is a blockchain network with chain ID 60001. - -## Network Details - -- **Chain ID**: 60001 -- **Chain Name**: Thinkium -- **Short Name**: TKM-test1 -- **Network ID**: 60001 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Testnet Chain 1 can be accessed through the following RPC endpoints: - -- https://test1.thinkiumrpc.net/ - -## Thinkium Testnet Chain 1 Block Explorers - -- [thinkiumscan](https://test1.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thinkium Testnet Chain 1 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-103.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-103.mdx deleted file mode 100644 index 3a2d36e1db..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-103.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thinkium Testnet Chain 103 - Thinkium Blockchain Network -description: Explore Thinkium Testnet Chain 103, a blockchain network with chain ID 60103. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Testnet Chain 103 - -Thinkium Testnet Chain 103 is a blockchain network with chain ID 60103. - -## Network Details - -- **Chain ID**: 60103 -- **Chain Name**: Thinkium -- **Short Name**: TKM-test103 -- **Network ID**: 60103 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Testnet Chain 103 can be accessed through the following RPC endpoints: - -- https://test103.thinkiumrpc.net/ - -## Thinkium Testnet Chain 103 Block Explorers - -- [thinkiumscan](https://test103.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thinkium Testnet Chain 103 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-2.mdx b/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-2.mdx deleted file mode 100644 index 6aecb72253..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thinkium-testnet-chain-2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Thinkium Testnet Chain 2 - Thinkium Blockchain Network -description: Explore Thinkium Testnet Chain 2, a blockchain network with chain ID 60002. Learn about its native currency, TKM, and how to interact with the network. ---- - -# Thinkium Testnet Chain 2 - -Thinkium Testnet Chain 2 is a blockchain network with chain ID 60002. - -## Network Details - -- **Chain ID**: 60002 -- **Chain Name**: Thinkium -- **Short Name**: TKM-test2 -- **Network ID**: 60002 -- **Currency**: - - **Name**: TKM - - **Symbol**: TKM - - **Decimals**: 18 - -## RPC URLs - -Thinkium Testnet Chain 2 can be accessed through the following RPC endpoints: - -- https://test2.thinkiumrpc.net/ - -## Thinkium Testnet Chain 2 Block Explorers - -- [thinkiumscan](https://test2.thinkiumscan.net) - -## Additional Information - -- **Official Website**: https://thinkium.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Thinkium Testnet Chain 2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thirdweb-test-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/thirdweb-test-subnet.mdx deleted file mode 100644 index dcd2674fc6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thirdweb-test-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: thirdweb test subnet - TWT Blockchain Network -description: Explore thirdweb test subnet, a blockchain network with chain ID 894538. Learn about its native currency, TWT, and how to interact with the network. ---- - -# thirdweb test subnet - -thirdweb test subnet is a blockchain network with chain ID 894538. - -## Network Details - -- **Chain ID**: 894538 -- **Chain Name**: TWT -- **Short Name**: twt -- **Network ID**: 894538 -- **Currency**: - - **Name**: TWT - - **Symbol**: TWT - - **Decimals**: 18 - -## RPC URLs - -thirdweb test subnet can be accessed through the following RPC endpoints: - - - -## thirdweb test subnet Block Explorers - -- [explorer](https://subnets-test.avax.network/thirdweb) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## thirdweb test subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/this-is-a-test.mdx b/docs/pages/solutions/chainlist/non-integrated/this-is-a-test.mdx deleted file mode 100644 index 2804edb928..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/this-is-a-test.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: This is a test - This is a test Blockchain Network -description: Explore This is a test, a blockchain network with chain ID 12345678. Learn about its native currency, Ether, and how to interact with the network. ---- - -# This is a test - -This is a test is a blockchain network with chain ID 12345678. - -## Network Details - -- **Chain ID**: 12345678 -- **Chain Name**: This is a test -- **Short Name**: This is a test -- **Network ID**: 12345678 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -This is a test can be accessed through the following RPC endpoints: - -- https://rpc-rollup-test-5dvpfcvmnw.t.conduit.xyz - -## This is a test Block Explorers - -- [This is a test Explorer](https://explorer-rollup-test-5dvpfcvmnw.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/12345678 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## This is a test Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thundercore-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/thundercore-testnet.mdx deleted file mode 100644 index 6d00a13cd4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thundercore-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: ThunderCore Testnet - TST Blockchain Network -description: Explore ThunderCore Testnet, a blockchain network with chain ID 18. Learn about its native currency, ThunderCore Testnet Token, and how to interact with the network. ---- - -# ThunderCore Testnet - -ThunderCore Testnet is a blockchain network with chain ID 18. - -## Network Details - -- **Chain ID**: 18 -- **Chain Name**: TST -- **Short Name**: TST -- **Network ID**: 18 -- **Currency**: - - **Name**: ThunderCore Testnet Token - - **Symbol**: TST - - **Decimals**: 18 - -## RPC URLs - -ThunderCore Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.thundercore.com -- https://thundercore-testnet.drpc.org -- wss://thundercore-testnet.drpc.org - -## ThunderCore Testnet Block Explorers - -- [thundercore-blockscout-testnet](https://explorer-testnet.thundercore.com) - -## Additional Information - -- **Official Website**: https://thundercore.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ThunderCore Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/thundercore.mdx b/docs/pages/solutions/chainlist/non-integrated/thundercore.mdx deleted file mode 100644 index e335d56a7a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/thundercore.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: ThunderCore Mainnet - TT Blockchain Network -description: Explore ThunderCore Mainnet, a blockchain network with chain ID 108. Learn about its native currency, ThunderCore Token, and how to interact with the network. ---- - -# ThunderCore Mainnet - -ThunderCore Mainnet is a blockchain network with chain ID 108. - -## Network Details - -- **Chain ID**: 108 -- **Chain Name**: TT -- **Short Name**: TT -- **Network ID**: 108 -- **Currency**: - - **Name**: ThunderCore Token - - **Symbol**: TT - - **Decimals**: 18 - -## RPC URLs - -ThunderCore Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.thundercore.com -- https://mainnet-rpc.thundertoken.net -- https://mainnet-rpc.thundercore.io - -## ThunderCore Mainnet Block Explorers - -- [thundercore-viewblock](https://viewblock.io/thundercore) - -## Additional Information - -- **Official Website**: https://thundercore.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tiltyard-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tiltyard-subnet.mdx deleted file mode 100644 index ea7da773a6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tiltyard-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tiltyard Subnet - TILTYARD Blockchain Network -description: Explore Tiltyard Subnet, a blockchain network with chain ID 1127469. Learn about its native currency, Tiltyard Token, and how to interact with the network. ---- - -# Tiltyard Subnet - -Tiltyard Subnet is a blockchain network with chain ID 1127469. - -## Network Details - -- **Chain ID**: 1127469 -- **Chain Name**: TILTYARD -- **Short Name**: tiltyard -- **Network ID**: 1127469 -- **Currency**: - - **Name**: Tiltyard Token - - **Symbol**: TILTG - - **Decimals**: 18 - -## RPC URLs - -Tiltyard Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/tiltyard/testnet/rpc - -## Tiltyard Subnet Block Explorers - -- [TILTYARD Explorer](http://testnet-explorer.tiltyard.gg) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tiltyard Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tiltyard.mdx b/docs/pages/solutions/chainlist/non-integrated/tiltyard.mdx deleted file mode 100644 index 73757c4682..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tiltyard.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tiltyard Mainnet Subnet - TILTYARD Blockchain Network -description: Explore Tiltyard Mainnet Subnet, a blockchain network with chain ID 710420. Learn about its native currency, TILT, and how to interact with the network. ---- - -# Tiltyard Mainnet Subnet - -Tiltyard Mainnet Subnet is a blockchain network with chain ID 710420. - -## Network Details - -- **Chain ID**: 710420 -- **Chain Name**: TILTYARD -- **Short Name**: tiltyardmainnet -- **Network ID**: 710420 -- **Currency**: - - **Name**: TILT - - **Symbol**: TILT - - **Decimals**: 18 - -## RPC URLs - -Tiltyard Mainnet Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/tiltyard/mainnet/rpc - -## Tiltyard Mainnet Subnet Block Explorers - -- [TILTYARD Explorer](https://subnets.avax.network/tiltyard) - -## Additional Information - -- **Official Website**: https://play.tiltyard.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tipboxcoin-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tipboxcoin-testnet.mdx deleted file mode 100644 index ebee271daf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tipboxcoin-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tipboxcoin Testnet - TPBX Blockchain Network -description: Explore Tipboxcoin Testnet, a blockchain network with chain ID 4141. Learn about its native currency, Tipboxcoin, and how to interact with the network. ---- - -# Tipboxcoin Testnet - -Tipboxcoin Testnet is a blockchain network with chain ID 4141. - -## Network Details - -- **Chain ID**: 4141 -- **Chain Name**: TPBX -- **Short Name**: TPBXt -- **Network ID**: 4141 -- **Currency**: - - **Name**: Tipboxcoin - - **Symbol**: TPBX - - **Decimals**: 18 - -## RPC URLs - -Tipboxcoin Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.tipboxcoin.net - -## Tipboxcoin Testnet Block Explorers - -- [Tipboxcoin](https://testnet.tipboxcoin.net) - -## Additional Information - -- **Official Website**: https://tipboxcoin.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tipboxcoin Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tipboxcoin.mdx b/docs/pages/solutions/chainlist/non-integrated/tipboxcoin.mdx deleted file mode 100644 index 11a7739bfc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tipboxcoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tipboxcoin Mainnet - TPBX Blockchain Network -description: Explore Tipboxcoin Mainnet, a blockchain network with chain ID 404040. Learn about its native currency, Tipboxcoin, and how to interact with the network. ---- - -# Tipboxcoin Mainnet - -Tipboxcoin Mainnet is a blockchain network with chain ID 404040. - -## Network Details - -- **Chain ID**: 404040 -- **Chain Name**: TPBX -- **Short Name**: TPBXm -- **Network ID**: 404040 -- **Currency**: - - **Name**: Tipboxcoin - - **Symbol**: TPBX - - **Decimals**: 18 - -## RPC URLs - -Tipboxcoin Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.tipboxcoin.net - -## Tipboxcoin Mainnet Block Explorers - -- [Tipboxcoin](https://tipboxcoin.net) - -## Additional Information - -- **Official Website**: https://tipboxcoin.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/titan-(tkx)-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/titan-(tkx)-testnet.mdx deleted file mode 100644 index 2e58a69df2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/titan-(tkx)-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Titan (TKX) Testnet - Titan (TKX) Blockchain Network -description: Explore Titan (TKX) Testnet, a blockchain network with chain ID 18889. Learn about its native currency, Titan tkx, and how to interact with the network. ---- - -# Titan (TKX) Testnet - -Titan (TKX) Testnet is a blockchain network with chain ID 18889. - -## Network Details - -- **Chain ID**: 18889 -- **Chain Name**: Titan (TKX) -- **Short Name**: titan_tkx-testnet -- **Network ID**: 18889 -- **Currency**: - - **Name**: Titan tkx - - **Symbol**: TKX - - **Decimals**: 18 - -## RPC URLs - -Titan (TKX) Testnet can be accessed through the following RPC endpoints: - -- https://titan-testnet-json-rpc.titanlab.io -- https://titan-testnet-json-rpc-1.titanlab.io -- https://titan-testnet-json-rpc-2.titanlab.io - -## Titan (TKX) Testnet Block Explorers - -- [Titan Explorer](https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet) - -## Additional Information - -- **Official Website**: https://titanlab.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Titan (TKX) Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/titan-(tkx).mdx b/docs/pages/solutions/chainlist/non-integrated/titan-(tkx).mdx deleted file mode 100644 index 46be1fccda..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/titan-(tkx).mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Titan (TKX) - Titan (TKX) Blockchain Network -description: Explore Titan (TKX), a blockchain network with chain ID 18888. Learn about its native currency, Titan tkx, and how to interact with the network. ---- - -# Titan (TKX) - -Titan (TKX) is a blockchain network with chain ID 18888. - -## Network Details - -- **Chain ID**: 18888 -- **Chain Name**: Titan (TKX) -- **Short Name**: titan_tkx -- **Network ID**: 18888 -- **Currency**: - - **Name**: Titan tkx - - **Symbol**: TKX - - **Decimals**: 18 - -## RPC URLs - -Titan (TKX) can be accessed through the following RPC endpoints: - -- https://titan-json-rpc.titanlab.io -- https://titan-json-rpc-tokyo.titanlab.io -- https://titan-json-rpc-seoul.titanlab.io -- https://titan-json-rpc-hongkong.titanlab.io - -## Titan (TKX) Block Explorers - -- [Titan Explorer](https://tkxscan.io/Titan) - -## Additional Information - -- **Official Website**: https://titanlab.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/titan.mdx b/docs/pages/solutions/chainlist/non-integrated/titan.mdx deleted file mode 100644 index b94c13831c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/titan.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Titan - ETH Blockchain Network -description: Explore Titan, a blockchain network with chain ID 55004. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Titan - -Titan is a blockchain network with chain ID 55004. - -## Network Details - -- **Chain ID**: 55004 -- **Chain Name**: ETH -- **Short Name**: teth -- **Network ID**: 55004 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Titan can be accessed through the following RPC endpoints: - -- https://rpc.titan.tokamak.network -- wss://rpc.titan.tokamak.network - -## Titan Block Explorers - -- [blockscout](https://explorer.titan.tokamak.network) - -## Additional Information - -- **Official Website**: https://tokamak.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tixchain.mdx b/docs/pages/solutions/chainlist/non-integrated/tixchain.mdx deleted file mode 100644 index ca25c43f75..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tixchain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TixChain - Avalanche Blockchain Network -description: Explore TixChain, a blockchain network with chain ID 723107. Learn about its native currency, TixChain Token, and how to interact with the network. ---- - -# TixChain - -TixChain is a blockchain network with chain ID 723107. - -## Network Details - -- **Chain ID**: 723107 -- **Chain Name**: Avalanche -- **Short Name**: TixChain -- **Network ID**: 723107 -- **Currency**: - - **Name**: TixChain Token - - **Symbol**: TIX - - **Decimals**: 18 - -## RPC URLs - -TixChain can be accessed through the following RPC endpoints: - -- https://testnet-tixchain-w00c4.avax-test.network/ext/bc/rbPy3vFTgtGccWouLkCXqgDTxyEHEpam2kA24fZUmjgKMNcXX/rpc?token=7205a9c5810d46a49e684d0cd5c88c8712635f38e35d74dedd9decd5d8f32e12 - -## TixChain Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TixChain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tlchain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/tlchain-network.mdx deleted file mode 100644 index f5ba8ec26a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tlchain-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TLChain Network Mainnet - TLC Blockchain Network -description: Explore TLChain Network Mainnet, a blockchain network with chain ID 5177. Learn about its native currency, TLChain Network, and how to interact with the network. ---- - -# TLChain Network Mainnet - -TLChain Network Mainnet is a blockchain network with chain ID 5177. - -## Network Details - -- **Chain ID**: 5177 -- **Chain Name**: TLC -- **Short Name**: tlc -- **Network ID**: 5177 -- **Currency**: - - **Name**: TLChain Network - - **Symbol**: TLC - - **Decimals**: 18 - -## RPC URLs - -TLChain Network Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.tlxscan.com/ - -## TLChain Network Mainnet Block Explorers - -- [TLChain Explorer](https://explorer.tlchain.network) - -## Additional Information - -- **Official Website**: https://tlchain.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tmy-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/tmy-chain.mdx deleted file mode 100644 index e532f9ec73..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tmy-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TMY Chain - TMY Blockchain Network -description: Explore TMY Chain, a blockchain network with chain ID 8768. Learn about its native currency, TMY, and how to interact with the network. ---- - -# TMY Chain - -TMY Chain is a blockchain network with chain ID 8768. - -## Network Details - -- **Chain ID**: 8768 -- **Chain Name**: TMY -- **Short Name**: tmy -- **Network ID**: 8768 -- **Currency**: - - **Name**: TMY - - **Symbol**: TMY - - **Decimals**: 18 - -## RPC URLs - -TMY Chain can be accessed through the following RPC endpoints: - -- https://node1.tmyblockchain.org/rpc - -## TMY Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://tmychain.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tnet-01-15.mdx b/docs/pages/solutions/chainlist/non-integrated/tnet-01-15.mdx deleted file mode 100644 index 2047deac61..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tnet-01-15.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tnet 01-15 - Avalanche Blockchain Network -description: Explore Tnet 01-15, a blockchain network with chain ID 37767. Learn about its native currency, Tnet 01-15 Token, and how to interact with the network. ---- - -# Tnet 01-15 - -Tnet 01-15 is a blockchain network with chain ID 37767. - -## Network Details - -- **Chain ID**: 37767 -- **Chain Name**: Avalanche -- **Short Name**: Tnet 01-15 -- **Network ID**: 37767 -- **Currency**: - - **Name**: Tnet 01-15 Token - - **Symbol**: LFC - - **Decimals**: 18 - -## RPC URLs - -Tnet 01-15 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Tnet 01-15 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tnet 01-15 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tnet-02-27.mdx b/docs/pages/solutions/chainlist/non-integrated/tnet-02-27.mdx deleted file mode 100644 index e94650c14c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tnet-02-27.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tnet 02-27 - Avalanche Blockchain Network -description: Explore Tnet 02-27, a blockchain network with chain ID 24347. Learn about its native currency, Tnet 02-27 Token, and how to interact with the network. ---- - -# Tnet 02-27 - -Tnet 02-27 is a blockchain network with chain ID 24347. - -## Network Details - -- **Chain ID**: 24347 -- **Chain Name**: Avalanche -- **Short Name**: Tnet 02-27 -- **Network ID**: 24347 -- **Currency**: - - **Name**: Tnet 02-27 Token - - **Symbol**: TJO - - **Decimals**: 18 - -## RPC URLs - -Tnet 02-27 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Tnet 02-27 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tnet 02-27 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tnet02-06.mdx b/docs/pages/solutions/chainlist/non-integrated/tnet02-06.mdx deleted file mode 100644 index adc195fd04..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tnet02-06.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tnet02-06 - Avalanche Blockchain Network -description: Explore Tnet02-06, a blockchain network with chain ID 30266. Learn about its native currency, Tnet02-06 Token, and how to interact with the network. ---- - -# Tnet02-06 - -Tnet02-06 is a blockchain network with chain ID 30266. - -## Network Details - -- **Chain ID**: 30266 -- **Chain Name**: Avalanche -- **Short Name**: Tnet02-06 -- **Network ID**: 30266 -- **Currency**: - - **Name**: Tnet02-06 Token - - **Symbol**: LFC - - **Decimals**: 18 - -## RPC URLs - -Tnet02-06 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Tnet02-06 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tnet02-06 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tnetv2.mdx b/docs/pages/solutions/chainlist/non-integrated/tnetv2.mdx deleted file mode 100644 index e8090204d9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tnetv2.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tnetv2 - Avalanche Blockchain Network -description: Explore Tnetv2, a blockchain network with chain ID 63891. Learn about its native currency, Tnetv2 Token, and how to interact with the network. ---- - -# Tnetv2 - -Tnetv2 is a blockchain network with chain ID 63891. - -## Network Details - -- **Chain ID**: 63891 -- **Chain Name**: Avalanche -- **Short Name**: Tnetv2 -- **Network ID**: 63891 -- **Currency**: - - **Name**: Tnetv2 Token - - **Symbol**: LFC - - **Decimals**: 18 - -## RPC URLs - -Tnetv2 can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Tnetv2 Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tnetv2 Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tobe-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/tobe-chain.mdx deleted file mode 100644 index ffc47995ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tobe-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tobe Chain - TBC Blockchain Network -description: Explore Tobe Chain, a blockchain network with chain ID 4080. Learn about its native currency, Tobe Coin, and how to interact with the network. ---- - -# Tobe Chain - -Tobe Chain is a blockchain network with chain ID 4080. - -## Network Details - -- **Chain ID**: 4080 -- **Chain Name**: TBC -- **Short Name**: tbc -- **Network ID**: 4080 -- **Currency**: - - **Name**: Tobe Coin - - **Symbol**: TBC - - **Decimals**: 18 - -## RPC URLs - -Tobe Chain can be accessed through the following RPC endpoints: - -- https://rpc.tobescan.com - -## Tobe Chain Block Explorers - -- [tobescan](https://tobescan.com) - -## Additional Information - -- **Official Website**: https://tobechain.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/toki-network.mdx b/docs/pages/solutions/chainlist/non-integrated/toki-network.mdx deleted file mode 100644 index 2a6caa8783..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/toki-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Toki Network - TOKI Blockchain Network -description: Explore Toki Network, a blockchain network with chain ID 8654. Learn about its native currency, Toki, and how to interact with the network. ---- - -# Toki Network - -Toki Network is a blockchain network with chain ID 8654. - -## Network Details - -- **Chain ID**: 8654 -- **Chain Name**: TOKI -- **Short Name**: toki -- **Network ID**: 8654 -- **Currency**: - - **Name**: Toki - - **Symbol**: TOKI - - **Decimals**: 18 - -## RPC URLs - -Toki Network can be accessed through the following RPC endpoints: - -- https://mainnet.buildwithtoki.com/v0/rpc - -## Toki Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.buildwithtoki.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/toki-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/toki-testnet.mdx deleted file mode 100644 index 201b66f9fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/toki-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Toki Testnet - TOKI Blockchain Network -description: Explore Toki Testnet, a blockchain network with chain ID 8655. Learn about its native currency, Toki, and how to interact with the network. ---- - -# Toki Testnet - -Toki Testnet is a blockchain network with chain ID 8655. - -## Network Details - -- **Chain ID**: 8655 -- **Chain Name**: TOKI -- **Short Name**: toki-testnet -- **Network ID**: 8655 -- **Currency**: - - **Name**: Toki - - **Symbol**: TOKI - - **Decimals**: 18 - -## RPC URLs - -Toki Testnet can be accessed through the following RPC endpoints: - -- https://testnet.buildwithtoki.com/v0/rpc - -## Toki Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.buildwithtoki.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Toki Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tomb-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/tomb-chain.mdx deleted file mode 100644 index 73ecf324ef..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tomb-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tomb Chain Mainnet - Tomb Chain Blockchain Network -description: Explore Tomb Chain Mainnet, a blockchain network with chain ID 6969. Learn about its native currency, Tomb, and how to interact with the network. ---- - -# Tomb Chain Mainnet - -Tomb Chain Mainnet is a blockchain network with chain ID 6969. - -## Network Details - -- **Chain ID**: 6969 -- **Chain Name**: Tomb Chain -- **Short Name**: tombchain -- **Network ID**: 6969 -- **Currency**: - - **Name**: Tomb - - **Symbol**: TOMB - - **Decimals**: 18 - -## RPC URLs - -Tomb Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.tombchain.com/ - -## Tomb Chain Mainnet Block Explorers - -- [tombscout](https://tombscout.com) - -## Additional Information - -- **Official Website**: https://tombchain.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tool-global-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tool-global-testnet.mdx deleted file mode 100644 index d1576e386c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tool-global-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TOOL Global Testnet - OLO Blockchain Network -description: Explore TOOL Global Testnet, a blockchain network with chain ID 8724. Learn about its native currency, TOOL Global, and how to interact with the network. ---- - -# TOOL Global Testnet - -TOOL Global Testnet is a blockchain network with chain ID 8724. - -## Network Details - -- **Chain ID**: 8724 -- **Chain Name**: OLO -- **Short Name**: tolo -- **Network ID**: 8724 -- **Currency**: - - **Name**: TOOL Global - - **Symbol**: OLO - - **Decimals**: 18 - -## RPC URLs - -TOOL Global Testnet can be accessed through the following RPC endpoints: - -- https://testnet-web3.wolot.io - -## TOOL Global Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://testnet-explorer.wolot.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TOOL Global Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tool-global.mdx b/docs/pages/solutions/chainlist/non-integrated/tool-global.mdx deleted file mode 100644 index e416743f45..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tool-global.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TOOL Global Mainnet - OLO Blockchain Network -description: Explore TOOL Global Mainnet, a blockchain network with chain ID 8723. Learn about its native currency, TOOL Global, and how to interact with the network. ---- - -# TOOL Global Mainnet - -TOOL Global Mainnet is a blockchain network with chain ID 8723. - -## Network Details - -- **Chain ID**: 8723 -- **Chain Name**: OLO -- **Short Name**: olo -- **Network ID**: 8723 -- **Currency**: - - **Name**: TOOL Global - - **Symbol**: OLO - - **Decimals**: 18 - -## RPC URLs - -TOOL Global Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-web3.wolot.io - -## TOOL Global Mainnet Block Explorers - -- [OLO Block Explorer](https://www.olo.network) - -## Additional Information - -- **Official Website**: https://ibdt.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/top-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/top-evm.mdx deleted file mode 100644 index 254467ee77..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/top-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TOP Mainnet EVM - TOP Blockchain Network -description: Explore TOP Mainnet EVM, a blockchain network with chain ID 980. Learn about its native currency, Ether, and how to interact with the network. ---- - -# TOP Mainnet EVM - -TOP Mainnet EVM is a blockchain network with chain ID 980. - -## Network Details - -- **Chain ID**: 980 -- **Chain Name**: TOP -- **Short Name**: top_evm -- **Network ID**: 980 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -TOP Mainnet EVM can be accessed through the following RPC endpoints: - -- https://ethapi.topnetwork.org - -## TOP Mainnet EVM Block Explorers - -- [topscan.dev](https://www.topscan.io) - -## Additional Information - -- **Official Website**: https://www.topnetwork.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/top.mdx b/docs/pages/solutions/chainlist/non-integrated/top.mdx deleted file mode 100644 index 12a4986e85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/top.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TOP Mainnet - TOP Blockchain Network -description: Explore TOP Mainnet, a blockchain network with chain ID 989. Learn about its native currency, TOP, and how to interact with the network. ---- - -# TOP Mainnet - -TOP Mainnet is a blockchain network with chain ID 989. - -## Network Details - -- **Chain ID**: 989 -- **Chain Name**: TOP -- **Short Name**: top -- **Network ID**: 989 -- **Currency**: - - **Name**: TOP - - **Symbol**: TOP - - **Decimals**: 6 - -## RPC URLs - -TOP Mainnet can be accessed through the following RPC endpoints: - - - -## TOP Mainnet Block Explorers - -- [topscan.dev](https://www.topscan.io) - -## Additional Information - -- **Official Website**: https://www.topnetwork.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/toronet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/toronet-testnet.mdx deleted file mode 100644 index 152021eab7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/toronet-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Toronet Testnet - Toronet Blockchain Network -description: Explore Toronet Testnet, a blockchain network with chain ID 54321. Learn about its native currency, Toro, and how to interact with the network. ---- - -# Toronet Testnet - -Toronet Testnet is a blockchain network with chain ID 54321. - -## Network Details - -- **Chain ID**: 54321 -- **Chain Name**: Toronet -- **Short Name**: ToronetTestnet -- **Network ID**: 54321 -- **Currency**: - - **Name**: Toro - - **Symbol**: TORO - - **Decimals**: 18 - -## RPC URLs - -Toronet Testnet can be accessed through the following RPC endpoints: - -- http://testnet.toronet.org/rpc - -## Toronet Testnet Block Explorers - -- [toronet_explorer](https://testnet.toronet.org) - -## Additional Information - -- **Official Website**: https://toronet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Toronet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/toronet.mdx b/docs/pages/solutions/chainlist/non-integrated/toronet.mdx deleted file mode 100644 index aa9a80bd1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/toronet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Toronet Mainnet - Toronet Blockchain Network -description: Explore Toronet Mainnet, a blockchain network with chain ID 77777. Learn about its native currency, Toro, and how to interact with the network. ---- - -# Toronet Mainnet - -Toronet Mainnet is a blockchain network with chain ID 77777. - -## Network Details - -- **Chain ID**: 77777 -- **Chain Name**: Toronet -- **Short Name**: Toronet -- **Network ID**: 77777 -- **Currency**: - - **Name**: Toro - - **Symbol**: TORO - - **Decimals**: 18 - -## RPC URLs - -Toronet Mainnet can be accessed through the following RPC endpoints: - -- http://toronet.org/rpc - -## Toronet Mainnet Block Explorers - -- [toronet_explorer](https://toronet.org/explorer) - -## Additional Information - -- **Official Website**: https://toronet.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/torus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/torus-testnet.mdx deleted file mode 100644 index ba64e1c9e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/torus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Torus Testnet - TQF Blockchain Network -description: Explore Torus Testnet, a blockchain network with chain ID 8194. Learn about its native currency, tTQF, and how to interact with the network. ---- - -# Torus Testnet - -Torus Testnet is a blockchain network with chain ID 8194. - -## Network Details - -- **Chain ID**: 8194 -- **Chain Name**: TQF -- **Short Name**: ttqf -- **Network ID**: 8194 -- **Currency**: - - **Name**: tTQF - - **Symbol**: TTQF - - **Decimals**: 18 - -## RPC URLs - -Torus Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.toruschain.com - -## Torus Testnet Block Explorers - -- [blockscout](https://testnet.toruscan.com) - -## Additional Information - -- **Official Website**: https://docs.toruschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Torus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/torus.mdx b/docs/pages/solutions/chainlist/non-integrated/torus.mdx deleted file mode 100644 index d7e92c86a7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/torus.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Torus Mainnet - TQF Blockchain Network -description: Explore Torus Mainnet, a blockchain network with chain ID 8192. Learn about its native currency, TQF, and how to interact with the network. ---- - -# Torus Mainnet - -Torus Mainnet is a blockchain network with chain ID 8192. - -## Network Details - -- **Chain ID**: 8192 -- **Chain Name**: TQF -- **Short Name**: tqf -- **Network ID**: 8192 -- **Currency**: - - **Name**: TQF - - **Symbol**: TQF - - **Decimals**: 18 - -## RPC URLs - -Torus Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.toruschain.com - -## Torus Mainnet Block Explorers - -- [blockscout](https://toruscan.com) - -## Additional Information - -- **Official Website**: https://docs.toruschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/traderlands-sepolia.mdx b/docs/pages/solutions/chainlist/non-integrated/traderlands-sepolia.mdx deleted file mode 100644 index c10a643f83..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/traderlands-sepolia.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: traderlands-sepolia - 3839 Blockchain Network -description: Explore traderlands-sepolia, a blockchain network with chain ID 3839. Learn about its native currency, Traderlands, and how to interact with the network. ---- - -# traderlands-sepolia - -traderlands-sepolia is a blockchain network with chain ID 3839. - -## Network Details - -- **Chain ID**: 3839 -- **Chain Name**: 3839 -- **Short Name**: Tradetest -- **Network ID**: 3839 -- **Currency**: - - **Name**: Traderlands - - **Symbol**: TRADE - - **Decimals**: 18 - -## RPC URLs - -traderlands-sepolia can be accessed through the following RPC endpoints: - -- https://traderlands-sepolia.rpc.caldera.xyz/http - -## traderlands-sepolia Block Explorers - -- [traderlands explorer](https://sepolia.arbiscan.io/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## traderlands-sepolia Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/traderlands-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/traderlands-testnet.mdx deleted file mode 100644 index 55d65c4f2c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/traderlands-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Traderlands Testnet - Avalanche Blockchain Network -description: Explore Traderlands Testnet, a blockchain network with chain ID 1838. Learn about its native currency, Traderlands Testnet Token, and how to interact with the network. ---- - -# Traderlands Testnet - -Traderlands Testnet is a blockchain network with chain ID 1838. - -## Network Details - -- **Chain ID**: 1838 -- **Chain Name**: Avalanche -- **Short Name**: Traderlands Testnet -- **Network ID**: 1838 -- **Currency**: - - **Name**: Traderlands Testnet Token - - **Symbol**: TDL3 - - **Decimals**: 18 - -## RPC URLs - -Traderlands Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/traderland/testnet/rpc - -## Traderlands Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Traderlands Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/treasure-ruby.mdx b/docs/pages/solutions/chainlist/non-integrated/treasure-ruby.mdx deleted file mode 100644 index ee6f19a2e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/treasure-ruby.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Treasure Ruby - TRS Blockchain Network -description: Explore Treasure Ruby, a blockchain network with chain ID 978657. Learn about its native currency, Testnet MAGIC, and how to interact with the network. ---- - -# Treasure Ruby - -Treasure Ruby is a blockchain network with chain ID 978657. - -## Network Details - -- **Chain ID**: 978657 -- **Chain Name**: TRS -- **Short Name**: treasure-ruby -- **Network ID**: 978657 -- **Currency**: - - **Name**: Testnet MAGIC - - **Symbol**: MAGIC - - **Decimals**: 18 - -## RPC URLs - -Treasure Ruby can be accessed through the following RPC endpoints: - -- https://rpc-testnet.treasure.lol/http -- wss://rpc-testnet.treasure.lol/ws - -## Treasure Ruby Block Explorers - -- [treasurescan](https://testnet.treasurescan.io) - -## Additional Information - -- **Official Website**: https://portal.treasure.lol - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Treasure Ruby Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/treasurenet-alpha.mdx b/docs/pages/solutions/chainlist/non-integrated/treasurenet-alpha.mdx deleted file mode 100644 index 8190aba6ae..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/treasurenet-alpha.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Treasurenet Mainnet Alpha - Treasurenet Mainnet Alpha Blockchain Network -description: Explore Treasurenet Mainnet Alpha, a blockchain network with chain ID 5002. Learn about its native currency, UNIT, and how to interact with the network. ---- - -# Treasurenet Mainnet Alpha - -Treasurenet Mainnet Alpha is a blockchain network with chain ID 5002. - -## Network Details - -- **Chain ID**: 5002 -- **Chain Name**: Treasurenet Mainnet Alpha -- **Short Name**: treasurenet -- **Network ID**: 5002 -- **Currency**: - - **Name**: UNIT - - **Symbol**: UNIT - - **Decimals**: 18 - -## RPC URLs - -Treasurenet Mainnet Alpha can be accessed through the following RPC endpoints: - -- https://node0.treasurenet.io -- https://node1.treasurenet.io -- https://node2.treasurenet.io -- https://node3.treasurenet.io - -## Treasurenet Mainnet Alpha Block Explorers - -- [Treasurenet EVM BlockExplorer](https://evmexplorer.treasurenet.io) - -## Additional Information - -- **Official Website**: https://www.treasurenet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/treasurenet-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/treasurenet-testnet.mdx deleted file mode 100644 index 0ba5d7a47a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/treasurenet-testnet.mdx +++ /dev/null @@ -1,44 +0,0 @@ ---- -title: Treasurenet Testnet - Treasurenet Testnet Blockchain Network -description: Explore Treasurenet Testnet, a blockchain network with chain ID 5005. Learn about its native currency, UNIT, and how to interact with the network. ---- - -# Treasurenet Testnet - -Treasurenet Testnet is a blockchain network with chain ID 5005. - -## Network Details - -- **Chain ID**: 5005 -- **Chain Name**: Treasurenet Testnet -- **Short Name**: tntest -- **Network ID**: 5005 -- **Currency**: - - **Name**: UNIT - - **Symbol**: UNIT - - **Decimals**: 18 - -## RPC URLs - -Treasurenet Testnet can be accessed through the following RPC endpoints: - -- https://node0.testnet.treasurenet.io -- https://node1.testnet.treasurenet.io -- https://node2.testnet.treasurenet.io -- https://node3.testnet.treasurenet.io - -## Treasurenet Testnet Block Explorers - -- [Treasurenet EVM BlockExplorer](https://evmexplorer.testnet.treasurenet.io) - -## Additional Information - -- **Official Website**: https://www.testnet.treasurenet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Treasurenet Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/trendz-blockchain.mdx b/docs/pages/solutions/chainlist/non-integrated/trendz-blockchain.mdx deleted file mode 100644 index f5a7d65f14..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/trendz-blockchain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Trendz Blockchain - Trendz Blockchain Blockchain Network -description: Explore Trendz Blockchain, a blockchain network with chain ID 71213. Learn about its native currency, Trendz, and how to interact with the network. ---- - -# Trendz Blockchain - -Trendz Blockchain is a blockchain network with chain ID 71213. - -## Network Details - -- **Chain ID**: 71213 -- **Chain Name**: Trendz Blockchain -- **Short Name**: Trendz -- **Network ID**: 71213 -- **Currency**: - - **Name**: Trendz - - **Symbol**: TRB - - **Decimals**: 18 - -## RPC URLs - -Trendz Blockchain can be accessed through the following RPC endpoints: - -- https://t-rpc.trendzblockchain.com - -## Trendz Blockchain Block Explorers - -- [T-Scan](https://t-scan.trendzblockchain.com/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Trendz Blockchain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tres-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tres-testnet.mdx deleted file mode 100644 index 9205e23ae9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tres-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Tres Testnet - TresLeches Blockchain Network -description: Explore Tres Testnet, a blockchain network with chain ID 6065. Learn about its native currency, TRES, and how to interact with the network. ---- - -# Tres Testnet - -Tres Testnet is a blockchain network with chain ID 6065. - -## Network Details - -- **Chain ID**: 6065 -- **Chain Name**: TresLeches -- **Short Name**: TRESTEST -- **Network ID**: 6065 -- **Currency**: - - **Name**: TRES - - **Symbol**: TRES - - **Decimals**: 18 - -## RPC URLs - -Tres Testnet can be accessed through the following RPC endpoints: - -- https://rpc-test.tresleches.finance/ - -## Tres Testnet Block Explorers - -- [treslechesexplorer](https://explorer-test.tresleches.finance) - -## Additional Information - -- **Official Website**: https://treschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tres Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tres.mdx b/docs/pages/solutions/chainlist/non-integrated/tres.mdx deleted file mode 100644 index c4a1455226..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tres.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Tres Mainnet - TresLeches Blockchain Network -description: Explore Tres Mainnet, a blockchain network with chain ID 6066. Learn about its native currency, TRES, and how to interact with the network. ---- - -# Tres Mainnet - -Tres Mainnet is a blockchain network with chain ID 6066. - -## Network Details - -- **Chain ID**: 6066 -- **Chain Name**: TresLeches -- **Short Name**: TRESMAIN -- **Network ID**: 6066 -- **Currency**: - - **Name**: TRES - - **Symbol**: TRES - - **Decimals**: 18 - -## RPC URLs - -Tres Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.tresleches.finance/ -- https://rpc.treschain.io/ - -## Tres Mainnet Block Explorers - -- [treslechesexplorer](https://explorer.tresleches.finance) - -## Additional Information - -- **Official Website**: https://treschain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tritanium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tritanium-testnet.mdx deleted file mode 100644 index 115fbfe157..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tritanium-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Tritanium Testnet - TRITANIUM Blockchain Network -description: Explore Tritanium Testnet, a blockchain network with chain ID 5353. Learn about its native currency, Tritanium Native Token, and how to interact with the network. ---- - -# Tritanium Testnet - -Tritanium Testnet is a blockchain network with chain ID 5353. - -## Network Details - -- **Chain ID**: 5353 -- **Chain Name**: TRITANIUM -- **Short Name**: ttrn -- **Network ID**: 5353 -- **Currency**: - - **Name**: Tritanium Native Token - - **Symbol**: tTRN - - **Decimals**: 18 - -## RPC URLs - -Tritanium Testnet can be accessed through the following RPC endpoints: - -- https://nodetestnet-station-one.tritanium.network/ -- https://nodetestnet-station-two.tritanium.network/ - -## Tritanium Testnet Block Explorers - -- [TRITANIUM Testnet Explorer](https://testnet.tritanium.network) - -## Additional Information - -- **Official Website**: https://tritanium.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Tritanium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/trust-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/trust-evm-testnet.mdx deleted file mode 100644 index 83207df4e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/trust-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Trust EVM Testnet - Trust EVM Testnet Blockchain Network -description: Explore Trust EVM Testnet, a blockchain network with chain ID 15555. Learn about its native currency, Trust EVM, and how to interact with the network. ---- - -# Trust EVM Testnet - -Trust EVM Testnet is a blockchain network with chain ID 15555. - -## Network Details - -- **Chain ID**: 15555 -- **Chain Name**: Trust EVM Testnet -- **Short Name**: TrustTestnet -- **Network ID**: 15555 -- **Currency**: - - **Name**: Trust EVM - - **Symbol**: EVM - - **Decimals**: 18 - -## RPC URLs - -Trust EVM Testnet can be accessed through the following RPC endpoints: - -- https://api.testnet-dev.trust.one - -## Trust EVM Testnet Block Explorers - -- [Trust EVM Explorer](https://trustscan.one) - -## Additional Information - -- **Official Website**: https://www.trust.one/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Trust EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tsc-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/tsc-testnet.mdx deleted file mode 100644 index ba92409f83..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tsc-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: TSC Testnet - Trust Smart Chain Testnet Blockchain Network -description: Explore TSC Testnet, a blockchain network with chain ID 820522. Learn about its native currency, TAS, and how to interact with the network. ---- - -# TSC Testnet - -TSC Testnet is a blockchain network with chain ID 820522. - -## Network Details - -- **Chain ID**: 820522 -- **Chain Name**: Trust Smart Chain Testnet -- **Short Name**: tTSC -- **Network ID**: 820522 -- **Currency**: - - **Name**: TAS - - **Symbol**: tTAS - - **Decimals**: 18 - -## RPC URLs - -TSC Testnet can be accessed through the following RPC endpoints: - -- https://testnet.tscscan.io/testrpc - -## TSC Testnet Block Explorers - -- [tscscan](https://testnet.tscscan.io) - -## Additional Information - -- **Official Website**: https://www.trias.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## TSC Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/tsc.mdx b/docs/pages/solutions/chainlist/non-integrated/tsc.mdx deleted file mode 100644 index e9b6f78626..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tsc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TSC Mainnet - Trust Smart Chain Blockchain Network -description: Explore TSC Mainnet, a blockchain network with chain ID 345. Learn about its native currency, TAS, and how to interact with the network. ---- - -# TSC Mainnet - -TSC Mainnet is a blockchain network with chain ID 345. - -## Network Details - -- **Chain ID**: 345 -- **Chain Name**: Trust Smart Chain -- **Short Name**: TSC -- **Network ID**: 345 -- **Currency**: - - **Name**: TAS - - **Symbol**: TAS - - **Decimals**: 18 - -## RPC URLs - -TSC Mainnet can be accessed through the following RPC endpoints: - -- https://rpc01.trias.one - -## TSC Mainnet Block Explorers - -- [tscscan](https://www.tscscan.io) - -## Additional Information - -- **Official Website**: https://www.trias.one - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ttcoin-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ttcoin-smart-chain.mdx deleted file mode 100644 index 305a7a6ae1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ttcoin-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: TTcoin Smart Chain Mainnet - TSC Blockchain Network -description: Explore TTcoin Smart Chain Mainnet, a blockchain network with chain ID 330844. Learn about its native currency, TTcoin, and how to interact with the network. ---- - -# TTcoin Smart Chain Mainnet - -TTcoin Smart Chain Mainnet is a blockchain network with chain ID 330844. - -## Network Details - -- **Chain ID**: 330844 -- **Chain Name**: TSC -- **Short Name**: tc -- **Network ID**: 330844 -- **Currency**: - - **Name**: TTcoin - - **Symbol**: TC - - **Decimals**: 18 - -## RPC URLs - -TTcoin Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.tscscan.com - -## TTcoin Smart Chain Mainnet Block Explorers - -- [TTcoin Smart Chain Explorer](https://tscscan.com) - -## Additional Information - -- **Official Website**: https://ttcoin.info/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/turkey-demo-dev.mdx b/docs/pages/solutions/chainlist/non-integrated/turkey-demo-dev.mdx deleted file mode 100644 index 678187ed26..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/turkey-demo-dev.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Turkey Demo Dev - ETH Blockchain Network -description: Explore Turkey Demo Dev, a blockchain network with chain ID 1731313. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Turkey Demo Dev - -Turkey Demo Dev is a blockchain network with chain ID 1731313. - -## Network Details - -- **Chain ID**: 1731313 -- **Chain Name**: ETH -- **Short Name**: TDD -- **Network ID**: 1731313 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Turkey Demo Dev can be accessed through the following RPC endpoints: - -- https://devchain-poa.huabeizhenxuan.com - -## Turkey Demo Dev Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/tycooncoin.mdx b/docs/pages/solutions/chainlist/non-integrated/tycooncoin.mdx deleted file mode 100644 index 781921f979..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/tycooncoin.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Tycooncoin - TYCON Blockchain Network -description: Explore Tycooncoin, a blockchain network with chain ID 3630. Learn about its native currency, Tycooncoin, and how to interact with the network. ---- - -# Tycooncoin - -Tycooncoin is a blockchain network with chain ID 3630. - -## Network Details - -- **Chain ID**: 3630 -- **Chain Name**: TYCON -- **Short Name**: TYCON -- **Network ID**: 3630 -- **Currency**: - - **Name**: Tycooncoin - - **Symbol**: TYCO - - **Decimals**: 18 - -## RPC URLs - -Tycooncoin can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.tycoscan.com - -## Tycooncoin Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/u2u-solaris.mdx b/docs/pages/solutions/chainlist/non-integrated/u2u-solaris.mdx deleted file mode 100644 index 0dad999f98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/u2u-solaris.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: U2U Solaris Mainnet - u2u Blockchain Network -description: Explore U2U Solaris Mainnet, a blockchain network with chain ID 39. Learn about its native currency, Unicorn Ultra, and how to interact with the network. ---- - -# U2U Solaris Mainnet - -U2U Solaris Mainnet is a blockchain network with chain ID 39. - -## Network Details - -- **Chain ID**: 39 -- **Chain Name**: u2u -- **Short Name**: u2u -- **Network ID**: 39 -- **Currency**: - - **Name**: Unicorn Ultra - - **Symbol**: U2U - - **Decimals**: 18 - -## RPC URLs - -U2U Solaris Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.uniultra.xyz - -## U2U Solaris Mainnet Block Explorers - -- [U2U Explorer](https://u2uscan.xyz) - -## Additional Information - -- **Official Website**: https://uniultra.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain(testnet).mdx b/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain(testnet).mdx deleted file mode 100644 index 0897578ef9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain(testnet).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: UB Smart Chain(testnet) - USC Blockchain Network -description: Explore UB Smart Chain(testnet), a blockchain network with chain ID 99998. Learn about its native currency, UBC, and how to interact with the network. ---- - -# UB Smart Chain(testnet) - -UB Smart Chain(testnet) is a blockchain network with chain ID 99998. - -## Network Details - -- **Chain ID**: 99998 -- **Chain Name**: USC -- **Short Name**: usctest -- **Network ID**: 99998 -- **Currency**: - - **Name**: UBC - - **Symbol**: UBC - - **Decimals**: 18 - -## RPC URLs - -UB Smart Chain(testnet) can be accessed through the following RPC endpoints: - -- https://testnet.rpc.uschain.network - -## UB Smart Chain(testnet) Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.ubchain.site - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## UB Smart Chain(testnet) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain.mdx deleted file mode 100644 index c3157f0c52..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ub-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: UB Smart Chain - USC Blockchain Network -description: Explore UB Smart Chain, a blockchain network with chain ID 99999. Learn about its native currency, UBC, and how to interact with the network. ---- - -# UB Smart Chain - -UB Smart Chain is a blockchain network with chain ID 99999. - -## Network Details - -- **Chain ID**: 99999 -- **Chain Name**: USC -- **Short Name**: usc -- **Network ID**: 99999 -- **Currency**: - - **Name**: UBC - - **Symbol**: UBC - - **Decimals**: 18 - -## RPC URLs - -UB Smart Chain can be accessed through the following RPC endpoints: - -- https://rpc.uschain.network - -## UB Smart Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://www.ubchain.site/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ubiq-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ubiq-network-testnet.mdx deleted file mode 100644 index 1c20fef028..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ubiq-network-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ubiq Network Testnet - UBQ Blockchain Network -description: Explore Ubiq Network Testnet, a blockchain network with chain ID 9. Learn about its native currency, Ubiq Testnet Ether, and how to interact with the network. ---- - -# Ubiq Network Testnet - -Ubiq Network Testnet is a blockchain network with chain ID 9. - -## Network Details - -- **Chain ID**: 9 -- **Chain Name**: UBQ -- **Short Name**: tubq -- **Network ID**: 9 -- **Currency**: - - **Name**: Ubiq Testnet Ether - - **Symbol**: TUBQ - - **Decimals**: 18 - -## RPC URLs - -Ubiq Network Testnet can be accessed through the following RPC endpoints: - - - -## Ubiq Network Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ethersocial.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ubiq Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ubiq.mdx b/docs/pages/solutions/chainlist/non-integrated/ubiq.mdx deleted file mode 100644 index c86b06cd49..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ubiq.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Ubiq - UBQ Blockchain Network -description: Explore Ubiq, a blockchain network with chain ID 8. Learn about its native currency, Ubiq Ether, and how to interact with the network. ---- - -# Ubiq - -Ubiq is a blockchain network with chain ID 8. - -## Network Details - -- **Chain ID**: 8 -- **Chain Name**: UBQ -- **Short Name**: ubq -- **Network ID**: 8 -- **Currency**: - - **Name**: Ubiq Ether - - **Symbol**: UBQ - - **Decimals**: 18 - -## RPC URLs - -Ubiq can be accessed through the following RPC endpoints: - -- https://rpc.octano.dev -- https://pyrus2.ubiqscan.io - -## Ubiq Block Explorers - -- [ubiqscan](https://ubiqscan.io) - -## Additional Information - -- **Official Website**: https://ubiqsmart.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/uchain.mdx b/docs/pages/solutions/chainlist/non-integrated/uchain.mdx deleted file mode 100644 index d3307dbee1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/uchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: UCHAIN Mainnet - UCHAIN Blockchain Network -description: Explore UCHAIN Mainnet, a blockchain network with chain ID 2112. Learn about its native currency, UCASH, and how to interact with the network. ---- - -# UCHAIN Mainnet - -UCHAIN Mainnet is a blockchain network with chain ID 2112. - -## Network Details - -- **Chain ID**: 2112 -- **Chain Name**: UCHAIN -- **Short Name**: uchain -- **Network ID**: 2112 -- **Currency**: - - **Name**: UCASH - - **Symbol**: UCASH - - **Decimals**: 18 - -## RPC URLs - -UCHAIN Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.uchain.link/ - -## UCHAIN Mainnet Block Explorers - -- [uchain.info](https://uchain.info) - -## Additional Information - -- **Official Website**: https://u.cash/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ultra-pro.mdx b/docs/pages/solutions/chainlist/non-integrated/ultra-pro.mdx deleted file mode 100644 index 018afe54ca..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ultra-pro.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ultra Pro Mainnet - ultrapro Blockchain Network -description: Explore Ultra Pro Mainnet, a blockchain network with chain ID 473861. Learn about its native currency, Ultra Pro, and how to interact with the network. ---- - -# Ultra Pro Mainnet - -Ultra Pro Mainnet is a blockchain network with chain ID 473861. - -## Network Details - -- **Chain ID**: 473861 -- **Chain Name**: ultrapro -- **Short Name**: ultrapro -- **Network ID**: 473861 -- **Currency**: - - **Name**: Ultra Pro - - **Symbol**: UPRO - - **Decimals**: 18 - -## RPC URLs - -Ultra Pro Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.ultraproscan.io - -## Ultra Pro Mainnet Block Explorers - -- [ultraproscan](https://ultraproscan.io) - -## Additional Information - -- **Official Website**: https://ultrapro.info - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ultron-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ultron-testnet.mdx deleted file mode 100644 index cb6faa23a0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ultron-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Ultron Testnet - Ultron Blockchain Network -description: Explore Ultron Testnet, a blockchain network with chain ID 1230. Learn about its native currency, Ultron, and how to interact with the network. ---- - -# Ultron Testnet - -Ultron Testnet is a blockchain network with chain ID 1230. - -## Network Details - -- **Chain ID**: 1230 -- **Chain Name**: Ultron -- **Short Name**: UltronTestnet -- **Network ID**: 1230 -- **Currency**: - - **Name**: Ultron - - **Symbol**: ULX - - **Decimals**: 18 - -## RPC URLs - -Ultron Testnet can be accessed through the following RPC endpoints: - -- https://ultron-dev.io - -## Ultron Testnet Block Explorers - -- [Ultron Testnet Explorer](https://explorer.ultron-dev.io) - -## Additional Information - -- **Official Website**: https://ultron.foundation - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Ultron Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/ultron.mdx b/docs/pages/solutions/chainlist/non-integrated/ultron.mdx deleted file mode 100644 index 56de2b76bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ultron.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ultron Mainnet - Ultron Blockchain Network -description: Explore Ultron Mainnet, a blockchain network with chain ID 1231. Learn about its native currency, Ultron, and how to interact with the network. ---- - -# Ultron Mainnet - -Ultron Mainnet is a blockchain network with chain ID 1231. - -## Network Details - -- **Chain ID**: 1231 -- **Chain Name**: Ultron -- **Short Name**: UtronMainnet -- **Network ID**: 1231 -- **Currency**: - - **Name**: Ultron - - **Symbol**: ULX - - **Decimals**: 18 - -## RPC URLs - -Ultron Mainnet can be accessed through the following RPC endpoints: - -- https://ultron-rpc.net - -## Ultron Mainnet Block Explorers - -- [Ultron Explorer](https://ulxscan.com) - -## Additional Information - -- **Official Website**: https://ultron.foundation - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ultronsmartchain.mdx b/docs/pages/solutions/chainlist/non-integrated/ultronsmartchain.mdx deleted file mode 100644 index 85cb3f3c98..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ultronsmartchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: UltronSmartchain - UltronSmartchain Blockchain Network -description: Explore UltronSmartchain, a blockchain network with chain ID 662. Learn about its native currency, ulc, and how to interact with the network. ---- - -# UltronSmartchain - -UltronSmartchain is a blockchain network with chain ID 662. - -## Network Details - -- **Chain ID**: 662 -- **Chain Name**: UltronSmartchain -- **Short Name**: ultronsmartchain -- **Network ID**: 662 -- **Currency**: - - **Name**: ulc - - **Symbol**: ULC - - **Decimals**: 18 - -## RPC URLs - -UltronSmartchain can be accessed through the following RPC endpoints: - -- https://rpc.ultronsmartchain.io - -## UltronSmartchain Block Explorers - -- [ultronsmartchain explorer](https://scan.ultronsmartchain.io) - -## Additional Information - -- **Official Website**: https://ultronsmartchain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/underground-teal-tyrannosaurus.mdx b/docs/pages/solutions/chainlist/non-integrated/underground-teal-tyrannosaurus.mdx deleted file mode 100644 index 29be7476d4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/underground-teal-tyrannosaurus.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: underground-teal-tyrannosaurus - underground-teal-tyrannosaurus Blockchain Network -description: Explore underground-teal-tyrannosaurus, a blockchain network with chain ID 82383. Learn about its native currency, Ether, and how to interact with the network. ---- - -# underground-teal-tyrannosaurus - -underground-teal-tyrannosaurus is a blockchain network with chain ID 82383. - -## Network Details - -- **Chain ID**: 82383 -- **Chain Name**: underground-teal-tyrannosaurus -- **Short Name**: underground-teal-tyrannosaurus -- **Network ID**: 82383 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -underground-teal-tyrannosaurus can be accessed through the following RPC endpoints: - -- https://rpc-underground-teal-tyrannosaurus-r1ejlpcqz7.t.conduit.xyz - -## underground-teal-tyrannosaurus Block Explorers - -- [underground-teal-tyrannosaurus Explorer](https://explorer-underground-teal-tyrannosaurus-r1ejlpcqz7.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/82383 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## underground-teal-tyrannosaurus Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/unicorn-ultra-nebulas-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/unicorn-ultra-nebulas-testnet.mdx deleted file mode 100644 index 813d0a37cc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unicorn-ultra-nebulas-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Unicorn Ultra Nebulas Testnet - u2u Blockchain Network -description: Explore Unicorn Ultra Nebulas Testnet, a blockchain network with chain ID 2484. Learn about its native currency, Unicorn Ultra Nebulas Testnet, and how to interact with the network. ---- - -# Unicorn Ultra Nebulas Testnet - -Unicorn Ultra Nebulas Testnet is a blockchain network with chain ID 2484. - -## Network Details - -- **Chain ID**: 2484 -- **Chain Name**: u2u -- **Short Name**: u2u_nebulas -- **Network ID**: 2484 -- **Currency**: - - **Name**: Unicorn Ultra Nebulas Testnet - - **Symbol**: U2U - - **Decimals**: 18 - -## RPC URLs - -Unicorn Ultra Nebulas Testnet can be accessed through the following RPC endpoints: - -- https://rpc-nebulas-testnet.uniultra.xyz - -## Unicorn Ultra Nebulas Testnet Block Explorers - -- [U2U Explorer](https://testnet.u2uscan.xyz) - -## Additional Information - -- **Official Website**: https://uniultra.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Unicorn Ultra Nebulas Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/unique.mdx b/docs/pages/solutions/chainlist/non-integrated/unique.mdx deleted file mode 100644 index 2a9d3d243f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unique.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: Unique - UNQ Blockchain Network -description: Explore Unique, a blockchain network with chain ID 8880. Learn about its native currency, Unique, and how to interact with the network. ---- - -# Unique - -Unique is a blockchain network with chain ID 8880. - -## Network Details - -- **Chain ID**: 8880 -- **Chain Name**: UNQ -- **Short Name**: unq -- **Network ID**: 8880 -- **Currency**: - - **Name**: Unique - - **Symbol**: UNQ - - **Decimals**: 18 - -## RPC URLs - -Unique can be accessed through the following RPC endpoints: - -- https://rpc.unique.network -- https://eu-rpc.unique.network -- https://asia-rpc.unique.network -- https://us-rpc.unique.network - -## Unique Block Explorers - -- [Unique Scan](https://uniquescan.io/unique) - -## Additional Information - -- **Official Website**: https://unique.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/unit-zero-stagenet.mdx b/docs/pages/solutions/chainlist/non-integrated/unit-zero-stagenet.mdx deleted file mode 100644 index cefb8b6f87..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unit-zero-stagenet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Unit Zero Stagenet - Unit Zero Blockchain Network -description: Explore Unit Zero Stagenet, a blockchain network with chain ID 88819. Learn about its native currency, UNIT0, and how to interact with the network. ---- - -# Unit Zero Stagenet - -Unit Zero Stagenet is a blockchain network with chain ID 88819. - -## Network Details - -- **Chain ID**: 88819 -- **Chain Name**: Unit Zero -- **Short Name**: unit0-stagenet -- **Network ID**: 88819 -- **Currency**: - - **Name**: UNIT0 - - **Symbol**: UNIT0 - - **Decimals**: 18 - -## RPC URLs - -Unit Zero Stagenet can be accessed through the following RPC endpoints: - -- https://rpc-stagenet.unit0.dev - -## Unit Zero Stagenet Block Explorers - -- [explorer-stagenet](https://explorer-stagenet.unit0.dev) - -## Additional Information - -- **Official Website**: https://units.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/unit-zero-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/unit-zero-testnet.mdx deleted file mode 100644 index 0ff359f1c5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unit-zero-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Unit Zero Testnet - Unit Zero Blockchain Network -description: Explore Unit Zero Testnet, a blockchain network with chain ID 88817. Learn about its native currency, UNIT0, and how to interact with the network. ---- - -# Unit Zero Testnet - -Unit Zero Testnet is a blockchain network with chain ID 88817. - -## Network Details - -- **Chain ID**: 88817 -- **Chain Name**: Unit Zero -- **Short Name**: unit0-testnet -- **Network ID**: 88817 -- **Currency**: - - **Name**: UNIT0 - - **Symbol**: UNIT0 - - **Decimals**: 18 - -## RPC URLs - -Unit Zero Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.unit0.dev - -## Unit Zero Testnet Block Explorers - -- [explorer-testnet](https://explorer-testnet.unit0.dev) - -## Additional Information - -- **Official Website**: https://units.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Unit Zero Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/unreal-old.mdx b/docs/pages/solutions/chainlist/non-integrated/unreal-old.mdx deleted file mode 100644 index f912f35eed..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unreal-old.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: unreal-old - unreal Blockchain Network -description: Explore unreal-old, a blockchain network with chain ID 18231. Learn about its native currency, unreal Ether, and how to interact with the network. ---- - -# unreal-old - -unreal-old is a blockchain network with chain ID 18231. - -## Network Details - -- **Chain ID**: 18231 -- **Chain Name**: unreal -- **Short Name**: unreal-old -- **Network ID**: 18231 -- **Currency**: - - **Name**: unreal Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -unreal-old can be accessed through the following RPC endpoints: - -- https://rpc.unreal.gelato.digital -- wss://ws.unreal.gelato.digital - -## unreal-old Block Explorers - -- [blockscout](https://unreal.blockscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/unreal - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## unreal-old Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/unreal.mdx b/docs/pages/solutions/chainlist/non-integrated/unreal.mdx deleted file mode 100644 index 6dd001647f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/unreal.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: unreal - unreal Blockchain Network -description: Explore unreal, a blockchain network with chain ID 18233. Learn about its native currency, unreal Ether, and how to interact with the network. ---- - -# unreal - -unreal is a blockchain network with chain ID 18233. - -## Network Details - -- **Chain ID**: 18233 -- **Chain Name**: unreal -- **Short Name**: unreal -- **Network ID**: 18233 -- **Currency**: - - **Name**: unreal Ether - - **Symbol**: reETH - - **Decimals**: 18 - -## RPC URLs - -unreal can be accessed through the following RPC endpoints: - -- https://rpc.unreal-orbit.gelato.digital -- wss://ws.unreal-orbit.gelato.digital - -## unreal Block Explorers - -- [blockscout](https://unreal.blockscout.com) - -## Additional Information - -- **Official Website**: https://raas.gelato.network/rollups/details/public/unreal - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## unreal Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/upb-crescdi-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/upb-crescdi-testnet.mdx deleted file mode 100644 index fe8fca1147..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/upb-crescdi-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: UPB CRESCDI Testnet - UPBEth Blockchain Network -description: Explore UPB CRESCDI Testnet, a blockchain network with chain ID 1918. Learn about its native currency, UPBEth, and how to interact with the network. ---- - -# UPB CRESCDI Testnet - -UPB CRESCDI Testnet is a blockchain network with chain ID 1918. - -## Network Details - -- **Chain ID**: 1918 -- **Chain Name**: UPBEth -- **Short Name**: UPBEth -- **Network ID**: 1918 -- **Currency**: - - **Name**: UPBEth - - **Symbol**: UPBEth - - **Decimals**: 18 - -## RPC URLs - -UPB CRESCDI Testnet can be accessed through the following RPC endpoints: - -- https://testnet.crescdi.pub.ro - -## UPB CRESCDI Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://mobylab.docs.crescdi.pub.ro/blog/UPB-CRESCDI-Testnet - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## UPB CRESCDI Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/upchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/upchain-testnet.mdx deleted file mode 100644 index a9b0d67347..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/upchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: UPchain Testnet - UPchain Blockchain Network -description: Explore UPchain Testnet, a blockchain network with chain ID 336655. Learn about its native currency, UBTC, and how to interact with the network. ---- - -# UPchain Testnet - -UPchain Testnet is a blockchain network with chain ID 336655. - -## Network Details - -- **Chain ID**: 336655 -- **Chain Name**: UPchain -- **Short Name**: UPchain-testnet -- **Network ID**: 336655 -- **Currency**: - - **Name**: UBTC - - **Symbol**: UBTC - - **Decimals**: 18 - -## RPC URLs - -UPchain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.uniport.network - -## UPchain Testnet Block Explorers - -- [UPchain Testnet Explorer](https://explorer-testnet.uniport.network) - -## Additional Information - -- **Official Website**: https://uniport.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## UPchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/upchain.mdx b/docs/pages/solutions/chainlist/non-integrated/upchain.mdx deleted file mode 100644 index bcda856a01..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/upchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: UPchain Mainnet - UPchain Blockchain Network -description: Explore UPchain Mainnet, a blockchain network with chain ID 336666. Learn about its native currency, UBTC, and how to interact with the network. ---- - -# UPchain Mainnet - -UPchain Mainnet is a blockchain network with chain ID 336666. - -## Network Details - -- **Chain ID**: 336666 -- **Chain Name**: UPchain -- **Short Name**: UPchain-mainnet -- **Network ID**: 336666 -- **Currency**: - - **Name**: UBTC - - **Symbol**: UBTC - - **Decimals**: 18 - -## RPC URLs - -UPchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.uniport.network - -## UPchain Mainnet Block Explorers - -- [UPchain Mainnet Explorer](https://explorer.uniport.network) - -## Additional Information - -- **Official Website**: https://uniport.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/uptick.mdx b/docs/pages/solutions/chainlist/non-integrated/uptick.mdx deleted file mode 100644 index 070125ee5c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/uptick.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Uptick Mainnet - Uptick Blockchain Network -description: Explore Uptick Mainnet, a blockchain network with chain ID 117. Learn about its native currency, Uptick, and how to interact with the network. ---- - -# Uptick Mainnet - -Uptick Mainnet is a blockchain network with chain ID 117. - -## Network Details - -- **Chain ID**: 117 -- **Chain Name**: Uptick -- **Short Name**: auptick -- **Network ID**: 117 -- **Currency**: - - **Name**: Uptick - - **Symbol**: UPTICK - - **Decimals**: 18 - -## RPC URLs - -Uptick Mainnet can be accessed through the following RPC endpoints: - -- https://json-rpc.uptick.network - -## Uptick Mainnet Block Explorers - -- [Uptick Explorer](https://evm-explorer.uptick.network) - -## Additional Information - -- **Official Website**: https://www.uptick.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/uptn-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/uptn-testnet.mdx deleted file mode 100644 index 9b6938d8fb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/uptn-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: UPTN Testnet - UPTN Blockchain Network -description: Explore UPTN Testnet, a blockchain network with chain ID 6118. Learn about its native currency, UPTN, and how to interact with the network. ---- - -# UPTN Testnet - -UPTN Testnet is a blockchain network with chain ID 6118. - -## Network Details - -- **Chain ID**: 6118 -- **Chain Name**: UPTN -- **Short Name**: UPTN-TEST -- **Network ID**: 6118 -- **Currency**: - - **Name**: UPTN - - **Symbol**: UPTN - - **Decimals**: 18 - -## RPC URLs - -UPTN Testnet can be accessed through the following RPC endpoints: - -- https://node-api.alp.uptn.io/v1/ext/rpc - -## UPTN Testnet Block Explorers - -- [UPTN Testnet Explorer](https://testnet.explorer.uptn.io) - -## Additional Information - -- **Official Website**: https://uptn.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## UPTN Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/uptn.mdx b/docs/pages/solutions/chainlist/non-integrated/uptn.mdx deleted file mode 100644 index 2cf8f8cf2a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/uptn.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: UPTN - UPTN Blockchain Network -description: Explore UPTN, a blockchain network with chain ID 6119. Learn about its native currency, UPTN, and how to interact with the network. ---- - -# UPTN - -UPTN is a blockchain network with chain ID 6119. - -## Network Details - -- **Chain ID**: 6119 -- **Chain Name**: UPTN -- **Short Name**: UPTN -- **Network ID**: 6119 -- **Currency**: - - **Name**: UPTN - - **Symbol**: UPTN - - **Decimals**: 18 - -## RPC URLs - -UPTN can be accessed through the following RPC endpoints: - -- https://node-api.uptn.io/v1/ext/rpc - -## UPTN Block Explorers - -- [UPTN Explorer](https://explorer.uptn.io) - -## Additional Information - -- **Official Website**: https://uptn.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/uzmi-network.mdx b/docs/pages/solutions/chainlist/non-integrated/uzmi-network.mdx deleted file mode 100644 index 27685b4447..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/uzmi-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Uzmi Network Mainnet - UZMI Blockchain Network -description: Explore Uzmi Network Mainnet, a blockchain network with chain ID 5315. Learn about its native currency, UZMI, and how to interact with the network. ---- - -# Uzmi Network Mainnet - -Uzmi Network Mainnet is a blockchain network with chain ID 5315. - -## Network Details - -- **Chain ID**: 5315 -- **Chain Name**: UZMI -- **Short Name**: UZMI -- **Network ID**: 5315 -- **Currency**: - - **Name**: UZMI - - **Symbol**: UZMI - - **Decimals**: 18 - -## RPC URLs - -Uzmi Network Mainnet can be accessed through the following RPC endpoints: - -- https://network.uzmigames.com.br/ - -## Uzmi Network Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://uzmigames.com.br/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/valorbit.mdx b/docs/pages/solutions/chainlist/non-integrated/valorbit.mdx deleted file mode 100644 index 5f4473cb5e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/valorbit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Valorbit - VAL Blockchain Network -description: Explore Valorbit, a blockchain network with chain ID 38. Learn about its native currency, Valorbit, and how to interact with the network. ---- - -# Valorbit - -Valorbit is a blockchain network with chain ID 38. - -## Network Details - -- **Chain ID**: 38 -- **Chain Name**: VAL -- **Short Name**: val -- **Network ID**: 38 -- **Currency**: - - **Name**: Valorbit - - **Symbol**: VAL - - **Decimals**: 18 - -## RPC URLs - -Valorbit can be accessed through the following RPC endpoints: - -- https://rpc.valorbit.com/v2 - -## Valorbit Block Explorers - - - -## Additional Information - -- **Official Website**: https://valorbit.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vana-satori-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vana-satori-testnet.mdx deleted file mode 100644 index b89aec41f0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vana-satori-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vana Satori Testnet - Satori Blockchain Network -description: Explore Vana Satori Testnet, a blockchain network with chain ID 14801. Learn about its native currency, DAT, and how to interact with the network. ---- - -# Vana Satori Testnet - -Vana Satori Testnet is a blockchain network with chain ID 14801. - -## Network Details - -- **Chain ID**: 14801 -- **Chain Name**: Satori -- **Short Name**: satori -- **Network ID**: 14801 -- **Currency**: - - **Name**: DAT - - **Symbol**: DAT - - **Decimals**: 18 - -## RPC URLs - -Vana Satori Testnet can be accessed through the following RPC endpoints: - -- http://rpc.satori.vana.org - -## Vana Satori Testnet Block Explorers - -- [satoriscan](https://satori.vanascan.io) - -## Additional Information - -- **Official Website**: https://satori.vana.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vana Satori Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vanar.mdx b/docs/pages/solutions/chainlist/non-integrated/vanar.mdx deleted file mode 100644 index 24167eb6b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vanar.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Vanar Mainnet - VANAR Blockchain Network -description: Explore Vanar Mainnet, a blockchain network with chain ID 2040. Learn about its native currency, VANRY, and how to interact with the network. ---- - -# Vanar Mainnet - -Vanar Mainnet is a blockchain network with chain ID 2040. - -## Network Details - -- **Chain ID**: 2040 -- **Chain Name**: VANAR -- **Short Name**: Vanar -- **Network ID**: 2040 -- **Currency**: - - **Name**: VANRY - - **Symbol**: VANRY - - **Decimals**: 18 - -## RPC URLs - -Vanar Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.vanarchain.com -- wss://ws.vanarchain.com - -## Vanar Mainnet Block Explorers - -- [Vanar Explorer](https://explorer.vanarchain.com) - -## Additional Information - -- **Official Website**: https://vanarchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vanguard.mdx b/docs/pages/solutions/chainlist/non-integrated/vanguard.mdx deleted file mode 100644 index 79face2ea4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vanguard.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Vanguard - VANAR Blockchain Network -description: Explore Vanguard, a blockchain network with chain ID 78600. Learn about its native currency, Vanguard Vanry, and how to interact with the network. ---- - -# Vanguard - -Vanguard is a blockchain network with chain ID 78600. - -## Network Details - -- **Chain ID**: 78600 -- **Chain Name**: VANAR -- **Short Name**: vanguard -- **Network ID**: 78600 -- **Currency**: - - **Name**: Vanguard Vanry - - **Symbol**: VANRY - - **Decimals**: 18 - -## RPC URLs - -Vanguard can be accessed through the following RPC endpoints: - -- https://rpc-vanguard.vanarchain.com -- wss://ws-vanguard.vanarchain.com - -## Vanguard Block Explorers - -- [Vanguard Explorer](https://explorer-vanguard.vanarchain.com) - -## Additional Information - -- **Official Website**: https://vanarchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vanguard Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vchain.mdx b/docs/pages/solutions/chainlist/non-integrated/vchain.mdx deleted file mode 100644 index 28dc1b0e0c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: VChain Mainnet - VChain Blockchain Network -description: Explore VChain Mainnet, a blockchain network with chain ID 2223. Learn about its native currency, VNDT, and how to interact with the network. ---- - -# VChain Mainnet - -VChain Mainnet is a blockchain network with chain ID 2223. - -## Network Details - -- **Chain ID**: 2223 -- **Chain Name**: VChain -- **Short Name**: VChain -- **Network ID**: 2223 -- **Currency**: - - **Name**: VNDT - - **Symbol**: VNDT - - **Decimals**: 18 - -## RPC URLs - -VChain Mainnet can be accessed through the following RPC endpoints: - -- https://bc.vcex.xyz - -## VChain Mainnet Block Explorers - -- [VChain Scan](https://scan.vcex.xyz) - -## Additional Information - -- **Official Website**: https://bo.vcex.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vcity-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vcity-testnet.mdx deleted file mode 100644 index 89fb6234dc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vcity-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vcity Testnet - VCITY Blockchain Network -description: Explore Vcity Testnet, a blockchain network with chain ID 20230825. Learn about its native currency, Testnet Vcity Token, and how to interact with the network. ---- - -# Vcity Testnet - -Vcity Testnet is a blockchain network with chain ID 20230825. - -## Network Details - -- **Chain ID**: 20230825 -- **Chain Name**: VCITY -- **Short Name**: Vcity -- **Network ID**: 20230825 -- **Currency**: - - **Name**: Testnet Vcity Token - - **Symbol**: VCITY - - **Decimals**: 18 - -## RPC URLs - -Vcity Testnet can be accessed through the following RPC endpoints: - -- https://testnet.vcity.app - -## Vcity Testnet Block Explorers - -- [Vcity Explorer](https://scan.vcity.app) - -## Additional Information - -- **Official Website**: https://vcity.app - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vcity Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vechain-testnet.mdx deleted file mode 100644 index bd838e3df4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: VeChain Testnet - VeChain Blockchain Network -description: Explore VeChain Testnet, a blockchain network with chain ID 100010. Learn about its native currency, VeChain, and how to interact with the network. ---- - -# VeChain Testnet - -VeChain Testnet is a blockchain network with chain ID 100010. - -## Network Details - -- **Chain ID**: 100010 -- **Chain Name**: VeChain -- **Short Name**: vechain-testnet -- **Network ID**: 100010 -- **Currency**: - - **Name**: VeChain - - **Symbol**: VET - - **Decimals**: 18 - -## RPC URLs - -VeChain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.vechain.energy - -## VeChain Testnet Block Explorers - -- [VeChain Explorer](https://explore-testnet.vechain.org) - -## Additional Information - -- **Official Website**: https://vechain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## VeChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vechain.mdx b/docs/pages/solutions/chainlist/non-integrated/vechain.mdx deleted file mode 100644 index 4537e69df3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vechain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: VeChain - VeChain Blockchain Network -description: Explore VeChain, a blockchain network with chain ID 100009. Learn about its native currency, VeChain, and how to interact with the network. ---- - -# VeChain - -VeChain is a blockchain network with chain ID 100009. - -## Network Details - -- **Chain ID**: 100009 -- **Chain Name**: VeChain -- **Short Name**: vechain -- **Network ID**: 100009 -- **Currency**: - - **Name**: VeChain - - **Symbol**: VET - - **Decimals**: 18 - -## RPC URLs - -VeChain can be accessed through the following RPC endpoints: - -- https://rpc-mainnet.vechain.energy - -## VeChain Block Explorers - -- [VeChain Stats](https://vechainstats.com) -- [VeChain Explorer](https://explore.vechain.org) - -## Additional Information - -- **Official Website**: https://vechain.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vecno.mdx b/docs/pages/solutions/chainlist/non-integrated/vecno.mdx deleted file mode 100644 index ca9e25eae5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vecno.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vecno Mainnet - VE Blockchain Network -description: Explore Vecno Mainnet, a blockchain network with chain ID 65357. Learn about its native currency, Vecno, and how to interact with the network. ---- - -# Vecno Mainnet - -Vecno Mainnet is a blockchain network with chain ID 65357. - -## Network Details - -- **Chain ID**: 65357 -- **Chain Name**: VE -- **Short Name**: ve -- **Network ID**: 65357 -- **Currency**: - - **Name**: Vecno - - **Symbol**: VE - - **Decimals**: 18 - -## RPC URLs - -Vecno Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.vecno.org - -## Vecno Mainnet Block Explorers - -- [vecno](https://explorer.vecno.org) - -## Additional Information - -- **Official Website**: https://vecno.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vela1-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/vela1-chain.mdx deleted file mode 100644 index 2486433ed6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vela1-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vela1 Chain Mainnet - VELA1 Blockchain Network -description: Explore Vela1 Chain Mainnet, a blockchain network with chain ID 555. Learn about its native currency, CLASS COIN, and how to interact with the network. ---- - -# Vela1 Chain Mainnet - -Vela1 Chain Mainnet is a blockchain network with chain ID 555. - -## Network Details - -- **Chain ID**: 555 -- **Chain Name**: VELA1 -- **Short Name**: CLASS -- **Network ID**: 555 -- **Currency**: - - **Name**: CLASS COIN - - **Symbol**: CLASS - - **Decimals**: 18 - -## RPC URLs - -Vela1 Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.velaverse.io - -## Vela1 Chain Mainnet Block Explorers - -- [Vela1 Chain Mainnet Explorer](https://exp.velaverse.io) - -## Additional Information - -- **Official Website**: https://velaverse.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/velas-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/velas-evm.mdx deleted file mode 100644 index b31217db4c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/velas-evm.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Velas EVM Mainnet - Velas Blockchain Network -description: Explore Velas EVM Mainnet, a blockchain network with chain ID 106. Learn about its native currency, Velas, and how to interact with the network. ---- - -# Velas EVM Mainnet - -Velas EVM Mainnet is a blockchain network with chain ID 106. - -## Network Details - -- **Chain ID**: 106 -- **Chain Name**: Velas -- **Short Name**: vlx -- **Network ID**: 106 -- **Currency**: - - **Name**: Velas - - **Symbol**: VLX - - **Decimals**: 18 - -## RPC URLs - -Velas EVM Mainnet can be accessed through the following RPC endpoints: - -- https://evmexplorer.velas.com/rpc -- https://explorer.velas.com/rpc - -## Velas EVM Mainnet Block Explorers - -- [Velas Explorer](https://evmexplorer.velas.com) - -## Additional Information - -- **Official Website**: https://velas.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/velo-labs.mdx b/docs/pages/solutions/chainlist/non-integrated/velo-labs.mdx deleted file mode 100644 index 04fa21395c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/velo-labs.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: VELO Labs Mainnet - NOVA chain Blockchain Network -description: Explore VELO Labs Mainnet, a blockchain network with chain ID 56789. Learn about its native currency, Nova, and how to interact with the network. ---- - -# VELO Labs Mainnet - -VELO Labs Mainnet is a blockchain network with chain ID 56789. - -## Network Details - -- **Chain ID**: 56789 -- **Chain Name**: NOVA chain -- **Short Name**: VELO -- **Network ID**: 56789 -- **Currency**: - - **Name**: Nova - - **Symbol**: NOVA - - **Decimals**: 18 - -## RPC URLs - -VELO Labs Mainnet can be accessed through the following RPC endpoints: - -- https://nova.velo.org - -## VELO Labs Mainnet Block Explorers - -- [novascan](https://novascan.velo.org) - -## Additional Information - -- **Official Website**: https://velo.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/venidium-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/venidium-testnet.mdx deleted file mode 100644 index cc8f8d94b0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/venidium-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Venidium Testnet - XVM Blockchain Network -description: Explore Venidium Testnet, a blockchain network with chain ID 4918. Learn about its native currency, Venidium, and how to interact with the network. ---- - -# Venidium Testnet - -Venidium Testnet is a blockchain network with chain ID 4918. - -## Network Details - -- **Chain ID**: 4918 -- **Chain Name**: XVM -- **Short Name**: txvm -- **Network ID**: 4918 -- **Currency**: - - **Name**: Venidium - - **Symbol**: XVM - - **Decimals**: 18 - -## RPC URLs - -Venidium Testnet can be accessed through the following RPC endpoints: - -- https://rpc-evm-testnet.venidium.io - -## Venidium Testnet Block Explorers - -- [Venidium EVM Testnet Explorer](https://evm-testnet.venidiumexplorer.com) - -## Additional Information - -- **Official Website**: https://venidium.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Venidium Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/venidium.mdx b/docs/pages/solutions/chainlist/non-integrated/venidium.mdx deleted file mode 100644 index aef0a7b5ec..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/venidium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Venidium Mainnet - XVM Blockchain Network -description: Explore Venidium Mainnet, a blockchain network with chain ID 4919. Learn about its native currency, Venidium, and how to interact with the network. ---- - -# Venidium Mainnet - -Venidium Mainnet is a blockchain network with chain ID 4919. - -## Network Details - -- **Chain ID**: 4919 -- **Chain Name**: XVM -- **Short Name**: xvm -- **Network ID**: 4919 -- **Currency**: - - **Name**: Venidium - - **Symbol**: XVM - - **Decimals**: 18 - -## RPC URLs - -Venidium Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.venidium.io - -## Venidium Mainnet Block Explorers - -- [Venidium Explorer](https://evm.venidiumexplorer.com) - -## Additional Information - -- **Official Website**: https://venidium.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain-testnet.mdx deleted file mode 100644 index 3d89b51010..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vention Smart Chain Testnet - VSCT Blockchain Network -description: Explore Vention Smart Chain Testnet, a blockchain network with chain ID 741. Learn about its native currency, VNT, and how to interact with the network. ---- - -# Vention Smart Chain Testnet - -Vention Smart Chain Testnet is a blockchain network with chain ID 741. - -## Network Details - -- **Chain ID**: 741 -- **Chain Name**: VSCT -- **Short Name**: vsct -- **Network ID**: 741 -- **Currency**: - - **Name**: VNT - - **Symbol**: VNT - - **Decimals**: 18 - -## RPC URLs - -Vention Smart Chain Testnet can be accessed through the following RPC endpoints: - -- https://node-testnet.vention.network - -## Vention Smart Chain Testnet Block Explorers - -- [ventionscan](https://testnet.ventionscan.io) - -## Additional Information - -- **Official Website**: https://testnet.ventionscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vention Smart Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain.mdx deleted file mode 100644 index 473d506559..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vention-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vention Smart Chain Mainnet - VSC Blockchain Network -description: Explore Vention Smart Chain Mainnet, a blockchain network with chain ID 77612. Learn about its native currency, VNT, and how to interact with the network. ---- - -# Vention Smart Chain Mainnet - -Vention Smart Chain Mainnet is a blockchain network with chain ID 77612. - -## Network Details - -- **Chain ID**: 77612 -- **Chain Name**: VSC -- **Short Name**: vscm -- **Network ID**: 77612 -- **Currency**: - - **Name**: VNT - - **Symbol**: VNT - - **Decimals**: 18 - -## RPC URLs - -Vention Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.vention.network - -## Vention Smart Chain Mainnet Block Explorers - -- [ventionscan](https://ventionscan.io) - -## Additional Information - -- **Official Website**: https://ventionscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/very.mdx b/docs/pages/solutions/chainlist/non-integrated/very.mdx deleted file mode 100644 index e10b602740..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/very.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: VERY Mainnet - VERY Mainnet Blockchain Network -description: Explore VERY Mainnet, a blockchain network with chain ID 4613. Learn about its native currency, VERY, and how to interact with the network. ---- - -# VERY Mainnet - -VERY Mainnet is a blockchain network with chain ID 4613. - -## Network Details - -- **Chain ID**: 4613 -- **Chain Name**: VERY Mainnet -- **Short Name**: very -- **Network ID**: 4613 -- **Currency**: - - **Name**: VERY - - **Symbol**: VERY - - **Decimals**: 18 - -## RPC URLs - -VERY Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.verylabs.io - -## VERY Mainnet Block Explorers - -- [VERY explorer](https://www.veryscan.io) - -## Additional Information - -- **Official Website**: https://www.verylabs.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vesuvius---lit-protocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vesuvius---lit-protocol-testnet.mdx deleted file mode 100644 index 9554a7d4e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vesuvius---lit-protocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Chronicle Vesuvius - Lit Protocol Testnet - LPV Blockchain Network -description: Explore Chronicle Vesuvius - Lit Protocol Testnet, a blockchain network with chain ID 2311. Learn about its native currency, Test LPX, and how to interact with the network. ---- - -# Chronicle Vesuvius - Lit Protocol Testnet - -Chronicle Vesuvius - Lit Protocol Testnet is a blockchain network with chain ID 2311. - -## Network Details - -- **Chain ID**: 2311 -- **Chain Name**: LPV -- **Short Name**: lpv -- **Network ID**: 2311 -- **Currency**: - - **Name**: Test LPX - - **Symbol**: tstLPX - - **Decimals**: 18 - -## RPC URLs - -Chronicle Vesuvius - Lit Protocol Testnet can be accessed through the following RPC endpoints: - -- https://vesuvius-rpc.litprotocol.com - -## Chronicle Vesuvius - Lit Protocol Testnet Block Explorers - -- [Lit Chronicle Vesuvius Explorer](https://vesuvius-explorer.litprotocol.com) - -## Additional Information - -- **Official Website**: https://litprotocol.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Chronicle Vesuvius - Lit Protocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vex-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vex-evm-testnet.mdx deleted file mode 100644 index 6427db6b1a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vex-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: VEX EVM TESTNET - vex Blockchain Network -description: Explore VEX EVM TESTNET, a blockchain network with chain ID 5522. Learn about its native currency, VEX EVM TESTNET, and how to interact with the network. ---- - -# VEX EVM TESTNET - -VEX EVM TESTNET is a blockchain network with chain ID 5522. - -## Network Details - -- **Chain ID**: 5522 -- **Chain Name**: vex -- **Short Name**: VEX -- **Network ID**: 5522 -- **Currency**: - - **Name**: VEX EVM TESTNET - - **Symbol**: VEX - - **Decimals**: 18 - -## RPC URLs - -VEX EVM TESTNET can be accessed through the following RPC endpoints: - -- https://testnet.vexascan.com/evmapi - -## VEX EVM TESTNET Block Explorers - -- [Vexascan-EVM-TestNet](https://testnet.vexascan.com/evmexplorer) - -## Additional Information - -- **Official Website**: https://vexanium.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## VEX EVM TESTNET Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/viction-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/viction-testnet.mdx deleted file mode 100644 index 5aa8c2eaa0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/viction-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Viction Testnet - Viction Blockchain Network -description: Explore Viction Testnet, a blockchain network with chain ID 89. Learn about its native currency, Viction, and how to interact with the network. ---- - -# Viction Testnet - -Viction Testnet is a blockchain network with chain ID 89. - -## Network Details - -- **Chain ID**: 89 -- **Chain Name**: Viction -- **Short Name**: vict -- **Network ID**: 89 -- **Currency**: - - **Name**: Viction - - **Symbol**: VIC - - **Decimals**: 18 - -## RPC URLs - -Viction Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.viction.xyz - -## Viction Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://viction.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Viction Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/viction.mdx b/docs/pages/solutions/chainlist/non-integrated/viction.mdx deleted file mode 100644 index bc2d35e00d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/viction.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Viction - Viction Blockchain Network -description: Explore Viction, a blockchain network with chain ID 88. Learn about its native currency, Viction, and how to interact with the network. ---- - -# Viction - -Viction is a blockchain network with chain ID 88. - -## Network Details - -- **Chain ID**: 88 -- **Chain Name**: Viction -- **Short Name**: vic -- **Network ID**: 88 -- **Currency**: - - **Name**: Viction - - **Symbol**: VIC - - **Decimals**: 18 - -## RPC URLs - -Viction can be accessed through the following RPC endpoints: - -- https://rpc.viction.xyz - -## Viction Block Explorers - - - -## Additional Information - -- **Official Website**: https://viction.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vine-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vine-testnet.mdx deleted file mode 100644 index 2c6d025b6d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vine-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vine Testnet - VINE Blockchain Network -description: Explore Vine Testnet, a blockchain network with chain ID 601. Learn about its native currency, VINE, and how to interact with the network. ---- - -# Vine Testnet - -Vine Testnet is a blockchain network with chain ID 601. - -## Network Details - -- **Chain ID**: 601 -- **Chain Name**: VINE -- **Short Name**: VINE -- **Network ID**: 601 -- **Currency**: - - **Name**: VINE - - **Symbol**: VNE - - **Decimals**: 18 - -## RPC URLs - -Vine Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.vne.network - -## Vine Testnet Block Explorers - -- [Vine Explorer](https://vne.network/rose) - -## Additional Information - -- **Official Website**: https://www.peer.inc - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vine Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vinuchain-network.mdx b/docs/pages/solutions/chainlist/non-integrated/vinuchain-network.mdx deleted file mode 100644 index 0bb32fa1f8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vinuchain-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: VinuChain Network - VinuChain Blockchain Network -description: Explore VinuChain Network, a blockchain network with chain ID 207. Learn about its native currency, VinuChain, and how to interact with the network. ---- - -# VinuChain Network - -VinuChain Network is a blockchain network with chain ID 207. - -## Network Details - -- **Chain ID**: 207 -- **Chain Name**: VinuChain -- **Short Name**: VC -- **Network ID**: 207 -- **Currency**: - - **Name**: VinuChain - - **Symbol**: VC - - **Decimals**: 18 - -## RPC URLs - -VinuChain Network can be accessed through the following RPC endpoints: - -- https://vinuchain-rpc.com - -## VinuChain Network Block Explorers - -- [VinuScan](https://vinuscan.com) - -## Additional Information - -- **Official Website**: https://vitainu.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vinuchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vinuchain-testnet.mdx deleted file mode 100644 index 9fcf44a2fd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vinuchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: VinuChain Testnet - VinuChain Testnet Blockchain Network -description: Explore VinuChain Testnet, a blockchain network with chain ID 206. Learn about its native currency, VinuChain, and how to interact with the network. ---- - -# VinuChain Testnet - -VinuChain Testnet is a blockchain network with chain ID 206. - -## Network Details - -- **Chain ID**: 206 -- **Chain Name**: VinuChain Testnet -- **Short Name**: VCTEST -- **Network ID**: 206 -- **Currency**: - - **Name**: VinuChain - - **Symbol**: VC - - **Decimals**: 18 - -## RPC URLs - -VinuChain Testnet can be accessed through the following RPC endpoints: - -- https://vinufoundation-rpc.com - -## VinuChain Testnet Block Explorers - -- [VinuScan Testnet](https://testnet.vinuscan.com) - -## Additional Information - -- **Official Website**: https://vitainu.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## VinuChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/viridis-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/viridis-testnet.mdx deleted file mode 100644 index 1b8942f76f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/viridis-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Viridis Testnet - VRD Blockchain Network -description: Explore Viridis Testnet, a blockchain network with chain ID 224. Learn about its native currency, Viridis Token, and how to interact with the network. ---- - -# Viridis Testnet - -Viridis Testnet is a blockchain network with chain ID 224. - -## Network Details - -- **Chain ID**: 224 -- **Chain Name**: VRD -- **Short Name**: VRD-Testnet -- **Network ID**: 224 -- **Currency**: - - **Name**: Viridis Token - - **Symbol**: VRD - - **Decimals**: 18 - -## RPC URLs - -Viridis Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.vrd.network - -## Viridis Testnet Block Explorers - -- [Viridis Testnet](https://testnet.vrd.network) - -## Additional Information - -- **Official Website**: https://viridis.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Viridis Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/viridis.mdx b/docs/pages/solutions/chainlist/non-integrated/viridis.mdx deleted file mode 100644 index c05cd797e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/viridis.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Viridis Mainnet - VRD Blockchain Network -description: Explore Viridis Mainnet, a blockchain network with chain ID 422. Learn about its native currency, Viridis Token, and how to interact with the network. ---- - -# Viridis Mainnet - -Viridis Mainnet is a blockchain network with chain ID 422. - -## Network Details - -- **Chain ID**: 422 -- **Chain Name**: VRD -- **Short Name**: vrd -- **Network ID**: 422 -- **Currency**: - - **Name**: Viridis Token - - **Symbol**: VRD - - **Decimals**: 18 - -## RPC URLs - -Viridis Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.vrd.network - -## Viridis Mainnet Block Explorers - -- [Viridis Mainnet](https://explorer.vrd.network) - -## Additional Information - -- **Official Website**: https://viridis.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vision---vpioneer-test-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/vision---vpioneer-test-chain.mdx deleted file mode 100644 index 89182f7310..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vision---vpioneer-test-chain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vision - Vpioneer Test Chain - Vision-Vpioneer Blockchain Network -description: Explore Vision - Vpioneer Test Chain, a blockchain network with chain ID 666666. Learn about its native currency, VS, and how to interact with the network. ---- - -# Vision - Vpioneer Test Chain - -Vision - Vpioneer Test Chain is a blockchain network with chain ID 666666. - -## Network Details - -- **Chain ID**: 666666 -- **Chain Name**: Vision-Vpioneer -- **Short Name**: vpioneer -- **Network ID**: 666666 -- **Currency**: - - **Name**: VS - - **Symbol**: VS - - **Decimals**: 18 - -## RPC URLs - -Vision - Vpioneer Test Chain can be accessed through the following RPC endpoints: - -- https://vpioneer.infragrid.v.network/ethereum/compatible - -## Vision - Vpioneer Test Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://visionscan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vision - Vpioneer Test Chain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vision--.mdx b/docs/pages/solutions/chainlist/non-integrated/vision--.mdx deleted file mode 100644 index b494192c07..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vision--.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vision - Mainnet - Vision Blockchain Network -description: Explore Vision - Mainnet, a blockchain network with chain ID 888888. Learn about its native currency, VS, and how to interact with the network. ---- - -# Vision - Mainnet - -Vision - Mainnet is a blockchain network with chain ID 888888. - -## Network Details - -- **Chain ID**: 888888 -- **Chain Name**: Vision -- **Short Name**: vision -- **Network ID**: 888888 -- **Currency**: - - **Name**: VS - - **Symbol**: VS - - **Decimals**: 18 - -## RPC URLs - -Vision - Mainnet can be accessed through the following RPC endpoints: - -- https://infragrid.v.network/ethereum/compatible - -## Vision - Mainnet Block Explorers - -- [Visionscan](https://www.visionscan.org) - -## Additional Information - -- **Official Website**: https://www.v.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vitruveo-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vitruveo-testnet.mdx deleted file mode 100644 index 9dc26b1c4a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vitruveo-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vitruveo Testnet - Vitruveo Blockchain Network -description: Explore Vitruveo Testnet, a blockchain network with chain ID 14333. Learn about its native currency, Vitruveo Test Coin, and how to interact with the network. ---- - -# Vitruveo Testnet - -Vitruveo Testnet is a blockchain network with chain ID 14333. - -## Network Details - -- **Chain ID**: 14333 -- **Chain Name**: Vitruveo -- **Short Name**: vitruveo-test -- **Network ID**: 14333 -- **Currency**: - - **Name**: Vitruveo Test Coin - - **Symbol**: tVTRU - - **Decimals**: 18 - -## RPC URLs - -Vitruveo Testnet can be accessed through the following RPC endpoints: - -- https://test-rpc.vitruveo.xyz - -## Vitruveo Testnet Block Explorers - -- [Vitruveo Testnet Explorer](https://test-explorer.vitruveo.xyz) - -## Additional Information - -- **Official Website**: https://www.vitruveo.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vitruveo Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vitruveo.mdx b/docs/pages/solutions/chainlist/non-integrated/vitruveo.mdx deleted file mode 100644 index ffa6ffcae8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vitruveo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vitruveo Mainnet - Vitruveo Blockchain Network -description: Explore Vitruveo Mainnet, a blockchain network with chain ID 1490. Learn about its native currency, Vitruveo Coin, and how to interact with the network. ---- - -# Vitruveo Mainnet - -Vitruveo Mainnet is a blockchain network with chain ID 1490. - -## Network Details - -- **Chain ID**: 1490 -- **Chain Name**: Vitruveo -- **Short Name**: vitruveo -- **Network ID**: 1490 -- **Currency**: - - **Name**: Vitruveo Coin - - **Symbol**: VTRU - - **Decimals**: 18 - -## RPC URLs - -Vitruveo Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.vitruveo.xyz - -## Vitruveo Mainnet Block Explorers - -- [Vitruveo Explorer](https://explorer.vitruveo.xyz) - -## Additional Information - -- **Official Website**: https://www.vitruveo.xyz - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vizing-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/vizing-testnet.mdx deleted file mode 100644 index 62139a5124..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vizing-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vizing Testnet - Vizing Testnet Blockchain Network -description: Explore Vizing Testnet, a blockchain network with chain ID 28516. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Vizing Testnet - -Vizing Testnet is a blockchain network with chain ID 28516. - -## Network Details - -- **Chain ID**: 28516 -- **Chain Name**: Vizing Testnet -- **Short Name**: Vizing-Testnet -- **Network ID**: 28516 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Vizing Testnet can be accessed through the following RPC endpoints: - -- https://rpc-sepolia.vizing.com - -## Vizing Testnet Block Explorers - -- [blockscout](https://explorer-sepolia.vizing.com) - -## Additional Information - -- **Official Website**: https://vizing.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Vizing Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/vizing.mdx b/docs/pages/solutions/chainlist/non-integrated/vizing.mdx deleted file mode 100644 index 5b6709f7ab..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vizing.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vizing Mainnet - Vizing Mainnet Blockchain Network -description: Explore Vizing Mainnet, a blockchain network with chain ID 28518. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Vizing Mainnet - -Vizing Mainnet is a blockchain network with chain ID 28518. - -## Network Details - -- **Chain ID**: 28518 -- **Chain Name**: Vizing Mainnet -- **Short Name**: Vizing -- **Network ID**: 28518 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Vizing Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.vizing.com - -## Vizing Mainnet Block Explorers - -- [blockscout](https://explorer.vizing.com) - -## Additional Information - -- **Official Website**: https://vizing.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vrcscan.mdx b/docs/pages/solutions/chainlist/non-integrated/vrcscan.mdx deleted file mode 100644 index c2c75547f2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vrcscan.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Vrcscan Mainnet - VRC Blockchain Network -description: Explore Vrcscan Mainnet, a blockchain network with chain ID 713. Learn about its native currency, VRC Chain, and how to interact with the network. ---- - -# Vrcscan Mainnet - -Vrcscan Mainnet is a blockchain network with chain ID 713. - -## Network Details - -- **Chain ID**: 713 -- **Chain Name**: VRC -- **Short Name**: vrc -- **Network ID**: 713 -- **Currency**: - - **Name**: VRC Chain - - **Symbol**: VRC - - **Decimals**: 18 - -## RPC URLs - -Vrcscan Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-mainnet-5.vrcscan.com -- https://rpc-mainnet-6.vrcscan.com -- https://rpc-mainnet-7.vrcscan.com -- https://rpc-mainnet-8.vrcscan.com - -## Vrcscan Mainnet Block Explorers - -- [vrcscan](https://vrcscan.com) -- [dxbscan](https://dxb.vrcscan.com) - -## Additional Information - -- **Official Website**: https://vrccoin.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vulture-evm-beta.mdx b/docs/pages/solutions/chainlist/non-integrated/vulture-evm-beta.mdx deleted file mode 100644 index 49f7f3de0c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vulture-evm-beta.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Vulture EVM Beta - VFIEVMCC Blockchain Network -description: Explore Vulture EVM Beta, a blockchain network with chain ID 3102. Learn about its native currency, VFI, and how to interact with the network. ---- - -# Vulture EVM Beta - -Vulture EVM Beta is a blockchain network with chain ID 3102. - -## Network Details - -- **Chain ID**: 3102 -- **Chain Name**: VFIEVMCC -- **Short Name**: VFI -- **Network ID**: 3102 -- **Currency**: - - **Name**: VFI - - **Symbol**: VFI - - **Decimals**: 18 - -## RPC URLs - -Vulture EVM Beta can be accessed through the following RPC endpoints: - -- https://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network -- wss://fraa-dancebox-3050-rpc.a.dancebox.tanssi.network - -## Vulture EVM Beta Block Explorers - - - -## Additional Information - -- **Official Website**: https://vulture.finance - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/vyvo-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/vyvo-smart-chain.mdx deleted file mode 100644 index 416eb7d597..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/vyvo-smart-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Vyvo Smart Chain - VSC Blockchain Network -description: Explore Vyvo Smart Chain, a blockchain network with chain ID 8889. Learn about its native currency, VSC, and how to interact with the network. ---- - -# Vyvo Smart Chain - -Vyvo Smart Chain is a blockchain network with chain ID 8889. - -## Network Details - -- **Chain ID**: 8889 -- **Chain Name**: VSC -- **Short Name**: vsc -- **Network ID**: 8889 -- **Currency**: - - **Name**: VSC - - **Symbol**: VSC - - **Decimals**: 18 - -## RPC URLs - -Vyvo Smart Chain can be accessed through the following RPC endpoints: - -- https://vsc-dataseed.vyvo.org:8889 - -## Vyvo Smart Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://vsc-dataseed.vyvo.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/w3gamez-holesky-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/w3gamez-holesky-testnet.mdx deleted file mode 100644 index 040a92e80f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/w3gamez-holesky-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: W3Gamez Holesky Testnet - ETH Blockchain Network -description: Explore W3Gamez Holesky Testnet, a blockchain network with chain ID 32001. Learn about its native currency, W3Gamez Testnet Ether, and how to interact with the network. ---- - -# W3Gamez Holesky Testnet - -W3Gamez Holesky Testnet is a blockchain network with chain ID 32001. - -## Network Details - -- **Chain ID**: 32001 -- **Chain Name**: ETH -- **Short Name**: w3gamez -- **Network ID**: 32001 -- **Currency**: - - **Name**: W3Gamez Testnet Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -W3Gamez Holesky Testnet can be accessed through the following RPC endpoints: - -- https://rpc-holesky.w3gamez.network - -## W3Gamez Holesky Testnet Block Explorers - -- [W3Gamez Holesky Explorer](https://w3gamez-holesky.web3games.com) - -## Additional Information - -- **Official Website**: https://web3games.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## W3Gamez Holesky Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/waba-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/waba-chain-testnet.mdx deleted file mode 100644 index d89f574424..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/waba-chain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: WABA Chain Testnet - WABA Testnet Blockchain Network -description: Explore WABA Chain Testnet, a blockchain network with chain ID 327126. Learn about its native currency, WABA, and how to interact with the network. ---- - -# WABA Chain Testnet - -WABA Chain Testnet is a blockchain network with chain ID 327126. - -## Network Details - -- **Chain ID**: 327126 -- **Chain Name**: WABA Testnet -- **Short Name**: waba -- **Network ID**: 327126 -- **Currency**: - - **Name**: WABA - - **Symbol**: WABA - - **Decimals**: 18 - -## RPC URLs - -WABA Chain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.wabaworld.com - -## WABA Chain Testnet Block Explorers - -- [blockscout](https://explorer.wabaworld.com) - -## Additional Information - -- **Official Website**: https://www.wabanetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## WABA Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wagmi.mdx b/docs/pages/solutions/chainlist/non-integrated/wagmi.mdx deleted file mode 100644 index 5c220f37f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wagmi.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: WAGMI - WAGMI Blockchain Network -description: Explore WAGMI, a blockchain network with chain ID 11111. Learn about its native currency, WAGMI, and how to interact with the network. ---- - -# WAGMI - -WAGMI is a blockchain network with chain ID 11111. - -## Network Details - -- **Chain ID**: 11111 -- **Chain Name**: WAGMI -- **Short Name**: WAGMI -- **Network ID**: 11111 -- **Currency**: - - **Name**: WAGMI - - **Symbol**: WGM - - **Decimals**: 18 - -## RPC URLs - -WAGMI can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/wagmi/wagmi-chain-testnet/rpc - -## WAGMI Block Explorers - -- [Avalanche Subnet Explorer](https://subnets-test.avax.network/wagmi) - -## Additional Information - -- **Official Website**: https://subnets-test.avax.network/wagmi/details - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## WAGMI Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wanchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/wanchain-testnet.mdx deleted file mode 100644 index 670bfaf0c7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wanchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Wanchain Testnet - WAN Blockchain Network -description: Explore Wanchain Testnet, a blockchain network with chain ID 999. Learn about its native currency, Wancoin, and how to interact with the network. ---- - -# Wanchain Testnet - -Wanchain Testnet is a blockchain network with chain ID 999. - -## Network Details - -- **Chain ID**: 999 -- **Chain Name**: WAN -- **Short Name**: twan -- **Network ID**: 999 -- **Currency**: - - **Name**: Wancoin - - **Symbol**: WAN - - **Decimals**: 18 - -## RPC URLs - -Wanchain Testnet can be accessed through the following RPC endpoints: - -- https://gwan-ssl.wandevs.org:46891/ - -## Wanchain Testnet Block Explorers - -- [wanscan](https://testnet.wanscan.org) - -## Additional Information - -- **Official Website**: https://testnet.wanscan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Wanchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wanchain.mdx b/docs/pages/solutions/chainlist/non-integrated/wanchain.mdx deleted file mode 100644 index 919632f166..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wanchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Wanchain - WAN Blockchain Network -description: Explore Wanchain, a blockchain network with chain ID 888. Learn about its native currency, Wancoin, and how to interact with the network. ---- - -# Wanchain - -Wanchain is a blockchain network with chain ID 888. - -## Network Details - -- **Chain ID**: 888 -- **Chain Name**: WAN -- **Short Name**: wan -- **Network ID**: 888 -- **Currency**: - - **Name**: Wancoin - - **Symbol**: WAN - - **Decimals**: 18 - -## RPC URLs - -Wanchain can be accessed through the following RPC endpoints: - -- https://gwan-ssl.wandevs.org:56891/ - -## Wanchain Block Explorers - -- [wanscan](https://wanscan.org) - -## Additional Information - -- **Official Website**: https://www.wanscan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/waterfall-8-test-network.mdx b/docs/pages/solutions/chainlist/non-integrated/waterfall-8-test-network.mdx deleted file mode 100644 index a967ae9a93..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/waterfall-8-test-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Waterfall 8 Test Network - Waterfall Testnet8 Blockchain Network -description: Explore Waterfall 8 Test Network, a blockchain network with chain ID 8601152. Learn about its native currency, WATER, and how to interact with the network. ---- - -# Waterfall 8 Test Network - -Waterfall 8 Test Network is a blockchain network with chain ID 8601152. - -## Network Details - -- **Chain ID**: 8601152 -- **Chain Name**: Waterfall Testnet8 -- **Short Name**: waterfall -- **Network ID**: 8601152 -- **Currency**: - - **Name**: WATER - - **Symbol**: WATER - - **Decimals**: 18 - -## RPC URLs - -Waterfall 8 Test Network can be accessed through the following RPC endpoints: - -- https://rpc.testnet8.waterfall.network/ - -## Waterfall 8 Test Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://waterfall.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Waterfall 8 Test Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/waterfall-network.mdx b/docs/pages/solutions/chainlist/non-integrated/waterfall-network.mdx deleted file mode 100644 index ffe417d313..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/waterfall-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Waterfall Network - Waterfall Network Blockchain Network -description: Explore Waterfall Network, a blockchain network with chain ID 181. Learn about its native currency, WATER, and how to interact with the network. ---- - -# Waterfall Network - -Waterfall Network is a blockchain network with chain ID 181. - -## Network Details - -- **Chain ID**: 181 -- **Chain Name**: Waterfall Network -- **Short Name**: water -- **Network ID**: 181 -- **Currency**: - - **Name**: WATER - - **Symbol**: WATER - - **Decimals**: 18 - -## RPC URLs - -Waterfall Network can be accessed through the following RPC endpoints: - -- https://rpc.waterfall.network/ - -## Waterfall Network Block Explorers - - - -## Additional Information - -- **Official Website**: https://waterfall.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/weavevm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/weavevm-testnet.mdx deleted file mode 100644 index b2291e6240..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/weavevm-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: WeaveVM Testnet - WVM Blockchain Network -description: Explore WeaveVM Testnet, a blockchain network with chain ID 9496. Learn about its native currency, Testnet WeaveVM Token, and how to interact with the network. ---- - -# WeaveVM Testnet - -WeaveVM Testnet is a blockchain network with chain ID 9496. - -## Network Details - -- **Chain ID**: 9496 -- **Chain Name**: WVM -- **Short Name**: twvm -- **Network ID**: 9496 -- **Currency**: - - **Name**: Testnet WeaveVM Token - - **Symbol**: tWVM - - **Decimals**: 18 - -## RPC URLs - -WeaveVM Testnet can be accessed through the following RPC endpoints: - -- https://testnet.wvm.dev -- https://testnet-rpc.wvm.dev - -## WeaveVM Testnet Block Explorers - -- [WeaveVM Explorer](https://explorer.wvm.dev) - -## Additional Information - -- **Official Website**: https://wvm.dev - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## WeaveVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/web3games-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/web3games-devnet.mdx deleted file mode 100644 index f91e4e9bbd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/web3games-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Web3Games Devnet - Web3Games Blockchain Network -description: Explore Web3Games Devnet, a blockchain network with chain ID 105. Learn about its native currency, Web3Games, and how to interact with the network. ---- - -# Web3Games Devnet - -Web3Games Devnet is a blockchain network with chain ID 105. - -## Network Details - -- **Chain ID**: 105 -- **Chain Name**: Web3Games -- **Short Name**: dw3g -- **Network ID**: 105 -- **Currency**: - - **Name**: Web3Games - - **Symbol**: W3G - - **Decimals**: 18 - -## RPC URLs - -Web3Games Devnet can be accessed through the following RPC endpoints: - -- https://devnet.web3games.org/evm - -## Web3Games Devnet Block Explorers - -- [Web3Games Explorer](https://explorer-devnet.web3games.org) - -## Additional Information - -- **Official Website**: https://web3games.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/web3games-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/web3games-testnet.mdx deleted file mode 100644 index 861cd9fa58..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/web3games-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Web3Games Testnet - Web3Games Blockchain Network -description: Explore Web3Games Testnet, a blockchain network with chain ID 102. Learn about its native currency, Web3Games, and how to interact with the network. ---- - -# Web3Games Testnet - -Web3Games Testnet is a blockchain network with chain ID 102. - -## Network Details - -- **Chain ID**: 102 -- **Chain Name**: Web3Games -- **Short Name**: tw3g -- **Network ID**: 102 -- **Currency**: - - **Name**: Web3Games - - **Symbol**: W3G - - **Decimals**: 18 - -## RPC URLs - -Web3Games Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc-0.web3games.org/evm -- https://testnet-rpc-1.web3games.org/evm -- https://testnet-rpc-2.web3games.org/evm - -## Web3Games Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://web3games.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Web3Games Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/web3q-galileo.mdx b/docs/pages/solutions/chainlist/non-integrated/web3q-galileo.mdx deleted file mode 100644 index 4c3a8bb16b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/web3q-galileo.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Web3Q Galileo - Web3Q Blockchain Network -description: Explore Web3Q Galileo, a blockchain network with chain ID 3334. Learn about its native currency, Web3Q, and how to interact with the network. ---- - -# Web3Q Galileo - -Web3Q Galileo is a blockchain network with chain ID 3334. - -## Network Details - -- **Chain ID**: 3334 -- **Chain Name**: Web3Q -- **Short Name**: w3q-g -- **Network ID**: 3334 -- **Currency**: - - **Name**: Web3Q - - **Symbol**: W3Q - - **Decimals**: 18 - -## RPC URLs - -Web3Q Galileo can be accessed through the following RPC endpoints: - -- https://galileo.web3q.io:8545 - -## Web3Q Galileo Block Explorers - -- [w3q-galileo](https://explorer.galileo.web3q.io) - -## Additional Information - -- **Official Website**: https://galileo.web3q.io/home.w3q/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/web3q.mdx b/docs/pages/solutions/chainlist/non-integrated/web3q.mdx deleted file mode 100644 index c7322a7883..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/web3q.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Web3Q Mainnet - Web3Q Blockchain Network -description: Explore Web3Q Mainnet, a blockchain network with chain ID 333. Learn about its native currency, Web3Q, and how to interact with the network. ---- - -# Web3Q Mainnet - -Web3Q Mainnet is a blockchain network with chain ID 333. - -## Network Details - -- **Chain ID**: 333 -- **Chain Name**: Web3Q -- **Short Name**: w3q -- **Network ID**: 333 -- **Currency**: - - **Name**: Web3Q - - **Symbol**: W3Q - - **Decimals**: 18 - -## RPC URLs - -Web3Q Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.web3q.io:8545 - -## Web3Q Mainnet Block Explorers - -- [w3q-mainnet](https://explorer.mainnet.web3q.io) - -## Additional Information - -- **Official Website**: https://web3q.io/home.w3q/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/webchain.mdx b/docs/pages/solutions/chainlist/non-integrated/webchain.mdx deleted file mode 100644 index e70ed47a39..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/webchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Webchain - WEB Blockchain Network -description: Explore Webchain, a blockchain network with chain ID 24484. Learn about its native currency, Webchain Ether, and how to interact with the network. ---- - -# Webchain - -Webchain is a blockchain network with chain ID 24484. - -## Network Details - -- **Chain ID**: 24484 -- **Chain Name**: WEB -- **Short Name**: web -- **Network ID**: 24484 -- **Currency**: - - **Name**: Webchain Ether - - **Symbol**: WEB - - **Decimals**: 18 - -## RPC URLs - -Webchain can be accessed through the following RPC endpoints: - - - -## Webchain Block Explorers - - - -## Additional Information - -- **Official Website**: https://webchain.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/weelink-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/weelink-testnet.mdx deleted file mode 100644 index 0c4933e2e9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/weelink-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Weelink Testnet - WLK Blockchain Network -description: Explore Weelink Testnet, a blockchain network with chain ID 444900. Learn about its native currency, Weelink Chain Token, and how to interact with the network. ---- - -# Weelink Testnet - -Weelink Testnet is a blockchain network with chain ID 444900. - -## Network Details - -- **Chain ID**: 444900 -- **Chain Name**: WLK -- **Short Name**: wlkt -- **Network ID**: 444900 -- **Currency**: - - **Name**: Weelink Chain Token - - **Symbol**: tWLK - - **Decimals**: 18 - -## RPC URLs - -Weelink Testnet can be accessed through the following RPC endpoints: - -- https://weelinknode1c.gw002.oneitfarm.com - -## Weelink Testnet Block Explorers - -- [weelink-testnet](https://weelink.cloud/#/blockView/overview) - -## Additional Information - -- **Official Website**: https://weelink.cloud - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Weelink Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wegochain-rubidium.mdx b/docs/pages/solutions/chainlist/non-integrated/wegochain-rubidium.mdx deleted file mode 100644 index c5a652e175..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wegochain-rubidium.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: Wegochain Rubidium Mainnet - RBD Blockchain Network -description: Explore Wegochain Rubidium Mainnet, a blockchain network with chain ID 5869. Learn about its native currency, Rubid, and how to interact with the network. ---- - -# Wegochain Rubidium Mainnet - -Wegochain Rubidium Mainnet is a blockchain network with chain ID 5869. - -## Network Details - -- **Chain ID**: 5869 -- **Chain Name**: RBD -- **Short Name**: rbd -- **Network ID**: 5869 -- **Currency**: - - **Name**: Rubid - - **Symbol**: RBD - - **Decimals**: 18 - -## RPC URLs - -Wegochain Rubidium Mainnet can be accessed through the following RPC endpoints: - -- https://proxy.wegochain.io -- http://wallet.wegochain.io:7764 - -## Wegochain Rubidium Mainnet Block Explorers - -- [wegoscan2](https://scan2.wegochain.io) - -## Additional Information - -- **Official Website**: https://www.wegochain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/wemix3.0-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/wemix3.0-testnet.mdx deleted file mode 100644 index d447e75a0e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wemix3.0-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: WEMIX3.0 Testnet - TWEMIX Blockchain Network -description: Explore WEMIX3.0 Testnet, a blockchain network with chain ID 1112. Learn about its native currency, TestnetWEMIX, and how to interact with the network. ---- - -# WEMIX3.0 Testnet - -WEMIX3.0 Testnet is a blockchain network with chain ID 1112. - -## Network Details - -- **Chain ID**: 1112 -- **Chain Name**: TWEMIX -- **Short Name**: twemix -- **Network ID**: 1112 -- **Currency**: - - **Name**: TestnetWEMIX - - **Symbol**: tWEMIX - - **Decimals**: 18 - -## RPC URLs - -WEMIX3.0 Testnet can be accessed through the following RPC endpoints: - -- https://api.test.wemix.com -- wss://ws.test.wemix.com - -## WEMIX3.0 Testnet Block Explorers - -- [WEMIX Testnet Microscope](https://microscope.test.wemix.com) - -## Additional Information - -- **Official Website**: https://wemix.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## WEMIX3.0 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wemix3.0.mdx b/docs/pages/solutions/chainlist/non-integrated/wemix3.0.mdx deleted file mode 100644 index 8dec384101..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wemix3.0.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: WEMIX3.0 Mainnet - WEMIX Blockchain Network -description: Explore WEMIX3.0 Mainnet, a blockchain network with chain ID 1111. Learn about its native currency, WEMIX, and how to interact with the network. ---- - -# WEMIX3.0 Mainnet - -WEMIX3.0 Mainnet is a blockchain network with chain ID 1111. - -## Network Details - -- **Chain ID**: 1111 -- **Chain Name**: WEMIX -- **Short Name**: wemix -- **Network ID**: 1111 -- **Currency**: - - **Name**: WEMIX - - **Symbol**: WEMIX - - **Decimals**: 18 - -## RPC URLs - -WEMIX3.0 Mainnet can be accessed through the following RPC endpoints: - -- https://api.wemix.com -- wss://ws.wemix.com - -## WEMIX3.0 Mainnet Block Explorers - -- [WEMIX Block Explorer](https://explorer.wemix.com) - -## Additional Information - -- **Official Website**: https://wemix.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/whalepass-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/whalepass-testnet.mdx deleted file mode 100644 index 60b9275af1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/whalepass-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Whalepass Testnet - WP Blockchain Network -description: Explore Whalepass Testnet, a blockchain network with chain ID 260693. Learn about its native currency, Whalepass, and how to interact with the network. ---- - -# Whalepass Testnet - -Whalepass Testnet is a blockchain network with chain ID 260693. - -## Network Details - -- **Chain ID**: 260693 -- **Chain Name**: WP -- **Short Name**: wptest -- **Network ID**: 260693 -- **Currency**: - - **Name**: Whalepass - - **Symbol**: WP - - **Decimals**: 18 - -## RPC URLs - -Whalepass Testnet can be accessed through the following RPC endpoints: - -- https://fraa-flashbox-2684-rpc.a.stagenet.tanssi.network - -## Whalepass Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Whalepass Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/whitechain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/whitechain-testnet.mdx deleted file mode 100644 index ddb0dabd33..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/whitechain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Whitechain Testnet - WBT Blockchain Network -description: Explore Whitechain Testnet, a blockchain network with chain ID 2625. Learn about its native currency, WhiteBIT Coin, and how to interact with the network. ---- - -# Whitechain Testnet - -Whitechain Testnet is a blockchain network with chain ID 2625. - -## Network Details - -- **Chain ID**: 2625 -- **Chain Name**: WBT -- **Short Name**: twbt -- **Network ID**: 2625 -- **Currency**: - - **Name**: WhiteBIT Coin - - **Symbol**: WBT - - **Decimals**: 18 - -## RPC URLs - -Whitechain Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.whitechain.io - -## Whitechain Testnet Block Explorers - -- [whitechain-testnet-explorer](https://testnet.whitechain.io) - -## Additional Information - -- **Official Website**: https://whitechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Whitechain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/whitechain.mdx b/docs/pages/solutions/chainlist/non-integrated/whitechain.mdx deleted file mode 100644 index edfda3ada4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/whitechain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Whitechain - WBT Blockchain Network -description: Explore Whitechain, a blockchain network with chain ID 1875. Learn about its native currency, WhiteBIT Coin, and how to interact with the network. ---- - -# Whitechain - -Whitechain is a blockchain network with chain ID 1875. - -## Network Details - -- **Chain ID**: 1875 -- **Chain Name**: WBT -- **Short Name**: wbt -- **Network ID**: 1875 -- **Currency**: - - **Name**: WhiteBIT Coin - - **Symbol**: WBT - - **Decimals**: 18 - -## RPC URLs - -Whitechain can be accessed through the following RPC endpoints: - -- https://rpc.whitechain.io - -## Whitechain Block Explorers - -- [whitechain-explorer](https://explorer.whitechain.io) - -## Additional Information - -- **Official Website**: https://whitechain.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/widespread-gold-worm.mdx b/docs/pages/solutions/chainlist/non-integrated/widespread-gold-worm.mdx deleted file mode 100644 index 100c92a9e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/widespread-gold-worm.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: widespread-gold-worm - Avalanche Blockchain Network -description: Explore widespread-gold-worm, a blockchain network with chain ID 123567. Learn about its native currency, widespread-gold-worm Token, and how to interact with the network. ---- - -# widespread-gold-worm - -widespread-gold-worm is a blockchain network with chain ID 123567. - -## Network Details - -- **Chain ID**: 123567 -- **Chain Name**: Avalanche -- **Short Name**: widespread-gold-worm -- **Network ID**: 123567 -- **Currency**: - - **Name**: widespread-gold-worm Token - - **Symbol**: WOWY - - **Decimals**: 18 - -## RPC URLs - -widespread-gold-worm can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## widespread-gold-worm Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## widespread-gold-worm Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-new-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-new-testnet.mdx deleted file mode 100644 index f7c56b1c94..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-new-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's New Testnet - Avalanche Blockchain Network -description: Explore Will's New Testnet, a blockchain network with chain ID 41799. Learn about its native currency, Will's New Testnet Token, and how to interact with the network. ---- - -# Will's New Testnet - -Will's New Testnet is a blockchain network with chain ID 41799. - -## Network Details - -- **Chain ID**: 41799 -- **Chain Name**: Avalanche -- **Short Name**: Will's New Testnet -- **Network ID**: 41799 -- **Currency**: - - **Name**: Will's New Testnet Token - - **Symbol**: ZBO - - **Decimals**: 18 - -## RPC URLs - -Will's New Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's New Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's New Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-sample-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-sample-testnet.mdx deleted file mode 100644 index e7e940501c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-sample-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Sample Testnet - Avalanche Blockchain Network -description: Explore Will's Sample Testnet, a blockchain network with chain ID 99083. Learn about its native currency, Will's Sample Testnet Token, and how to interact with the network. ---- - -# Will's Sample Testnet - -Will's Sample Testnet is a blockchain network with chain ID 99083. - -## Network Details - -- **Chain ID**: 99083 -- **Chain Name**: Avalanche -- **Short Name**: Will's Sample Testnet -- **Network ID**: 99083 -- **Currency**: - - **Name**: Will's Sample Testnet Token - - **Symbol**: TESTWILL - - **Decimals**: 18 - -## RPC URLs - -Will's Sample Testnet can be accessed through the following RPC endpoints: - -- https://testnet-bestname10-a4ea7.avax-test.network/ext/bc/M4SdtZY7dfiwdJQdjcT3UL5gXY1RDdvRt5Z8BgACfAdWy8LGY/rpc?token=c052be2f5a4c2a771d71fc4970c42b184ac2e74ad325fdbac02b5556723868c2 - -## Will's Sample Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Sample Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-super-subnet.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-super-subnet.mdx deleted file mode 100644 index a40065488e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-super-subnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Super Subnet - Avalanche Blockchain Network -description: Explore Will's Super Subnet, a blockchain network with chain ID 36530. Learn about its native currency, Will's Super Subnet Token, and how to interact with the network. ---- - -# Will's Super Subnet - -Will's Super Subnet is a blockchain network with chain ID 36530. - -## Network Details - -- **Chain ID**: 36530 -- **Chain Name**: Avalanche -- **Short Name**: Will's Super Subnet -- **Network ID**: 36530 -- **Currency**: - - **Name**: Will's Super Subnet Token - - **Symbol**: VRJ - - **Decimals**: 18 - -## RPC URLs - -Will's Super Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Super Subnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Super Subnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-22886.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-testnet-22886.mdx deleted file mode 100644 index 3b55d4dc53..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-22886.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Testnet - Avalanche Blockchain Network -description: Explore Will's Testnet, a blockchain network with chain ID 22886. Learn about its native currency, Will's Testnet Token, and how to interact with the network. ---- - -# Will's Testnet - -Will's Testnet is a blockchain network with chain ID 22886. - -## Network Details - -- **Chain ID**: 22886 -- **Chain Name**: Avalanche -- **Short Name**: Will's Testnet -- **Network ID**: 22886 -- **Currency**: - - **Name**: Will's Testnet Token - - **Symbol**: MBM - - **Decimals**: 18 - -## RPC URLs - -Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-30226.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-testnet-30226.mdx deleted file mode 100644 index ad167e9087..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-30226.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Testnet - Avalanche Blockchain Network -description: Explore Will's Testnet, a blockchain network with chain ID 30226. Learn about its native currency, Will's Testnet Token, and how to interact with the network. ---- - -# Will's Testnet - -Will's Testnet is a blockchain network with chain ID 30226. - -## Network Details - -- **Chain ID**: 30226 -- **Chain Name**: Avalanche -- **Short Name**: Will's Testnet -- **Network ID**: 30226 -- **Currency**: - - **Name**: Will's Testnet Token - - **Symbol**: JPQ - - **Decimals**: 18 - -## RPC URLs - -Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-42840.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-testnet-42840.mdx deleted file mode 100644 index b6f08cca6e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-42840.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Testnet - Avalanche Blockchain Network -description: Explore Will's Testnet, a blockchain network with chain ID 42840. Learn about its native currency, Will's Testnet Token, and how to interact with the network. ---- - -# Will's Testnet - -Will's Testnet is a blockchain network with chain ID 42840. - -## Network Details - -- **Chain ID**: 42840 -- **Chain Name**: Avalanche -- **Short Name**: Will's Testnet -- **Network ID**: 42840 -- **Currency**: - - **Name**: Will's Testnet Token - - **Symbol**: DQX - - **Decimals**: 18 - -## RPC URLs - -Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-69740.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-testnet-69740.mdx deleted file mode 100644 index 0de63a4f06..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-testnet-69740.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Testnet - Avalanche Blockchain Network -description: Explore Will's Testnet, a blockchain network with chain ID 69740. Learn about its native currency, Will's Testnet Token, and how to interact with the network. ---- - -# Will's Testnet - -Will's Testnet is a blockchain network with chain ID 69740. - -## Network Details - -- **Chain ID**: 69740 -- **Chain Name**: Avalanche -- **Short Name**: Will's Testnet -- **Network ID**: 69740 -- **Currency**: - - **Name**: Will's Testnet Token - - **Symbol**: WLDVNT - - **Decimals**: 18 - -## RPC URLs - -Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/will's-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/will's-testnet.mdx deleted file mode 100644 index 8f34869e39..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/will's-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Will's Testnet - Avalanche Blockchain Network -description: Explore Will's Testnet, a blockchain network with chain ID 3036. Learn about its native currency, Will's Testnet Token, and how to interact with the network. ---- - -# Will's Testnet - -Will's Testnet is a blockchain network with chain ID 3036. - -## Network Details - -- **Chain ID**: 3036 -- **Chain Name**: Avalanche -- **Short Name**: Will's Testnet -- **Network ID**: 3036 -- **Currency**: - - **Name**: Will's Testnet Token - - **Symbol**: QED - - **Decimals**: 18 - -## RPC URLs - -Will's Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc - -## Will's Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Will's Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wireshape-floripa-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/wireshape-floripa-testnet.mdx deleted file mode 100644 index 8b5d457797..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wireshape-floripa-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Wireshape Floripa Testnet - Wireshape Blockchain Network -description: Explore Wireshape Floripa Testnet, a blockchain network with chain ID 49049. Learn about its native currency, WIRE, and how to interact with the network. ---- - -# Wireshape Floripa Testnet - -Wireshape Floripa Testnet is a blockchain network with chain ID 49049. - -## Network Details - -- **Chain ID**: 49049 -- **Chain Name**: Wireshape -- **Short Name**: floripa -- **Network ID**: 49049 -- **Currency**: - - **Name**: WIRE - - **Symbol**: WIRE - - **Decimals**: 18 - -## RPC URLs - -Wireshape Floripa Testnet can be accessed through the following RPC endpoints: - -- https://rpc-floripa.wireshape.org - -## Wireshape Floripa Testnet Block Explorers - -- [Wire Explorer](https://floripa-explorer.wireshape.org) - -## Additional Information - -- **Official Website**: https://wireshape.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Wireshape Floripa Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/won-network.mdx b/docs/pages/solutions/chainlist/non-integrated/won-network.mdx deleted file mode 100644 index eec786fefd..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/won-network.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Won Network - WON Blockchain Network -description: Explore Won Network, a blockchain network with chain ID 686868. Learn about its native currency, Won, and how to interact with the network. ---- - -# Won Network - -Won Network is a blockchain network with chain ID 686868. - -## Network Details - -- **Chain ID**: 686868 -- **Chain Name**: WON -- **Short Name**: WonChain -- **Network ID**: 686868 -- **Currency**: - - **Name**: Won - - **Symbol**: WON - - **Decimals**: 18 - -## RPC URLs - -Won Network can be accessed through the following RPC endpoints: - -- https://rpc.wonnetwork.org - -## Won Network Block Explorers - -- [Won Explorer](https://scan.wonnetwork.org) - -## Additional Information - -- **Official Website**: https://wonnetwork.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/woopchain.mdx b/docs/pages/solutions/chainlist/non-integrated/woopchain.mdx deleted file mode 100644 index f84c1caa9e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/woopchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: WoopChain Mainnet - WOOP Blockchain Network -description: Explore WoopChain Mainnet, a blockchain network with chain ID 139. Learn about its native currency, WoopCoin, and how to interact with the network. ---- - -# WoopChain Mainnet - -WoopChain Mainnet is a blockchain network with chain ID 139. - -## Network Details - -- **Chain ID**: 139 -- **Chain Name**: WOOP -- **Short Name**: woop -- **Network ID**: 139 -- **Currency**: - - **Name**: WoopCoin - - **Symbol**: WOOC - - **Decimals**: 18 - -## RPC URLs - -WoopChain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.woop.ai/rpc - -## WoopChain Mainnet Block Explorers - -- [wikiwoop](https://explorer.wikiwoop.com) - -## Additional Information - -- **Official Website**: https://wikiwoop.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet-deprecated.mdx b/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet-deprecated.mdx deleted file mode 100644 index a1e6bebacb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet-deprecated.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: World Chain Sepolia Testnet Deprecated - ETH Blockchain Network -description: Explore World Chain Sepolia Testnet Deprecated, a blockchain network with chain ID 484752. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# World Chain Sepolia Testnet Deprecated - -World Chain Sepolia Testnet Deprecated is a blockchain network with chain ID 484752. - -## Network Details - -- **Chain ID**: 484752 -- **Chain Name**: ETH -- **Short Name**: wcsep-dep -- **Network ID**: 484752 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -World Chain Sepolia Testnet Deprecated can be accessed through the following RPC endpoints: - - - -## World Chain Sepolia Testnet Deprecated Block Explorers - - - -## Additional Information - -- **Official Website**: https://worldcoin.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## World Chain Sepolia Testnet Deprecated Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet.mdx deleted file mode 100644 index 2c4ce96dc9..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/world-chain-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: World Chain Sepolia Testnet - ETH Blockchain Network -description: Explore World Chain Sepolia Testnet, a blockchain network with chain ID 4801. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# World Chain Sepolia Testnet - -World Chain Sepolia Testnet is a blockchain network with chain ID 4801. - -## Network Details - -- **Chain ID**: 4801 -- **Chain Name**: ETH -- **Short Name**: wcsep -- **Network ID**: 4801 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -World Chain Sepolia Testnet can be accessed through the following RPC endpoints: - - - -## World Chain Sepolia Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://worldcoin.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## World Chain Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/world-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/world-chain.mdx deleted file mode 100644 index aca0ee54c5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/world-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: World Chain - ETH Blockchain Network -description: Explore World Chain, a blockchain network with chain ID 480. Learn about its native currency, Ether, and how to interact with the network. ---- - -# World Chain - -World Chain is a blockchain network with chain ID 480. - -## Network Details - -- **Chain ID**: 480 -- **Chain Name**: ETH -- **Short Name**: wc -- **Network ID**: 480 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -World Chain can be accessed through the following RPC endpoints: - - - -## World Chain Block Explorers - - - -## Additional Information - -- **Official Website**: https://worldcoin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/world-trade-technical-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/world-trade-technical-chain.mdx deleted file mode 100644 index 9710e6b29b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/world-trade-technical-chain.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: World Trade Technical Chain Mainnet - WTT Blockchain Network -description: Explore World Trade Technical Chain Mainnet, a blockchain network with chain ID 1202. Learn about its native currency, World Trade Token, and how to interact with the network. ---- - -# World Trade Technical Chain Mainnet - -World Trade Technical Chain Mainnet is a blockchain network with chain ID 1202. - -## Network Details - -- **Chain ID**: 1202 -- **Chain Name**: WTT -- **Short Name**: wtt -- **Network ID**: 1202 -- **Currency**: - - **Name**: World Trade Token - - **Symbol**: WTT - - **Decimals**: 18 - -## RPC URLs - -World Trade Technical Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.cadaut.com -- wss://rpc.cadaut.com/ws - -## World Trade Technical Chain Mainnet Block Explorers - -- [WTTScout](https://explorer.cadaut.com) - -## Additional Information - -- **Official Website**: http://www.cadaut.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/worldland-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/worldland-testnet.mdx deleted file mode 100644 index 5b508c7f37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worldland-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: WorldLand Testnet - Worldland Blockchain Network -description: Explore WorldLand Testnet, a blockchain network with chain ID 10395. Learn about its native currency, Worldland, and how to interact with the network. ---- - -# WorldLand Testnet - -WorldLand Testnet is a blockchain network with chain ID 10395. - -## Network Details - -- **Chain ID**: 10395 -- **Chain Name**: Worldland -- **Short Name**: TWLC -- **Network ID**: 10395 -- **Currency**: - - **Name**: Worldland - - **Symbol**: WLC - - **Decimals**: 18 - -## RPC URLs - -WorldLand Testnet can be accessed through the following RPC endpoints: - -- https://gwangju.worldland.foundation - -## WorldLand Testnet Block Explorers - -- [Worldland Explorer](https://testscan.worldland.foundation) - -## Additional Information - -- **Official Website**: https://worldland.foundation - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## WorldLand Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/worldland.mdx b/docs/pages/solutions/chainlist/non-integrated/worldland.mdx deleted file mode 100644 index 276346c9da..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worldland.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: WorldLand Mainnet - Worldland Blockchain Network -description: Explore WorldLand Mainnet, a blockchain network with chain ID 103. Learn about its native currency, Worldland, and how to interact with the network. ---- - -# WorldLand Mainnet - -WorldLand Mainnet is a blockchain network with chain ID 103. - -## Network Details - -- **Chain ID**: 103 -- **Chain Name**: Worldland -- **Short Name**: WLC -- **Network ID**: 103 -- **Currency**: - - **Name**: Worldland - - **Symbol**: WLC - - **Decimals**: 18 - -## RPC URLs - -WorldLand Mainnet can be accessed through the following RPC endpoints: - -- https://seoul.worldland.foundation -- https://seoul2.worldland.foundation - -## WorldLand Mainnet Block Explorers - -- [Worldland Explorer](https://scan.worldland.foundation) - -## Additional Information - -- **Official Website**: https://worldland.foundation - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/worlds-appchain.mdx b/docs/pages/solutions/chainlist/non-integrated/worlds-appchain.mdx deleted file mode 100644 index 7b05bbcc36..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worlds-appchain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Worlds Appchain - WRLDS Blockchain Network -description: Explore Worlds Appchain, a blockchain network with chain ID 91003. Learn about its native currency, WRLDS, and how to interact with the network. ---- - -# Worlds Appchain - -Worlds Appchain is a blockchain network with chain ID 91003. - -## Network Details - -- **Chain ID**: 91003 -- **Chain Name**: WRLDS -- **Short Name**: WRLDS -- **Network ID**: 91003 -- **Currency**: - - **Name**: WRLDS - - **Symbol**: WRLDS - - **Decimals**: 18 - -## RPC URLs - -Worlds Appchain can be accessed through the following RPC endpoints: - -- https://api.evm.worlds.dev.eclipsenetwork.xyz/ - -## Worlds Appchain Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Worlds Appchain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/worlds-caldera.mdx b/docs/pages/solutions/chainlist/non-integrated/worlds-caldera.mdx deleted file mode 100644 index 7fc5e85f3d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worlds-caldera.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Worlds Caldera - WCal Blockchain Network -description: Explore Worlds Caldera, a blockchain network with chain ID 4281033. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Worlds Caldera - -Worlds Caldera is a blockchain network with chain ID 4281033. - -## Network Details - -- **Chain ID**: 4281033 -- **Chain Name**: WCal -- **Short Name**: worldscal -- **Network ID**: 4281033 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Worlds Caldera can be accessed through the following RPC endpoints: - -- https://worlds-test.calderachain.xyz/http - -## Worlds Caldera Block Explorers - - - -## Additional Information - -- **Official Website**: https://caldera.xyz/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Worlds Caldera Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/worlds-op.mdx b/docs/pages/solutions/chainlist/non-integrated/worlds-op.mdx deleted file mode 100644 index 7d51d63722..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worlds-op.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Worlds OP - ETH Blockchain Network -description: Explore Worlds OP, a blockchain network with chain ID 31929. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Worlds OP - -Worlds OP is a blockchain network with chain ID 31929. - -## Network Details - -- **Chain ID**: 31929 -- **Chain Name**: ETH -- **Short Name**: WorldsOP -- **Network ID**: 31929 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Worlds OP can be accessed through the following RPC endpoints: - -- https://rpc-worlds-hwbmpbzcnh.t.conduit.xyz/ - -## Worlds OP Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Worlds OP Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/worthy-white-roundworm.mdx b/docs/pages/solutions/chainlist/non-integrated/worthy-white-roundworm.mdx deleted file mode 100644 index 8a5e284b2f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/worthy-white-roundworm.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: worthy-white-roundworm - Avalanche Blockchain Network -description: Explore worthy-white-roundworm, a blockchain network with chain ID 84824. Learn about its native currency, worthy-white-roundworm Token, and how to interact with the network. ---- - -# worthy-white-roundworm - -worthy-white-roundworm is a blockchain network with chain ID 84824. - -## Network Details - -- **Chain ID**: 84824 -- **Chain Name**: Avalanche -- **Short Name**: worthy-white-roundworm -- **Network ID**: 84824 -- **Currency**: - - **Name**: worthy-white-roundworm Token - - **Symbol**: QIE - - **Decimals**: 18 - -## RPC URLs - -worthy-white-roundworm can be accessed through the following RPC endpoints: - -- https://testnet-qie2409111-vc4dc.avax-test.network/ext/bc/e1KEGym2kJWDxz5t9VsgrCaL1P7W9mGQBidFCTctog9FJYy6X/rpc?token=25e18389c12fdf95ca609f650c2e33b855ca5700c4c3d485c4aa8837c1621580 - -## worthy-white-roundworm Block Explorers - - - -## Additional Information - -- **Official Website**: https://avacloud.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## worthy-white-roundworm Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wrldchngrs.mdx b/docs/pages/solutions/chainlist/non-integrated/wrldchngrs.mdx deleted file mode 100644 index a9f89ed1ee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wrldchngrs.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: wrldchngrs - wrldchngrs Blockchain Network -description: Explore wrldchngrs, a blockchain network with chain ID 2723389249294000. Learn about its native currency, CAPE, and how to interact with the network. ---- - -# wrldchngrs - -wrldchngrs is a blockchain network with chain ID 2723389249294000. - -## Network Details - -- **Chain ID**: 2723389249294000 -- **Chain Name**: wrldchngrs -- **Short Name**: wrldchngrs -- **Network ID**: 2723389249294000 -- **Currency**: - - **Name**: CAPE - - **Symbol**: CAPE - - **Decimals**: 18 - -## RPC URLs - -wrldchngrs can be accessed through the following RPC endpoints: - -- https://wrldchngrs-2723389249294000-1.jsonrpc.sagarpc.io - -## wrldchngrs Block Explorers - -- [wrldchngrs explorer](https://wrldchngrs-2723389249294000-1.sagaexplorer.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## wrldchngrs Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/wyzth-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/wyzth-testnet.mdx deleted file mode 100644 index 23f17d2bb5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/wyzth-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Wyzth Testnet - WYZ Blockchain Network -description: Explore Wyzth Testnet, a blockchain network with chain ID 309. Learn about its native currency, Wyzth, and how to interact with the network. ---- - -# Wyzth Testnet - -Wyzth Testnet is a blockchain network with chain ID 309. - -## Network Details - -- **Chain ID**: 309 -- **Chain Name**: WYZ -- **Short Name**: wyz -- **Network ID**: 309 -- **Currency**: - - **Name**: Wyzth - - **Symbol**: WYZ - - **Decimals**: 18 - -## RPC URLs - -Wyzth Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet3.wyzthchain.org/ - -## Wyzth Testnet Block Explorers - -- [wyzth](http://24.199.108.65:4000) - -## Additional Information - -- **Official Website**: https://wyzth.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Wyzth Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/x-coin.mdx b/docs/pages/solutions/chainlist/non-integrated/x-coin.mdx deleted file mode 100644 index c4aead0643..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x-coin.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: x-coin - x-coin Blockchain Network -description: Explore x-coin, a blockchain network with chain ID 56869. Learn about its native currency, X-COIN, and how to interact with the network. ---- - -# x-coin - -x-coin is a blockchain network with chain ID 56869. - -## Network Details - -- **Chain ID**: 56869 -- **Chain Name**: x-coin -- **Short Name**: x-coin -- **Network ID**: 56869 -- **Currency**: - - **Name**: X-COIN - - **Symbol**: X-COIN - - **Decimals**: 18 - -## RPC URLs - -x-coin can be accessed through the following RPC endpoints: - -- https://rpc-x-coin-lcqip7b6fd.t.conduit.xyz - -## x-coin Block Explorers - -- [x-coin Explorer](https://explorer-x-coin-lcqip7b6fd.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/56869 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## x-coin Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/x-layer-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/x-layer-testnet.mdx deleted file mode 100644 index afe6c6b15a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x-layer-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: X Layer Testnet - X Layer Blockchain Network -description: Explore X Layer Testnet, a blockchain network with chain ID 195. Learn about its native currency, X Layer Global Utility Token in testnet, and how to interact with the network. ---- - -# X Layer Testnet - -X Layer Testnet is a blockchain network with chain ID 195. - -## Network Details - -- **Chain ID**: 195 -- **Chain Name**: X Layer -- **Short Name**: tokb -- **Network ID**: 195 -- **Currency**: - - **Name**: X Layer Global Utility Token in testnet - - **Symbol**: OKB - - **Decimals**: 18 - -## RPC URLs - -X Layer Testnet can be accessed through the following RPC endpoints: - -- https://testrpc.xlayer.tech -- https://xlayertestrpc.okx.com - -## X Layer Testnet Block Explorers - -- [OKLink](https://www.oklink.com/xlayer-test) - -## Additional Information - -- **Official Website**: https://www.okx.com/xlayer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## X Layer Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/x-layer.mdx b/docs/pages/solutions/chainlist/non-integrated/x-layer.mdx deleted file mode 100644 index 00cf290a43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x-layer.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: X Layer Mainnet - X Layer Blockchain Network -description: Explore X Layer Mainnet, a blockchain network with chain ID 196. Learn about its native currency, X Layer Global Utility Token, and how to interact with the network. ---- - -# X Layer Mainnet - -X Layer Mainnet is a blockchain network with chain ID 196. - -## Network Details - -- **Chain ID**: 196 -- **Chain Name**: X Layer -- **Short Name**: okb -- **Network ID**: 196 -- **Currency**: - - **Name**: X Layer Global Utility Token - - **Symbol**: OKB - - **Decimals**: 18 - -## RPC URLs - -X Layer Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.xlayer.tech -- https://xlayerrpc.okx.com - -## X Layer Mainnet Block Explorers - -- [OKLink](https://www.oklink.com/xlayer) - -## Additional Information - -- **Official Website**: https://www.okx.com/xlayer - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/x1-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/x1-devnet.mdx deleted file mode 100644 index f0ff55e65c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x1-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: X1 Devnet - X1 Blockchain Network -description: Explore X1 Devnet, a blockchain network with chain ID 202212. Learn about its native currency, XN, and how to interact with the network. ---- - -# X1 Devnet - -X1 Devnet is a blockchain network with chain ID 202212. - -## Network Details - -- **Chain ID**: 202212 -- **Chain Name**: X1 -- **Short Name**: x1-devnet -- **Network ID**: 202212 -- **Currency**: - - **Name**: XN - - **Symbol**: XN - - **Decimals**: 18 - -## RPC URLs - -X1 Devnet can be accessed through the following RPC endpoints: - -- https://x1-devnet.xen.network - -## X1 Devnet Block Explorers - -- [Blockscout](https://explorer.x1-devnet.xen.network) - -## Additional Information - -- **Official Website**: https://docs.xen.network/x1/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/x1-fastnet.mdx b/docs/pages/solutions/chainlist/non-integrated/x1-fastnet.mdx deleted file mode 100644 index f3380d7e9f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x1-fastnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: X1 Fastnet - X1 Blockchain Network -description: Explore X1 Fastnet, a blockchain network with chain ID 4003. Learn about its native currency, XN, and how to interact with the network. ---- - -# X1 Fastnet - -X1 Fastnet is a blockchain network with chain ID 4003. - -## Network Details - -- **Chain ID**: 4003 -- **Chain Name**: X1 -- **Short Name**: x1-fastnet -- **Network ID**: 4003 -- **Currency**: - - **Name**: XN - - **Symbol**: XN - - **Decimals**: 18 - -## RPC URLs - -X1 Fastnet can be accessed through the following RPC endpoints: - -- https://x1-fastnet.xen.network - -## X1 Fastnet Block Explorers - -- [Blockscout](https://explorer.x1-fastnet.xen.network) - -## Additional Information - -- **Official Website**: https://docs.xen.network/go-x1/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/x1-network.mdx b/docs/pages/solutions/chainlist/non-integrated/x1-network.mdx deleted file mode 100644 index 01ed704d14..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/x1-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: X1 Network - X1 Blockchain Network -description: Explore X1 Network, a blockchain network with chain ID 204005. Learn about its native currency, XN, and how to interact with the network. ---- - -# X1 Network - -X1 Network is a blockchain network with chain ID 204005. - -## Network Details - -- **Chain ID**: 204005 -- **Chain Name**: X1 -- **Short Name**: x1-testnet -- **Network ID**: 204005 -- **Currency**: - - **Name**: XN - - **Symbol**: XN - - **Decimals**: 18 - -## RPC URLs - -X1 Network can be accessed through the following RPC endpoints: - -- https://x1-testnet.xen.network - -## X1 Network Block Explorers - -- [Blockscout](https://explorer.x1-testnet.xen.network) - -## Additional Information - -- **Official Website**: https://docs.xen.network/go-x1/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## X1 Network Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xai-goerli-orbit.mdx b/docs/pages/solutions/chainlist/non-integrated/xai-goerli-orbit.mdx deleted file mode 100644 index e67d441e5e..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xai-goerli-orbit.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xai Goerli Orbit - Xai Goerli Orbit Testnet Blockchain Network -description: Explore Xai Goerli Orbit, a blockchain network with chain ID 47279324479. Learn about its native currency, Xai Goerli Ether, and how to interact with the network. ---- - -# Xai Goerli Orbit - -Xai Goerli Orbit is a blockchain network with chain ID 47279324479. - -## Network Details - -- **Chain ID**: 47279324479 -- **Chain Name**: Xai Goerli Orbit Testnet -- **Short Name**: xai-goerli -- **Network ID**: 47279324479 -- **Currency**: - - **Name**: Xai Goerli Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Xai Goerli Orbit can be accessed through the following RPC endpoints: - - - -## Xai Goerli Orbit Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xai Goerli Orbit Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xanachain.mdx b/docs/pages/solutions/chainlist/non-integrated/xanachain.mdx deleted file mode 100644 index 9f72a94257..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xanachain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: XANAChain - XANAChain Blockchain Network -description: Explore XANAChain, a blockchain network with chain ID 8888. Learn about its native currency, XETA, and how to interact with the network. ---- - -# XANAChain - -XANAChain is a blockchain network with chain ID 8888. - -## Network Details - -- **Chain ID**: 8888 -- **Chain Name**: XANAChain -- **Short Name**: XANAChain -- **Network ID**: 8888 -- **Currency**: - - **Name**: XETA - - **Symbol**: XETA - - **Decimals**: 18 - -## RPC URLs - -XANAChain can be accessed through the following RPC endpoints: - -- https://mainnet.xana.net/rpc - -## XANAChain Block Explorers - -- [XANAChain](https://xanachain.xana.net) - -## Additional Information - -- **Official Website**: https://xanachain.xana.net/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xantus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xantus-testnet.mdx deleted file mode 100644 index c8c4ffb65c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xantus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xantus Testnet - Avalanche Blockchain Network -description: Explore Xantus Testnet, a blockchain network with chain ID 141221. Learn about its native currency, Xantus Testnet Token, and how to interact with the network. ---- - -# Xantus Testnet - -Xantus Testnet is a blockchain network with chain ID 141221. - -## Network Details - -- **Chain ID**: 141221 -- **Chain Name**: Avalanche -- **Short Name**: Xantus Testnet -- **Network ID**: 141221 -- **Currency**: - - **Name**: Xantus Testnet Token - - **Symbol**: XAN - - **Decimals**: 18 - -## RPC URLs - -Xantus Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/xantustest/testnet/rpc - -## Xantus Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xantus Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xantus.mdx b/docs/pages/solutions/chainlist/non-integrated/xantus.mdx deleted file mode 100644 index 52ef35fb84..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xantus.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xantus - Avalanche Blockchain Network -description: Explore Xantus, a blockchain network with chain ID 151221. Learn about its native currency, Xantus Token, and how to interact with the network. ---- - -# Xantus - -Xantus is a blockchain network with chain ID 151221. - -## Network Details - -- **Chain ID**: 151221 -- **Chain Name**: Avalanche -- **Short Name**: Xantus -- **Network ID**: 151221 -- **Currency**: - - **Name**: Xantus Token - - **Symbol**: XAN - - **Decimals**: 18 - -## RPC URLs - -Xantus can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/xantus/testnet/rpc - -## Xantus Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xantus Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xcap.mdx b/docs/pages/solutions/chainlist/non-integrated/xcap.mdx deleted file mode 100644 index 8b33400645..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xcap.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: XCAP - XCAP Blockchain Network -description: Explore XCAP, a blockchain network with chain ID 9322252. Learn about its native currency, Gas, and how to interact with the network. ---- - -# XCAP - -XCAP is a blockchain network with chain ID 9322252. - -## Network Details - -- **Chain ID**: 9322252 -- **Chain Name**: XCAP -- **Short Name**: xcap -- **Network ID**: 9322252 -- **Currency**: - - **Name**: Gas - - **Symbol**: GAS - - **Decimals**: 18 - -## RPC URLs - -XCAP can be accessed through the following RPC endpoints: - -- https://xcap-mainnet.relay.xcap.network/znzvh2ueyvm2yts5fv5gnul395jbkfb2/rpc1 - -## XCAP Block Explorers - -- [blockscout](https://xcap-mainnet.explorer.xcap.network) - -## Additional Information - -- **Official Website**: https://xcap.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xchain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xchain-testnet.mdx deleted file mode 100644 index 48246f3688..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xchain-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xchain Testnet - Xchain Blockchain Network -description: Explore Xchain Testnet, a blockchain network with chain ID 31754. Learn about its native currency, Intdestcoin Testnet, and how to interact with the network. ---- - -# Xchain Testnet - -Xchain Testnet is a blockchain network with chain ID 31754. - -## Network Details - -- **Chain ID**: 31754 -- **Chain Name**: Xchain -- **Short Name**: tINTD -- **Network ID**: 31754 -- **Currency**: - - **Name**: Intdestcoin Testnet - - **Symbol**: INTD - - **Decimals**: 18 - -## RPC URLs - -Xchain Testnet can be accessed through the following RPC endpoints: - -- https://rpc.xchaintest.net - -## Xchain Testnet Block Explorers - -- [Xchain Testnet Explorer](https://xchaintest.net) - -## Additional Information - -- **Official Website**: https://xchaintest.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xchain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xchain.mdx b/docs/pages/solutions/chainlist/non-integrated/xchain.mdx deleted file mode 100644 index b03a06701b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Xchain Mainnet - Xchain Blockchain Network -description: Explore Xchain Mainnet, a blockchain network with chain ID 31753. Learn about its native currency, Intdestcoin, and how to interact with the network. ---- - -# Xchain Mainnet - -Xchain Mainnet is a blockchain network with chain ID 31753. - -## Network Details - -- **Chain ID**: 31753 -- **Chain Name**: Xchain -- **Short Name**: INTD -- **Network ID**: 31753 -- **Currency**: - - **Name**: Intdestcoin - - **Symbol**: INTD - - **Decimals**: 18 - -## RPC URLs - -Xchain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.xchainscan.com - -## Xchain Mainnet Block Explorers - -- [Xchain Mainnet Explorer](https://xchainscan.com) - -## Additional Information - -- **Official Website**: https://xchainscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xdc-apothem-network.mdx b/docs/pages/solutions/chainlist/non-integrated/xdc-apothem-network.mdx deleted file mode 100644 index 4773102ad6..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xdc-apothem-network.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: XDC Apothem Network - XDC Blockchain Network -description: Explore XDC Apothem Network, a blockchain network with chain ID 51. Learn about its native currency, XinFin, and how to interact with the network. ---- - -# XDC Apothem Network - -XDC Apothem Network is a blockchain network with chain ID 51. - -## Network Details - -- **Chain ID**: 51 -- **Chain Name**: XDC -- **Short Name**: txdc -- **Network ID**: 51 -- **Currency**: - - **Name**: XinFin - - **Symbol**: TXDC - - **Decimals**: 18 - -## RPC URLs - -XDC Apothem Network can be accessed through the following RPC endpoints: - -- https://rpc.apothem.network -- https://erpc.apothem.network - -## XDC Apothem Network Block Explorers - -- [xdcscan](https://apothem.xinfinscan.com) -- [blocksscan](https://apothem.blocksscan.io) - -## Additional Information - -- **Official Website**: https://xinfin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xdc-network.mdx b/docs/pages/solutions/chainlist/non-integrated/xdc-network.mdx deleted file mode 100644 index cf37465a99..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xdc-network.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: XDC Network - XDC Blockchain Network -description: Explore XDC Network, a blockchain network with chain ID 50. Learn about its native currency, XinFin, and how to interact with the network. ---- - -# XDC Network - -XDC Network is a blockchain network with chain ID 50. - -## Network Details - -- **Chain ID**: 50 -- **Chain Name**: XDC -- **Short Name**: xdc -- **Network ID**: 50 -- **Currency**: - - **Name**: XinFin - - **Symbol**: XDC - - **Decimals**: 18 - -## RPC URLs - -XDC Network can be accessed through the following RPC endpoints: - -- https://erpc.xinfin.network -- https://rpc.xinfin.network -- https://rpc1.xinfin.network -- https://rpc-xdc.icecreamswap.com - -## XDC Network Block Explorers - -- [xdcscan](https://xdcscan.io) -- [blocksscan](https://xdc.blocksscan.io) - -## Additional Information - -- **Official Website**: https://xinfin.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xenon-chain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xenon-chain-testnet.mdx deleted file mode 100644 index 30e68416b8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xenon-chain-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Xenon Chain Testnet - XEN Blockchain Network -description: Explore Xenon Chain Testnet, a blockchain network with chain ID 2941. Learn about its native currency, Xenon Testnet, and how to interact with the network. ---- - -# Xenon Chain Testnet - -Xenon Chain Testnet is a blockchain network with chain ID 2941. - -## Network Details - -- **Chain ID**: 2941 -- **Chain Name**: XEN -- **Short Name**: xenon -- **Network ID**: 2941 -- **Currency**: - - **Name**: Xenon Testnet - - **Symbol**: tXEN - - **Decimals**: 18 - -## RPC URLs - -Xenon Chain Testnet can be accessed through the following RPC endpoints: - -- https://testnet-chain.xenonchain.com/ -- https://testnet-dev.xenonchain.com/ - -## Xenon Chain Testnet Block Explorers - -- [Xenon testnet Explorer](https://testnet.xenonchain.com) - -## Additional Information - -- **Official Website**: https://xenonchain.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xenon Chain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xerom.mdx b/docs/pages/solutions/chainlist/non-integrated/xerom.mdx deleted file mode 100644 index d8acb450b5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xerom.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Xerom - XERO Blockchain Network -description: Explore Xerom, a blockchain network with chain ID 1313500. Learn about its native currency, Xerom Ether, and how to interact with the network. ---- - -# Xerom - -Xerom is a blockchain network with chain ID 1313500. - -## Network Details - -- **Chain ID**: 1313500 -- **Chain Name**: XERO -- **Short Name**: xero -- **Network ID**: 1313500 -- **Currency**: - - **Name**: Xerom Ether - - **Symbol**: XERO - - **Decimals**: 18 - -## RPC URLs - -Xerom can be accessed through the following RPC endpoints: - -- https://rpc.xerom.org - -## Xerom Block Explorers - - - -## Additional Information - -- **Official Website**: https://xerom.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xfair.ai-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xfair.ai-testnet.mdx deleted file mode 100644 index ac663c4366..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xfair.ai-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: xFair.AI Testnet - FAIT Blockchain Network -description: Explore xFair.AI Testnet, a blockchain network with chain ID 200000. Learn about its native currency, FAI, and how to interact with the network. ---- - -# xFair.AI Testnet - -xFair.AI Testnet is a blockchain network with chain ID 200000. - -## Network Details - -- **Chain ID**: 200000 -- **Chain Name**: FAIT -- **Short Name**: fait -- **Network ID**: 200000 -- **Currency**: - - **Name**: FAI - - **Symbol**: FAI - - **Decimals**: 18 - -## RPC URLs - -xFair.AI Testnet can be accessed through the following RPC endpoints: - -- https://rpc_testnet.xfair.ai -- wss://rpc_testnet.xfair.ai - -## xFair.AI Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://xfair.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## xFair.AI Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xfair.ai.mdx b/docs/pages/solutions/chainlist/non-integrated/xfair.ai.mdx deleted file mode 100644 index b0ede147f5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xfair.ai.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: xFair.AI Mainnet - FAI Blockchain Network -description: Explore xFair.AI Mainnet, a blockchain network with chain ID 278. Learn about its native currency, FAI, and how to interact with the network. ---- - -# xFair.AI Mainnet - -xFair.AI Mainnet is a blockchain network with chain ID 278. - -## Network Details - -- **Chain ID**: 278 -- **Chain Name**: FAI -- **Short Name**: fai -- **Network ID**: 278 -- **Currency**: - - **Name**: FAI - - **Symbol**: FAI - - **Decimals**: 18 - -## RPC URLs - -xFair.AI Mainnet can be accessed through the following RPC endpoints: - -- https://rpc_mainnet.xfair.ai -- wss://rpc_mainnet.xfair.ai - -## xFair.AI Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://xfair.ai - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xl-network-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xl-network-testnet.mdx deleted file mode 100644 index f26c1ebf85..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xl-network-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: XL Network Testnet - XL Network Testnet Blockchain Network -description: Explore XL Network Testnet, a blockchain network with chain ID 3084. Learn about its native currency, XLNetwork, and how to interact with the network. ---- - -# XL Network Testnet - -XL Network Testnet is a blockchain network with chain ID 3084. - -## Network Details - -- **Chain ID**: 3084 -- **Chain Name**: XL Network Testnet -- **Short Name**: nysl -- **Network ID**: 3084 -- **Currency**: - - **Name**: XLNetwork - - **Symbol**: XLN - - **Decimals**: 18 - -## RPC URLs - -XL Network Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/xlnetworkt/testnet/rpc -- wss://subnets.avax.network/xlnetworkt/testnet/ws - -## XL Network Testnet Block Explorers - -- [XL Network Explorer](https://subnets-test.avax.network/xlnetworkt) - -## Additional Information - -- **Official Website**: https://www.nysl.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## XL Network Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xodex.mdx b/docs/pages/solutions/chainlist/non-integrated/xodex.mdx deleted file mode 100644 index 1e1791e3e3..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xodex.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: XODEX - XODEX Blockchain Network -description: Explore XODEX, a blockchain network with chain ID 2415. Learn about its native currency, XODEX Native Token, and how to interact with the network. ---- - -# XODEX - -XODEX is a blockchain network with chain ID 2415. - -## Network Details - -- **Chain ID**: 2415 -- **Chain Name**: XODEX -- **Short Name**: xodex -- **Network ID**: 2415 -- **Currency**: - - **Name**: XODEX Native Token - - **Symbol**: XODEX - - **Decimals**: 18 - -## RPC URLs - -XODEX can be accessed through the following RPC endpoints: - -- https://mainnet.xo-dex.com/rpc -- https://xo-dex.io - -## XODEX Block Explorers - -- [XODEX Explorer](https://explorer.xo-dex.com) - -## Additional Information - -- **Official Website**: https://xo-dex.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xpla-testnet-3701.mdx b/docs/pages/solutions/chainlist/non-integrated/xpla-testnet-3701.mdx deleted file mode 100644 index 087546fc37..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xpla-testnet-3701.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xpla Testnet - XPLATest Blockchain Network -description: Explore Xpla Testnet, a blockchain network with chain ID 3701. Learn about its native currency, XPLA, and how to interact with the network. ---- - -# Xpla Testnet - -Xpla Testnet is a blockchain network with chain ID 3701. - -## Network Details - -- **Chain ID**: 3701 -- **Chain Name**: XPLATest -- **Short Name**: xplatest -- **Network ID**: 3701 -- **Currency**: - - **Name**: XPLA - - **Symbol**: XPLA - - **Decimals**: 18 - -## RPC URLs - -Xpla Testnet can be accessed through the following RPC endpoints: - -- https://dimension-rpc.xpla.dev - -## Xpla Testnet Block Explorers - -- [XPLA Explorer](https://explorer.xpla.io) - -## Additional Information - -- **Official Website**: https://xpla.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xpla Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xpla-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xpla-testnet.mdx deleted file mode 100644 index b77c527901..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xpla-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xpla Testnet - XPLA Blockchain Network -description: Explore Xpla Testnet, a blockchain network with chain ID 47. Learn about its native currency, XPLA, and how to interact with the network. ---- - -# Xpla Testnet - -Xpla Testnet is a blockchain network with chain ID 47. - -## Network Details - -- **Chain ID**: 47 -- **Chain Name**: XPLA -- **Short Name**: xpla-test -- **Network ID**: 47 -- **Currency**: - - **Name**: XPLA - - **Symbol**: XPLA - - **Decimals**: 18 - -## RPC URLs - -Xpla Testnet can be accessed through the following RPC endpoints: - -- https://cube-evm-rpc.xpla.dev - -## Xpla Testnet Block Explorers - -- [XPLA Explorer](https://explorer.xpla.io/testnet) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xpla Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xpla-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/xpla-verse.mdx deleted file mode 100644 index c0d0eb7148..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xpla-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: XPLA Verse - XPLA Verse Blockchain Network -description: Explore XPLA Verse, a blockchain network with chain ID 7300. Learn about its native currency, OAS, and how to interact with the network. ---- - -# XPLA Verse - -XPLA Verse is a blockchain network with chain ID 7300. - -## Network Details - -- **Chain ID**: 7300 -- **Chain Name**: XPLA Verse -- **Short Name**: XPLAVERSE -- **Network ID**: 7300 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -XPLA Verse can be accessed through the following RPC endpoints: - -- https://rpc-xpla-verse.xpla.dev - -## XPLA Verse Block Explorers - -- [XPLA Verse Explorer](https://explorer-xpla-verse.xpla.dev) - -## Additional Information - -- **Official Website**: https://www.xpla.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xpla.mdx b/docs/pages/solutions/chainlist/non-integrated/xpla.mdx deleted file mode 100644 index 5df27652aa..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xpla.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Xpla Mainnet - XPLA Blockchain Network -description: Explore Xpla Mainnet, a blockchain network with chain ID 37. Learn about its native currency, XPLA, and how to interact with the network. ---- - -# Xpla Mainnet - -Xpla Mainnet is a blockchain network with chain ID 37. - -## Network Details - -- **Chain ID**: 37 -- **Chain Name**: XPLA -- **Short Name**: xpla -- **Network ID**: 37 -- **Currency**: - - **Name**: XPLA - - **Symbol**: XPLA - - **Decimals**: 18 - -## RPC URLs - -Xpla Mainnet can be accessed through the following RPC endpoints: - -- https://dimension-evm-rpc.xpla.dev - -## Xpla Mainnet Block Explorers - -- [XPLA Explorer](https://explorer.xpla.io/mainnet) - -## Additional Information - -- **Official Website**: https://xpla.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xprotocol-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xprotocol-testnet.mdx deleted file mode 100644 index d303ac944f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xprotocol-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xprotocol Testnet - Xprotocol Testnet Blockchain Network -description: Explore Xprotocol Testnet, a blockchain network with chain ID 83144. Learn about its native currency, KICK Testnet Token, and how to interact with the network. ---- - -# Xprotocol Testnet - -Xprotocol Testnet is a blockchain network with chain ID 83144. - -## Network Details - -- **Chain ID**: 83144 -- **Chain Name**: Xprotocol Testnet -- **Short Name**: xprotocoltestnet -- **Network ID**: 83144 -- **Currency**: - - **Name**: KICK Testnet Token - - **Symbol**: KICK - - **Decimals**: 18 - -## RPC URLs - -Xprotocol Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.xprotocol.org - -## Xprotocol Testnet Block Explorers - -- [Blockscout](https://explorer.testnet.xprotocol.org) - -## Additional Information - -- **Official Website**: https://xprotocol.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xprotocol Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xrp-ledger-evm-devnet-sidechain.mdx b/docs/pages/solutions/chainlist/non-integrated/xrp-ledger-evm-devnet-sidechain.mdx deleted file mode 100644 index 700947ebe5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xrp-ledger-evm-devnet-sidechain.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: XRP Ledger EVM Devnet Sidechain - XRPL Blockchain Network -description: Explore XRP Ledger EVM Devnet Sidechain, a blockchain network with chain ID 1440002. Learn about its native currency, XRP, and how to interact with the network. ---- - -# XRP Ledger EVM Devnet Sidechain - -XRP Ledger EVM Devnet Sidechain is a blockchain network with chain ID 1440002. - -## Network Details - -- **Chain ID**: 1440002 -- **Chain Name**: XRPL -- **Short Name**: XRPL-EVM-Devnet-Sidechain -- **Network ID**: 1440002 -- **Currency**: - - **Name**: XRP - - **Symbol**: XRP - - **Decimals**: 18 - -## RPC URLs - -XRP Ledger EVM Devnet Sidechain can be accessed through the following RPC endpoints: - -- https://rpc-evm-sidechain.xrpl.org - -## XRP Ledger EVM Devnet Sidechain Block Explorers - -- [XRP Ledger Explorer](https://evm-sidechain.xrpl.org/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## XRP Ledger EVM Devnet Sidechain Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xt-smart-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/xt-smart-chain.mdx deleted file mode 100644 index 8488674c16..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xt-smart-chain.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: XT Smart Chain Mainnet - XSC Blockchain Network -description: Explore XT Smart Chain Mainnet, a blockchain network with chain ID 520. Learn about its native currency, XT Smart Chain Native Token, and how to interact with the network. ---- - -# XT Smart Chain Mainnet - -XT Smart Chain Mainnet is a blockchain network with chain ID 520. - -## Network Details - -- **Chain ID**: 520 -- **Chain Name**: XSC -- **Short Name**: xt -- **Network ID**: 520 -- **Currency**: - - **Name**: XT Smart Chain Native Token - - **Symbol**: XT - - **Decimals**: 18 - -## RPC URLs - -XT Smart Chain Mainnet can be accessed through the following RPC endpoints: - -- https://datarpc1.xsc.pub -- https://datarpc2.xsc.pub -- https://datarpc3.xsc.pub - -## XT Smart Chain Mainnet Block Explorers - -- [xscscan](https://xscscan.pub) - -## Additional Information - -- **Official Website**: https://xsc.pub/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xterio-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/xterio-chain.mdx deleted file mode 100644 index d6f9f8ba2f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xterio-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Xterio Chain - Xterio Blockchain Network -description: Explore Xterio Chain, a blockchain network with chain ID 2702128. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Xterio Chain - -Xterio Chain is a blockchain network with chain ID 2702128. - -## Network Details - -- **Chain ID**: 2702128 -- **Chain Name**: Xterio -- **Short Name**: xterio -- **Network ID**: 2702128 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Xterio Chain can be accessed through the following RPC endpoints: - -- https://xterio-eth.alt.technology - -## Xterio Chain Block Explorers - -- [Xterio Chain Explorer](https://eth.xterscan.io) - -## Additional Information - -- **Official Website**: https://xter.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/xterio-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xterio-testnet.mdx deleted file mode 100644 index 3f641e246c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xterio-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Xterio Testnet - Xterio Testnet Blockchain Network -description: Explore Xterio Testnet, a blockchain network with chain ID 1637450. Learn about its native currency, tBNB, and how to interact with the network. ---- - -# Xterio Testnet - -Xterio Testnet is a blockchain network with chain ID 1637450. - -## Network Details - -- **Chain ID**: 1637450 -- **Chain Name**: Xterio Testnet -- **Short Name**: xteriotest -- **Network ID**: 1637450 -- **Currency**: - - **Name**: tBNB - - **Symbol**: tBNB - - **Decimals**: 18 - -## RPC URLs - -Xterio Testnet can be accessed through the following RPC endpoints: - -- https://xterio-testnet.alt.technology - -## Xterio Testnet Block Explorers - -- [Xterio Testnet Explorer](https://testnet.xterscan.io) - -## Additional Information - -- **Official Website**: https://xter.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Xterio Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/xtraderlands-subnet-tesnet.mdx b/docs/pages/solutions/chainlist/non-integrated/xtraderlands-subnet-tesnet.mdx deleted file mode 100644 index 1f32572e54..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/xtraderlands-subnet-tesnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: XTraderlands Subnet Tesnet - Avalanche Blockchain Network -description: Explore XTraderlands Subnet Tesnet, a blockchain network with chain ID 13838. Learn about its native currency, XTraderlands Subnet Tesnet Token, and how to interact with the network. ---- - -# XTraderlands Subnet Tesnet - -XTraderlands Subnet Tesnet is a blockchain network with chain ID 13838. - -## Network Details - -- **Chain ID**: 13838 -- **Chain Name**: Avalanche -- **Short Name**: XTraderlands Subnet Tesnet -- **Network ID**: 13838 -- **Currency**: - - **Name**: XTraderlands Subnet Tesnet Token - - **Symbol**: XTDL - - **Decimals**: 18 - -## RPC URLs - -XTraderlands Subnet Tesnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/xtraderlan/testnet/rpc - -## XTraderlands Subnet Tesnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## XTraderlands Subnet Tesnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/yidark-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/yidark-chain.mdx deleted file mode 100644 index d409577164..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/yidark-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Yidark Chain Mainnet - Yidark Blockchain Network -description: Explore Yidark Chain Mainnet, a blockchain network with chain ID 927. Learn about its native currency, Yidark, and how to interact with the network. ---- - -# Yidark Chain Mainnet - -Yidark Chain Mainnet is a blockchain network with chain ID 927. - -## Network Details - -- **Chain ID**: 927 -- **Chain Name**: Yidark -- **Short Name**: ydk -- **Network ID**: 927 -- **Currency**: - - **Name**: Yidark - - **Symbol**: YDK - - **Decimals**: 18 - -## RPC URLs - -Yidark Chain Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.yidark.io - -## Yidark Chain Mainnet Block Explorers - -- [Yidarkscan](https://yidarkscan.com) - -## Additional Information - -- **Official Website**: https://yidarkscan.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ymtech-besu-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/ymtech-besu-testnet.mdx deleted file mode 100644 index c5acaac3e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ymtech-besu-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: YMTECH-BESU Testnet - YMTECH-BESU Blockchain Network -description: Explore YMTECH-BESU Testnet, a blockchain network with chain ID 202401. Learn about its native currency, ETH, and how to interact with the network. ---- - -# YMTECH-BESU Testnet - -YMTECH-BESU Testnet is a blockchain network with chain ID 202401. - -## Network Details - -- **Chain ID**: 202401 -- **Chain Name**: YMTECH-BESU -- **Short Name**: YMTECH-BESU -- **Network ID**: 202401 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -YMTECH-BESU Testnet can be accessed through the following RPC endpoints: - -- http://39.119.118.216:8545 - -## YMTECH-BESU Testnet Block Explorers - -- [YMTECH-BESU Chainlens](http://39.119.118.198) - -## Additional Information - -- **Official Website**: https://www.ymtech.co.kr - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## YMTECH-BESU Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/yooldo-verse-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/yooldo-verse-testnet.mdx deleted file mode 100644 index adb96a90b7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/yooldo-verse-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Yooldo Verse Testnet - Yooldo Verse Blockchain Network -description: Explore Yooldo Verse Testnet, a blockchain network with chain ID 50006. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Yooldo Verse Testnet - -Yooldo Verse Testnet is a blockchain network with chain ID 50006. - -## Network Details - -- **Chain ID**: 50006 -- **Chain Name**: Yooldo Verse -- **Short Name**: YVT -- **Network ID**: 50006 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Yooldo Verse Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.yooldo-verse.xyz/ - -## Yooldo Verse Testnet Block Explorers - -- [Yooldo Verse Explorer](https://explorer.testnet.yooldo-verse.xyz) - -## Additional Information - -- **Official Website**: https://yooldo.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Yooldo Verse Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/yooldo-verse.mdx b/docs/pages/solutions/chainlist/non-integrated/yooldo-verse.mdx deleted file mode 100644 index 7038abc37b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/yooldo-verse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Yooldo Verse Mainnet - Yooldo Verse Blockchain Network -description: Explore Yooldo Verse Mainnet, a blockchain network with chain ID 50005. Learn about its native currency, OAS, and how to interact with the network. ---- - -# Yooldo Verse Mainnet - -Yooldo Verse Mainnet is a blockchain network with chain ID 50005. - -## Network Details - -- **Chain ID**: 50005 -- **Chain Name**: Yooldo Verse -- **Short Name**: YVM -- **Network ID**: 50005 -- **Currency**: - - **Name**: OAS - - **Symbol**: OAS - - **Decimals**: 18 - -## RPC URLs - -Yooldo Verse Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.yooldo-verse.xyz/ - -## Yooldo Verse Mainnet Block Explorers - -- [Yooldo Verse Explorer](https://explorer.yooldo-verse.xyz) - -## Additional Information - -- **Official Website**: https://yooldo.gg/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/yuanchain.mdx b/docs/pages/solutions/chainlist/non-integrated/yuanchain.mdx deleted file mode 100644 index c699ee8598..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/yuanchain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: YuanChain Mainnet - YCC Blockchain Network -description: Explore YuanChain Mainnet, a blockchain network with chain ID 3999. Learn about its native currency, YCC, and how to interact with the network. ---- - -# YuanChain Mainnet - -YuanChain Mainnet is a blockchain network with chain ID 3999. - -## Network Details - -- **Chain ID**: 3999 -- **Chain Name**: YCC -- **Short Name**: ycc -- **Network ID**: 3999 -- **Currency**: - - **Name**: YCC - - **Symbol**: YCC - - **Decimals**: 18 - -## RPC URLs - -YuanChain Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.yuan.org/eth - -## YuanChain Mainnet Block Explorers - -- [YuanChain Explorer](https://mainnet.yuan.org) - -## Additional Information - -- **Official Website**: https://www.yuan.org - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/z-mainnet.mdx b/docs/pages/solutions/chainlist/non-integrated/z-mainnet.mdx deleted file mode 100644 index 937f6c565c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/z-mainnet.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: MainnetZ Mainnet - NetZ Blockchain Network -description: Explore MainnetZ Mainnet, a blockchain network with chain ID 2016. Learn about its native currency, MainnetZ, and how to interact with the network. ---- - -# MainnetZ Mainnet - -MainnetZ Mainnet is a blockchain network with chain ID 2016. - -## Network Details - -- **Chain ID**: 2016 -- **Chain Name**: NetZ -- **Short Name**: netz -- **Network ID**: 2016 -- **Currency**: - - **Name**: MainnetZ - - **Symbol**: NetZ - - **Decimals**: 18 - -## RPC URLs - -MainnetZ Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.mainnetz.io -- https://eu-rpc.mainnetz.io - -## MainnetZ Mainnet Block Explorers - -- [MainnetZ](https://explorer.mainnetz.io) - -## Additional Information - -- **Official Website**: https://mainnetz.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/z-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/z-testnet.mdx deleted file mode 100644 index 3e93e0a163..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/z-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: MainnetZ Testnet - NetZ Blockchain Network -description: Explore MainnetZ Testnet, a blockchain network with chain ID 9768. Learn about its native currency, MainnetZ, and how to interact with the network. ---- - -# MainnetZ Testnet - -MainnetZ Testnet is a blockchain network with chain ID 9768. - -## Network Details - -- **Chain ID**: 9768 -- **Chain Name**: NetZ -- **Short Name**: NetZt -- **Network ID**: 9768 -- **Currency**: - - **Name**: MainnetZ - - **Symbol**: NetZ - - **Decimals**: 18 - -## RPC URLs - -MainnetZ Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.mainnetz.io - -## MainnetZ Testnet Block Explorers - -- [MainnetZ](https://testnet.mainnetz.io) - -## Additional Information - -- **Official Website**: https://testnet.mainnetz.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## MainnetZ Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zafirium.mdx b/docs/pages/solutions/chainlist/non-integrated/zafirium.mdx deleted file mode 100644 index 0c37f667e8..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zafirium.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zafirium Mainnet - ZAFIC Blockchain Network -description: Explore Zafirium Mainnet, a blockchain network with chain ID 1369. Learn about its native currency, Zakumi Chain Native Token, and how to interact with the network. ---- - -# Zafirium Mainnet - -Zafirium Mainnet is a blockchain network with chain ID 1369. - -## Network Details - -- **Chain ID**: 1369 -- **Chain Name**: ZAFIC -- **Short Name**: zafic -- **Network ID**: 1369 -- **Currency**: - - **Name**: Zakumi Chain Native Token - - **Symbol**: ZAFIC - - **Decimals**: 18 - -## RPC URLs - -Zafirium Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.zakumi.io - -## Zafirium Mainnet Block Explorers - -- [zafirium-explorer](https://explorer.zakumi.io) - -## Additional Information - -- **Official Website**: https://www.zakumi.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zcore-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zcore-testnet.mdx deleted file mode 100644 index 1d737fb3e2..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zcore-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ZCore Testnet - Beach Blockchain Network -description: Explore ZCore Testnet, a blockchain network with chain ID 3331. Learn about its native currency, ZCore, and how to interact with the network. ---- - -# ZCore Testnet - -ZCore Testnet is a blockchain network with chain ID 3331. - -## Network Details - -- **Chain ID**: 3331 -- **Chain Name**: Beach -- **Short Name**: zcrbeach -- **Network ID**: 3331 -- **Currency**: - - **Name**: ZCore - - **Symbol**: ZCR - - **Decimals**: 18 - -## RPC URLs - -ZCore Testnet can be accessed through the following RPC endpoints: - -- https://rpc-testnet.zcore.cash - -## ZCore Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://zcore.cash - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZCore Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zedxion.mdx b/docs/pages/solutions/chainlist/non-integrated/zedxion.mdx deleted file mode 100644 index c3383ba4fc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zedxion.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZEDXION - ZEDXION Blockchain Network -description: Explore ZEDXION, a blockchain network with chain ID 83872. Learn about its native currency, Zedxion, and how to interact with the network. ---- - -# ZEDXION - -ZEDXION is a blockchain network with chain ID 83872. - -## Network Details - -- **Chain ID**: 83872 -- **Chain Name**: ZEDXION -- **Short Name**: ZEDX -- **Network ID**: 83872 -- **Currency**: - - **Name**: Zedxion - - **Symbol**: ZEDX - - **Decimals**: 9 - -## RPC URLs - -ZEDXION can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.zedscan.net - -## ZEDXION Block Explorers - -- [Zedscan](http://zedscan.net) - -## Additional Information - -- **Official Website**: https://docs.zedscan.net - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeeth-chain-dev.mdx b/docs/pages/solutions/chainlist/non-integrated/zeeth-chain-dev.mdx deleted file mode 100644 index 20f5130652..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeeth-chain-dev.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zeeth Chain Dev - ZeethChainDev Blockchain Network -description: Explore Zeeth Chain Dev, a blockchain network with chain ID 859. Learn about its native currency, Zeeth Token, and how to interact with the network. ---- - -# Zeeth Chain Dev - -Zeeth Chain Dev is a blockchain network with chain ID 859. - -## Network Details - -- **Chain ID**: 859 -- **Chain Name**: ZeethChainDev -- **Short Name**: zeethdev -- **Network ID**: 859 -- **Currency**: - - **Name**: Zeeth Token - - **Symbol**: ZTH - - **Decimals**: 18 - -## RPC URLs - -Zeeth Chain Dev can be accessed through the following RPC endpoints: - -- https://rpc.dev.zeeth.io - -## Zeeth Chain Dev Block Explorers - -- [Zeeth Explorer Dev](https://explorer.dev.zeeth.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeeth-chain.mdx b/docs/pages/solutions/chainlist/non-integrated/zeeth-chain.mdx deleted file mode 100644 index da115d7ace..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeeth-chain.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zeeth Chain - ZeethChain Blockchain Network -description: Explore Zeeth Chain, a blockchain network with chain ID 427. Learn about its native currency, Zeeth Token, and how to interact with the network. ---- - -# Zeeth Chain - -Zeeth Chain is a blockchain network with chain ID 427. - -## Network Details - -- **Chain ID**: 427 -- **Chain Name**: ZeethChain -- **Short Name**: zeeth -- **Network ID**: 427 -- **Currency**: - - **Name**: Zeeth Token - - **Symbol**: ZTH - - **Decimals**: 18 - -## RPC URLs - -Zeeth Chain can be accessed through the following RPC endpoints: - -- https://rpc.zeeth.io - -## Zeeth Chain Block Explorers - -- [Zeeth Explorer](https://explorer.zeeth.io) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeniq.mdx b/docs/pages/solutions/chainlist/non-integrated/zeniq.mdx deleted file mode 100644 index d38489fb95..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeniq.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zeniq - ZENIQ Blockchain Network -description: Explore Zeniq, a blockchain network with chain ID 383414847825. Learn about its native currency, Zeniq, and how to interact with the network. ---- - -# Zeniq - -Zeniq is a blockchain network with chain ID 383414847825. - -## Network Details - -- **Chain ID**: 383414847825 -- **Chain Name**: ZENIQ -- **Short Name**: zeniq -- **Network ID**: 383414847825 -- **Currency**: - - **Name**: Zeniq - - **Symbol**: ZENIQ - - **Decimals**: 18 - -## RPC URLs - -Zeniq can be accessed through the following RPC endpoints: - -- https://smart.zeniq.network:9545 - -## Zeniq Block Explorers - -- [zeniq-smart-chain-explorer](https://smart.zeniq.net) - -## Additional Information - -- **Official Website**: https://www.zeniq.dev/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zenith.mdx b/docs/pages/solutions/chainlist/non-integrated/zenith.mdx deleted file mode 100644 index 6c87ba0387..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zenith.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: Zenith Mainnet - Zenith Blockchain Network -description: Explore Zenith Mainnet, a blockchain network with chain ID 79. Learn about its native currency, ZENITH, and how to interact with the network. ---- - -# Zenith Mainnet - -Zenith Mainnet is a blockchain network with chain ID 79. - -## Network Details - -- **Chain ID**: 79 -- **Chain Name**: Zenith -- **Short Name**: zenith -- **Network ID**: 79 -- **Currency**: - - **Name**: ZENITH - - **Symbol**: ZENITH - - **Decimals**: 18 - -## RPC URLs - -Zenith Mainnet can be accessed through the following RPC endpoints: - -- https://dataserver-us-1.zenithchain.co/ -- https://dataserver-asia-3.zenithchain.co/ -- https://dataserver-asia-4.zenithchain.co/ -- https://dataserver-asia-2.zenithchain.co/ -- https://dataserver-asia-5.zenithchain.co/ -- https://dataserver-asia-6.zenithchain.co/ -- https://dataserver-asia-7.zenithchain.co/ - -## Zenith Mainnet Block Explorers - -- [zenith scan](https://scan.zenithchain.co) - -## Additional Information - -- **Official Website**: https://www.zenithchain.co/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zero-dev-op-stack.mdx b/docs/pages/solutions/chainlist/non-integrated/zero-dev-op-stack.mdx deleted file mode 100644 index b7c5b2b2ff..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zero-dev-op-stack.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zero-dev-op-stack - zero-dev-op-stack Blockchain Network -description: Explore zero-dev-op-stack, a blockchain network with chain ID 75920. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zero-dev-op-stack - -zero-dev-op-stack is a blockchain network with chain ID 75920. - -## Network Details - -- **Chain ID**: 75920 -- **Chain Name**: zero-dev-op-stack -- **Short Name**: zero-dev-op-stack -- **Network ID**: 75920 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zero-dev-op-stack can be accessed through the following RPC endpoints: - -- https://rpc-zero-dev-op-stack-ja2munlcde.t.conduit.xyz - -## zero-dev-op-stack Block Explorers - -- [zero-dev-op-stack Explorer](https://explorer-zero-dev-op-stack-ja2munlcde.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/75920 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zero-dev-op-stack Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeroone-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zeroone-testnet.mdx deleted file mode 100644 index f870136a43..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeroone-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zeroone Testnet - Avalanche Blockchain Network -description: Explore Zeroone Testnet, a blockchain network with chain ID 18303. Learn about its native currency, Zeroone Testnet Token, and how to interact with the network. ---- - -# Zeroone Testnet - -Zeroone Testnet is a blockchain network with chain ID 18303. - -## Network Details - -- **Chain ID**: 18303 -- **Chain Name**: Avalanche -- **Short Name**: Zeroone Testnet -- **Network ID**: 18303 -- **Currency**: - - **Name**: Zeroone Testnet Token - - **Symbol**: ZERO - - **Decimals**: 18 - -## RPC URLs - -Zeroone Testnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/zeroonetes/testnet/rpc - -## Zeroone Testnet Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zeroone Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeroone.mdx b/docs/pages/solutions/chainlist/non-integrated/zeroone.mdx deleted file mode 100644 index b8b1e3b0c1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeroone.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: zeroone Mainnet Subnet - ZEROONEMAI Blockchain Network -description: Explore zeroone Mainnet Subnet, a blockchain network with chain ID 27827. Learn about its native currency, ZERO, and how to interact with the network. ---- - -# zeroone Mainnet Subnet - -zeroone Mainnet Subnet is a blockchain network with chain ID 27827. - -## Network Details - -- **Chain ID**: 27827 -- **Chain Name**: ZEROONEMAI -- **Short Name**: zeroonemai -- **Network ID**: 27827 -- **Currency**: - - **Name**: ZERO - - **Symbol**: ZERO - - **Decimals**: 18 - -## RPC URLs - -zeroone Mainnet Subnet can be accessed through the following RPC endpoints: - -- https://subnets.avax.network/zeroonemai/mainnet/rpc - -## zeroone Mainnet Subnet Block Explorers - -- [ZEROONEMAI Explorer](https://subnets.avax.network/zeroonemai) - -## Additional Information - -- **Official Website**: https://zeroone.art/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git "a/docs/pages/solutions/chainlist/non-integrated/zer\316\270-network.mdx" "b/docs/pages/solutions/chainlist/non-integrated/zer\316\270-network.mdx" deleted file mode 100644 index 59bc81f616..0000000000 --- "a/docs/pages/solutions/chainlist/non-integrated/zer\316\270-network.mdx" +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ZERO Testnet (Sepolia) - ETH Blockchain Network -description: Explore ZERO Testnet (Sepolia), a blockchain network with chain ID 4457845. Learn about its native currency, Ether, and how to interact with the network. ---- - -# ZERO Testnet (Sepolia) - -ZERO Testnet (Sepolia) is a blockchain network with chain ID 4457845. - -## Network Details - -- **Chain ID**: 4457845 -- **Chain Name**: ETH -- **Short Name**: zero-sepolia -- **Network ID**: 4457845 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -ZERO Testnet (Sepolia) can be accessed through the following RPC endpoints: - -- https://rpc.zerion.io/v1/zero-sepolia - -## ZERO Testnet (Sepolia) Block Explorers - -- [ZERO Testnet Explorer](https://explorer.zero.network) - -## Additional Information - -- **Official Website**: https://docs.zero.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZERO Testnet (Sepolia) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zesty-turquoise-mastodon.mdx b/docs/pages/solutions/chainlist/non-integrated/zesty-turquoise-mastodon.mdx deleted file mode 100644 index 8916769be0..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zesty-turquoise-mastodon.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zesty-turquoise-mastodon - zesty-turquoise-mastodon Blockchain Network -description: Explore zesty-turquoise-mastodon, a blockchain network with chain ID 59578. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zesty-turquoise-mastodon - -zesty-turquoise-mastodon is a blockchain network with chain ID 59578. - -## Network Details - -- **Chain ID**: 59578 -- **Chain Name**: zesty-turquoise-mastodon -- **Short Name**: zesty-turquoise-mastodon -- **Network ID**: 59578 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zesty-turquoise-mastodon can be accessed through the following RPC endpoints: - -- https://rpc-zesty-turquoise-mastodon-7hpfe3rj8b.t.conduit.xyz - -## zesty-turquoise-mastodon Block Explorers - -- [zesty-turquoise-mastodon Explorer](https://explorer-zesty-turquoise-mastodon-7hpfe3rj8b.t.conduit.xyz) - -## Additional Information - -- **Official Website**: https://thirdweb.com/59578 - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zesty-turquoise-mastodon Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zetachain-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zetachain-testnet.mdx deleted file mode 100644 index 9bce8dd11c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zetachain-testnet.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: ZetaChain Testnet - ZetaChain Blockchain Network -description: Explore ZetaChain Testnet, a blockchain network with chain ID 7001. Learn about its native currency, Zeta, and how to interact with the network. ---- - -# ZetaChain Testnet - -ZetaChain Testnet is a blockchain network with chain ID 7001. - -## Network Details - -- **Chain ID**: 7001 -- **Chain Name**: ZetaChain -- **Short Name**: zetachain-testnet -- **Network ID**: 7001 -- **Currency**: - - **Name**: Zeta - - **Symbol**: ZETA - - **Decimals**: 18 - -## RPC URLs - -ZetaChain Testnet can be accessed through the following RPC endpoints: - -- https://zetachain-athens-evm.blockpi.network/v1/rpc/public -- https://zetachain-testnet.public.blastapi.io -- https://zetachain-athens.g.allthatnode.com/archive/evm -- https://zeta-chain-testnet.drpc.org - -## ZetaChain Testnet Block Explorers - -- [ZetaScan](https://athens.explorer.zetachain.com) -- [Blockscout](https://zetachain-athens-3.blockscout.com) - -## Additional Information - -- **Official Website**: https://zetachain.com/docs - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZetaChain Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zetachain.mdx b/docs/pages/solutions/chainlist/non-integrated/zetachain.mdx deleted file mode 100644 index b9274aae14..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zetachain.mdx +++ /dev/null @@ -1,40 +0,0 @@ ---- -title: ZetaChain Mainnet - ZetaChain Blockchain Network -description: Explore ZetaChain Mainnet, a blockchain network with chain ID 7000. Learn about its native currency, Zeta, and how to interact with the network. ---- - -# ZetaChain Mainnet - -ZetaChain Mainnet is a blockchain network with chain ID 7000. - -## Network Details - -- **Chain ID**: 7000 -- **Chain Name**: ZetaChain -- **Short Name**: zetachain-mainnet -- **Network ID**: 7000 -- **Currency**: - - **Name**: Zeta - - **Symbol**: ZETA - - **Decimals**: 18 - -## RPC URLs - -ZetaChain Mainnet can be accessed through the following RPC endpoints: - -- 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 - -## ZetaChain Mainnet Block Explorers - -- [ZetaChain Mainnet Explorer](https://explorer.zetachain.com) - -## Additional Information - -- **Official Website**: https://zetachain.com/docs/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeus-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zeus-testnet.mdx deleted file mode 100644 index 64632e98e7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeus-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ZEUS Testnet - tZEUS Blockchain Network -description: Explore ZEUS Testnet, a blockchain network with chain ID 7244. Learn about its native currency, The ZEUS Token, and how to interact with the network. ---- - -# ZEUS Testnet - -ZEUS Testnet is a blockchain network with chain ID 7244. - -## Network Details - -- **Chain ID**: 7244 -- **Chain Name**: tZEUS -- **Short Name**: ZEUS-Testnet -- **Network ID**: 7244 -- **Currency**: - - **Name**: The ZEUS Token - - **Symbol**: ZEUS - - **Decimals**: 18 - -## RPC URLs - -ZEUS Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.zeuschainscan.io - -## ZEUS Testnet Block Explorers - -- [ZEUS Testnet Explorer](https://testnet-explorer.zeuschainscan.io) - -## Additional Information - -- **Official Website**: https://testnet-explorer.zeuschainscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZEUS Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zeus.mdx b/docs/pages/solutions/chainlist/non-integrated/zeus.mdx deleted file mode 100644 index 33646d87bc..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zeus.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZEUS Mainnet - ZEUS Blockchain Network -description: Explore ZEUS Mainnet, a blockchain network with chain ID 34504. Learn about its native currency, The ZEUS Token, and how to interact with the network. ---- - -# ZEUS Mainnet - -ZEUS Mainnet is a blockchain network with chain ID 34504. - -## Network Details - -- **Chain ID**: 34504 -- **Chain Name**: ZEUS -- **Short Name**: ZEUS -- **Network ID**: 34504 -- **Currency**: - - **Name**: The ZEUS Token - - **Symbol**: ZEUS - - **Decimals**: 18 - -## RPC URLs - -ZEUS Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.zeuschainscan.io - -## ZEUS Mainnet Block Explorers - -- [ZEUS Mainnet Explorer](https://zeuschainscan.io) - -## Additional Information - -- **Official Website**: https://zeuschainscan.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zfirst-avacloud-subnet-thirdweb.mdx b/docs/pages/solutions/chainlist/non-integrated/zfirst-avacloud-subnet-thirdweb.mdx deleted file mode 100644 index bb7c674125..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zfirst-avacloud-subnet-thirdweb.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zFirst AvaCloud Subnet Thirdweb - zFirst AvaCloud Subnet Thirdweb Blockchain Network -description: Explore zFirst AvaCloud Subnet Thirdweb, a blockchain network with chain ID 82807. Learn about its native currency, zFirst AvaCloud Subnet Thirdweb, and how to interact with the network. ---- - -# zFirst AvaCloud Subnet Thirdweb - -zFirst AvaCloud Subnet Thirdweb is a blockchain network with chain ID 82807. - -## Network Details - -- **Chain ID**: 82807 -- **Chain Name**: zFirst AvaCloud Subnet Thirdweb -- **Short Name**: zFirst AvaCloud Subnet Thirdweb -- **Network ID**: 82807 -- **Currency**: - - **Name**: zFirst AvaCloud Subnet Thirdweb - - **Symbol**: YOOO - - **Decimals**: 18 - -## RPC URLs - -zFirst AvaCloud Subnet Thirdweb can be accessed through the following RPC endpoints: - -- https://subnets.avacloud-dev.io/f2ea180d-0fda-4b06-9b2e-53a65d3fd789 - -## zFirst AvaCloud Subnet Thirdweb Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zFirst AvaCloud Subnet Thirdweb Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zhejiang.mdx b/docs/pages/solutions/chainlist/non-integrated/zhejiang.mdx deleted file mode 100644 index e5bc6a7b67..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zhejiang.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zhejiang - ETH Blockchain Network -description: Explore Zhejiang, a blockchain network with chain ID 1337803. Learn about its native currency, Testnet ETH, and how to interact with the network. ---- - -# Zhejiang - -Zhejiang is a blockchain network with chain ID 1337803. - -## Network Details - -- **Chain ID**: 1337803 -- **Chain Name**: ETH -- **Short Name**: zhejiang -- **Network ID**: 1337803 -- **Currency**: - - **Name**: Testnet ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zhejiang can be accessed through the following RPC endpoints: - -- https://rpc.zhejiang.ethpandaops.io - -## Zhejiang Block Explorers - -- [Zhejiang Explorer](https://zhejiang.beaconcha.in) - -## Additional Information - -- **Official Website**: https://zhejiang.ethpandaops.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zhejiang Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zillion-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zillion-sepolia-testnet.mdx deleted file mode 100644 index 4ec50fa740..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zillion-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zillion Sepolia Testnet - ETH Blockchain Network -description: Explore Zillion Sepolia Testnet, a blockchain network with chain ID 282828. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Zillion Sepolia Testnet - -Zillion Sepolia Testnet is a blockchain network with chain ID 282828. - -## Network Details - -- **Chain ID**: 282828 -- **Chain Name**: ETH -- **Short Name**: zillsep -- **Network ID**: 282828 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zillion Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.zillnet.io/rpc - -## Zillion Sepolia Testnet Block Explorers - -- [zillscout](https://sepolia.zillnet.io) - -## Additional Information - -- **Official Website**: https://zillnet.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zillion Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-devnet.mdx deleted file mode 100644 index 7141ec11e1..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zilliqa-2 EVM Devnet - ZIL Blockchain Network -description: Explore Zilliqa-2 EVM Devnet, a blockchain network with chain ID 33469. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa-2 EVM Devnet - -Zilliqa-2 EVM Devnet is a blockchain network with chain ID 33469. - -## Network Details - -- **Chain ID**: 33469 -- **Chain Name**: ZIL -- **Short Name**: zq2-devnet -- **Network ID**: 33469 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa-2 EVM Devnet can be accessed through the following RPC endpoints: - -- https://api.zq2-devnet.zilliqa.com - -## Zilliqa-2 EVM Devnet Block Explorers - -- [Zilliqa-2 EVM Devnet Explorer](https://explorer.zq2-devnet.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-proto-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-proto-testnet.mdx deleted file mode 100644 index a6c295318f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-2-evm-proto-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zilliqa 2 EVM proto-testnet - ZIL Blockchain Network -description: Explore Zilliqa 2 EVM proto-testnet, a blockchain network with chain ID 33103. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa 2 EVM proto-testnet - -Zilliqa 2 EVM proto-testnet is a blockchain network with chain ID 33103. - -## Network Details - -- **Chain ID**: 33103 -- **Chain Name**: ZIL -- **Short Name**: zq2-proto-testnet -- **Network ID**: 33103 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa 2 EVM proto-testnet can be accessed through the following RPC endpoints: - -- https://api.zq2-prototestnet.zilliqa.com - -## Zilliqa 2 EVM proto-testnet Block Explorers - -- [Zilliqa 2 EVM proto-testnet explorer](https://explorer.zq2-prototestnet.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zilliqa 2 EVM proto-testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-devnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-devnet.mdx deleted file mode 100644 index fa7ba7709f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-devnet.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zilliqa EVM Devnet - ZIL Blockchain Network -description: Explore Zilliqa EVM Devnet, a blockchain network with chain ID 33385. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa EVM Devnet - -Zilliqa EVM Devnet is a blockchain network with chain ID 33385. - -## Network Details - -- **Chain ID**: 33385 -- **Chain Name**: ZIL -- **Short Name**: zil-devnet -- **Network ID**: 33385 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa EVM Devnet can be accessed through the following RPC endpoints: - -- https://api.devnet.zilliqa.com/ - -## Zilliqa EVM Devnet Block Explorers - -- [Zilliqa EVM Devnet Explorer](https://otterscan.devnet.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-isolated-server.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-isolated-server.mdx deleted file mode 100644 index 0fb681ca86..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-isolated-server.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zilliqa EVM Isolated Server - ZIL Blockchain Network -description: Explore Zilliqa EVM Isolated Server, a blockchain network with chain ID 32990. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa EVM Isolated Server - -Zilliqa EVM Isolated Server is a blockchain network with chain ID 32990. - -## Network Details - -- **Chain ID**: 32990 -- **Chain Name**: ZIL -- **Short Name**: zil-isolated-server -- **Network ID**: 32990 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa EVM Isolated Server can be accessed through the following RPC endpoints: - -- https://zilliqa-isolated-server.zilliqa.com/ - -## Zilliqa EVM Isolated Server Block Explorers - -- [Zilliqa EVM Isolated Server Explorer](https://devex.zilliqa.com/?network=https://zilliqa-isolated-server.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-testnet.mdx deleted file mode 100644 index 31dac895e5..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zilliqa EVM Testnet - ZIL Blockchain Network -description: Explore Zilliqa EVM Testnet, a blockchain network with chain ID 33101. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa EVM Testnet - -Zilliqa EVM Testnet is a blockchain network with chain ID 33101. - -## Network Details - -- **Chain ID**: 33101 -- **Chain Name**: ZIL -- **Short Name**: zil-testnet -- **Network ID**: 33101 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa EVM Testnet can be accessed through the following RPC endpoints: - -- https://dev-api.zilliqa.com - -## Zilliqa EVM Testnet Block Explorers - -- [Zilliqa EVM Explorer](https://evmx.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zilliqa EVM Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm.mdx b/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm.mdx deleted file mode 100644 index acc8ab176d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zilliqa-evm.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zilliqa EVM - ZIL Blockchain Network -description: Explore Zilliqa EVM, a blockchain network with chain ID 32769. Learn about its native currency, Zilliqa, and how to interact with the network. ---- - -# Zilliqa EVM - -Zilliqa EVM is a blockchain network with chain ID 32769. - -## Network Details - -- **Chain ID**: 32769 -- **Chain Name**: ZIL -- **Short Name**: zil -- **Network ID**: 32769 -- **Currency**: - - **Name**: Zilliqa - - **Symbol**: ZIL - - **Decimals**: 18 - -## RPC URLs - -Zilliqa EVM can be accessed through the following RPC endpoints: - -- https://api.zilliqa.com - -## Zilliqa EVM Block Explorers - -- [Zilliqa EVM Explorer](https://evmx.zilliqa.com) - -## Additional Information - -- **Official Website**: https://www.zilliqa.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zircuit-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zircuit-testnet.mdx deleted file mode 100644 index f598fed943..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zircuit-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zircuit Testnet - Zircuit Testnet Blockchain Network -description: Explore Zircuit Testnet, a blockchain network with chain ID 48899. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Zircuit Testnet - -Zircuit Testnet is a blockchain network with chain ID 48899. - -## Network Details - -- **Chain ID**: 48899 -- **Chain Name**: Zircuit Testnet -- **Short Name**: zircuit-testnet -- **Network ID**: 48899 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zircuit Testnet can be accessed through the following RPC endpoints: - -- http://zircuit1-testnet.p2pify.com/ - -## Zircuit Testnet Block Explorers - -- [Zircuit](https://explorer.testnet.zircuit.com) - -## Additional Information - -- **Official Website**: https://www.zircuit.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zircuit Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zircuit.mdx b/docs/pages/solutions/chainlist/non-integrated/zircuit.mdx deleted file mode 100644 index 59f2ad0f6c..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zircuit.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zircuit Mainnet - Zircuit Mainnet Blockchain Network -description: Explore Zircuit Mainnet, a blockchain network with chain ID 48900. Learn about its native currency, ETH, and how to interact with the network. ---- - -# Zircuit Mainnet - -Zircuit Mainnet is a blockchain network with chain ID 48900. - -## Network Details - -- **Chain ID**: 48900 -- **Chain Name**: Zircuit Mainnet -- **Short Name**: zircuit-mainnet -- **Network ID**: 48900 -- **Currency**: - - **Name**: ETH - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zircuit Mainnet can be accessed through the following RPC endpoints: - -- https://zircuit1-mainnet.p2pify.com/ - -## Zircuit Mainnet Block Explorers - -- [Zircuit](https://explorer.zircuit.com) - -## Additional Information - -- **Official Website**: https://www.zircuit.com/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkamoeba-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zkamoeba-testnet.mdx deleted file mode 100644 index 3f5a227b1d..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkamoeba-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: ZKAmoeba Testnet - FIL Blockchain Network -description: Explore ZKAmoeba Testnet, a blockchain network with chain ID 380. Learn about its native currency, filecoin, and how to interact with the network. ---- - -# ZKAmoeba Testnet - -ZKAmoeba Testnet is a blockchain network with chain ID 380. - -## Network Details - -- **Chain ID**: 380 -- **Chain Name**: FIL -- **Short Name**: zkamoeba-test -- **Network ID**: 380 -- **Currency**: - - **Name**: filecoin - - **Symbol**: FIL - - **Decimals**: 18 - -## RPC URLs - -ZKAmoeba Testnet can be accessed through the following RPC endpoints: - -- https://rpc.testnet.zkamoeba.com:4050/ -- https://rpc1.testnet.zkamoeba.com:4050/ - -## ZKAmoeba Testnet Block Explorers - -- [ZKAmoeba Test Explorer](https://testnetexplorer.zkamoeba.com) - -## Additional Information - -- **Official Website**: https://testnet.zkamoeba.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZKAmoeba Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkamoeba.mdx b/docs/pages/solutions/chainlist/non-integrated/zkamoeba.mdx deleted file mode 100644 index 3df6a96415..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkamoeba.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZKAmoeba Mainnet - FIL Blockchain Network -description: Explore ZKAmoeba Mainnet, a blockchain network with chain ID 381. Learn about its native currency, filecoin, and how to interact with the network. ---- - -# ZKAmoeba Mainnet - -ZKAmoeba Mainnet is a blockchain network with chain ID 381. - -## Network Details - -- **Chain ID**: 381 -- **Chain Name**: FIL -- **Short Name**: zkamoeba -- **Network ID**: 381 -- **Currency**: - - **Name**: filecoin - - **Symbol**: FIL - - **Decimals**: 18 - -## RPC URLs - -ZKAmoeba Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.mainnet.zkamoeba.com/rpc - -## ZKAmoeba Mainnet Block Explorers - -- [ZKAmoeba Explorer](https://explorer.zkamoeba.com) - -## Additional Information - -- **Official Website**: https://www.zkamoeba.com - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkasino.mdx b/docs/pages/solutions/chainlist/non-integrated/zkasino.mdx deleted file mode 100644 index dc9384a21b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkasino.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZKasino Mainnet - ZKasino Blockchain Network -description: Explore ZKasino Mainnet, a blockchain network with chain ID 88800. Learn about its native currency, ZKAS, and how to interact with the network. ---- - -# ZKasino Mainnet - -ZKasino Mainnet is a blockchain network with chain ID 88800. - -## Network Details - -- **Chain ID**: 88800 -- **Chain Name**: ZKasino -- **Short Name**: ZKasino -- **Network ID**: 88800 -- **Currency**: - - **Name**: ZKAS - - **Symbol**: ZKAS - - **Decimals**: 18 - -## RPC URLs - -ZKasino Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.zkas.zeeve.net - -## ZKasino Mainnet Block Explorers - -- [Tracehawk](https://explorer.zkas.zeeve.net) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkatana.mdx b/docs/pages/solutions/chainlist/non-integrated/zkatana.mdx deleted file mode 100644 index 065c81eddf..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkatana.mdx +++ /dev/null @@ -1,45 +0,0 @@ ---- -title: zKatana - ETH Blockchain Network -description: Explore zKatana, a blockchain network with chain ID 1261120. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# zKatana - -zKatana is a blockchain network with chain ID 1261120. - -## Network Details - -- **Chain ID**: 1261120 -- **Chain Name**: ETH -- **Short Name**: azktn -- **Network ID**: 1261120 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zKatana can be accessed through the following RPC endpoints: - -- https://rpc.zkatana.gelato.digital -- https://rpc.startale.com/zkatana -- https://astar-zkatana.drpc.org -- wss://astar-zkatana.drpc.org - -## zKatana Block Explorers - -- [Blockscout zKatana chain explorer](https://zkatana.blockscout.com) -- [Startale zKatana chain explorer](https://zkatana.explorer.startale.com) - -## Additional Information - -- **Official Website**: https://astar.network - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zKatana Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkbase-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zkbase-sepolia-testnet.mdx deleted file mode 100644 index ab6d8af219..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkbase-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ZKBase Sepolia Testnet - ETH Blockchain Network -description: Explore ZKBase Sepolia Testnet, a blockchain network with chain ID 1789. Learn about its native currency, Ether, and how to interact with the network. ---- - -# ZKBase Sepolia Testnet - -ZKBase Sepolia Testnet is a blockchain network with chain ID 1789. - -## Network Details - -- **Chain ID**: 1789 -- **Chain Name**: ETH -- **Short Name**: zkbase-sepolia -- **Network ID**: 1789 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -ZKBase Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia-rpc.zkbase.app - -## ZKBase Sepolia Testnet Block Explorers - -- [ZKbase Block Explorer](https://sepolia-explorer.zkbase.app) - -## Additional Information - -- **Official Website**: https://zkbase.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZKBase Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkbase.mdx b/docs/pages/solutions/chainlist/non-integrated/zkbase.mdx deleted file mode 100644 index 0e9a670118..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkbase.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZKBase Mainnet - ETH Blockchain Network -description: Explore ZKBase Mainnet, a blockchain network with chain ID 1456. Learn about its native currency, Ether, and how to interact with the network. ---- - -# ZKBase Mainnet - -ZKBase Mainnet is a blockchain network with chain ID 1456. - -## Network Details - -- **Chain ID**: 1456 -- **Chain Name**: ETH -- **Short Name**: zkbase -- **Network ID**: 1456 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -ZKBase Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet-rpc.zkbase.app - -## ZKBase Mainnet Block Explorers - -- [ZKbase Block Explorer](https://explorer.zkbase.app) - -## Additional Information - -- **Official Website**: https://zkbase.org/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkcandy-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zkcandy-sepolia-testnet.mdx deleted file mode 100644 index 3345d010af..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkcandy-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zkCandy Sepolia Testnet - ETH Blockchain Network -description: Explore zkCandy Sepolia Testnet, a blockchain network with chain ID 302. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkCandy Sepolia Testnet - -zkCandy Sepolia Testnet is a blockchain network with chain ID 302. - -## Network Details - -- **Chain ID**: 302 -- **Chain Name**: ETH -- **Short Name**: zkcandy-sepolia -- **Network ID**: 302 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkCandy Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.rpc.zkcandy.io - -## zkCandy Sepolia Testnet Block Explorers - -- [zkCandy Block Explorer](https://sepolia.explorer.zkcandy.io) - -## Additional Information - -- **Official Website**: https://zkcandy.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zkCandy Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkfair-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zkfair-testnet.mdx deleted file mode 100644 index 4af5e8f010..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkfair-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: ZKFair Testnet - ETH Blockchain Network -description: Explore ZKFair Testnet, a blockchain network with chain ID 43851. Learn about its native currency, USDC Token, and how to interact with the network. ---- - -# ZKFair Testnet - -ZKFair Testnet is a blockchain network with chain ID 43851. - -## Network Details - -- **Chain ID**: 43851 -- **Chain Name**: ETH -- **Short Name**: ZKFair-Testnet -- **Network ID**: 43851 -- **Currency**: - - **Name**: USDC Token - - **Symbol**: USDC - - **Decimals**: 18 - -## RPC URLs - -ZKFair Testnet can be accessed through the following RPC endpoints: - -- https://testnet-rpc.zkfair.io - -## ZKFair Testnet Block Explorers - -- [ZKFair Testnet Info](https://testnet-scan.zkfair.io) - -## Additional Information - -- **Official Website**: https://zkfair.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## ZKFair Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zkfair.mdx b/docs/pages/solutions/chainlist/non-integrated/zkfair.mdx deleted file mode 100644 index d6ffb49935..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zkfair.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZKFair Mainnet - ZKFair Blockchain Network -description: Explore ZKFair Mainnet, a blockchain network with chain ID 42766. Learn about its native currency, USDC Token, and how to interact with the network. ---- - -# ZKFair Mainnet - -ZKFair Mainnet is a blockchain network with chain ID 42766. - -## Network Details - -- **Chain ID**: 42766 -- **Chain Name**: ZKFair -- **Short Name**: ZKFair-Mainnet -- **Network ID**: 42766 -- **Currency**: - - **Name**: USDC Token - - **Symbol**: USDC - - **Decimals**: 18 - -## RPC URLs - -ZKFair Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.zkfair.io - -## ZKFair Mainnet Block Explorers - -- [blockscout](https://scan.zkfair.io) - -## Additional Information - -- **Official Website**: https://zkfair.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zklink-nova-goerli-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zklink-nova-goerli-testnet.mdx deleted file mode 100644 index 13e6cc7f30..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zklink-nova-goerli-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: zkLink Nova Goerli Testnet - ETH Blockchain Network -description: Explore zkLink Nova Goerli Testnet, a blockchain network with chain ID 810182. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkLink Nova Goerli Testnet - -zkLink Nova Goerli Testnet is a blockchain network with chain ID 810182. - -## Network Details - -- **Chain ID**: 810182 -- **Chain Name**: ETH -- **Short Name**: zklink-nova-goerli -- **Network ID**: 810182 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkLink Nova Goerli Testnet can be accessed through the following RPC endpoints: - -- https://goerli.rpc.zklink.io -- wss://goerli.rpc.zklink.io - -## zkLink Nova Goerli Testnet Block Explorers - -- [zkLink Nova Block Explorer](https://goerli.explorer.zklink.io) - -## Additional Information - -- **Official Website**: https://zklink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zkLink Nova Goerli Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zklink-nova-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zklink-nova-sepolia-testnet.mdx deleted file mode 100644 index ec9aeb0aee..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zklink-nova-sepolia-testnet.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: zkLink Nova Sepolia Testnet - ETH Blockchain Network -description: Explore zkLink Nova Sepolia Testnet, a blockchain network with chain ID 810181. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkLink Nova Sepolia Testnet - -zkLink Nova Sepolia Testnet is a blockchain network with chain ID 810181. - -## Network Details - -- **Chain ID**: 810181 -- **Chain Name**: ETH -- **Short Name**: zklink-nova-sepolia -- **Network ID**: 810181 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkLink Nova Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.rpc.zklink.io -- wss://sepolia.rpc.zklink.io - -## zkLink Nova Sepolia Testnet Block Explorers - -- [zkLink Nova Block Explorer](https://sepolia.explorer.zklink.io) - -## Additional Information - -- **Official Website**: https://zklink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zkLink Nova Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zklink-nova.mdx b/docs/pages/solutions/chainlist/non-integrated/zklink-nova.mdx deleted file mode 100644 index 3df8dae51f..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zklink-nova.mdx +++ /dev/null @@ -1,38 +0,0 @@ ---- -title: zkLink Nova Mainnet - ETH Blockchain Network -description: Explore zkLink Nova Mainnet, a blockchain network with chain ID 810180. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkLink Nova Mainnet - -zkLink Nova Mainnet is a blockchain network with chain ID 810180. - -## Network Details - -- **Chain ID**: 810180 -- **Chain Name**: ETH -- **Short Name**: zklink-nova -- **Network ID**: 810180 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkLink Nova Mainnet can be accessed through the following RPC endpoints: - -- https://rpc.zklink.io -- wss://rpc.zklink.io - -## zkLink Nova Mainnet Block Explorers - -- [zkLink Nova Block Explorer](https://explorer.zklink.io) - -## Additional Information - -- **Official Website**: https://zklink.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zksats.mdx b/docs/pages/solutions/chainlist/non-integrated/zksats.mdx deleted file mode 100644 index dec20ea52b..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zksats.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: ZKSats Mainnet - ZKSats Blockchain Network -description: Explore ZKSats Mainnet, a blockchain network with chain ID 305. Learn about its native currency, BTC, and how to interact with the network. ---- - -# ZKSats Mainnet - -ZKSats Mainnet is a blockchain network with chain ID 305. - -## Network Details - -- **Chain ID**: 305 -- **Chain Name**: ZKSats -- **Short Name**: ZKSats-Mainnet -- **Network ID**: 305 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -ZKSats Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.zksats.io - -## ZKSats Mainnet Block Explorers - -- [blockscout](https://explorer.zksats.io) - -## Additional Information - -- **Official Website**: https://zksats.io - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zksync-era-goerli-testnet-(deprecated).mdx b/docs/pages/solutions/chainlist/non-integrated/zksync-era-goerli-testnet-(deprecated).mdx deleted file mode 100644 index 55241a2bce..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zksync-era-goerli-testnet-(deprecated).mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: zkSync Era Goerli Testnet (deprecated) - ETH Blockchain Network -description: Explore zkSync Era Goerli Testnet (deprecated), a blockchain network with chain ID 280. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkSync Era Goerli Testnet (deprecated) - -zkSync Era Goerli Testnet (deprecated) is a blockchain network with chain ID 280. - -## Network Details - -- **Chain ID**: 280 -- **Chain Name**: ETH -- **Short Name**: zksync-goerli -- **Network ID**: 280 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkSync Era Goerli Testnet (deprecated) can be accessed through the following RPC endpoints: - -- https://testnet.era.zksync.dev - -## zkSync Era Goerli Testnet (deprecated) Block Explorers - -- [zkSync Era Block Explorer](https://goerli.explorer.zksync.io) - -## Additional Information - -- **Official Website**: https://zksync.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zkSync Era Goerli Testnet (deprecated) Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zksync-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zksync-sepolia-testnet.mdx deleted file mode 100644 index fc416265f4..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zksync-sepolia-testnet.mdx +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: zkSync Sepolia Testnet - ETH Blockchain Network -description: Explore zkSync Sepolia Testnet, a blockchain network with chain ID 300. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkSync Sepolia Testnet - -zkSync Sepolia Testnet is a blockchain network with chain ID 300. - -## Network Details - -- **Chain ID**: 300 -- **Chain Name**: ETH -- **Short Name**: zksync-sepolia -- **Network ID**: 300 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkSync Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.era.zksync.dev -- https://zksync-sepolia.drpc.org -- wss://zksync-sepolia.drpc.org - -## zkSync Sepolia Testnet Block Explorers - -- [zkSync Block Explorer](https://sepolia.explorer.zksync.io) - -## Additional Information - -- **Official Website**: https://zksync.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## zkSync Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zksync.mdx b/docs/pages/solutions/chainlist/non-integrated/zksync.mdx deleted file mode 100644 index 9faaf3a5bb..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zksync.mdx +++ /dev/null @@ -1,39 +0,0 @@ ---- -title: zkSync Mainnet - ETH Blockchain Network -description: Explore zkSync Mainnet, a blockchain network with chain ID 324. Learn about its native currency, Ether, and how to interact with the network. ---- - -# zkSync Mainnet - -zkSync Mainnet is a blockchain network with chain ID 324. - -## Network Details - -- **Chain ID**: 324 -- **Chain Name**: ETH -- **Short Name**: zksync -- **Network ID**: 324 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -zkSync Mainnet can be accessed through the following RPC endpoints: - -- https://mainnet.era.zksync.io -- https://zksync.drpc.org -- wss://zksync.drpc.org - -## zkSync Mainnet Block Explorers - -- [zkSync Era Block Explorer](https://explorer.zksync.io) - -## Additional Information - -- **Official Website**: https://zksync.io/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zora-sepolia-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zora-sepolia-testnet.mdx deleted file mode 100644 index 2fd4b06ec7..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zora-sepolia-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zora Sepolia Testnet - ETH Blockchain Network -description: Explore Zora Sepolia Testnet, a blockchain network with chain ID 999999999. Learn about its native currency, Sepolia Ether, and how to interact with the network. ---- - -# Zora Sepolia Testnet - -Zora Sepolia Testnet is a blockchain network with chain ID 999999999. - -## Network Details - -- **Chain ID**: 999999999 -- **Chain Name**: ETH -- **Short Name**: zsep -- **Network ID**: 999999999 -- **Currency**: - - **Name**: Sepolia Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zora Sepolia Testnet can be accessed through the following RPC endpoints: - -- https://sepolia.rpc.zora.energy - -## Zora Sepolia Testnet Block Explorers - -- [Zora Sepolia Testnet Network Explorer](https://sepolia.explorer.zora.energy) - -## Additional Information - -- **Official Website**: https://zora.energy - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zora Sepolia Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zora.mdx b/docs/pages/solutions/chainlist/non-integrated/zora.mdx deleted file mode 100644 index 6e11b31d46..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zora.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zora - ETH Blockchain Network -description: Explore Zora, a blockchain network with chain ID 7777777. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Zora - -Zora is a blockchain network with chain ID 7777777. - -## Network Details - -- **Chain ID**: 7777777 -- **Chain Name**: ETH -- **Short Name**: zora -- **Network ID**: 7777777 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zora can be accessed through the following RPC endpoints: - -- https://rpc.zora.energy/ - -## Zora Block Explorers - -- [Zora Network Explorer](https://explorer.zora.energy) - -## Additional Information - -- **Official Website**: https://zora.energy - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/ztc.mdx b/docs/pages/solutions/chainlist/non-integrated/ztc.mdx deleted file mode 100644 index 763801735a..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/ztc.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Ztc Mainnet - ZTC Blockchain Network -description: Explore Ztc Mainnet, a blockchain network with chain ID 9998. Learn about its native currency, Ztcer, and how to interact with the network. ---- - -# Ztc Mainnet - -Ztc Mainnet is a blockchain network with chain ID 9998. - -## Network Details - -- **Chain ID**: 9998 -- **Chain Name**: ZTC -- **Short Name**: ZTC -- **Network ID**: 9998 -- **Currency**: - - **Name**: Ztcer - - **Symbol**: ZTC - - **Decimals**: 5 - -## RPC URLs - -Ztc Mainnet can be accessed through the following RPC endpoints: - -- https://zitcoin.us - -## Ztc Mainnet Block Explorers - - - -## Additional Information - -- **Official Website**: https://ztc.best - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zuraverse.mdx b/docs/pages/solutions/chainlist/non-integrated/zuraverse.mdx deleted file mode 100644 index 31cb67a387..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zuraverse.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zuraverse - ZURA Blockchain Network -description: Explore Zuraverse, a blockchain network with chain ID 2712670149155000. Learn about its native currency, ZURA, and how to interact with the network. ---- - -# Zuraverse - -Zuraverse is a blockchain network with chain ID 2712670149155000. - -## Network Details - -- **Chain ID**: 2712670149155000 -- **Chain Name**: ZURA -- **Short Name**: ZURA -- **Network ID**: 2712670149155000 -- **Currency**: - - **Name**: ZURA - - **Symbol**: ZURA - - **Decimals**: 18 - -## RPC URLs - -Zuraverse can be accessed through the following RPC endpoints: - -- https://zuraverse-2712670149155000-1.jsonrpc.sagarpc.io - -## Zuraverse Block Explorers - - - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zytron-b2-testnet.mdx b/docs/pages/solutions/chainlist/non-integrated/zytron-b2-testnet.mdx deleted file mode 100644 index 6debca8ead..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zytron-b2-testnet.mdx +++ /dev/null @@ -1,41 +0,0 @@ ---- -title: Zytron B2 Testnet - BTC Blockchain Network -description: Explore Zytron B2 Testnet, a blockchain network with chain ID 50097. Learn about its native currency, BTC, and how to interact with the network. ---- - -# Zytron B2 Testnet - -Zytron B2 Testnet is a blockchain network with chain ID 50097. - -## Network Details - -- **Chain ID**: 50097 -- **Chain Name**: BTC -- **Short Name**: zytron-b2-testnet -- **Network ID**: 50097 -- **Currency**: - - **Name**: BTC - - **Symbol**: BTC - - **Decimals**: 18 - -## RPC URLs - -Zytron B2 Testnet can be accessed through the following RPC endpoints: - - - -## Zytron B2 Testnet Block Explorers - -- [Zytron Explorer](http://b2-testnet-zytron-blockscout.zypher.game/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. - -## Zytron B2 Testnet Faucet - -When building with Sequence, faucets aren't necessary due to our smart account infrastructure. This allows for a smoother onboarding process for your users and a better developer experience. diff --git a/docs/pages/solutions/chainlist/non-integrated/zytron-l3-on-linea.mdx b/docs/pages/solutions/chainlist/non-integrated/zytron-l3-on-linea.mdx deleted file mode 100644 index 9efd84b534..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zytron-l3-on-linea.mdx +++ /dev/null @@ -1,37 +0,0 @@ ---- -title: Zytron L3 on Linea - Linea Blockchain Network -description: Explore Zytron L3 on Linea, a blockchain network with chain ID 9901. Learn about its native currency, Ether, and how to interact with the network. ---- - -# Zytron L3 on Linea - -Zytron L3 on Linea is a blockchain network with chain ID 9901. - -## Network Details - -- **Chain ID**: 9901 -- **Chain Name**: Linea -- **Short Name**: ETH -- **Network ID**: 9901 -- **Currency**: - - **Name**: Ether - - **Symbol**: ETH - - **Decimals**: 18 - -## RPC URLs - -Zytron L3 on Linea can be accessed through the following RPC endpoints: - -- https://linea-mainnet-zytron.zypher.game/ - -## Zytron L3 on Linea Block Explorers - -- [Blockscout](https://linea-mainnet-zytron-blockscout.zypher.game/) - -## Additional Information - -- **Official Website**: Not provided - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/chainlist/non-integrated/zyx.mdx b/docs/pages/solutions/chainlist/non-integrated/zyx.mdx deleted file mode 100644 index 5a68e6c674..0000000000 --- a/docs/pages/solutions/chainlist/non-integrated/zyx.mdx +++ /dev/null @@ -1,42 +0,0 @@ ---- -title: Zyx Mainnet - ZYX Blockchain Network -description: Explore Zyx Mainnet, a blockchain network with chain ID 55. Learn about its native currency, Zyx, and how to interact with the network. ---- - -# Zyx Mainnet - -Zyx Mainnet is a blockchain network with chain ID 55. - -## Network Details - -- **Chain ID**: 55 -- **Chain Name**: ZYX -- **Short Name**: ZYX -- **Network ID**: 55 -- **Currency**: - - **Name**: Zyx - - **Symbol**: ZYX - - **Decimals**: 18 - -## RPC URLs - -Zyx Mainnet can be accessed through the following RPC endpoints: - -- https://rpc-1.zyx.network/ -- https://rpc-2.zyx.network/ -- https://rpc-3.zyx.network/ -- https://rpc-4.zyx.network/ -- https://rpc-5.zyx.network/ -- https://rpc-6.zyx.network/ - -## Zyx Mainnet Block Explorers - -- [zyxscan](https://zyxscan.com) - -## Additional Information - -- **Official Website**: https://zyx.network/ - -## Sequence Integration Status - -This network does not yet have Sequence support but is available for deployment. diff --git a/docs/pages/solutions/technical-references/chain-support.mdx b/docs/pages/solutions/technical-references/chain-support.mdx index 8688f6e3d9..62bda55757 100644 --- a/docs/pages/solutions/technical-references/chain-support.mdx +++ b/docs/pages/solutions/technical-references/chain-support.mdx @@ -1,9 +1,6 @@ --- title: Sequence Multi-Chain Support - Networks and Testnets description: Sequence provides multi-chain support for EVM compatible networks. -showOutline: false -content: - width: 100% --- # Multi-Chain Support @@ -22,120 +19,90 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this 'Network', 'Chain Handle', 'Indexer Endpoint', - 'RPC URL', - 'Chain Page' ]} rows={[ { networkImage: 'https://assets.sequence.info/images/networks/medium/1.webp', network: 'Ethereum', chainHandle: 'mainnet', - indexerEndpoint: 'https://mainnet-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/mainnet', - chainPage: Link + indexerEndpoint: 'https://mainnet-indexer.sequence.app' },{ networkImage: 'https://assets.sequence.info/images/networks/medium/42161.webp', network: 'Arbitrum One', chainHandle: 'arbitrum', - indexerEndpoint: 'https://arbitrum-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/arbitrum', - chainPage: Link + indexerEndpoint: 'https://arbitrum-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/42170.webp', network: 'Arbitrum Nova', chainHandle: 'arbitrum-nova', - indexerEndpoint: 'https://arbitrum-nova-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/arbitrum-nova', - chainPage: Link + indexerEndpoint: 'https://arbitrum-nova-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/137.webp', network: 'Polygon', chainHandle: 'polygon', - indexerEndpoint: 'https://polygon-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/polygon', - chainPage: Link + indexerEndpoint: 'https://polygon-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/1101.webp', network: 'Polygon zkEVM', chainHandle: 'polygon-zkevm', - indexerEndpoint: 'https://polygon-zkevm-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/polygon-zkevm', - chainPage: Link + indexerEndpoint: 'https://polygon-zkevm-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/3776.webp', network: 'Astar zkEVM', chainHandle: 'astar-zkevm', - indexerEndpoint: 'https://astar-zkevm-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/astar-zkevm', - chainPage: Link + indexerEndpoint: 'https://astar-zkevm-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/8453.webp', network: 'Base', chainHandle: 'base', - indexerEndpoint: 'https://base-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/base', - chainPage: Link + indexerEndpoint: 'https://base-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/10.webp', network: 'Optimism', chainHandle: 'optimism', - indexerEndpoint: 'https://optimism-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/optimism', - chainPage: Link + indexerEndpoint: 'https://optimism-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/660279.webp', network: 'XAI', chainHandle: 'xai', - indexerEndpoint: 'https://xai-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/xai', - chainPage: Link + indexerEndpoint: 'https://xai-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/81457.webp', network: 'Blast', chainHandle: 'blast', - indexerEndpoint: 'https://blast-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/blast', - chainPage: Link + indexerEndpoint: 'https://blast-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/43114.webp', network: 'Avalanche', chainHandle: 'avalanche', - indexerEndpoint: 'https://avalanche-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/avalanche', - chainPage: Link + indexerEndpoint: 'https://avalanche-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/19011.webp', network: 'Homeverse', chainHandle: 'homeverse', - indexerEndpoint: 'https://homeverse-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/homeverse', - chainPage: Link + indexerEndpoint: 'https://homeverse-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/56.webp', network: 'BSC', chainHandle: 'bsc', - indexerEndpoint: 'https://bsc-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/bsc', - chainPage: Link + indexerEndpoint: 'https://bsc-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/100.webp', network: 'Gnosis', chainHandle: 'gnosis', - indexerEndpoint: 'https://gnosis-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/gnosis', - chainPage: Link + indexerEndpoint: 'https://gnosis-indexer.sequence.app' } ]} /> @@ -143,111 +110,85 @@ Sequence Relayer and all Sequence SDKs, however if you have a chain not in this ## Testnets Link }, { networkImage: "https://assets.sequence.info/images/networks/medium/137.webp", network: "Polygon Amoy", chainHandle: "amoy", indexerEndpoint: "https://amoy-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/amoy", - chainPage: Link }, { networkImage: 'https://assets.sequence.info/images/networks/medium/3776.webp', network: 'Astar zkEVM', chainHandle: 'astar-zkyoto', - indexerEndpoint: 'https://astar-zkyoto-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/astar-zkyoto', - chainPage: Link + indexerEndpoint: 'https://astar-zkyoto-indexer.sequence.app' }, { networkImage: "https://assets.sequence.info/images/networks/medium/8453.webp", network: "Base Sepolia", chainHandle: "base-sepolia", indexerEndpoint: "https://base-sepolia-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/base-sepolia", - chainPage: Link }, { networkImage: 'https://assets.sequence.info/images/networks/medium/1993.webp', network: 'B3 Sepolia', chainHandle: 'b3-sepolia', - indexerEndpoint: 'https://b3-sepolia-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/b3-sepolia', - chainPage: Link + indexerEndpoint: 'https://b3-sepolia-indexer.sequence.app' }, { networkImage: "https://assets.sequence.info/images/networks/medium/43114.webp", network: "Avalanche Testnet", chainHandle: "avalanche-testnet", indexerEndpoint: "https://avalanche-testnet-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/avalanche-testnet", - chainPage: Link }, { networkImage: 'https://assets.sequence.info/images/networks/medium/168587773.webp', network: 'Blast Testnet', chainHandle: 'blast-sepolia', - indexerEndpoint: 'https://blast-sepolia-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/blast-sepolia', - chainPage: Link + indexerEndpoint: 'https://blast-sepolia-indexer.sequence.app' }, { networkImage: 'https://assets.sequence.info/images/networks/medium/19011.webp', network: 'Homeverse Testnet', chainHandle: 'homeverse-testnet', - indexerEndpoint: 'https://homeverse-testnet-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/homeverse-testnet', - chainPage: Link + indexerEndpoint: 'https://homeverse-testnet-indexer.sequence.app' }, { networkImage: "https://assets.sequence.info/images/networks/medium/56.webp", network: "BSC Testnet", chainHandle: "bsc-testnet", indexerEndpoint: "https://bsc-testnet-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/bsc-testnet", - chainPage: Link }, { networkImage: "https://assets.sequence.info/images/networks/medium/11155111.webp", network: "Ethereum Sepolia", chainHandle: "sepolia", indexerEndpoint: "https://sepolia-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/sepolia", - chainPage: Link }, { networkImage: 'https://assets.sequence.info/images/networks/medium/33111.webp', network: 'Ape Chain Testnet', chainHandle: 'apechain-testnet', - indexerEndpoint: 'https://apechain-testnet-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/apechain-testnet', - chainPage: 'Coming Soon' + indexerEndpoint: 'https://apechain-testnet-indexer.sequence.app' }, { networkImage: "https://assets.sequence.info/images/networks/medium/10.webp", network: "Optimism Sepolia", chainHandle: "optimism-sepolia", indexerEndpoint: "https://optimism-sepolia-indexer.sequence.app", - rpcURL: "https://nodes.sequence.app/optimism-sepolia", - chainPage: Link }, { networkImage: 'https://assets.sequence.info/images/networks/medium/660279.webp', network: 'XAI Sepolia', chainHandle: 'xai-sepolia', - indexerEndpoint: 'https://xai-sepolia-indexer.sequence.app', - rpcURL: 'https://nodes.sequence.app/xai-sepolia', - chainPage: Link + indexerEndpoint: 'https://xai-sepolia-indexer.sequence.app' } ]} />