- Install
nodeandyarn - Install
scriptas global command - Confirm the solana wallet preparation. ex:
key.json
- Main script source for all functionality is here:
/lib/script.ts - Program account types are declared here:
/lib/types.ts
Able to test the script functions working in this way.
- Change commands properly in the main functions of the
script.tsfile to call the other functions - Run
yarn scriptwith parameters
First of all, you have to git clone in your PC.
In the folder staking, in the terminal
-
yarn -
anchor buildIn the last sentence you can see:
To deploy this program:
$ solana program deploy ./target/deploy/staking.so
The program address will default to this keypair (override with --program-id):
./target/deploy/staking-keypair.json
solana-keygen pubkey ./target/deploy/staking.json- You can get the pubkey of the
program ID : ex."5N...x6k" - Please add this pubkey to the lib.rs
declare_id!("5N...x6k"); - Please add this pubkey to the Anchor.toml
staking = "5N...x6k" anchor buildagainsolana program deploy ./target/deploy/staking.so
First of all, open the directory and yarn
yarn script initAs soon as after deploy program, admin need to initialize and should
deposit reward token to vault if reward enabled
yarn script statusCheck the global pool info and reward vault balance
- Transfer admin authority
yarn script change-admin -n <NEW ADMIN ADDRESS>- Active / Disable reward
yarn script change-reward-enable -n <ENABLED>To enable reward, set the reward_enable to 1. else set it 0
- Change reward token mint
yarn script change-reward-mint -m <NEW REWARD MINT>- Change daily reward rate
yarn script change-reward-per-day -n <REWARD RATE PER DAY>Reward per day should be token amount in decimal expected to receive everyday
yarn script lock -m <MINT ADDRESS> yarn script unstake -m <MINT ADDRESS> yarn script claim-reward yarn script user-status -a <USER_ADDRESS>