Skip to content

Instantly share code, notes, and snippets.

@ebrahimasifismail
ebrahimasifismail / Asset.sol
Created July 13, 2020 13:08
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.6.6+commit.6c089d02.js&optimize=false&gist=
pragma solidity >=0.4.21 <0.6.0;
import "./nf-token-metadata.sol";
import "./ownable.sol";
import "./Fynya_Token.sol";
contract Asset is
NFTokenMetadata,
Ownable
@ebrahimasifismail
ebrahimasifismail / Context.sol
Created July 10, 2020 16:40
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.17+commit.d19bba13.js&optimize=false&gist=
pragma solidity ^0.5.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*