Social Trading

Originally published 18th April 2022

The Acuity Atomic Swap DEX is a spin-out project from the broader Acuity Decentralized Social Media project. Acuity is a rebuild of the MIX social media platform from Ethereum to Substrate.

On Acuity, each social community is a separate Substrate parachain. Anyone can design a new concept for how they want their community to operate, launch their own parachain, and connect it to the Acuity relay chain for shared security and cross-community communication. The ACU chain is an Acuity social parachain dedicated to the atomic swap DEX. It has a Substrate pallet for on-chain publication of user's order books.

The Acuity DEX will enable fully decentralized trading between all pair combinations of all coins and tokens in the Acuity ecosystem and all EVM / WASM compatible chains (Ethereum, Classic, Optimism, Arbitrum, Moonbeam, Kulupu, Neatcoin, Avalanche, Solana, SmartBCH).

One of the key technologies that is being brought across from MIX to Acuity is Trusted Accounts. Essentially this enables users to create an on-chain public list of other users that they trust. An extended trust network is defined as all the users a user trusts, plus all the users that are trusted by users they trust.

If a user does a poor job of deciding who they should trust, they will be punished by not being trusted by others.

Trusted Accounts have many important use-cases. Here is the original blog post and video from MIX. (Note, I haven't re-read the blog post because it is on medium.com and it is blocked from my location. You may need to use a VPN to access it.)

On MIX, Trusted Accounts were implemented as a Solidity smart contract. Porting the functionality to a Substrate pallet is almost complete. It is useful in a number of ways for the Acuity DEX:

  • Seller discovery - as a buyer you can see all sell orders from everyone in your extended trusted network.
  • Obtaining reliable trading data - a major problem with exchanges is fake trades. This can affect both pricing and volume data. On a decentralized exchange such as Acuity, it is very easy for someone to trade with themselves at any price and volume. Because of this it is not a good idea to harvest data from all the trades on the platform. A better way is to limit trading data to only come from trades made by those within your extended trust network.
  • Reducing transaction fees - in earlier implementations of the Acuity DEX the smart contracts to be deployed to the trading chains had on-chain linked lists as a anti-spam and lock discovery measure. This increased transaction fees on the trading chains. With the Trusted Accounts network on the Acuity chain the complexity of the implementation deployed to the trading chains can be significantly reduced. Buyers will only see sell orders from their extended trust network. Sellers will be notified of buy locks by events on the buying chain.
  • Less transactions - the quantity of blockchain transactions required to facilitate trades on the Acuity DEX is reduced. Previously the seller had to lock up their funds against a specific asset to buy so they could be indexed in the linked list on-chain. Now buyers can simply examine the quantity of funds the seller has stored at their address to determine if they have the funds necessary to complete a trade.
  • More flexibility - sellers can create multiple sell orders for the same funds so they can attempt to sell it for many different assets simultaneously.

1 Like