This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.5.0; | |
| contract EIP712 { | |
| mapping(address => uint256) public nonces; | |
| struct EIP712Domain { | |
| string name; | |
| string version; | |
| uint256 chainId; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity >=0.4.22 <0.7.0; | |
| /** | |
| * @title Storage | |
| * @dev Store & retreive value in a variable | |
| */ | |
| contract Storage { | |
| uint256 number; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pragma solidity ^0.6.12; | |
| pragma experimental ABIEncoderV2; | |
| import "./BunchStorage.sol"; | |
| contract Bunch is BunchStorage { | |
| /** |
OlderNewer