Variable extendedAddressInformationConst
extendedAddressInformation: ZodObject<
{
"@type": ZodLiteral<"fullAccountState">;
account_state: ZodUnion<
readonly [
ZodObject<
{
"@type": ZodLiteral<"raw.accountState">;
code: ZodString;
data: ZodString;
frozen_hash: ZodString;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"wallet.v3.accountState">;
seqno: ZodNumber;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"wallet.v4.accountState">;
seqno: ZodNumber;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"wallet.highload.v1.accountState">;
seqno: ZodNumber;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"wallet.highload.v2.accountState">;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"dns.accountState">;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
ZodObject<
{
"@type": ZodLiteral<"rwallet.accountState">;
config: ZodObject<
{
"@type": ZodLiteral<"rwallet.config">;
limits: ZodArray<
ZodObject<{ "@type": ...; seconds: ...; value: ... }, $strip>,
>;
start_at: ZodNumber;
},
$strip,
>;
seqno: ZodNumber;
unlocked_balance: ZodUnion<readonly [ZodNumber, ZodString]>;
wallet_id: ZodUnion<readonly [ZodNumber, ZodString]>;
},
$strip,
>,
],
>;
address: ZodObject<
{ "@type": ZodLiteral<"accountAddress">; account_address: ZodString },
$strip,
>;
balance: ZodUnion<readonly [ZodNumber, ZodString]>;
block_id: ZodObject<
{
"@type": ZodLiteral<"ton.blockIdExt">;
file_hash: ZodString;
root_hash: ZodString;
seqno: ZodNumber;
shard: ZodString;
workchain: ZodNumber;
},
$strip,
>;
last_transaction_id: ZodObject<
{
"@type": ZodLiteral<"internal.transactionId">;
hash: ZodString;
lt: ZodString;
},
$strip,
>;
revision: ZodNumber;
sync_utime: ZodNumber;
},
$strip,
> = ...