getSmartContractInterfaces method

Future<TGetSmartContractInterfacesResponse> getSmartContractInterfaces({
  1. required TGetSmartContractInterfacesBody input,
})

List all smart contract interfaces within an organization.

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

See also: stampGetSmartContractInterfaces.

Implementation

Future<TGetSmartContractInterfacesResponse> getSmartContractInterfaces({
  required TGetSmartContractInterfacesBody input,
}) async {
  return await request<TGetSmartContractInterfacesBody,
          TGetSmartContractInterfacesResponse>(
      "/public/v1/query/list_smart_contract_interfaces",
      input,
      (json) => TGetSmartContractInterfacesResponse.fromJson(json));
}