Skip to content

Instantly share code, notes, and snippets.

@rafat
Created January 16, 2024 17:14
Show Gist options
  • Save rafat/e366a1e1918c98116d15114598720f4d to your computer and use it in GitHub Desktop.
Save rafat/e366a1e1918c98116d15114598720f4d to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.19+commit.7dd6d404.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;
// Deploy this contract on Sepolia
import {CCIPReceiver} from "@chainlink/contracts-ccip/src/v0.8/ccip/applications/CCIPReceiver.sol";
import {Client} from "@chainlink/contracts-ccip/src/v0.8/ccip/libraries/Client.sol";
interface InftMinter {
function mintFrom(address account, uint256 sourceId) external;
}
/**
* THIS IS AN EXAMPLE CONTRACT THAT USES HARDCODED VALUES FOR CLARITY.
* THIS IS AN EXAMPLE CONTRACT THAT USES UN-AUDITED CODE.
* DO NOT USE THIS CODE IN PRODUCTION.
*/
contract CrossDestinationMinter is CCIPReceiver {
InftMinter public nft;
event MintCallSuccessfull();
// https://docs.chain.link/ccip/supported-networks
address routerSepolia = 0x0BF3dE8c5D3e8A2B34D2BEeB17ABfCeBaf363A59;
constructor(address nftAddress) CCIPReceiver(routerSepolia) {
nft = InftMinter(nftAddress);
}
function _ccipReceive(
Client.Any2EVMMessage memory message
) internal override {
(bool success, ) = address(nft).call(message.data);
require(success);
emit MintCallSuccessfull();
}
function testMint() external {
// Mint from Sepolia
nft.mintFrom(msg.sender, 0);
}
function testMessage() external {
// Mint from Sepolia
bytes memory message;
message = abi.encodeWithSignature("mintFrom(address,uint256)", msg.sender, 0);
(bool success, ) = address(nft).call(message);
require(success);
emit MintCallSuccessfull();
}
function updateNFT(address nftAddress) external {
nft = InftMinter(nftAddress);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment