This repository defines Solidity smart contracts, deployment, and test scripts for Soulbound token (SBT). The implementation follows EIP-5192: Minimal Soulbound NFT.
yarn install
- Generate mnemonic if you do not have any.
npx mnemonics
- Create
.env
from.env.example
.
cp .env.example .env
- Fill in generated mnemonic to
MNEMONIC
environment variable.
yarn compile
hardhat.config.ts
predefines several networks where SBT can be deployed.
Currently, you can deploy your SBT to localhost
, baobab
or cypress
networks.
If you want to deploy to any other network, simply add connection information to hardhat.config.ts
.
To deploy your SBT call yarn deploy
command and set options --base-uri
, --name
and --symbol
.
If you want to deploy to specific network you can define it using --network
option.
To find more information about networks, go to Predefined networks section.
Hardhat version 2.10.1
Usage: hardhat [GLOBAL OPTIONS] deploy --base-uri <STRING> --name <STRING> --symbol <STRING>
OPTIONS:
--base-uri URI (must end with /) that will be used as prefix when returning tokenURI
--name SBT name
--symbol SBT symbol
deploy: Deploy SBT
For global options help run: hardhat help
yarn deploy \
--name MySBT \
--symbol MSBT \
--base-uri "http://localhost/" \
--network localhost
SBT was deployed to localhost network and can be interacted with at address 0xd65C849d9ADf21bc83cD8dEC377C4f0181dEcE6B
When minting SBT, specify address of deployed SBT with --address
option, address that will receive SBT token with --to
option and ID of token with --token-id
option.
Do not forget that single account can hold only single SBT token and that ID of every token is unique and cannot be reused.
After SBT token is minted to a specified account, it cannot be transferred to any other one.
Hardhat version 2.10.1
Usage: hardhat [GLOBAL OPTIONS] mint --address <STRING> --to <STRING> --token-id <STRING>
OPTIONS:
--address Address of deployed SBT
--to Address receiving SBT token
--token-id ID of SBT token that is being minted
mint: Mint SBT
For global options help run: hardhat help
yarn mint \
--address 0xd65C849d9ADf21bc83cD8dEC377C4f0181dEcE6B \
--to 0xeaeF3D4964F40924D3082CFcB6F7E1d9Fe5D299B \
--token-id 123 \
--network localhost
SBT with tokenId 123 was minted for address 0xeaeF3D4964F40924D3082CFcB6F7E1d9Fe5D299B
Before running test, make sure you compile your smart contracts.
yarn test
yarn clean
yarn compile
yarn build
yarn pub