apt install build-essential git
apt install libudev-dev
yarn install
yarn types # generate types
Change main method in index.ts
, e.g.
async function main() {
// ...
const tx = await HoprBoostNft.populateTransaction.grantRole(MINTER_ROLE, '0x')
await MultiSig.submitTransaction(HoprBoostNft.address, 0, tx.data, {
gasLimit: '500000',
gasPrice: gasPrice
})
}