getOnRampTransactionStatus method

Future<TGetOnRampTransactionStatusResponse> getOnRampTransactionStatus({
  1. required TGetOnRampTransactionStatusBody input,
})

Get the status of an on ramp transaction.

Sign the provided TGetOnRampTransactionStatusBody with the client's stamp function and submit the request (POST /public/v1/query/get_onramp_transaction_status).

See also: stampGetOnRampTransactionStatus.

Implementation

Future<TGetOnRampTransactionStatusResponse> getOnRampTransactionStatus({
  required TGetOnRampTransactionStatusBody input,
}) async {
  return await request<TGetOnRampTransactionStatusBody,
          TGetOnRampTransactionStatusResponse>(
      "/public/v1/query/get_onramp_transaction_status",
      input,
      (json) => TGetOnRampTransactionStatusResponse.fromJson(json));
}