-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
StefanIliev545
committed
Sep 28, 2023
1 parent
816bccf
commit 7dd70cf
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
contracts/deployment_scripts/funding/layer1/002_fund_faucet.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import {HardhatRuntimeEnvironment} from 'hardhat/types'; | ||
import {DeployFunction} from 'hardhat-deploy/types'; | ||
|
||
|
||
const func: DeployFunction = async function (hre: HardhatRuntimeEnvironment) { | ||
const layer1 = hre.companionNetworks.layer1; | ||
|
||
const {deployer} = await hre.getNamedAccounts(); | ||
const l1Accs = await layer1.getNamedAccounts(); | ||
|
||
const messageBusAddress = process.env.MESSAGE_BUS_ADDRESS!! | ||
|
||
const messageBus = (await hre.ethers.getContractFactory('MessageBus')).attach(messageBusAddress) | ||
const prefundAmount = hre.ethers.utils.parseEther("100"); | ||
const tx = await messageBus.populateTransaction.sendValueToL2("0xA58C60cc047592DE97BF1E8d2f225Fc5D959De77", prefundAmount, { | ||
value: prefundAmount | ||
}); | ||
|
||
|
||
console.log(`Sending ${prefundAmount} to ${deployer}`); | ||
|
||
const receipt = await layer1.deployments.rawTx({ | ||
from: l1Accs.deployer, | ||
to: messageBusAddress, | ||
value: prefundAmount, | ||
data: tx.data, | ||
log: true, | ||
waitConfirmations: 1, | ||
}); | ||
if (receipt.events?.length === 0) { | ||
console.log(`Account prefunding status = FAILURE NO CROSS CHAIN EVENT`); | ||
} else { | ||
console.log(`Account prefunding status = ${receipt.status}`); | ||
} | ||
}; | ||
|
||
export default func; | ||
func.tags = ['GasPrefunding', 'GasPrefunding_deploy']; | ||
// No dependencies |