Skip to content

Instantly share code, notes, and snippets.

View Slyracoon23's full-sized avatar

Earl Potters Slyracoon23

View GitHub Profile
[
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
@Slyracoon23
Slyracoon23 / SimpleTokenLock.sol
Last active October 7, 2022 14:26
TokenTimeLock Factory Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/utils/TokenTimelock.sol";
contract SimpleTokenLock {
// TokenLock List
TokenTimelock[] public list_of_timelocks;