Bump desired AVAX balance (#3068)

### Description

Avalanche is like 5x more expensive now, see relayer txs
https://snowtrace.io/address/0x74Cae0ECC47B02Ed9B9D32E000Fd70B9417970C5.
A single funding of 0.3 is only enough to cover like 2 messages

### Drive-by changes

<!--
Are there any minor or drive-by changes also included?
-->

### Related issues

<!--
- Fixes #[issue number here]
-->

### Backward compatibility

<!--
Are these changes backward compatible? Are there any infrastructure
implications, e.g. changes that would prohibit deploying older commits
using this infra tooling?

Yes/No
-->

### Testing

<!--
What kind of testing have these changes undergone?

None/Manual/Unit Tests
-->
pull/3072/head
Trevor Porter 11 months ago committed by GitHub
parent 0f47fc21b0
commit 6f9b4e6660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      typescript/infra/config/environments/mainnet3/funding.ts
  2. 2
      typescript/infra/config/environments/testnet4/funding.ts
  3. 2
      typescript/infra/scripts/funding/fund-keys-from-deployer.ts

@ -9,7 +9,7 @@ import { environment } from './chains';
export const keyFunderConfig: KeyFunderConfig = { export const keyFunderConfig: KeyFunderConfig = {
docker: { docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: 'b86ebc1-20231207-123951', tag: 'f6da03e-20231216-141949',
}, },
// We're currently using the same deployer key as mainnet. // We're currently using the same deployer key as mainnet.
// To minimize nonce clobbering we offset the key funder cron // To minimize nonce clobbering we offset the key funder cron

@ -9,7 +9,7 @@ import { environment } from './chains';
export const keyFunderConfig: KeyFunderConfig = { export const keyFunderConfig: KeyFunderConfig = {
docker: { docker: {
repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo', repo: 'gcr.io/abacus-labs-dev/hyperlane-monorepo',
tag: 'b86ebc1-20231207-123951', tag: 'f6da03e-20231216-141949',
}, },
// We're currently using the same deployer key as testnet2. // We're currently using the same deployer key as testnet2.
// To minimize nonce clobbering we offset the key funder cron // To minimize nonce clobbering we offset the key funder cron

@ -123,7 +123,7 @@ const RC_FUNDING_DISCOUNT_DENOMINATOR = ethers.BigNumber.from(10);
const desiredBalancePerChain: ChainMap<string> = { const desiredBalancePerChain: ChainMap<string> = {
celo: '0.3', celo: '0.3',
alfajores: '1', alfajores: '1',
avalanche: '0.3', avalanche: '3',
fuji: '1', fuji: '1',
ethereum: '0.5', ethereum: '0.5',
polygon: '2', polygon: '2',

Loading…
Cancel
Save