Skip to content

Commit e0dc5da

Browse files
Merge pull request #300 from BitGo/WIN-8075
feat: add DOGEOS network configuration and deployment support
2 parents 954c84a + e9149ba commit e0dc5da

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

config/chainIds.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const CHAIN_IDS = {
4545
HBAREVM: 295,
4646
FLUENTETH: 20993,
4747
MANTLE: 5000,
48-
DOGEOS: 6281971, //TODO: WIN-8075: change it with correct mainnet details, when its available
48+
DOGEOS: 123456, //TODO: WIN-8075: change it with correct mainnet details, when its available
4949
opBNB: 204,
5050

5151
// Testnet Networks

hardhat.config.ts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ const {
5353
PLUME_EXPLORER_API_KEY,
5454
FLOW_EXPLORER_API_KEY,
5555
MEGAETH_EXPLORER_API_KEY,
56-
HBAREVM_EXPLORER_API_KEY
56+
HBAREVM_EXPLORER_API_KEY,
57+
DOGEOS_EXPLORER_API_KEY
5758
} = process.env;
5859

5960
const PLACEHOLDER_KEY: string =
@@ -877,7 +878,11 @@ const config: HardhatUserConfig = {
877878

878879
// MANTLE
879880
mantleTestnet: `${ETHERSCAN_API_KEY}`,
880-
mantleMainnet: `${ETHERSCAN_API_KEY}`
881+
mantleMainnet: `${ETHERSCAN_API_KEY}`,
882+
883+
//DOGEOS
884+
dogeosTestnet: `${DOGEOS_EXPLORER_API_KEY}`,
885+
dogeosMainnet: `${DOGEOS_EXPLORER_API_KEY}`
881886
},
882887
customChains: [
883888
{

0 commit comments

Comments
 (0)