Interface: CreateAssetParams
Defined in: src/api/procedures/types.ts:792
Extended by
Properties
assetType
assetType:
string|BigNumber
Defined in: src/api/procedures/types.ts:812
Type of security that the Asset represents (e.g., Equity, Debt, Commodity). Common values are included in the KnownAssetType enum, but custom values can be used as well. Custom values must be registered on-chain the first time they're used, requiring an additional transaction. They aren't tied to a specific Asset. If using a custom type, it can be provided as a string (representing name) or a BigNumber (representing the custom type ID).
documents?
optionaldocuments?:AssetDocument[]
Defined in: src/api/procedures/types.ts:821
fundingRound?
optionalfundingRound?:string
Defined in: src/api/procedures/types.ts:820
(Optional) funding round in which the Asset currently is (e.g., Series A, Series B).
initialStatistics?
optionalinitialStatistics?:InputStatType[]
Defined in: src/api/procedures/types.ts:834
(Optional) type of statistics that should be enabled for the Asset.
Enabling statistics allows for TransferRestrictions to be made. For example, the SEC requires registration for a company that
has either more than 2000 investors or more than 500 non-accredited investors. To prevent crossing this limit, two restrictions are
needed: a Count of 2000, and a ScopedCount of non-accredited with a maximum of 500. source
These restrictions require a Count and ScopedCount statistic to be created. Although they can be created after the Asset is made, it is recommended to create statistics
before the Asset is circulated. Count statistics made after Asset creation need their initial value set, so it is simpler to create them before investors hold the Asset.
If you need to create a stat for an Asset after creation, you can use the TransferRestrictions.setStats method in the TransferRestrictions namespace.
initialSupply?
optionalinitialSupply?:BigNumber
Defined in: src/api/procedures/types.ts:797
Amount of Asset tokens to be minted on creation (optional; by default, no tokens are minted).
isDivisible
isDivisible:
boolean
Defined in: src/api/procedures/types.ts:805
Whether a single Asset token can be divided into decimal parts.
name
name:
string
Defined in: src/api/procedures/types.ts:793
portfolioId?
optionalportfolioId?:BigNumber
Defined in: src/api/procedures/types.ts:801
Portfolio to which the Asset tokens will be issued on creation (optional; defaults to the default portfolio).
securityIdentifiers?
optionalsecurityIdentifiers?:SecurityIdentifier[]
Defined in: src/api/procedures/types.ts:816
Array of domestic or international alphanumeric security identifiers for the Asset (e.g., ISIN, CUSIP, FIGI).