serialize method

  1. @override
Map<String, dynamic> serialize()
override

Serializes the program.

Implementation

@override
Map<String, dynamic> serialize() {
  return {
    "transferFee":
        TransferFeeInstructionInstruction.initializeTransferFeeConfig.value,
    "transferFeeConfigAuthority": transferFeeConfigAuthority,
    "withdrawWithheldAuthority": withdrawWithheldAuthority,
    "transferFeeBasisPoints": transferFeeBasisPoints,
    "maximumFee": maximumFee
  };
}