Use Polygon overrides when IGP claiming in key funder (#1945)

### Description

For some extra context: #1934 and #1933 

Calling IGP.claim() was not using the Polygon tx defaults. Therefore
we'd use a priority fee < 30 gwei and have txs be rejected :|

### Drive-by changes

none

### Related issues

n/a

### Backward compatibility

_Are these changes backward compatible?_

Yes

_Are there any infrastructure implications, e.g. changes that would
prohibit deploying older commits using this infra tooling?_

None


### Testing

_What kind of testing have these changes undergone?_

Ran locally
pull/1948/head
Trevor Porter 2 years ago committed by GitHub
parent 23db81414d
commit 6e0c44a828
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      typescript/infra/scripts/funding/fund-keys-from-deployer.ts

@ -510,7 +510,10 @@ class ContextFunder {
log('IGP balance exceeds claim threshold, claiming', {
chain,
});
await this.multiProvider.handleTx(chain, igp.contract.claim());
await this.multiProvider.sendTransaction(
chain,
await igp.contract.populateTransaction.claim(),
);
} else {
log('IGP balance does not exceed claim threshold, skipping', {
chain,

Loading…
Cancel
Save