get https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/packAddress
The packAddress
method converts a raw TON address to a user-friendly format. This method is useful for presenting TON addresses in a more readable and standardized way.
Get you own node endpoint today
Start 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.
JSON-RPC example
curl -X POST \
'https://ton-mainnet.core.chainstack.com/f2a2411bce1e54a2658f2710cd7969c3/api/v2/jsonRPC' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "packAddress",
"params": {
"address": "0:ed1691307050047117b998b561d8de82d31fbf84910ced6eb5fc92e7485ef8a7"
}
}'
Parameters
address
(string, required) — The raw address to pack. Example:0:ed1691307050047117b998b561d8de82d31fbf84910ced6eb5fc92e7485ef8a7
.
Response
address
(string) — The packed address in user-friendly format. This format typically includes a checksum and is easier for users to read and verify.
Use case
A possible use case for the packAddress
method in TON is for wallet applications, blockchain explorers, or any DApp that needs to display TON addresses to users. This method can be used to:
- Convert raw addresses to a more user-friendly format before displaying them in a UI.
- Standardize address representation across different parts of an application.
- Prepare addresses for QR code generation or other visual representations.
- Improve user experience by making addresses easier to read and verify visually.
Try the packAddress
RPC method yourself
packAddress
RPC method yourself