-
Install the dependencies:
npm install
-
Rename the
.env.example
file to.env
-
Add your Story Network Testnet wallet's private key to
.env
file:WALLET_PRIVATE_KEY=<your_wallet_private_key>
-
[REQUIRED FOR
register
andregister-custom
SCRIPTS] Go to Pinata and create a new API key. Add the JWT to your.env
file:PINATA_JWT=<your_pinata_jwt>
-
[OPTIONAL] We have already configured a public SPG NFT collection for you (
0xc32A8a0FF3beDDDa58393d022aF433e78739FAbc
). If you want to create your own collection for your IPs, create a new SPG NFT collection by runningnpm run create-spg-collection
in your terminal.3a. Look at the console output, and copy the NFT contract address. Add that value as
SPG_NFT_CONTRACT_ADDRESS
to your.env
file:SPG_NFT_CONTRACT_ADDRESS=<your_spg_nft_contract_address>
NOTE: You will only have to do this one time. Once you create an SPG collection, you can run this script as many times as you'd like.
Below are all of the available scripts to help you build on Story.
register
: This mints an NFT and registers it in the same transaction, using a public SPG collection.register-custom
: This mints an NFT using a custom ERC-721 contract and then registers it in a separate transaction.
mint-license
: Mints a license token from an IP Asset.limit-license
: Registers a new IP and attaches license terms that only allow you to mint 1 license token. This is an example for limiting the amount of licenses you can mint.
derivative-commercial
: This mints an NFT and registers it as a derivative of an IP Asset in the same transaction, using a public SPG collection. It costs 1 $WIP to register as derivative and also includes an example of sharing earned royalties.derivative-non-commercial
: This mints an NFT and registesr it as a derivative of an IP Asset in the same transaction, using a public SPG collection. It's free to register as derivative.derivative-commercial-custom
: This mints an NFT using a custom ERC-721 contract and then registers it as a derivative of an IP Asset in a separate transaction. It costs 1 $WIP to register as derivative and also includes an example of sharing earned royalties.
dispute
: This disputes an IP Asset.