Skip to main content
Version: 24.2.x

Class: Offerings

api/entities/Asset/Fungible/Offerings.Offerings

Handles all Asset Offering related functionality

Hierarchy

Methods

get

get(opts?): Promise<OfferingWithDetails[]>

Retrieve all of the Asset's Offerings and their details. Can be filtered using parameters

Parameters

NameTypeDescription
optsObject-
opts.status?Partial<OfferingStatus>status of the Offerings to fetch. If defined, only Offerings that have all passed statuses will be returned

Returns

Promise<OfferingWithDetails[]>

Defined in

api/entities/Asset/Fungible/Offerings/index.ts:85


getOne

getOne(args): Promise<Offering>

Retrieve a single Offering associated to this Asset by its ID

Parameters

NameType
argsObject
args.idBigNumber

Returns

Promise<Offering>

Throws

if there is no Offering with the passed ID

Defined in

api/entities/Asset/Fungible/Offerings/index.ts:60


launch

launch(args, opts?): Promise<GenericPolymeshTransaction <Offering, Offering>>

Launch an Asset Offering

Parameters

NameType
argsLaunchOfferingParams
opts?ProcedureOpts

Returns

Promise<GenericPolymeshTransaction <Offering, Offering>>

Note

required roles:

  • Offering Portfolio Custodian
  • Raising Portfolio Custodian

Note

this method is of type ProcedureMethod, which means you can call launch.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it

Defined in

api/entities/Asset/Fungible/Offerings/index.ts:51