$PACK Protocol lets anyone create and sell packs filled with rewards. A pack can be opened only once. On opening a pack, a reward from the pack is distributed to the pack opener.
The contracts in the /contracts
directory are deployed on the following networks.
-
ProtocolControl.sol
: 0x9d7DDC9585a6C24bb2fA7980D825e6830A402753 -
Market.sol
: 0xC0C872a7eBCDA2c206B76CCAF7546d4f22642e8b -
Rewards.sol
: 0xC63AE70150F94ab97342dE57Fb920914BC836f77
Clone the project
git clone https://github.com/nftlabs/pack-protocol.git
Install dependencies
yarn install
Add a .env
file to the project's root directory. Update the .env
file with the values mentioned in the provided .env.example
file.
Run tests
npx hardhat test
To use scripts, update the transaction parameters in the particular script (e.g. packId
in scripts/txs/openPack.ts
) and run e.g -
yarn run openPack --network {network name}
To deploy this project on a given network (e.g. mumbai) update the hardhat.config.ts
file with the following
// ...
if (testPrivateKey) {
config.networks = {
mumbai: createTestnetConfig("mumbai"),
};
}
To deploy the entire protocol, run
yarn run deploy-protocol --network {network name}
To deploy Pack.sol
and Market.sol
as individual modules, run e.g.
yarn run deploy-pack --network {network name}
Finally, update the README.md
files with the new addresses, which can be found in utils/addresses.json
.
To verify the entire protocol, run
yarn run verify-protocol --network {network name}
To verify individual modules like Pack.sol
, run
yarn run verify-pack --network {network name}
If you have any feedback, please reach out to us at support@nftlabs.co.