UNPKG

@xuxinlai2002/pns-js

Version:

A NPM package in Typescript for .Play Name Service

8 lines 352 B
import { ChainMismatchError, ChainNotFoundError, } from '../../errors/chain.js'; export function assertCurrentChain({ chain, currentChainId, }) { if (!chain) throw new ChainNotFoundError(); if (currentChainId !== chain.id) throw new ChainMismatchError({ chain, currentChainId }); } //# sourceMappingURL=assertCurrentChain.js.map