CorporateActionBase

Represents an action initiated by the issuer of an Asset which may affect the positions of the Asset Holders

Hierarchy

Index

Properties

Methods

Properties

asset

• asset: Asset

Defined in src/api/entities/CorporateActionBase/index.ts:77arrow-up-right

Asset affected by this Corporate Action


Protected context

• context: Context

Inherited from CheckpointSchedule.context

Defined in src/api/entities/Entity.ts:48arrow-up-right


declarationDate

• declarationDate: Date

Defined in src/api/entities/CorporateActionBase/index.ts:82arrow-up-right

date at which the Corporate Action was created


defaultTaxWithholding

• defaultTaxWithholding: BigNumber

Defined in src/api/entities/CorporateActionBase/index.ts:98arrow-up-right

default percentage (0-100) of tax withholding for this Corporate Action


description

• description: string

Defined in src/api/entities/CorporateActionBase/index.ts:87arrow-up-right

brief text description of the Corporate Action


id

• id: BigNumber

Defined in src/api/entities/CorporateActionBase/index.ts:72arrow-up-right

internal Corporate Action ID


Protected kind

• kind: CorporateActionKindarrow-up-right

Defined in src/api/entities/CorporateActionBase/index.ts:109arrow-up-right

type of corporate action being represented


targets

• targets: CorporateActionTargetsarrow-up-right

Defined in src/api/entities/CorporateActionBase/index.ts:93arrow-up-right

Asset Holder Identities related to this Corporate action. If the treatment is Exclude, the Identities in the array will not be targeted by the Action, Identities not in the array will be targeted, and vice versa


taxWithholdings

• taxWithholdings: TaxWithholdingarrow-up-right[]

Defined in src/api/entities/CorporateActionBase/index.ts:104arrow-up-right

percentage (0-100) of tax withholding per Identity. Any Identity not present in this array uses the default tax withholding percentage


uuid

• uuid: string

Inherited from CheckpointSchedule.uuid

Defined in src/api/entities/Entity.ts:46arrow-up-right

Methods

checkpoint

▸ checkpoint(): Promise‹Checkpoint | CheckpointSchedule | null›

Defined in src/api/entities/CorporateActionBase/index.ts:183arrow-up-right

Retrieve the Checkpoint associated with this Corporate Action. If the Checkpoint is scheduled and has not been created yet, the corresponding CheckpointSchedule is returned instead. A null value means the Corporate Action was created without an associated Checkpoint

Returns: Promise‹Checkpoint | CheckpointSchedule | null›


exists

▸ exists(): Promise‹boolean›

Overrides Entity.exists

Defined in src/api/entities/CorporateActionBase/index.ts:172arrow-up-right

Determine whether this Corporate Action exists on chain

Returns: Promise‹boolean›


isEqual

▸ isEqual(entity: Entity‹unknown, unknown›): boolean

Inherited from CheckpointSchedule.isEqual

Defined in src/api/entities/Entity.ts:61arrow-up-right

Determine whether this Entity is the same as another one

Parameters:

Name
Type

entity

Entity‹unknown, unknown›

Returns: boolean


linkDocuments

▸ linkDocuments(args: LinkCaDocsParamsarrow-up-right, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/CorporateActionBase/index.ts:152arrow-up-right

Link a list of documents to this corporate action

note any previous links are removed in favor of the new list

note this method is of type ProcedureMethodarrow-up-right, which means you can call linkDocuments.checkAuthorizationarrow-up-right on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››


Abstract modifyCheckpoint

▸ modifyCheckpoint(args: Modify‹ModifyCaCheckpointParams, object›, opts?: ProcedureOptsarrow-up-right): Promise‹TransactionQueue‹void››

Defined in src/api/entities/CorporateActionBase/index.ts:162arrow-up-right

Modify the Corporate Action's Checkpoint

note this method is of type ProcedureMethodarrow-up-right, which means you can call modifyCheckpoint.checkAuthorizationarrow-up-right on it to see whether the signing Account and Identity have the required roles and permissions to run it

Parameters:

Name
Type

args

Modify‹ModifyCaCheckpointParams, object›

Returns: Promise‹TransactionQueue‹void››


toHuman

â–¸ toHuman(): HumanReadable

Overrides Entity.toHuman

Defined in src/api/entities/CorporateActionBase/index.ts:262arrow-up-right

Return the Corporate Action's static data

Returns: HumanReadable


Static generateUuid

▸ generateUuid‹Identifiers›(identifiers: Identifiers): string

Inherited from CheckpointSchedule.generateUuid

Defined in src/api/entities/Entity.ts:14arrow-up-right

Generate the Entity's UUID from its identifying properties

Type parameters:

â–ª Identifiers

Parameters:

Name
Type
Description

identifiers

Identifiers

Returns: string


Static unserialize

▸ unserialize‹Identifiers›(serialized: string): Identifiers

Inherited from CheckpointSchedule.unserialize

Defined in src/api/entities/Entity.ts:23arrow-up-right

Unserialize a UUID into its Unique Identifiers

Type parameters:

â–ª Identifiers

Parameters:

Name
Type
Description

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated

Was this helpful?