source: https://github.com/ProjectOpenSea/seaport/blob/main/docs/Deployment.md#setting-up-factory-on-a-new-chain Credit to @0age and the Seaport team.
| Name | Address |
source: https://github.com/ProjectOpenSea/seaport/blob/main/docs/Deployment.md#setting-up-factory-on-a-new-chain Credit to @0age and the Seaport team.
| Name | Address |
| import * as hre from "hardhat"; | |
| import { RequestArguments } from "hardhat/types"; | |
| import { BigNumber } from "@ethersproject/abi/node_modules/@ethersproject/bignumber"; | |
| import { Block } from "@ethersproject/abstract-provider"; | |
| import { SignerWithAddress } from "@nomiclabs/hardhat-ethers/signers"; | |
| // Mine the next block | |
| export async function mineBlock(): Promise<void> { | |
| await rpc({ method: "evm_mine" }); |
| mask_value,gene_value,cattribute_name,cattribute_type,recessiveness | |
| 0x000000000000000000000000000000000000000000000000000000000000001f,0x000000000000000000000000000000000000000000000000000000000000000b,himalayan,body,D | |
| 0x00000000000000000000000000000000000000000000000000000000000003e0,0x0000000000000000000000000000000000000000000000000000000000000160,himalayan,body,R1 | |
| 0x0000000000000000000000000000000000000000000000000000000000007c00,0x0000000000000000000000000000000000000000000000000000000000002c00,himalayan,body,R2 | |
| 0x00000000000000000000000000000000000000000000000000000000000f8000,0x0000000000000000000000000000000000000000000000000000000000058000,himalayan,body,R3 | |
| 0x000000000000000000000000000000000000000000000001f000000000000000,0x0000000000000000000000000000000000000000000000008000000000000000,caffeine,eyes,D | |
| 0x00000000000000000000000000000000000000000000003e0000000000000000,0x0000000000000000000000000000000000000000000000100000000000000000,caffeine,eyes,R1 | |
| 0x0000000000000000000000000000000000000000000007 |
| [{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"approvedFor","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutabil |
Project Wyvern is a decentralized item exchange platform (the “Platform”) comprised of three primary components: (1) The WYV Token; (2) The Wyvern Exchange; and (3) The Wyvern Decentralized Autonomous Organization (DAO). This goal of this audit has been to ascertain the overall security of the Platform. In pursuit of that goal, this author has reviewed the Solidity source code of all relevant Smart Contracts, deployed and tested a live version of the Platform on the Ethereum Main Network.
This audit is presented as a Code Review which reflects a deep analysis of the Smart Contracts that comprise the Platform. It is broken into sub-sections, each of which relate to a single Smart Contract. Each sub-section includes a link to the Smart Contract’s Solidity source code as it stood at the ti
| import Quill from 'quill' | |
| import TableComponent from 'TableComponent' | |
| import ReactDOM from 'react-dom' | |
| const QuillEmbed = Quill.import('blots/block/embed'); | |
| class QuillTable extends QuillEmbed { | |
| static create(values) { | |
| let node = super.create(values); |
| <script> | |
| /* Put this in theme.liquid, preferably right before "</body>" */ | |
| (function() { | |
| var discountParam = document.location.search.match(/discount=(\w+)/); | |
| if (discountParam && discountParam.length > 1) { | |
| document.cookie = discountParam[0]; | |
| } | |
| })(); | |
| </script> |
I hereby claim:
To claim this, I am signing this object:
| describe "Argument Extraction Experiment" do | |
| let(:experiment_class) do | |
| Class.new do | |
| def method_with_mixed_args(one, two = 2, three:, four: 4) | |
| extract_args(binding) | |
| end | |
| def method_with_named_args(one:, two: 2, three: 3) | |
| extract_named_args(binding) | |
| end |
| package com.some.api.support; | |
| import com.some.domain.User; | |
| public class AuthenticationResult { | |
| private String token; | |
| private User user; | |
| public String getToken() { | |
| return token; |