Comparing version 0.16.0 to 0.17.0
/// <reference types="node" /> | ||
import { Cell } from "../boc/Cell"; | ||
import { Maybe } from "../utils/maybe"; | ||
@@ -14,4 +13,4 @@ export type AccountState = { | ||
type: 'active'; | ||
code: Maybe<Cell>; | ||
data: Maybe<Cell>; | ||
code: Maybe<Buffer>; | ||
data: Maybe<Buffer>; | ||
} | { | ||
@@ -18,0 +17,0 @@ type: 'frozen'; |
{ | ||
"name": "ton-core", | ||
"version": "0.16.0", | ||
"version": "0.17.0", | ||
"main": "dist/index.js", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/ton-community/ton-core.git", |
@@ -1,2 +0,1 @@ | ||
import { Cell } from "../boc/Cell"; | ||
import { Maybe } from "../utils/maybe"; | ||
@@ -7,3 +6,3 @@ | ||
last: { lt: bigint, hash: Buffer } | null, | ||
state: { type: 'uninit' } | { type: 'active', code: Maybe<Cell>, data: Maybe<Cell> } | { type: 'frozen', stateHash: Buffer } | ||
state: { type: 'uninit' } | { type: 'active', code: Maybe<Buffer>, data: Maybe<Buffer> } | { type: 'frozen', stateHash: Buffer } | ||
}; |
788391
12671