Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,8 @@ thead>tr>th {
html.dark thead>tr>th {
background: rgb(var(--background-dark));
}

/* Tabular numbers for better alignment in tables */
table {
font-variant-numeric: tabular-nums;
}
4 changes: 4 additions & 0 deletions standard/wallets/comparison.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
title: "Comparison"
---

import { Aside } from "/snippets/aside.jsx";

[Unlike some other blockchains](/from-ethereum), wallets in TON are represented as distinct smart contracts. They handle transaction signing, replay protection, and even gasless transfers. Different wallet versions implement different custom logic, suitable for various use cases.

This article will cover the differences between these wallets and identify the best pick for each task.
Expand Down Expand Up @@ -101,3 +103,5 @@ Highload wallets are engineered explicitly for maximum throughput and cost effic
Read more:

- [Highload wallet implementation](/standard/wallets/highload)

## [Performance benchmark](/standard/wallets/performance-benchmark)
Loading