# IssueTokens

Procedure that issues tokens to the specified addresses. KYC data for those addresses must already exist or otherwise be provided in this procedure

## Hierarchy

* Procedure‹[IssueTokensProcedureArgs](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.issuetokensprocedureargs), [Tokenholder](https://developers.polymath.network/classic-sdk/classes/_entities_tokenholder_.tokenholder)\[]›

  ↳ **IssueTokens**

## Index

### Constructors

* [constructor](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#constructor)

### Properties

* [args](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#protected-args)
* [context](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#protected-context)
* [type](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#type)

### Methods

* [addProcedure](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#addprocedure)
* [addSignatureRequest](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#addsignaturerequest)
* [addTransaction](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#addtransaction)
* [prepare](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#prepare)
* [prepareTransactions](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens#preparetransactions)

## Constructors

### constructor

\+ **new IssueTokens**(`args`: [IssueTokensProcedureArgs](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.issuetokensprocedureargs), `context`: [Context](https://developers.polymath.network/classic-sdk/classes/_context_.context)): [*IssueTokens*](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens)

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:40*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L40)

**Parameters:**

| Name      | Type                                                                                                                          |
| --------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `args`    | [IssueTokensProcedureArgs](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.issuetokensprocedureargs) |
| `context` | [Context](https://developers.polymath.network/classic-sdk/classes/_context_.context)                                          |

**Returns:** [*IssueTokens*](https://developers.polymath.network/classic-sdk/classes/_procedures_issuetokens_.issuetokens)

## Properties

### `Protected` args

• **args**: [*IssueTokensProcedureArgs*](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.issuetokensprocedureargs)

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:34*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L34)

### `Protected` context

• **context**: [*Context*](https://developers.polymath.network/classic-sdk/classes/_context_.context)

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:36*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L36)

### type

• **type**: [*ProcedureType*](https://developers.polymath.network/classic-sdk/enums/_types_index_.proceduretype) = ProcedureType.IssueTokens

*Overrides void*

*Defined in* [*src/procedures/IssueTokens.ts:36*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/IssueTokens.ts#L36)

## Methods

### addProcedure

▸ **addProcedure**<**A**, **R**>(`Proc`: [ProcedureClass](https://developers.polymath.network/classic-sdk/interfaces/_procedures_procedure_.procedureclass)‹A, R›): *(Anonymous function)*

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:91*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L91)

Appends a Procedure into the TransactionQueue's queue. This defines what will be run by the TransactionQueue when it is started.

**Type parameters:**

▪ **A**

▪ **R**: *any*

**Parameters:**

| Name   | Type                                                                                                                     | Description                                                      |
| ------ | ------------------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------- |
| `Proc` | [ProcedureClass](https://developers.polymath.network/classic-sdk/interfaces/_procedures_procedure_.procedureclass)‹A, R› | A Procedure that will be run in the Procedure's TransactionQueue |

**Returns:** *(Anonymous function)*

whichever value is returned by the Procedure

### addSignatureRequest

▸ **addSignatureRequest**<**A**>(`request`: [SignatureRequest](https://developers.polymath.network/classic-sdk/_types_index_#signaturerequest)‹A›): *(Anonymous function)*

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:179*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L179)

Appends a signature request into the TransactionQueue's queue. This defines what will be run by the TransactionQueue when it is started.

**Type parameters:**

▪ **A**

**Parameters:**

| Name      | Type                                                                                                  | Description                                                              |
| --------- | ----------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------ |
| `request` | [SignatureRequest](https://developers.polymath.network/classic-sdk/_types_index_#signaturerequest)‹A› | A signature request that will be run in the Procedure's TransactionQueue |

**Returns:** *(Anonymous function)*

a PostTransactionResolver that resolves to the signed data

### addTransaction

▸ **addTransaction**<**A**, **R**, **V**>(`method`: [LowLevelMethod](https://developers.polymath.network/classic-sdk/_types_index_#lowlevelmethod)‹A› | [FutureLowLevelMethod](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.futurelowlevelmethod)‹V, A›, `__namedParameters`: object): *(Anonymous function)*

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:137*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L137)

Appends a method or future method into the TransactionQueue's queue. This defines what will be run by the TransactionQueue when it is started.

**Type parameters:**

▪ **A**

▪ **R**: *any\[]*

▪ **V**: *any*

**Parameters:**

▪ **method**: [*LowLevelMethod*](https://developers.polymath.network/classic-sdk/_types_index_#lowlevelmethod)*‹A› |* [*FutureLowLevelMethod*](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.futurelowlevelmethod)*‹V, A›*

A method (or future method) that will be run in the Procedure's TransactionQueue. A future method is a transaction that doesn't exist at prepare time (for example a transaction on a module that hasn't been attached but will be by the time the previous transactions are run)

▪`Default value` **\_\_namedParameters**: *object*= {}

| Name        | Type                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 | Default                           |
| ----------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
| `fees`      | undefined \| [Fees](https://developers.polymath.network/classic-sdk/interfaces/_types_index_.fees)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   | -                                 |
| `resolvers` | object                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               | (\[] as unknown) as ResolverArray |
| `tag`       | undefined \| [Any](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#any) \| [GetTokens](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#gettokens) \| [ApproveErc20](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#approveerc20) \| [TransferErc20](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#transfererc20) \| [ReserveSecurityToken](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#reservesecuritytoken) \| [CreateSecurityToken](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#createsecuritytoken) \| [CreateCheckpoint](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#createcheckpoint) \| [CreateErc20DividendDistribution](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#createerc20dividenddistribution) \| [SetErc20TaxWithholding](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#seterc20taxwithholding) \| [SetEtherTaxWithholding](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setethertaxwithholding) \| [SetDefaultExcluded](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setdefaultexcluded) \| [EnableDividends](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enabledividends) \| [EnableCappedSto](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enablecappedsto) \| [EnableTieredSto](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enabletieredsto) \| [EnableGeneralPermissionManager](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enablegeneralpermissionmanager) \| [EnableGeneralTransferManager](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enablegeneraltransfermanager) \| [EnableCountTransferManager](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enablecounttransfermanager) \| [EnablePercentageTransferManager](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#enablepercentagetransfermanager) \| [DisableController](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#disablecontroller) \| [FreezeIssuance](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#freezeissuance) \| [DisableFeature](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#disablefeature) \| [ReclaimDividendFunds](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#reclaimdividendfunds) \| [WithdrawTaxWithholdings](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#withdrawtaxwithholdings) \| [PushDividendPayment](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#pushdividendpayment) \| [PullDividendPayment](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#pulldividendpayment) \| [SetDividendsWallet](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setdividendswallet) \| [AddDelegate](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#adddelegate) \| [ChangePermission](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#changepermission) \| [ControllerTransfer](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#controllertransfer) \| [ControllerRedeem](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#controllerredeem) \| [PauseSto](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#pausesto) \| [UnpauseSto](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#unpausesto) \| [FinalizeSto](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#finalizesto) \| [SetController](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setcontroller) \| [SetDocument](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setdocument) \| [RemoveDocument](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#removedocument) \| [ModifyKycDataMulti](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifykycdatamulti) \| [ModifyInvestorFlagMulti](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifyinvestorflagmulti) \| [IssueMulti](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#issuemulti) \| [AllowPreMinting](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#allowpreminting) \| [RevokePreMinting](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#revokepreminting) \| [ChangeAllowBeneficialInvestments](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#changeallowbeneficialinvestments) \| [ModifyTimes](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifytimes) \| [ModifyFunding](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifyfunding) \| [ModifyAddresses](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifyaddresses) \| [ModifyTiers](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifytiers) \| [ModifyLimits](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifylimits) \| [ModifyOracles](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifyoracles) \| [BuyWithScRateLimited](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#buywithscratelimited) \| [BuyWithPolyRateLimited](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#buywithpolyratelimited) \| [BuyWithEthRateLimited](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#buywithethratelimited) \| [BuyTokens](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#buytokens) \| [BuyTokensWithPoly](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#buytokenswithpoly) \| [ChangeHolderCount](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#changeholdercount) \| [ChangeHolderPercentage](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#changeholderpercentage) \| [ModifyWhitelistMulti](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#modifywhitelistmulti) \| [SetAllowPrimaryIssuance](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#setallowprimaryissuance) \| [TransferSecurityTokens](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#transfersecuritytokens) \| [UnfreezeTransfers](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#unfreezetransfers) \| [FreezeTransfers](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#freezetransfers) \| [Signature](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#signature) \| [TransferReservationOwnership](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#transferreservationownership) \| [TransferOwnership](https://developers.polymath.network/classic-sdk/enums/_types_index_.polytransactiontag#transferownership) | -                                 |

**Returns:** *(Anonymous function)*

a PostTransactionResolver that resolves to the value returned by the resolver function, or undefined if no resolver function was passed

### prepare

▸ **prepare**(): *Promise‹*[*TransactionQueue*](https://developers.polymath.network/classic-sdk/classes/_entities_transactionqueue_.transactionqueue)*‹Args, ReturnType››*

*Inherited from void*

*Defined in* [*src/procedures/Procedure.ts:52*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/Procedure.ts#L52)

Mandatory method that builds a list of transactions that will be run

**Returns:** *Promise‹*[*TransactionQueue*](https://developers.polymath.network/classic-sdk/classes/_entities_transactionqueue_.transactionqueue)*‹Args, ReturnType››*

### prepareTransactions

▸ **prepareTransactions**(): *Promise‹PostTransactionResolver‹*[*Tokenholder*](https://developers.polymath.network/classic-sdk/classes/_entities_tokenholder_.tokenholder)*\[], TransactionReceiptWithDecodedLogs››*

*Overrides void*

*Defined in* [*src/procedures/IssueTokens.ts:47*](https://github.com/PolymathNetwork/polymath-sdk/blob/e8bbc1e/src/procedures/IssueTokens.ts#L47)

Issue the specified amounts to the corresponding addresses If KYC data is provided, transfer restrictions will not be checked before submitting the issuing transaction This means that if one of the wallets on the list doesn't clear transfer restrictions, the transaction will revert

Note that this procedure will fail if:

* The Security Token doesn't exist
* At least one wallet address doesn't clear transfer restrictions. This check is bypassed if new KYC data is provided

**Returns:** *Promise‹PostTransactionResolver‹*[*Tokenholder*](https://developers.polymath.network/classic-sdk/classes/_entities_tokenholder_.tokenholder)*\[], TransactionReceiptWithDecodedLogs››*
