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.8.4; | |
| // a system that uses passwords or a real world artifact as an interface to verify timestamp and optionally location | |
| // "they'll try to use your workspace" | |
| // permissions : | |
| // 1 - id for internal address | |
| // 2 - password for internal address | |
| // 3 - id, token => password // pseudo oauth | |
| // |
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.8.4; | |
| // a system that uses passwords or a real world artifact as an interface to verify timestamp and optionally location | |
| // "they'll try to use your workspace" | |
| // permissions : | |
| // 1 - id for internal address | |
| // 2 - password for internal address | |
| // 3 - id, token => password // pseudo oauth | |
| // |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| // ICO for CryVerify Blockchain | |
| pragma solidity ^0.8.4; | |
| interface IERC20 { | |
| function transfer(address _to, uint256 _amount) external payable returns (bool); | |
| } | |
| error InsufficientBalance(uint requested, uint available); |
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.8.4; | |
| // permissions : | |
| // 1 - id for internal address | |
| // 2 - password for internal address | |
| // 3 - id, token => password // pseudo oauth | |
| // | |
| contract gitarg { | |
| address private owner; |
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.8.4; | |
| // permissions : | |
| // 1 - id for internal address | |
| // 2 - password for internal address | |
| // 3 - id, token => password // pseudo oauth | |
| // | |
| contract gitarg { | |
| address private owner; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| // ICO for CryVerify Blockchain | |
| pragma solidity ^0.8.4; | |
| error InsufficientBalance(uint requested, uint available); | |
| contract CryVerify { | |
| // The keyword "public" makes variables | |
| // accessible from other contracts | |
| uint startGlobal = 1666666666; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library TestsAccounts { | |
| function getAccount(uint index) pure public returns (address) { | |
| address[15] memory accounts; | |
| accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
| accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library TestsAccounts { | |
| function getAccount(uint index) pure public returns (address) { | |
| address[15] memory accounts; | |
| accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
| accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| // ICO for CryVerify Blockchain | |
| pragma solidity ^0.8.4; | |
| error InsufficientBalance(uint requested, uint available); | |
| contract CryVerify { | |
| // The keyword "public" makes variables | |
| // accessible from other contracts | |
| uint startGlobal = 1666666666; |
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
| // SPDX-License-Identifier: GPL-3.0 | |
| // ICO for CryVerify Blockchain | |
| pragma solidity ^0.8.4; | |
| error InsufficientBalance(uint requested, uint available); | |
| contract CryVerify { | |
| // The keyword "public" makes variables | |
| // accessible from other contracts | |
| uint startGlobal = 1666666666; |