Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/cyan-monkeys-draw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
'@api3/chains': minor
---

Adds following chain:
- unichain
31 changes: 31 additions & 0 deletions chains/unichain.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"alias": "unichain",
"decimals": 18,
"explorer": {
"api": {
"key": {
"required": true
},
"url": "https://api.uniscan.xyz/api"
},
"browserUrl": "https://uniscan.xyz/"
},
"id": "130",
"name": "Unichain",
"providers": [
{
"alias": "default",
"rpcUrl": "https://mainnet.unichain.org/"
},
{
"alias": "alchemy",
"homepageUrl": "https://alchemy.com"
},
{
"alias": "quicknode",
"homepageUrl": "https://quicknode.com"
}
],
"symbol": "ETH",
"testnet": false
}
17 changes: 17 additions & 0 deletions src/generated/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1773,6 +1773,23 @@ export const CHAINS: Chain[] = [
symbol: 'ETH',
testnet: true,
},
{
alias: 'unichain',
decimals: 18,
explorer: {
api: { key: { required: true }, url: 'https://api.uniscan.xyz/api' },
browserUrl: 'https://uniscan.xyz/',
},
id: '130',
name: 'Unichain',
providers: [
{ alias: 'default', rpcUrl: 'https://mainnet.unichain.org/' },
{ alias: 'alchemy', homepageUrl: 'https://alchemy.com' },
{ alias: 'quicknode', homepageUrl: 'https://quicknode.com' },
],
symbol: 'ETH',
testnet: false,
},
{
alias: 'world-sepolia-testnet',
decimals: 18,
Expand Down