diff --git a/docs/Standards/Tokens/FungibleToken.html b/docs/Standards/Tokens/FungibleToken.html index 54a5a02a4..b029da1d7 100644 --- a/docs/Standards/Tokens/FungibleToken.html +++ b/docs/Standards/Tokens/FungibleToken.html @@ -151,8 +151,17 @@

NEAR Protocol Specification

Fungible Token

+

Version 0.2.0

Summary

A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.

+

Changelog

+

0.2.0

+

Motivation

NEAR Protocol uses an asynchronous sharded Runtime. This means the following:

Fungible Token

+

Version 0.2.0

Summary

A standard interface for fungible tokens allowing for ownership, escrow and transfer, specifically targeting third-party marketplace integration.

+

Changelog

+

0.2.0

+
    +
  • Introduce storage deposits. Make every change method payable (able receive attached deposits with the function calls). It requires the caller to attach enough deposit to cover potential storage increase. See core-contracts/#47
  • +
  • Replace set_allowance with inc_allowance and dec_allowance to address the issue of allowance front-running. See core-contracts/#49
  • +
  • Validate owner_id account ID. See core-contracts/#54
  • +
  • Enforce that the new_owner_id is different from the current owner_id for transfer. See core-contracts/#55
  • +

Motivation

NEAR Protocol uses an asynchronous sharded Runtime. This means the following: