Skip to content

Commit

Permalink
chore(bitgert): added to mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Jan 17, 2025
1 parent 0b7227d commit abc1b05
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ TEZOS_RPC=
FANTOM_RPC=
AVALANCHE_RPC=
MOONBEAM_RPC=
ETH_RPC=
ETH_RPC=
BITGERT_RPC=
11 changes: 11 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,17 @@ export const prodBridgeConfig: IBridgeConfig = {
decimals: 18,
blockChunks: 1000,
},
{
chain: "BITGERT",
rpcURL: process.env.BITGERT_RPC || "https://rpc-bitgert.icecreamswap.com",
nativeCoinSymbol: "BRISE",
intialFund: "27653082000000000000000000",
contractAddress: "0x2Aa8Dbb7543754d70B5A40D52cB81c2a0bB08B83",
chainType: "evm",
lastBlock: 6150900,
decimals: 18,
blockChunks: 1000,
},
],
storageConfig: {
chain: "OP",
Expand Down
1 change: 1 addition & 0 deletions src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const Env = z.object({
AVALANCHE_RPC: z.string().optional(),
MOONBEAM_RPC: z.string().optional(),
ETH_RPC: z.string().optional(),
BITGERT_RPC: z.string().optional(),
});
export type Env = z.infer<typeof Env>;

Expand Down

0 comments on commit abc1b05

Please sign in to comment.