Skip to content

Instantly share code, notes, and snippets.

View Bamskki's full-sized avatar
💭
HFSP

Basem Bamskki

💭
HFSP
View GitHub Profile
@Bamskki
Bamskki / Alef.sol
Created May 2, 2020 13:00
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.5.17+commit.d19bba13.js&optimize=false&gist=
pragma solidity ^0.5.0;
contract Alef {
address public owner;
struct Sponsor {
// If the sponser can administer their account.
bool status;
// A record of the amount held for the sponsor.
@Bamskki
Bamskki / Alef.sol
Created May 2, 2020 12:15
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.5.17+commit.d19bba13.js&optimize=false&gist=
pragma solidity ^0.5.0;
contract Alef {
address public owner;
struct Sponsor {
// If the sponser can administer their account.
bool status;
// A record of the amount held for the sponsor.
@Bamskki
Bamskki / donation.js
Last active March 8, 2020 14:21 — forked from pau1m/donation.sol.js
Donation smart contract
pragma solidity ^0.5.0;
// TestRPC HD wallet
// warrior minimum breeze raven garden express solar flavor obvious twenty alpha actress
contract Donation {
// Instantiate a variable to hold the account address of the contract administrator
address public owner;