I hereby claim:
- I am uneeb123 on github.
- I am uneebagha (https://keybase.io/uneebagha) on keybase.
- I have a public key ASDd5G5Y1u4p9i-3zrRCGjPDQKw9ZFt_gPXqynjHzjBf2go
To claim this, I am signing this object:
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.23; | |
interface ITokenBet { | |
/* | |
* ================== | |
* STRUCTS | |
* ================== | |
*/ |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.23; | |
import {IEntropyConsumer} from "@pythnetwork/entropy-sdk-solidity/IEntropyConsumer.sol"; | |
import {IEntropy} from "@pythnetwork/entropy-sdk-solidity/IEntropy.sol"; | |
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; | |
import {ICoinFlip} from "./interface/ICoinFlip.sol"; | |
contract CoinFlip is IEntropyConsumer, Ownable, ICoinFlip { |
// SPDX-License-Identifier: BUSL-1.1 | |
pragma solidity ^0.8.23; | |
import {IEntropyConsumer} from "@pythnetwork/entropy-sdk-solidity/IEntropyConsumer.sol"; | |
import {IEntropy} from "@pythnetwork/entropy-sdk-solidity/IEntropy.sol"; | |
import "blast-l2-kit/src/IBlast.sol"; | |
import "blast-l2-kit/src/IBlastPoints.sol"; | |
import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; |
contract SimpleYesNoVotingContract { | |
event voteStarted(); | |
event voted(address voter); | |
event voteEnded(uint yesVotes, uint noVotes) | |
address public officialAddress; | |
enum State { Created, Voting, Ended } | |
State public state; |
/** | |
*Submitted for verification at Etherscan.io on 2019-08-13 | |
*/ | |
pragma solidity ^0.5.10; | |
pragma experimental ABIEncoderV2; | |
/** | |
* @title The Open Oracle View Base Contract | |
* @author Compound Labs, Inc. | |
*/ |
I hereby claim:
To claim this, I am signing this object:
import math | |
import numpy as np | |
import random | |
import matplotlib.pyplot as plt | |
from mpl_toolkits.mplot3d import Axes3D | |
from matplotlib import cm | |
from matplotlib.ticker import LinearLocator, FormatStrFormatter | |
""" |