-
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.
* added faucet funding. * Increased amount. * Added config option. * Added env variables for faucet funds. * Fix new line issue. --------- Co-authored-by: StefanIliev545 <[email protected]>
- Loading branch information
1 parent
10ded30
commit a818470
Showing
6 changed files
with
73 additions
and
12 deletions.
There are no files selected for viewing
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
44 changes: 44 additions & 0 deletions
44
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,44 @@ | ||
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 prefundAmountStr = process.env.PREFUND_FAUCET_AMOUNT!! | ||
|
||
if (prefundAmountStr == "0") { | ||
return; | ||
} | ||
|
||
const messageBus = (await hre.ethers.getContractFactory('MessageBus')).attach(messageBusAddress) | ||
const prefundAmount = hre.ethers.utils.parseEther(prefundAmountStr); | ||
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 |
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
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
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
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