@waves/ts-types
Advanced tools
Comparing version 0.2.0-beta-8 to 0.2.0
{ | ||
"name": "@waves/ts-types", | ||
"version": "0.2.0-beta-8", | ||
"version": "0.2.0", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "types": "dist/index.d.ts", |
@@ -8,3 +8,3 @@ import { DATA_FIELD_TYPE, TProofs } from './index'; | ||
export interface IInvokeScriptCall<LONG> { | ||
function: string | ||
function: string; | ||
args: Array<TInvokeScriptCallArgument<LONG>>; | ||
@@ -11,0 +11,0 @@ } |
@@ -206,5 +206,5 @@ import { TRANSACTION_TYPE, TTransactionType } from '../src'; | ||
dApp: string; | ||
call: IInvokeScriptCall<LONG>; | ||
call: IInvokeScriptCall<LONG> | null | undefined; | ||
feeAssetId: string | null; | ||
payment: Array<IInvokeScriptPayment<LONG>>; | ||
payment: Array<IInvokeScriptPayment<LONG>> | null | undefined; | ||
} | ||
@@ -211,0 +211,0 @@ |
17905