Skip to content

Commit

Permalink
Add Zircuit addresses and update version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mister-Meeseeks committed Aug 26, 2024
2 parents bf53a71 + 5bb0076 commit 667dd10
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@crocswap-libs/sdk",
"version": "1.0.2",
"version": "1.0.3",
"description": "🛠🐊🛠 An SDK for building applications on top of CrocSwap",
"author": "Ben Wolski <[email protected]>",
"repository": "https://github.com/CrocSwap/sdk.git",
Expand Down
27 changes: 26 additions & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,30 @@ const BLAST_CHAIN: ChainSpec = {
logoUrl: BLAST_LOGO,
};

const ZIRCUIT_CHAIN: ChainSpec = {
nodeUrl: "https://rpc.ankr.com/blast",
addrs: {
dex: "0xaAaaaAAAFfe404EE9433EEf0094b6382D81fb958",
query: "0xA3BD3bE19012De72190c885FB270beb93e36a8A7",
impact: "0x6A699AB45ADce02891E6115b81Dfb46CAa5efDb9",
router: "0xaab17419F062bB28CdBE82f9FC05E7C47C3F6194",
routerBypass: "0xd83eF4d0e968A96329aC297bBf049CDdaC7E0362"
},
poolIndex: 420,
isTestNet: true,
chainId: "0x13e31",
gridSize: 4,
proxyPaths: {
cold: 3,
long: 130,
liq: 128,
dfltColdSwap: true
},
blockExplorer: "https://blastscan.io/",
displayName: "Zircuit",
logoUrl: BLAST_LOGO,
};

const BLAST_SEPOLIA_CHAIN: ChainSpec = {
nodeUrl: "https://sepolia.blast.io",
addrs: {
Expand Down Expand Up @@ -281,5 +305,6 @@ export const CHAIN_SPECS: { [chainId: string]: ChainSpec } = {
"scrollsepolia": SCROLL_SEPOLIA_CHAIN,
"blast": BLAST_CHAIN,
"blastSepolia": BLAST_SEPOLIA_CHAIN,
"plumeSepolia": PLUME_SEPOLIA_CHAIN
"plumeSepolia": PLUME_SEPOLIA_CHAIN,
"zircuit": ZIRCUIT_CHAIN
};

0 comments on commit 667dd10

Please sign in to comment.