ERC1155 token obtained from ketl SealCred attestations
- Clone the repository with
git clone git@github.com:BigWhaleLabs/ketl-attestation-token
- Create
.env
and fill it, you can take data from 1password, consider looking into.env.sample
- Install the dependencies with
yarn
- Compile the contract with
yarn build
- Make sure you have access to ketl-merkle-trees
- Install submodules
git submodule update --init --recursive
- Make sure your submodules are up to date
git submodule update --remote --merge
- Add the new credentials to
merkleTrees
folder (note the naming of the files and the format of the data) - Make sure to
git push
the changes to theketl-merkle-trees
repository - Run the command
yarn update-merkle-root
, follow instructions in the prompt - Make sure to
git push
the changes to theketl-attestation-token
repository (it contains the new hashes for the merkle trees leaves)
-
Mint BWLNFT test token:
- If you want to mint for other addresses, use
legacyBatchMint
function. It can be used only byowner
, you can find credentials in 1pass (search forowner
) - If you want to mint for yourself, simply call
mint
function
- If you want to mint for other addresses, use
-
Add the new addresses to ketl-merkle-trees like
bwlnft:{address}
Name | Description |
---|---|
ETHERSCAN_API_KEY |
Etherscan API key |
ETH_RPC |
Ethereum RPC URL |
CONTRACT_OWNER_PRIVATE_KEY |
Private key of the contract owner to deploy the contracts |
COINMARKETCAP_API_KEY |
Coinmarketcap API key |
Also check out the .env.sample
file for more information.
yarn build
— compiles the contract ts interface to thetypechain
directoryyarn test
— runs the test suiteyarn deploy
— deploys the contract to the networkyarn eth-lint
— runs the linter for the solidity contractyarn lint
— runs all the lintersyarn prettify
— prettifies the code in th projectyarn release
— releases thetypechain
directory to NPMyarn update-merkle-root
— updates the merkle root in the contract