Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fund wallet on all chains script #847

Merged
merged 10 commits into from
Nov 4, 2024
5 changes: 3 additions & 2 deletions script/deploy/safe/confirm-safe-tx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ import consola from 'consola'
import * as chains from 'viem/chains'
import { getSafeUtilityContracts } from './config'
import {
Networks,
NetworksObject,
getViemChainForNetworkName,
} from '../../utils/viemScriptHelpers'
import * as dotenv from 'dotenv'
import { SafeMultisigTransactionResponse } from '@safe-global/safe-core-sdk-types'
import networksConfig from '../../../config/networks.json'
dotenv.config()

const networks: Networks = networksConfig
const networks: NetworksObject = networksConfig

const ABI_LOOKUP_URL = `https://api.openchain.xyz/signature-database/v1/lookup?function=%SELECTOR%&filter=true`

Expand Down Expand Up @@ -52,6 +52,7 @@ const skipNetworks: string[] = [
// 'scroll',
// 'sei',
// 'taiko',
// 'xlayer',
// 'zksync',
]
const defaultNetworks = allNetworks.filter(
Expand Down
Loading