stakeDepositAuthority property
Stake deposit authority
If a depositor pubkey is specified on initialization, then deposits must be signed by this authority. If no deposit authority is specified, then the stake pool will default to the result of:
Pubkey::find_program_address(
[
<stake_pool_address>,
utf8.encode("deposit"),
],
<stake_pool_program_id>,
);
Implementation
final String stakeDepositAuthority;