Interface Asset

Asset

The Signum Asset/Token Exchange is a built-in peer-to-peer exchange integrated into the Signum Network. It allows fast, secure, and decentralized trading of cryptographic digital tokens. Because of its decentralized nature, there’s no need for outside organizations or agencies to meddle with its affairs, resulting in improved efficiency and reduced costs.

interface Asset {
    account: string;
    accountRS: string;
    asset: string;
    decimals: number;
    description: string;
    issuer: string;
    issuerRS: string;
    mintable: boolean;
    name: string;
    numberOfAccounts: number;
    numberOfTrades: number;
    numberOfTransfers: number;
    priceClose: string;
    priceHigh: string;
    priceLow: string;
    priceOpen: string;
    publicKey: string;
    quantityBurntQNT: string;
    quantityCirculatingQNT: string;
    quantityQNT: string;
    volumeQNT: string;
}

Properties

account: string
accountRS: string
asset: string
decimals: number
description: string
issuer: string
issuerRS: string
mintable: boolean
name: string
numberOfAccounts: number
numberOfTrades: number
numberOfTransfers: number
priceClose: string
priceHigh: string
priceLow: string
priceOpen: string
publicKey: string
quantityBurntQNT: string
quantityCirculatingQNT: string
quantityQNT: string
volumeQNT: string