WithdrawNonceParams constructor

const WithdrawNonceParams({
  1. required Pubkey noncePubkey,
  2. required Pubkey authorizedPubkey,
  3. required Pubkey toPubkey,
  4. required u64 lamports,
})

Withdraw nonce account system transaction params.

Implementation

const WithdrawNonceParams({
  required this.noncePubkey,
  required this.authorizedPubkey,
  required this.toPubkey,
  required this.lamports,
});