Interface CreateAssetRequest

    interface CreateAssetRequest {
        adminAddress?: string;
        attributes?: AttributesInfo;
        initialSupply?: AmountLike;
        logo?: string;
        maxSupply: AmountLike;
        name: string;
        ownerAddress: string;
        precision: number;
        properties?: PropertiesInfo;
        roles?: RolesInfo[];
        royalties?: RoyaltiesInfo;
        staking?: StakingInfo;
        ticker: string;
        type: number;
        uris?: Record<string, string>;
    }

    Properties

    adminAddress?: string
    attributes?: AttributesInfo
    initialSupply?: AmountLike
    logo?: string
    maxSupply: AmountLike
    name: string
    ownerAddress: string
    precision: number
    properties?: PropertiesInfo
    roles?: RolesInfo[]
    royalties?: RoyaltiesInfo
    staking?: StakingInfo
    ticker: string
    type: number
    uris?: Record<string, string>