// run this script with truffle exec const jsonfile = require("jsonfile"); const TokenBridge = artifacts.require("TokenBridge"); const BridgeImplementationFullABI = jsonfile.readFileSync( "../build/contracts/BridgeImplementation.json" ).abi; const nearTokenBridgeVAA = process.env.REGISTER_NEAR_TOKEN_BRIDGE_VAA; module.exports = async function (callback) { try { const accounts = await web3.eth.getAccounts(); const tokenBridge = new web3.eth.Contract( BridgeImplementationFullABI, TokenBridge.address ); // Register the near token bridge endpoint await tokenBridge.methods.registerChain("0x" + nearTokenBridgeVAA).send({ value: 0, from: accounts[0], gasLimit: 2000000, }); callback(); } catch (e) { callback(e); } };