🍪
DAOTON
  • 👋Welcome to DAOTON.io
  • Overview
    • ▶️Video Demo
  • 🪙Lockable Tokens Standard
  • BUIDL
    • 📪Use Cases
      • Create Token
      • Create NFT Collection
      • Create DAO
      • Submit Proposal
      • Vote
    • 🪙Lockable Tokens Standard
      • Introduction
      • Motivation
      • Sample Use Case
      • Code
      • Transactions without consensus
      • Financial Use Case
Powered by GitBook
On this page
  1. BUIDL
  2. Lockable Tokens Standard

Motivation

Most web3 use cases involve staking tokens in return for some utility and benefits. Token staking for interest benfits with certain APRs, staking for govenrance voting, staking for GameFi use cases, etc. The user sends a certain amount of stake tokens to a smart contract, which involves some logic and promises some utility to the sender (staker). Mostly users

  • can't read the smart contract code,

  • have to sign transactions to trust the smart contract,

  • are concerned about the possible vulnerabilities. (The psychology of a person signing a transaction using Ledger Nano X in blind mode is not what we need for mass adoption.)

Besides, the gas costs of the operations are significantly high in comparison to the web2 world.

We hereby propose

  • an asynchorous scheme,

  • based on an local transactions talking to each other via costless getter functions,

  • based on tokens lockable locally (i.e. without leaving their wallet).

This allows the whole operation to be secure, fast, robust and cheap. The scheme is possible thanks to the following features of TON,

  1. TON transactions are fundamentally asynhronous.

  2. Each user wallet and Jetton account is a distinct contract on the chain managing its own state locally.

PreviousIntroductionNextSample Use Case

Last updated 2 years ago

🪙