CorporateAction

Represents an action initiated by the issuer of a Security Token which may affect the positions of the Tokenholders

Hierarchy

Index

Properties

Methods

Properties

Protected context

context: Context

Inherited from Entity.context

Defined in src/api/entities/Entity.ts:48

declarationDate

declarationDate: Date

Defined in src/api/entities/CorporateAction/index.ts:82

date at which the Corporate Action was created

defaultTaxWithholding

defaultTaxWithholding: BigNumber

Defined in src/api/entities/CorporateAction/index.ts:98

default percentage of tax withholding for this Corporate Action

description

description: string

Defined in src/api/entities/CorporateAction/index.ts:87

brief text description of the Corporate Action

id

id: BigNumber

Defined in src/api/entities/CorporateAction/index.ts:72

internal Corporate Action ID

Protected kind

kind: CorporateActionKind

Defined in src/api/entities/CorporateAction/index.ts:106

targets

targets: CorporateActionTargets

Defined in src/api/entities/CorporateAction/index.ts:93

tokenholder identities related to this Corporate action. If the treatment is Exclude, the identities are not targeted by the Action, and any identities left out of the array will be targeted, and vice versa

taxWithholdings

taxWithholdings: TaxWithholding[]

Defined in src/api/entities/CorporateAction/index.ts:104

percentage of tax withholding per Identity. Any Identity not present in this array uses the default tax withholding percentage

ticker

ticker: string

Defined in src/api/entities/CorporateAction/index.ts:77

ticker of the Security Token

uuid

uuid: string

Inherited from Entity.uuid

Defined in src/api/entities/Entity.ts:46

Methods

checkpoint

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

Defined in src/api/entities/CorporateAction/index.ts:187

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/CorporateAction/index.ts:176

Determine whether this Corporate Action exists on chain

Returns: Promise‹boolean›

isEqual

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

Inherited from Entity.isEqual

Defined in src/api/entities/Entity.ts:61

Determine whether this Entity is the same as another one

Parameters:

NameType

entity

Entity‹unknown, unknown›

Returns: boolean

linkDocuments

linkDocuments(args: LinkCaDocsParams, opts?: ProcedureOpts): Promise‹TransactionQueue‹void››

Defined in src/api/entities/CorporateAction/index.ts:159

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 ProcedureMethod, which means you can call linkDocuments.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

Returns: Promise‹TransactionQueue‹void››

modifyCheckpoint

modifyCheckpoint(args: ModifyCaCheckpointParams, opts?: ProcedureOpts): Promise‹TransactionQueue‹void››

Defined in src/api/entities/CorporateAction/index.ts:169

Modify the Corporate Action's Checkpoint

note this method is of type ProcedureMethod, which means you can call modifyCheckpoint.checkAuthorization on it to see whether the Current Account has the required permissions to run it

Parameters:

NameType

args

ModifyCaCheckpointParams

opts?

Returns: Promise‹TransactionQueue‹void››

toJson

toJson(): HumanReadable

Overrides Entity.toJson

Defined in src/api/entities/CorporateAction/index.ts:266

Return the Corporate Action's static data

Returns: HumanReadable

Static generateUuid

generateUuidIdentifiers›(identifiers: Identifiers): string

Inherited from Entity.generateUuid

Defined in src/api/entities/Entity.ts:14

Generate the Entity's UUID from its identifying properties

Type parameters:

Identifiers

Parameters:

NameTypeDescription

identifiers

Identifiers

Returns: string

Static unserialize

unserializeIdentifiers›(serialized: string): Identifiers

Inherited from Entity.unserialize

Defined in src/api/entities/Entity.ts:23

Unserialize a UUID into its Unique Identifiers

Type parameters:

Identifiers

Parameters:

NameTypeDescription

serialized

string

UUID to unserialize

Returns: Identifiers

Last updated