1.0.20 • Published 2 years ago
@guildsworn/stores-contracts v1.0.20
guildsworn-stores-contracts
Installing the package
npm install @guildsworn/stores-contracts
or via yarn
yarn add @guildsworn/stores-contracts
Compiling, building
Try running some of the following tasks:
yarn install
yarn clean
yarn compile
yarn test
yarn coverage
yarn docs
Updating interfaces
npx hardhat generate-interface [Contract name]
cp contracts/[Contract name] contracts/interfaces/
Smart Contract deploy
Before deploy
- Create
.env
file in root folder or copy and check.env.example
Available extra env variables:
STABLE_TOKEN_ADDRESS
for general, or useSTABLE_TOKEN_ADDRESS_[ChainId]
for network specific settingsELDFALL_TOKEN_ADDRESS
for general, or useELDFALL_TOKEN_ADDRESS_[ChainId]
for network specific settingsCHARACTER_NFT_ADDRESS
for general, or useCHARACTER_NFT_ADDRESS_[ChainId]
for network specific settingsPRICE_RESOLVER_ORACLE_ADDRESS
for general, or usePRICE_RESOLVER_ORACLE_ADDRESS_[ChainId]
for network specific settingsCHARACTER_STORE_ADDRESS
for general, or useCHARACTER_STORE_ADDRESS_[ChainId]
for network specific settings
Deploy parameters
Deploy on hardhat local network, reset deployment if exists and generate deployment files
npx hardhat deploy --write true --reset
Deploy on Oasis Sapphire Testnet, generate deployment files
npx hardhat deploy --write true --network oasis_sapphire_testnet
Deploy on Oasis Sapphire Mestnet, generate deployment files
npx hardhat deploy --write true --network oasis_sapphire_mainnet
Verify contract for testnet
yarn hardhat --network oasis_sapphire_testnet sourcify
Verify contract for mainnet
yarn hardhat --network oasis_sapphire_mainnet sourcify
Publish the NPM package
yarn publish