Skip to content

Instantly share code, notes, and snippets.

View sumitpatel93's full-sized avatar

QuantumWidget sumitpatel93

  • Noida
  • 10:22 (UTC -12:00)
View GitHub Profile
@sumitpatel93
sumitpatel93 / Escrow-Smart-Contract
Last active February 7, 2019 21:24 — forked from bitgord/Escrow-Smart-Contract
Example of an escrow smart contract
pragma solidity ^0.4.21;
contract Escrow {
address buyer;
address seller;
uint amount;
function Escrow() public{
// setBuyer
buyer = msg.sender;
}