Skip to content

Instantly share code, notes, and snippets.

View johnashu's full-sized avatar

John Ashurst - Maffaz.eth johnashu

View GitHub Profile
@johnashu
johnashu / High-Stakes Roulette Example
Created January 20, 2022 20:12 — forked from gorgos/High-Stakes Roulette Example
Example for a contract for playing high-stakes Roulette on the blockchain
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract BankOwned {
address public bankAddress;
constructor() {
bankAddress = msg.sender;
}