We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3888d71 commit b5aa2d1Copy full SHA for b5aa2d1
src/svm/helpers.ts
@@ -7,7 +7,7 @@ import { ethers } from "ethers";
7
*/
8
export const getSolanaChainId = (cluster: "devnet" | "mainnet"): BigNumber => {
9
return BigNumber.from(
10
- BigInt(ethers.utils.keccak256(ethers.utils.toUtf8Bytes(`solana-${cluster}`))) & BigInt("0xFFFFFFFFFFFFFFFF")
+ BigInt(ethers.utils.keccak256(ethers.utils.toUtf8Bytes(`solana-${cluster}`))) & BigInt("0xFFFFFFFFFFFF")
11
);
12
};
13
0 commit comments