You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
386 B
16 lines
386 B
4 years ago
|
const { GSNDevProvider } = require('@openzeppelin/gsn-provider');
|
||
|
|
||
|
function setGSNProvider (Contract, accounts) {
|
||
|
const baseProvider = Contract.currentProvider;
|
||
|
Contract.setProvider(
|
||
|
new GSNDevProvider(baseProvider, {
|
||
|
txfee: 70,
|
||
|
useGSN: false,
|
||
|
ownerAddress: accounts[8],
|
||
|
relayerAddress: accounts[9],
|
||
|
}),
|
||
|
);
|
||
|
};
|
||
|
|
||
|
module.exports = { setGSNProvider };
|