listSupportedAssets method

Future<TListSupportedAssetsResponse> listSupportedAssets({
  1. required TListSupportedAssetsBody input,
})

List supported assets for the specified network. This feature is in beta - please contact support for access.

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

See also: stampListSupportedAssets.

Implementation

Future<TListSupportedAssetsResponse> listSupportedAssets({
  required TListSupportedAssetsBody input,
}) async {
  return await request<TListSupportedAssetsBody,
          TListSupportedAssetsResponse>(
      "/public/v1/query/list_supported_assets",
      input,
      (json) => TListSupportedAssetsResponse.fromJson(json));
}