Application Stake Transfer
1
Check the application unstake session end height
pocketd query application show-application <app_address> | yq .application.unstake_session_end_height
# OR more specifically, using jq or yq (JSON output)
pocketd query application show-application <app_address> -o json | jq .application.unstake_session_end_height2
Wait for the application unbonding period to elapse
pocketd query shared params
# OR more specifically, using jq or yq
pocketd query shared params | yq .params.application_unbonding_period_sessions
pocketd query shared params -o json | jq .params.application_unbonding_period_sessionspocketd query block
# OR more specifically, using jq or yq
pocketd query block | yq .header.height
pocketd query block -o json | tail -n -1 | jq .header.heightWas this helpful?
