getExtendedAddressInformation
method retrieves extended information about a specific address on the TON blockchain. This method provides more detailed information compared to the basic getAddressInformation
method, including the account type, code hash, and data hash.
Get you own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.
TON pricing is the same for full, archive, v2, v3There’s no difference between a full node an archive node in data availability or pricing.
All data is always available and all node requests are consumed as 1 request unit.
All data is always available and all node requests are consumed as 1 request unit.
Parameters
address
(string, required) — The address for which extended information is being requested. Example:EQDtFpEwcFAEcRe5mLVh2N6C0x-_hJEM7W61_JLnSF74p4q2
.seqno
(int, optional) — the Masterchain seqno. You can get the Masterchain seqno with getMasterchainInfo | TON v2.
seqno
:
Shell
JSON-RPC example
Shell
Response
address
(string) — The address in human-readable form.balance
(string) — The balance of the address in nanotons.state
(string) — The state of the address (active, uninitialized, etc.).last_transaction_id
(object) — The last transaction ID, containing:lt
(string) — The logical time of the last transaction.hash
(string) — The hash of the last transaction.
block_id
(object) — The block ID where the address state was last updated, containing:workchain
(integer) — The workchain ID.shard
(string) — The shard ID.seqno
(integer) — The sequence number.
code_hash
(string) — The hash of the contract code.data_hash
(string) — The hash of the contract data.acc_type
(integer) — The account type.acc_type_name
(string) — The human-readable account type name.
Use case
A possible use case for thegetExtendedAddressInformation
method in TON is for applications that need detailed information about an address, such as wallet applications or blockchain explorers. This method can be used to display comprehensive account information, including the contract details and the latest state of the address.Query Parameters
The address to get extended information for
Response
200 - application/json
Extended information about the specified address
The address in human-readable form
The balance of the address in nanotons
The state of the address (active, uninitialized, etc.)
The hash of the contract code
The hash of the contract data
The account type
The human-readable account type name