Skip to content

Instantly share code, notes, and snippets.

@mksamanes
mksamanes / list.md
Created December 5, 2022 08:50 — forked from ih2502mk/list.md
Quantopian Lectures Saved
@mksamanes
mksamanes / AccessLog.sol
Created March 26, 2019 09:38
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.5.6+commit.b259423e.js&optimize=false&gist=
pragma solidity ^0.5.6;
import "./erc20.sol";
contract AccessLog {
address public owner; // Trader wallet
address public manager;
TradToken private accessToken;
modifier onlyManager() {
@mksamanes
mksamanes / AccessLog.sol
Created March 22, 2019 08:30
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.5.6+commit.b259423e.js&optimize=false&gist=
pragma solidity ^0.5.6;
import "./erc20.sol";
contract AccessLog {
address public owner; // Trader wallet
address public manager;
TradToken private accessToken;
modifier onlyManager() {
@mksamanes
mksamanes / Access Log.sol
Created March 21, 2019 10:56
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.5.6+commit.b259423e.js&optimize=false&gist=
pragma solidity ^0.5.6;
import "./erc20.sol";
contract AccessLog {
address public owner; // Trader wallet
address public manager;
AccessToken[] public deployedAccessToken;
@mksamanes
mksamanes / Access Token.sol
Created March 15, 2019 00:35
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.4.25+commit.59dbf8f1.js&optimize=false&gist=
pragma solidity ^0.4.25;
import "./erc20.sol";
contract AccessToken {
address public owner; // Trader wallet
address public manager;
address public accessToken;