Skip to content

Commit

Permalink
chore(harmony): added to mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
D4mph1r committed Feb 7, 2025
1 parent abc1b05 commit a4c0b63
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 @@ -18,4 +18,5 @@ FANTOM_RPC=
AVALANCHE_RPC=
MOONBEAM_RPC=
ETH_RPC=
BITGERT_RPC=
BITGERT_RPC=
HARMONY_RPC=
11 changes: 11 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,17 @@ export const prodBridgeConfig: IBridgeConfig = {
decimals: 18,
blockChunks: 1000,
},
{
chain: "HARMONY",
rpcURL: process.env.HARMONY_RPC || "https://api.s0.t.hmny.io",
nativeCoinSymbol: "ONE",
intialFund: "142940000000000000000",
contractAddress: "0x2Aa8Dbb7543754d70B5A40D52cB81c2a0bB08B83",
chainType: "evm",
lastBlock: 69103267,
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 @@ -22,6 +22,7 @@ export const Env = z.object({
MOONBEAM_RPC: z.string().optional(),
ETH_RPC: z.string().optional(),
BITGERT_RPC: z.string().optional(),
HARMONY_RPC: z.string().optional(),
});
export type Env = z.infer<typeof Env>;

Expand Down

0 comments on commit a4c0b63

Please sign in to comment.