rainbow-bridge-lib
Version:
Rainbow Bridge Lib
12 lines (9 loc) • 403 B
JavaScript
const nearAPI = require('near-api-js')
const getConfig = require('./src/get-config')
const utils = require('./src/utils')
// Re-export to make sure subsequent libraries use the same version.
// Without this, ppl would use different version of PublicKey class and the transactions won't serialize.
exports.nearlib = nearAPI
exports.nearAPI = nearAPI
exports.getConfig = getConfig
exports.utils = utils