Skip to content

Instantly share code, notes, and snippets.

View 26rahulsingh's full-sized avatar

Rahul Singh 26rahulsingh

View GitHub Profile
/**
* Base contract that all upgradeable contracts should use.
*
* Contracts implementing this interface are all called using delegatecall from
* a dispatcher. As a result, the _sizes and _dest variables are shared with the
* dispatcher contract, which allows the called contract to update these at will.
*
* _sizes is a map of function signatures to return value sizes. Due to EVM
* limitations, these need to be populated by the target contract, so the
* dispatcher knows how many bytes of data to return from called functions.
pragma solidity ^0.4.17;
import './MedicalRecord.sol';
contract Hospital {
MedicalRecord public medicalRecord;
struct Patient {
bytes32 fullName;
bool access;
@26rahulsingh
26rahulsingh / Donation.sol
Created December 3, 2018 07:41 — forked from fabdarice/Donation.sol
Relay contract that contains only one state variable 'user_amounts' - Link first to Donation contract, then update to DonationNew to add the cancelDonation function.
contract Donation {
mapping (address => uint) user_amounts;
/* DOES THIS METHODS MODIFY user_amounts of the Relay contract ??? */
function sendDonation(uint n) {
user_amounts[msg.sender] = user_amounts[msg.sender] + n
}
}
@26rahulsingh
26rahulsingh / Database.sol
Created December 3, 2018 07:37 — forked from tjade273/Database.sol
Example of separated storage and logic
contract Database{
mapping(uint => uint) public _data;
mapping(address => bool) _owners;
function Database(address[] owners){ //Called once at creation, pass in initial owners
for(uint i; i<owners.length; i++){
_owners[owners[i]]=true;
}
}
@26rahulsingh
26rahulsingh / nginx.conf
Created November 12, 2018 07:59 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048