pauL0627 / atomicassets-contract

Smart Contract of the AtomicAssets standard.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AtomicAssets

AtomicAssets is a Non Fungible Token (NFT) standard for eosio blockchains developed by pink.network.

It offers a powerful feature set while keeping unnecessary complexity to a minimum and focusses on RAM efficiency.

Useful links

Key Features

  • Powerful structure

    NFTs are grouped by collections rather than their author, which allows for flexible authorizations.
    Schemas give NFTs an extensible data structure, which is used for the serialization.
    Templates store data and can be referenced by assets. This allows grouping similar assets together and saving RAM by not having to store the same data for each asset individually. Templates can also make NFTs non-transferable or non-burnable.
    Assets always belong to a collection and a schema, and can optionally reference a template.

  • Data Serialization

    AtomicAssets uses a custom built serialization inspired by Protobuf, which significantly reduces RAM costs compared to traditional methods (e.g. JSON strings). Serialization is done within the contract, which guarantees that no corrupt data enters the blockchain state.

  • No RAM Costs for users

    The RAM cost is paid fully by the dapps that create the assets. Even when transfering assets, this stays the same. The maximum an end user will ever have to pay are 112 bytes for their own scope, and even that will likely only rarely be necessary. This also means that AtomicAssets works without claims. Transfers are instant and no further user action is required.

  • Minimal fixed RAM costs

    Creating an asset only costs 151 bytes (112 of which are for the necessary index). Additionally, each token owner needs to have a scope, which costs 112 bytes.

  • Notifications for Smart Contracts

    Smart Contracts can get notified automatically about any relevant events related to their assets. This enables them to make the assets an integral part of their game rather than just a static token.

  • Backing assets with Fungible Tokens

    Assets can be backed by standard fungible tokens (e.g. EOS / WAX). Those tokens can only be freed by burning the asset, thus allowing dapps to give their asset a guaranteed intrinsic value.

  • Powerful Trade Offers

    AtomicAssets features a native implementation of two sided trade offers (similar to Steam or WAX Express Trade). This allows creating and accepting offers with a single action. The implementation of the offers also allows for peer to peer marketplaces that don't require transferring ownership to a market contract.

About

Smart Contract of the AtomicAssets standard.

License:GNU Lesser General Public License v3.0


Languages

Language:C++ 100.0%