Skip to main content
Version: v29.0.x

Class: Offerings

Defined in: src/api/entities/Asset/Fungible/Offerings/index.ts:29

Handles all Asset Offering related functionality

Extends

Methods

get()

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

Defined in: src/api/entities/Asset/Fungible/Offerings/index.ts:78

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

Parameters

ParameterTypeDescription

opts

{ status?: Partial<OfferingStatus>; }

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[]>


getOne()

getOne(args: object): Promise<Offering>

Defined in: src/api/entities/Asset/Fungible/Offerings/index.ts:56

Retrieve a single Offering associated to this Asset by its ID

Parameters

ParameterType

args

{ id: BigNumber; }

args.id

BigNumber

Returns

Promise<Offering>

Throws

if there is no Offering with the passed ID


launch()

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

Defined in: src/api/entities/Asset/Fungible/Offerings/index.ts:49

Launch an Asset Offering

Parameters

ParameterType

args

LaunchOfferingParams

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