Skip to content

Commit

Permalink
moved metis deployment scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
BkChoy committed Feb 5, 2025
1 parent f196b4a commit b05114b
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 16 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
import { ethers } from 'hardhat'
import { ERC20, PriorityPool, StakingPool } from '../../../typechain-types'
import { updateDeployments, deploy, getContract, deployUpgradeable } from '../../utils/deployment'
import { toEther } from '../../utils/helpers'
import { L2Strategy } from '../../../typechain-types/contracts/metisStaking/L2Strategy'
import { ERC20, PriorityPool, StakingPool } from '../../../../typechain-types'
import {
updateDeployments,
deploy,
getContract,
deployUpgradeable,
} from '../../../utils/deployment'
import { toEther } from '../../../utils/helpers'
import { L2Strategy } from '../../../../typechain-types/contracts/metisStaking/L2Strategy'

// Wrapped stMETIS
const WrappedSDTokenArgs = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
deployUpgradeable,
deploy,
deployImplementation,
} from '../../utils/deployment'
import { L1Strategy } from '../../../typechain-types/contracts/metisStaking/L1Strategy'
import { toEther } from '../../utils/helpers'
} from '../../../utils/deployment'
import { L1Strategy } from '../../../../typechain-types/contracts/metisStaking/L1Strategy'
import { toEther } from '../../../utils/helpers'
import { ethers } from 'hardhat'

const l2Transmitter = '0xc4bAf9Df7Da0dB146D8AeDEe447246ed47b4c2E4'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { L2Transmitter } from '../../../typechain-types/contracts/metisStaking/L2Transmitter'
import { getContract } from '../../utils/deployment'
import { L2Transmitter } from '../../../../typechain-types/contracts/metisStaking/L2Transmitter'
import { getContract } from '../../../utils/deployment'

const l1Transmitter = ''

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ethers } from 'hardhat'
import { deploy, getContract, updateDeployments } from '../../utils/deployment'
import { deploy, getContract, updateDeployments } from '../../../utils/deployment'

const emergencyPauser = '' // address authorized to pause pool in case of emergency

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { SDLPoolPrimary } from '../../../typechain-types'
import { getContract } from '../../utils/deployment'
import { SDLPoolPrimary } from '../../../../typechain-types'
import { getContract } from '../../../utils/deployment'
import hre from 'hardhat'
import Safe from '@safe-global/protocol-kit'
import SafeApiKit from '@safe-global/api-kit'
import { MetaTransactionData } from '@safe-global/safe-core-sdk-types'
import { getAccounts } from '../../utils/helpers'
import { getAccounts } from '../../../utils/helpers'

const multisigAddress = '0xB351EC0FEaF4B99FdFD36b484d9EC90D0422493D'

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { SequencerVCS } from '../../../typechain-types'
import { getContract } from '../../utils/deployment'
import { SequencerVCS } from '../../../../typechain-types'
import { getContract } from '../../../utils/deployment'
import hre from 'hardhat'
import Safe from '@safe-global/protocol-kit'
import SafeApiKit from '@safe-global/api-kit'
import { MetaTransactionData } from '@safe-global/safe-core-sdk-types'
import { getAccounts } from '../../utils/helpers'
import { getAccounts } from '../../../utils/helpers'

const multisigAddress = '0xB351EC0FEaF4B99FdFD36b484d9EC90D0422493D'

Expand Down

0 comments on commit b05114b

Please sign in to comment.