Skip to content

Instantly share code, notes, and snippets.

@santhosh-reddy-6404
Created March 30, 2022 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save santhosh-reddy-6404/c935382ccaafd909891599e424f33df4 to your computer and use it in GitHub Desktop.
Save santhosh-reddy-6404/c935382ccaafd909891599e424f33df4 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=builtin&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^ 0.8.0;
import "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC721/IERC721.sol";
contract tradeNFT {
IERC721 internal token;
constructor(address tokenAddress) {
token = IERC721(tokenAddress);
}
function approve(address to, uint id) external {
token.approve(to, id);
}
function transferFrom(address from, address to, uint id) external {
token.safeTransferFrom(from, to, id);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment