@bisonai/sbt-contracts v0.5.0
@bisonai/sbt-contracts
This repository defines Solidity smart contracts, deployment, and test scripts for Soulbound token (SBT). The implementation follows EIP-5192: Minimal Soulbound NFT.
Installation
yarn installPrerequisites
- Generate mnemonic if you do not have any.
npx mnemonics- Create
.envfrom.env.example.
cp .env.example .env- Fill in generated mnemonic to
MNEMONICenvironment variable.
Compilation
yarn compilePredefined networks
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.
Deploy SBT
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 helpExample of deploying SBT in localhost network
yarn deploy \
--name MySBT \
--symbol MSBT \
--base-uri "http://localhost/" \
--network localhostOutput
SBT was deployed to localhost network and can be interacted with at address 0xd65C849d9ADf21bc83cD8dEC377C4f0181dEcE6BMint SBT
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 helpExample of minting SBT in localhost network
yarn mint \
--address 0xd65C849d9ADf21bc83cD8dEC377C4f0181dEcE6B \
--to 0xeaeF3D4964F40924D3082CFcB6F7E1d9Fe5D299B \
--token-id 123 \
--network localhostOutput
SBT with tokenId 123 was minted for address 0xeaeF3D4964F40924D3082CFcB6F7E1d9Fe5D299BRun test
Before running test, make sure you compile your smart contracts.
yarn testPublish to registry
yarn clean
yarn compile
yarn build
yarn pub