Skip to content

Instantly share code, notes, and snippets.

View mobigaurav's full-sized avatar

Gaurav Kumar mobigaurav

View GitHub Profile
@mobigaurav
mobigaurav / contracts...library.sol
Created August 16, 2021 03:47
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.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.8.4;
contract bookLibrary {
address public contractOwner;
constructor() public {
contractOwner = msg.sender;
}
modifier onlyOwner() {
@mobigaurav
mobigaurav / contracts...library.sol
Created August 16, 2021 03:44
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.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
pragma solidity ^0.8.4;
contract bookLibrary {
address public contractOwner;
constructor() public {
contractOwner = msg.sender;
}
modifier onlyOwner() {
@mobigaurav
mobigaurav / contracts...property.sol
Created August 16, 2021 03:32
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.8.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
pragma solidity ^0.8.4;
contract PropertyTransferApp {
address public contractOwner;
constructor() public {
contractOwner = msg.sender;
}
modifier onlyOwner(){
@mobigaurav
mobigaurav / README.txt
Created August 8, 2021 19:57
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.8.4+commit.c7e474f2.js&optimize=false&runs=200&gist=
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS