-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #54 from allo-protocol/add-SEI
Add SEI support and bump version to .59 and publish
- Loading branch information
Showing
7 changed files
with
135 additions
and
8,937 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import { Chain } from "viem"; | ||
export declare const SeiIcon = "https://ipfs.io/ipfs/QmUvNaLwzNf1bHjqTMW1aBjRgd5FrsTDqjSnyypLwxv8x5"; | ||
/** Local development chain support */ | ||
export declare const devChain1: Chain; | ||
export declare const seiDevnet: { | ||
id: number; | ||
name: string; | ||
network: string; | ||
iconUrl: string; | ||
nativeCurrency: { | ||
name: string; | ||
symbol: string; | ||
decimals: number; | ||
}; | ||
rpcUrls: { | ||
default: { | ||
http: string[]; | ||
}; | ||
public: { | ||
http: string[]; | ||
}; | ||
}; | ||
blockExplorers: { | ||
default: { | ||
name: string; | ||
url: string; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,51 @@ | ||
"use strict"; | ||
// import { Chain } from "viem"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.seiDevnet = exports.devChain1 = exports.SeiIcon = void 0; | ||
// Add your custom chains here | ||
exports.SeiIcon = "https://ipfs.io/ipfs/QmUvNaLwzNf1bHjqTMW1aBjRgd5FrsTDqjSnyypLwxv8x5"; | ||
/** Local development chain support */ | ||
exports.devChain1 = { | ||
id: 1337, | ||
name: "Development 1", | ||
network: "dev1", | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: "Ether", | ||
symbol: "ETH", | ||
}, | ||
rpcUrls: { | ||
default: { http: ["http://127.0.0.1:8545/"] }, | ||
public: { http: ["http://127.0.0.1:8545/"] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: "dev1", | ||
url: "", | ||
}, | ||
}, | ||
}; | ||
exports.seiDevnet = { | ||
id: 713715, | ||
name: "SEI Devnet", | ||
network: "SEI Devnet", | ||
iconUrl: exports.SeiIcon, | ||
nativeCurrency: { | ||
name: "SEI", | ||
symbol: "SEI", | ||
decimals: 18, | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ["https://evm-rpc-arctic-1.sei-apis.com"], | ||
}, | ||
public: { | ||
http: ["https://evm-rpc-arctic-1.sei-apis.com"], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: "SEI Explorer", | ||
url: "https://seistream.app/", | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.