sora-xor / sora2-network

SORA is a new economic system aimed at creating a supranational, world economic system with built-in tools for decentralized finance (DeFi). The SORA network implements a new way of parachain architecture on Polkadot and Kusama network, with the capability to bridge external blockchains (like Ethereum) to the Polkadot ecosystem.
Other
50 stars 22 forks source link

[Tech]: Add asset kind to asset info #1091

Open vovac12 opened 2 weeks ago

vovac12 commented 2 weeks ago

Problem statement

We want to support different asset types with different logic. As initial step we should add asset type to asset info storage

Description

No response

Definition of Done

Requirements

Asset type should be enum like

enum AssetType {
  Regular,
  NFT,
  Soulbound,
  Regulated,
}