UNPKG

@gateway.fm/gtw-dvf-client-js

Version:

DVF client js lib with gateway.fm rpc endpoints

10 lines (8 loc) 296 B
const DVFError = require('./DVFError') module.exports = (dvf, chain) => { const bridgeContractAddress = dvf.config.DVF.bridgedDepositContractsPerChain[chain] if (!bridgeContractAddress) { throw new DVFError('NO_BRIDGE_CONTRACT_FOR_CHAIN', { chain }) } return bridgeContractAddress }