Skip to content

Commit

Permalink
Fix Bearby chanId typing (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
pivilartisant authored Feb 14, 2025
1 parent 6ad9d4c commit f8e1061
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bearbyWallet/utils/network.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const networkInfos = async (): Promise<Network> => {
}
return {
name: net,
chainId: res.result.chain_id,
chainId: BigInt(res.result.chain_id),
minimalFee: Mas.fromString(res.result.minimal_fees),
};
};

0 comments on commit f8e1061

Please sign in to comment.