Skip to content

Instantly share code, notes, and snippets.

View tmoindustries's full-sized avatar
💭
BUIDLing for climate, nature and carbon

TMO tmoindustries

💭
BUIDLing for climate, nature and carbon
View GitHub Profile
{"version":1,"resource":"file:///Users/knrz/Git/shaman-ai/office-intern-ai/.tool-versions","entries":[{"id":"rstl","timestamp":1691971194860}]}
@tempe-techie
tempe-techie / Redirect.sol
Last active November 5, 2022 11:41
Redirect contract (quick prototype, untested)
// SPDX-License-Identifier: GPL-3.0-or-later
pragma solidity ^0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
contract Redirect is Ownable {
address public receiver;