We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 680c93e + 6e3c76a commit f7ab3ebCopy full SHA for f7ab3eb
src/light-gtcr-execution.ts
@@ -75,7 +75,8 @@ async function run(signer: ethers.Wallet) {
75
console.info(
76
`Executing request for item ID ${request.item.itemID}`.green
77
);
78
- await tcr.executeRequest(request.item.itemID, { nonce });
+ // pass gas requirement manually for arbitrum rinkeby compatibility
79
+ await tcr.executeRequest(request.item.itemID, { nonce, gasLimit: 2_100_000 });
80
await delay(120 * 1000); // Wait 2 minutes to give time for the chain to sync/nonce handling.
81
} catch (error) {
82
console.error(
0 commit comments