Skip to content

Instantly share code, notes, and snippets.

View pandadefi's full-sized avatar

panda pandadefi

View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;
// Role a 256 dice
contract Dice {
uint8[] results;
uint256 roled = 0;
address owner;
constructor(address _owner) {