I hereby claim:
- I am cag on github.
- I am alanlu (https://keybase.io/alanlu) on keybase.
- I have a public key ASBX3-uF-zUydOwAOV8ZBKdcWEIbKrA-KUXqinngWs-ZjQo
To claim this, I am signing this object:
| thing |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
| <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | |
| <title>LMSR Bid/Ask Chart</title> | |
| <main style="max-width: 960px; margin: auto;"> | |
| <h1>LMSR Bid/Ask Chart</h1> | |
| <form> | |
| <ul> |
I hereby claim:
To claim this, I am signing this object:
| pragma solidity ^0.6.0; | |
| import { IERC20 } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; | |
| library CTHelpers { | |
| /// @dev Constructs a condition ID from an oracle, a question ID, and the outcome slot count for the question. | |
| /// @param oracle The account assigned to report the result for the prepared condition. | |
| /// @param questionId An identifier for the question to be answered by the oracle. | |
| /// @param outcomeSlotCount The number of outcome slots which should be used for this condition. Must not exceed 256. | |
| function getConditionId(address oracle, bytes32 questionId, uint outcomeSlotCount) internal pure returns (bytes32) { |
| pragma solidity ^0.6.0; | |
| import { Address } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Address.sol"; | |
| import { ERC20 } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; | |
| import { IERC1155 } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC1155/IERC1155.sol"; | |
| import { ERC1155Receiver } from "github.com/OpenZeppelin/openzeppelin-contracts/contracts/token/ERC1155/ERC1155Receiver.sol"; | |
| contract Wrapped1155Metadata { | |
| // workaround which also arranges first storage slots of Wrapped1155 | |
| Wrapped1155Factory public factory; |