api.entities.Asset.CorporateActions.CorporateActions - PolymeshAssociation/polymesh-sdk GitHub Wiki
Class: CorporateActions
api/entities/Asset/CorporateActions.CorporateActions
Handles all Asset Corporate Actions related functionality
Hierarchy
-
Namespace
<Asset
>↳
CorporateActions
Table of contents
Properties
Methods
Properties
distributions
• distributions: Distributions
Defined in
api/entities/Asset/CorporateActions/index.ts:26
Methods
getAgents
▸ getAgents(): Promise
<Identity
[]>
Retrieve a list of agent Identities
Returns
Promise
<Identity
[]>
getDefaultConfig
▸ getDefaultConfig(): Promise
<CorporateActionDefaultConfig
>
Retrieve default config comprising of targets, global tax withholding percentage and per-Identity tax withholding percentages.
Note
This config is applied to every Corporate Action that is created until they are modified. Modifying the default config does not impact existing Corporate Actions. When creating a Corporate Action, values passed explicitly will override this default config
Returns
Promise
<CorporateActionDefaultConfig
>
remove
▸ remove(args
, opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Remove a Corporate Action
Note
this method is of type ProcedureMethod, which means you can call remove.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters
Name | Type |
---|---|
args |
RemoveCorporateActionParams |
opts? |
ProcedureOpts |
Returns
Promise
<GenericPolymeshTransaction
<void
, void
>>
setDefaultConfig
▸ setDefaultConfig(args
, opts?
): Promise
<GenericPolymeshTransaction
<void
, void
>>
Assign default config values(targets, global tax withholding percentage and per-Identity tax withholding percentages)
Note
These config values are applied to every Corporate Action that is created until they are modified. Modifying these values does not impact existing Corporate Actions. When creating a Corporate Action, values passed explicitly will override these default config values
Note
this method is of type ProcedureMethod, which means you can call setDefaultConfig.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters
Name | Type |
---|---|
args |
ModifyCaDefaultConfigParams |
opts? |
ProcedureOpts |
Returns
Promise
<GenericPolymeshTransaction
<void
, void
>>