UNPKG

@reown/appkit-controllers

Version:

#### 🔗 [Website](https://reown.com/appkit)

10 lines • 283 B
const SLIP44_MSB = 0x80000000; export const EnsUtil = { convertEVMChainIdToCoinType(chainId) { if (chainId >= SLIP44_MSB) { throw new Error('Invalid chainId'); } return (SLIP44_MSB | chainId) >>> 0; } }; //# sourceMappingURL=EnsUtil.js.map