toolsOzoneSignatureFindRelatedAccounts function
Get accounts that share some matching threat signatures with the root account.
Implementation
Future<XRPCResponse<SignatureFindRelatedAccountsOutput>>
toolsOzoneSignatureFindRelatedAccounts({
required String did,
String? cursor,
int? limit,
required ServiceContext $ctx,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await $ctx.get(
ns.toolsOzoneSignatureFindRelatedAccounts,
headers: $headers,
parameters: {
...?$unknown,
'did': did,
if (cursor != null) 'cursor': cursor,
if (limit != null) 'limit': limit,
},
to: const SignatureFindRelatedAccountsOutputConverter().fromJson,
);