-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ryan Goulding <[email protected]>
- Loading branch information
1 parent
87dbeb0
commit 3795fe4
Showing
6 changed files
with
94 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
import './mint' | ||
import './send' |
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,28 @@ | ||
import { task } from 'hardhat/config' | ||
import { ActionType, HardhatRuntimeEnvironment } from 'hardhat/types' | ||
|
||
const ABI = ['function mint(address _to, uint256 _tokenId) public'] | ||
|
||
const createMyONFT721MockContract = async (hre: HardhatRuntimeEnvironment, onft721Address: string) => { | ||
return await hre.ethers.getContractAt(ABI, onft721Address) | ||
} | ||
|
||
interface TaskArgs { | ||
onft721Address: string | ||
tokenId: number | ||
} | ||
|
||
const action: ActionType<TaskArgs> = async (taskArgs: TaskArgs, hre) => { | ||
const signer = (await hre.getNamedAccounts()).deployer | ||
const user = await hre.ethers.getSigner(signer) | ||
|
||
const myONFT721Mock = await createMyONFT721MockContract(hre, taskArgs.onft721Address) | ||
|
||
const tx = await myONFT721Mock.mint(user.address, taskArgs.tokenId) | ||
const txReceipt = await tx.wait() | ||
console.log(`Transaction hash: ${txReceipt.transactionHash}`) | ||
} | ||
|
||
task('mint', 'Mint ONFT721 Mock', action) | ||
.addParam('onft721Address', 'ONFT721 contract address') | ||
.addParam('tokenId', 'Token ID') |
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,56 @@ | ||
import { SignerWithAddress } from '@nomiclabs/hardhat-ethers/signers' | ||
import { task } from 'hardhat/config' | ||
import { ActionType, HardhatRuntimeEnvironment } from 'hardhat/types' | ||
|
||
import { makeBytes32 } from '@layerzerolabs/devtools' | ||
|
||
const DEFAULT_EXTRA_OPTIONS = '0x' | ||
const DEFAULT_COMPOSE_MSG = '0x' | ||
const DEFAULT_OFT_CMD = '0x' | ||
|
||
const ONFT721_ABI = [ | ||
'function send((uint32 dstEid,bytes32 to,uint256 tokenId,bytes extraOptions,bytes composeMsg,bytes oftCmd),(uint256 nativeFee,uint256 lzFee),address refundAddress) external payable returns (MessagingReceipt msgReceipt)', | ||
'function quoteSend((uint32 dstEid,bytes32 to,uint256 tokenId,bytes extraOptions,bytes composeMsg,bytes oftCmd),bool payInLzToken) external view returns ((uint256, uint256))', | ||
] | ||
|
||
const getONFT721Contract = async (hre: HardhatRuntimeEnvironment, onft721Address: string, signer: SignerWithAddress) => | ||
hre.ethers.getContractAt(ONFT721_ABI, onft721Address, signer) | ||
|
||
const createSendParam = (user: SignerWithAddress, taskArgs: TaskArgs) => { | ||
return { | ||
dstEid: taskArgs.dstEid, | ||
to: makeBytes32(user.address), | ||
tokenId: taskArgs.tokenId, | ||
extraOptions: DEFAULT_EXTRA_OPTIONS, | ||
composeMsg: DEFAULT_COMPOSE_MSG, | ||
oftCmd: DEFAULT_OFT_CMD, | ||
} | ||
} | ||
|
||
interface TaskArgs { | ||
onft721Address: string | ||
dstEid: number | ||
to: string | ||
tokenId: number | ||
} | ||
|
||
const action: ActionType<TaskArgs> = async (taskArgs: TaskArgs, hre) => { | ||
const signer = (await hre.getNamedAccounts()).deployer | ||
const user = await hre.ethers.getSigner(signer) | ||
|
||
const sendParam = createSendParam(user, taskArgs) | ||
const onft721 = await getONFT721Contract(hre, taskArgs.onft721Address, user) | ||
const messagingFee = await onft721.quoteSend(sendParam, false) | ||
|
||
const tx = await onft721.send(sendParam, messagingFee, user.address, { | ||
value: messagingFee[0], | ||
gasLimit: 1_000_000, | ||
}) | ||
const txReceipt = await tx.wait() | ||
console.log(`Transaction hash: ${txReceipt.transactionHash}`) | ||
} | ||
|
||
task('send', 'Send ONFT721 from one chain to another', action) | ||
.addParam('onft721Address', 'ONFT721 contract address') | ||
.addParam('dstEid', 'Destination LayerZero EndpointV2 ID') | ||
.addParam('tokenId', 'Token ID') |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.