Variable addressInformationConst
addressInformation: ZodObject<{
@type: ZodLiteral<"raw.fullAccountState">;
balance: ZodUnion<[ZodNumber, ZodString]>;
block_id: ZodObject<{
@type: ZodLiteral<"ton.blockIdExt">;
file_hash: ZodString;
root_hash: ZodString;
seqno: ZodNumber;
shard: ZodString;
workchain: ZodNumber;
}, "strip", ZodTypeAny, {
@type: "ton.blockIdExt";
file_hash: string;
root_hash: string;
seqno: number;
shard: string;
workchain: number;
}, {
@type: "ton.blockIdExt";
file_hash: string;
root_hash: string;
seqno: number;
shard: string;
workchain: number;
}>;
code: ZodString;
data: ZodString;
frozen_hash: ZodString;
last_transaction_id: ZodObject<{
@type: ZodLiteral<"internal.transactionId">;
hash: ZodString;
lt: ZodString;
}, "strip", ZodTypeAny, {
@type: "internal.transactionId";
hash: string;
lt: string;
}, {
@type: "internal.transactionId";
hash: string;
lt: string;
}>;
state: ZodUnion<[ZodLiteral<"active">, ZodLiteral<"uninitialized">, ZodLiteral<"frozen">]>;
sync_utime: ZodNumber;
}, "strip", ZodTypeAny, {
@type: "raw.fullAccountState";
balance: string | number;
block_id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
code: string;
data: string;
frozen_hash: string;
last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; };
state: "active" | "uninitialized" | "frozen";
sync_utime: number;
}, {
@type: "raw.fullAccountState";
balance: string | number;
block_id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; };
code: string;
data: string;
frozen_hash: string;
last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; };
state: "active" | "uninitialized" | "frozen";
sync_utime: number;
}> = ...
Type declaration
@type: ZodLiteral<"raw.fullAccountState">
balance: ZodUnion<[ZodNumber, ZodString]>
block_id: ZodObject<{
@type: ZodLiteral<"ton.blockIdExt">;
file_hash: ZodString;
root_hash: ZodString;
seqno: ZodNumber;
shard: ZodString;
workchain: ZodNumber;
}, "strip", ZodTypeAny, {
@type: "ton.blockIdExt";
file_hash: string;
root_hash: string;
seqno: number;
shard: string;
workchain: number;
}, {
@type: "ton.blockIdExt";
file_hash: string;
root_hash: string;
seqno: number;
shard: string;
workchain: number;
}>
code: ZodString
data: ZodString
frozen_hash: ZodString
last_transaction_id: ZodObject<{
@type: ZodLiteral<"internal.transactionId">;
hash: ZodString;
lt: ZodString;
}, "strip", ZodTypeAny, {
@type: "internal.transactionId";
hash: string;
lt: string;
}, {
@type: "internal.transactionId";
hash: string;
lt: string;
}>
state: ZodUnion<[ZodLiteral<"active">, ZodLiteral<"uninitialized">, ZodLiteral<"frozen">]>
sync_utime: ZodNumber
Type declaration
@type: "raw.fullAccountState"
balance: string | number
block_id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
code: string
data: string
frozen_hash: string
last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; }
state: "active" | "uninitialized" | "frozen"
sync_utime: number
Type declaration
@type: "raw.fullAccountState"
balance: string | number
block_id: { "@type": "ton.blockIdExt"; workchain: number; shard: string; seqno: number; root_hash: string; file_hash: string; }
code: string
data: string
frozen_hash: string
last_transaction_id: { "@type": "internal.transactionId"; lt: string; hash: string; }
state: "active" | "uninitialized" | "frozen"
sync_utime: number