npm install
npx hardhat compile
- Set MNEMONIC and PROVIDER_API_KEY in .env file
First of all, you need to deploy wrapped tokens: WUSD, ETH, BNB, USDT, etc.
- Set BRIDGE_TOKEN_NAME, BRIDGE_TOKEN_SYMBOL and BRIDGE_TOKEN_DECIMALS to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_wrapped_token.js --network
yourNetwork - Repeat until all tokens are deployed
Next you should deploy the bridge
- Set CHAIN_ID (id of current network), NATIVE_COIN (symbol of native coin for this network) and BRIDGE_VALIDATOR (address of validator) to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_bridge_pool.js --network
yourNetwork to deploy pool of bridge - special contract for storing tokens + - Run
npx hardhat run scripts/deploy_bridge.js --network
yourNetwork to deploy bridge + - Run
npx hardhat add_chains_to_bridge --chain
chainId--network
yourNetwork to add allowed networks for swapping + - Run
npx hardhat add_token_to_bridge --symbol
tokenSymbol--lockable 1 --network
yourNetwork to add allowed tokens for + swapping. Iflocable
option is set to false then tokens will be burned and minted, else they will be transferred to pool of bridge. - Run
npx hardhat grant_roles_for_bridge --network
yourNetwork to grant minter and burner roles of tokens for bridge address-
- Set PRICE_ORACLE_SERVICE (address of validator of prices) and PRICE_ORACLE_VALID_TIME to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_price_oracle.js --network
yourNetwork to deploy price oracle + - Run
npx hardhat config_price_oracle --network
yourNetwork to add allowed tokens +
This contract requires a deployed price oracle contract
- Set REFERRAL_SERVICE, REFERRAL_REWARD (reward value in USD for each worker, that earned REFERRAL_EARNED_THRESHOLD USD), REFERRAL_EARNED_THRESHOLD to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_referral.js --network
yourNetwork to deploy referral contract
This contract requires a deployed WUSD token contract
- Set PENSION_LOCK_TIME, PENSION_DEFAULT_FEE, PENSION_APY, PENSION_FEE_RECEIVER, PENSION_FEE_PER_MONTH and PENSION_FEE_WITHDRAW to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_pension.js --network
yourNetwork to deploy pension fund
This contract requires a deployed pension fund, referral and WUSD token contracts
- Set WORKQUEST_FEE_EMPLOYER (fee coefficient for employer), WORKQUEST_FEE_WORKER (fee coefficient for worker), WORKQUEST_FEE_TX (comission value to refund for arbiters) and WORKQUEST_FEE_RECEIVER to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_workquest.js --network
yourNetwork to deploy quest factory
This contract requires a deployed workquest factory and WUSD token contracts
- Set PROMOTION_FEE_RECEIVER to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_promotion.js --network
yourNetwork to deploy promotion contract
This contract requires a deployed WUSD token contracts
- Set LENDING_FEE_RECEIVER and LENDING_FEE to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_lending.js --network
yourNetwork to deploy lending contract
This contract requires a deployed WUSD token contracts
- Set SAVING_PRODUCT_FEE_RECEIVER, SAVING_PRODUCT_FEE_PER_MONTH and SAVING_PRODUCT_FEE_WITHDRAW to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_saving_product.js --network
yourNetwork to deploy lending contract
This contract requires a deployed WUSD and collateral (ETH, BNB, etc.) tokens, price oracle, pension fund, lending and saving product contracts
- Set BORROWING_FEE_RECEIVER, BORROWING_FEE, BORROWING_AUCTION_DURATION, BORROWING_AUCTION_UPPER_BOUND_COST and BORROWING_AUCTION_LOWER_BOUND_COST to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_borrowing.js --network
yourNetwork to deploy borrowing contract
- Set DAO_CHAIR_PERSON, DAO_MINIMUM_QUORUM, DAO_VOTING_PERIOD, DAO_PROPOSAL_THRESHOLD, DAO_VOTE_THRESHOLD, DAO_FEE and DAO_FEE_RECEIVER to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_dao.js --network
yourNetwork to deploy dao contract
- Set STAKING_NATIVE_START_TIME, STAKING_NATIVE_REWARD_TOTAL, STAKING_NATIVE_DISTRIBUTION_TIME, STAKING_NATIVE_STAKE_PERIOD, STAKING_NATIVE_CLAIM_PERIOD, STAKING_NATIVE_MIN_STAKE and STAKING_NATIVE_MAX_STAKE to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_staking_native.js --network
yourNetwork to deploy staking contract
- Set STAKING_START_TIME, STAKING_REWARD_TOTAL, STAKING_DISTRIBUTION_TIME, STAKING_STAKE_PERIOD, STAKING_CLAIM_PERIOD, STAKING_MIN_STAKE and STAKING_MAX_STAKE to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_staking.js --network
yourNetwork to deploy staking contract
This contract requires a deployed WUSD token and price oracle contracts
- Set ROUTER_FEE_RECEIVER to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_router.js --network
yourNetwork to deploy router contract
This contracts requires a deployed router, price oracle and collateral tokens (ETH, BNB, USDT, etc.) contracts
- Set SYMBOL_AUCTION_MIN_RATIO, SYMBOL_AUCTION_LIQUIDATE_TRESHOLD, SYMBOL_AUCTION_DURATION, SYMBOL_FEE_REWARDS, SYMBOL_FEE_PLATFORM, SYMBOL_FEE_RESERVES to .env-yourNetwork file
- Run
npx hardhat run scripts/deploy_collateral_auction.js --network
yourNetwork to deploy collateral auction contracts - Run
npx hardhat config_router --network
yourNetwork to config router and token credentials
- We have Listing on Uniswap & Pancakeswap
- Uniswap ETH/WQT
- UNIv2 for Ether
- CakeLp for Pancekeswap ** Staking formula APY динамический по формуле: Apy = (DailyReward * RewardTokenPrice)/(TotalStaked * StakeTokenPrice) * 100%