findDepositAuthorityProgramAddress static method
Find the deposit authority account address of the given stakePoolAddress
.
Implementation
static ProgramAddress findDepositAuthorityProgramAddress(
final Pubkey stakePoolAddress,
) {
return Pubkey.findProgramAddress(
[
stakePoolAddress.toBytes(),
utf8.encode(depositAuthoritySeed),
],
StakePoolProgram.programId,
);
}