You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
838 B
21 lines
838 B
1 year ago
|
const CHAIN_ID = require("../constants/chainIds.json")
|
||
|
const { getDeploymentAddresses } = require("../utils/readStatic")
|
||
|
|
||
|
module.exports = async function (taskArgs, hre) {
|
||
|
const dstChainId = CHAIN_ID[taskArgs.targetNetwork]
|
||
|
const dstPingPongAddr = getDeploymentAddresses(taskArgs.targetNetwork)["PingPong"]
|
||
|
// get local contract instance
|
||
|
const pingPong = await ethers.getContract("PingPong")
|
||
|
console.log(`[source] pingPong.address: ${pingPong.address}`)
|
||
|
|
||
|
let tx = await (
|
||
|
await pingPong.ping(
|
||
|
dstChainId,
|
||
|
dstPingPongAddr,
|
||
|
0 // start at 0 pings counter
|
||
|
)
|
||
|
).wait()
|
||
|
console.log(`✅ Pings started! [${hre.network.name}] pinging with target chain [${dstChainId}] @ [${dstPingPongAddr}]`)
|
||
|
console.log(`...tx: ${tx.transactionHash}`)
|
||
|
}
|