Comparing version 0.24.0 to 0.25.0
import { Address } from "../address/Address"; | ||
import { Cell } from "../boc/Cell"; | ||
import { SendMode } from "../messages/SendMode"; | ||
import { StateInit } from "../messages/StateInit"; | ||
import { Maybe } from "../utils/maybe"; | ||
@@ -11,3 +10,6 @@ export type SenderArguments = { | ||
bounce?: Maybe<boolean>; | ||
init?: Maybe<StateInit>; | ||
init?: Maybe<{ | ||
code?: Maybe<Cell>; | ||
data?: Maybe<Cell>; | ||
}>; | ||
body?: Maybe<Cell>; | ||
@@ -14,0 +16,0 @@ }; |
{ | ||
"name": "ton-core", | ||
"version": "0.24.0", | ||
"version": "0.25.0", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/ton-community/ton-core.git", |
import { Address } from "../address/Address"; | ||
import { Cell } from "../boc/Cell"; | ||
import { SendMode } from "../messages/SendMode"; | ||
import { StateInit } from "../messages/StateInit"; | ||
import { Maybe } from "../utils/maybe"; | ||
@@ -12,3 +11,3 @@ | ||
bounce?: Maybe<boolean>, | ||
init?: Maybe<StateInit>, | ||
init?: Maybe<{ code?: Maybe<Cell>, data?: Maybe<Cell> }>, | ||
body?: Maybe<Cell> | ||
@@ -15,0 +14,0 @@ } |
12922
796810