getMinimumDelegation static method

TransactionInstruction getMinimumDelegation()

Get the minimum stake delegation, in lamports.

Keys:

  • None

Returns the minimum delegation as a little-endian encoded u64 value. Programs can use the getMinimumDelegation() helper function to invoke and retrieve the return value for this instruction.

Implementation

static TransactionInstruction getMinimumDelegation() {
  return _instance.createTransactionIntruction(
    StakeInstruction.getMinimumDelegation,
    keys: const [],
  );
}