This is a very simple sample ERC721 for the purposes of demonstrating integration with the OpenSea marketplace. We include a script for minting the items.
Additionally, this contract whitelists the proxy accounts of OpenSea users so that they are automatically able to trade the ERC721 item on OpenSea (without having to pay gas for an additional approval). On OpenSea, each user has a "proxy" account that they control, and is ultimately called by the exchange contracts to trade their items. (Note that this addition does not mean that OpenSea itself has access to the items, simply that the users can list them more easily if they wish to do so)
Either make sure you're running a version of node compliant with the engines
requirement in package.json
, or install Node Version Manager nvm
and run nvm use
to use the correct version of node.
Run
npm install
If you run into an error while building the dependencies and you're on a Mac, run the code below, remove your node_modules
folder, and do a fresh npm install
:
xcode-select --install # Install Command Line Tools if you haven't already.
sudo xcode-select --switch /Library/Developer/CommandLineTools # Enable command line tools
sudo npm explore npm -g -- npm install node-gyp@latest # Update node-gyp
- You'll need to sign up for Infura. and get an API key.
- Using your API key and the mnemonic for your Metamask wallet (make sure you're using a Metamask seed phrase that you're comfortable using for testing purposes), run:
export INFURA_KEY="<your_infura_project_id>"
export MNEMONIC="<metmask_mnemonic>"
DEPLOY_CREATURES_SALE=1 yarn truffle deploy --network rinkeby
After deploying to the Rinkeby network, there will be a contract on Rinkeby that will be viewable on Rinkeby Etherscan. For example, here is a recently deployed contract. You should set this contract address and the address of your Metamask account as environment variables when running the minting script:
export OWNER_ADDRESS="<my_address>"
export NFT_CONTRACT_ADDRESS="<deployed_contract_address>"
export NETWORK="rinkeby"
node scripts/mint.js
If you're running a modified version of sell.js
and not getting expected behavior, check the following:
-
Is the
expirationTime
in future? If no, change it to a time in the future. -
Is the
expirationTime
a fractional second? If yes, round the listing time to the nearest second. -
Are the input addresses all strings? If no, convert them to strings.
-
Are the input addresses checksummed? You might need to use the checksummed version of the address.
-
Is your computer's internal clock accurate? If no, try enabling automatic clock adjustment locally or following this tutorial to update an Amazon EC2 instance.
-
Do you have any conflicts that result from globally installed node packages? If yes, try
npm uninstall -g truffle; npm install -g truffle@5.0.37
-
Are you running a version of node compliant with the
engines
requirement inpackage.json
? If no, trynvm use 8.11.2; rm -rf node_modules; npm i
This is a sample ERC-1155 contract for the purposes of demonstrating integration with the OpenSea marketplace for crypto collectibles. We also include:
- A factory contract for making sell orders for unminted items (allowing for gas-free and mint-free presales).
- A configurable lootbox contract for selling randomized collections of ERC-1155 items.
On top of the features from the OpenSea ERC721 sample contracts above, ERC1155
- supports multiple creators per contract, where only the creator is able to mint more copies
- supports pre-minted items for the lootbox to choose from
Open CreatureAccessoryLootbox.sol
- Change
Class
to reflect your rarity levels. - Change
NUM_CLASSES
to reflect how many classes you have (this gets used for sizing fixed-length arrays in Solidity) - In
constructor
, set theOptionSettings
for each of your classes. To do this, as in the example, callsetOptionSettings
with- Your option id,
- The number of items to issue when the box is opened,
- An array of probabilities (basis points, so integers out of 10,000) of receiving each class. Should add up to 10k and be descending in value.
- Then follow the instructions below to deploy it! Purchases will auto-open the box. If you'd like to make lootboxes tradable by users (without a purchase auto-opening it), contact us at contact@opensea.io (or better yet, in Discord).
This contract overrides the isApprovedForAll
method in order to whitelist the proxy accounts of OpenSea users. This means that they are automatically able to trade your ERC-1155 items on OpenSea (without having to pay gas for an additional approval). On OpenSea, each user has a "proxy" account that they control, and is ultimately called by the exchange contracts to trade their items.
Note that this addition does not mean that OpenSea itself has access to the items, simply that the users can list them more easily if they wish to do so!
Either make sure you're running a version of node compliant with the engines
requirement in package.json
, or install Node Version Manager nvm
and run nvm use
to use the correct version of node.
Run
yarn
- You'll need to sign up for Infura. and get an API key.
- You'll need Rinkeby ether to pay for the gas to deploy your contract. Visit https://faucet.rinkeby.io/ to get some.
- Using your API key and the mnemonic for your MetaMask wallet (make sure you're using a MetaMask seed phrase that you're comfortable using for testing purposes), run:
export INFURA_KEY="<infura_key>"
export MNEMONIC="<metmask_mnemonic>"
DEPLOY_ACCESSORIES_SALE=1 yarn truffle migrate --network rinkeby
Make sure your wallet has at least a few dollars worth of ETH in it. Then run:
yarn truffle migrate --network live
Look for your newly deployed contract address in the logs! 🥳
OpenSea will automatically pick up transfers on your contract. You can visit an asset by going to https://opensea.io/assets/CONTRACT_ADDRESS/TOKEN_ID
.
To load all your metadata on your items at once, visit https://opensea.io/get-listed and enter your address to load the metadata into OpenSea! You can even do this for the Rinkeby test network if you deployed there, by going to https://rinkeby.opensea.io/get-listed.
Install truffle locally: yarn add truffle
. Then run yarn truffle migrate ...
.
You can also debug just the compile step by running yarn truffle compile
.
This is often due to the truffle-hdwallet provider not being able to connect. Go to infura.io and create a new Infura project. Use your "project ID" as your new INFURA_KEY
and make sure you export that command-line variable above.
To implement the ERC1155 standard, these contracts use the Multi Token Standard by Horizon Games, available on npm and github and also under the MIT License.
In one terminal window, run:
yarn run ganache-cli
Once Ganache has started, run the following in another terminal window:
yarn run test