stampGetOrganizationConfigs method
Produce a SignedRequest from TGetOrganizationConfigsBody by using the client's stamp function.
See also: GetOrganizationConfigs.
Implementation
Future<TSignedRequest> stampGetOrganizationConfigs({
required TGetOrganizationConfigsBody input,
}) async {
final fullUrl =
'${config.baseUrl}/public/v1/query/get_organization_configs';
final body = jsonEncode(input);
final stamp = await stamper.stamp(body);
return TSignedRequest(
body: body,
stamp: stamp,
url: fullUrl,
);
}