From da3c5194a254a44671f2916704fef484e74b095a Mon Sep 17 00:00:00 2001 From: Mantz Date: Wed, 14 Feb 2024 11:21:36 +0200 Subject: [PATCH] assetId (#256) Co-authored-by: orman --- src/types.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index 500bf0a0..ff1f7527 100644 --- a/src/types.ts +++ b/src/types.ts @@ -1854,7 +1854,8 @@ export interface WriteCallFunctionResponseDto { } export interface IssueTokenRequest { - blockchainId: string; + assetId?: string; + blockchainId?: string; vaultAccountId: string; createParams: CreateTokenParams; } @@ -1909,6 +1910,7 @@ interface ParameterWithValue { type: string; description?: string; value: any; + functionValue: Pick; } export type ParameterWithValueList = ParameterWithValue[] | ParameterWithValueList[];