@hashgraph/asset-tokenization-sdk
TypeScript icon, indicating that this package has built-in type declarations

1.13.0 • Public • Published

Asset Tokenization Studio - SDK

License

Table of Contents

Description

The SDK enables the web (or any other client facing application) to interact with the smart contracts deployed on Hedera.

Installation

Run the command :

npm ci

Build

Run the command :

npm run build

Test

The SDK tests are located in the tests folder at the root of the sdk module.

Before running the tests you will need to create an ".env" file following the ".env.sample" template.

Then to execute all the tests run this command from the sdk folder:

npm run test

Input Ports

Network

init

Initialises the SDK.

  • Request

    • network : ‘testnet’, ‘mainnet’, …
    • mirrorNode: name and url of the mirror node the SDK will connect too.
    • rpcNode: name and url of the rpc node the SDK will connect too.
    • events: callbacks to the wallet events (walletInit, walletFound, …)
    • configuration: factory contract Hedera Id, resolver contract Hedera Id, common, equity and bond business logic keys the SDK will connect to. This data must be aligned with the selected “network”.
    • factories: list of factories and their respective environments in case the wallet allows for the network to be switched.
    • resolvers: list of resolvers and their respective environments in case the wallet allows for the network to be switched.
  • Response

    • SupportedWallets: List of supported wallets.

connect

Connects an account to the SDK.

  • Request

    • account : connected account
    • network : ‘testnet’, ‘mainnet’, …
    • mirrorNode: name and url of the mirror node the SDK will connect too.
    • rpcNode: name and url of the rpc node the SDK will connect too.
  • Response

    • InitializationData:
      • account: Account; Details of the connected account
      • pairing: string; Wallet pairing string
      • topic: string; Wallet’s connection topic

disconnect

Disconnects an account from the SDK.

  • Request

  • Response : True (success), false (failed)

setNetwork

Sets a new network into the SDK.

  • Request

    • environment : network that we are connecting too
    • mirrorNode: name and url of the mirror node the SDK will connect too.
    • rpcNode: name and url of the rpc node the SDK will connect too.
    • consensusNodes : (optional) list of consensus node
  • Response

    • NetworkResponse:
      • environment: network that we are connecting too
      • mirrorNode: name and url of the mirror node the SDK will connect too.
      • rpcNode: name and url of the rpc node the SDK will connect too.
      • consensusNodes : (optional) list of consensus node

setConfig

Sets a new configuration into the SDK.

  • Request

    • factoryAddress: new factory address.
    • resolverAddress: new resolver address.
  • Response

    • ConfigResponse:
      • factoryAddress: new factory address.
      • resolverAddress: new resolver address.

Bond

create

  • Request

    • diamondOwnerAccount: Hedera id of the account deploying the security
    • Currency: hexadecimal of the currency’s 3 letter ISO code
    • numberOfUnits: maximum supply
    • nominalValue: only for information, represents the value of a single bond.
    • startingDate: Bond’s starting date in seconds
    • maturityDate: Bond’s maturity date in seconds
    • couponFrequency: seconds in between two consecutives coupon’s record date
    • couponRate: coupon interest rate in percentage. Only for information.
    • firstCouponDate: record date, in seconds, of the first coupon.
    • regulationType:
      • 0 : no regulation
      • 1 : Reg S
      • 2 : Reg D
    • regulationSubType:
      • 0 : no sub regulation
      • 1 : 506 B
      • 2 : 506 C
    • isCountryControlListWhiteList :
      • True: list of “countries” are the not banned, all other countries are banned
      • False: list of “countries” are banned, all other countries are not banned.
    • countries: comma separated list of banned/not banned countries in 2-letters ISO format.
  • Response

    • SecurityViewModel: The returned information is identical to the provided one, except for this fields - type: string; “BOND” or “EQUITY” - totalSupply: string; Corresponds to the total supply, which is 0 right after the initial deployment. - maxSupply: string; Corresponds to the “numberOfUnits” - diamondAddress: string; Hedera id of the deployed smart contract representing the Asset - evmDiamondAddress: string; EVM address of the deployed smart contract representing the Asset - paused: boolean; True (the Asset is paused), False (the asset is not paused) - Regulation: RegulationViewModel; Details of the selected regulation during deployment (type, subType, dealSize, …)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

setCoupon

Creates a new coupon for the bond.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset.
    • rate: coupon percentage rate.
    • recordTimestamp: date (in seconds) at which token holders balances will be snapshotted.
    • executionTimestamp : date (in seconds) at which the coupon should be paid.
  • Response

    • Payload: coupon Id
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

Equity

create

  • Request

    • diamondOwnerAccount: Hedera id of the account deploying the security
    • votingRight: the equity grants voting rights to its holders.
    • informationRight: the equity grants information rights to its holders.
    • liquidationRight: the equity grants liquidation rights to its holders
    • subscriptionright: the equity grants subscription rights to its holders
    • conversionRight: the equity grants conversion rights to its holders
    • redemptionRight: the equity grants redemption rights to its holders
    • putRight: the equity grants put rights to its holders
    • dividendRight: the equity grants dividend rights to its holders
    • Currency: hexadecimal of the currency’s 3 letter ISO code
    • numberOfShares: maximum supply
    • nominalValue: only for information, represents the value of a single equity.
    • regulationType:
      • 0 : no regulation
      • 1 : Reg S
      • 2 : Reg D
    • regulationSubType:
      • 0 : no sub regulation
      • 1 : 506 B
      • 2 : 506 C
    • isCountryControlListWhiteList :
      • True: list of “countries” are the not banned, all other countries are banned
      • False: list of “countries” are banned, all other countries are not banned.
    • countries: comma separated list of banned/not banned countries in 2-letters ISO format.
  • Response

    • SecurityViewModel: The returned information is identical to the provided one, except for this fields - type: string; “BOND” or “EQUITY” - totalSupply: string; Corresponds to the total supply, which is 0 right after the initial deployment. - maxSupply: string; Corresponds to the “numberOfShares” - diamondAddress: string; Hedera id of the deployed smart contract representing the Asset - evmDiamondAddress: string; EVM address of the deployed smart contract representing the Asset - paused: boolean; True (the Asset is paused), False (the asset is not paused) - Regulation: RegulationViewModel; Details of the selected regulation during deployment (type, subType, dealSize, …)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

setDividends

Creates a new dividend for the equity.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset.
    • amountPerUnitOfSecurity: dividend amount per security.
    • recordTimestamp: date (in seconds) at which token holders balances will be snapshotted.
    • executionTimestamp : date (in seconds) at which the dividend should be paid.
  • Response

    • Payload: dividend Id
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

setVotingRights

Creates a new voting right for the equity.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset.
    • recordTimestamp: date (in seconds) at which token holders balances will be snapshotted.
    • data : metadata associated to the voting rights.
  • Response

    • Payload: voting right Id
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

Security

issue

Mints new assets to a given account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • amount: amount to be minted with decimals included
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

redeem

Redeems assets

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • amount: amount to be redeemed with decimals included
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

controllerRedeem

Redeems assets from a given account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • sourceId: accounts hedera id
    • amount: amount to be redeemed with decimals included
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

controllerTransfer

Transfer assets from a given account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • sourceId: source accounts hedera id
    • targetId: destination accounts hedera id
    • amount: amount to be transfered with decimals included
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

pause

Pauses the Security (can only be executed if the security is not paused)

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

unpause

Unpauses the Security (can only be executed if the security is paused)

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

addToControlList

Adds an account to the control list (either blacklist or whitelist depending on how the asset was configured during deployment)

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
  • Response

    • Payload:True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

removeFromControlList

Removes an account from the control list (either blacklist or whitelist depending on how the asset was configured during deployment)

  • Request
    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
  • Response
    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

transfer

Transfer fund to an account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • amount: amount to be transferred with decimals included
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

transferAndLock

Transfer fund to an account and locks them for a given amount of time

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • amount: amount to be transferred with decimals included
    • expirationDate: date in seconds at which the funds can be released (lock expiration date)
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

setMaxSupply

Updates the max supply. Setting max supply to "0" means removing it (unllimited max supply).

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • maxSupply: new max supply
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

lock

Locks funds into an account for a certain period of time

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id where funds will be locked
    • amount: amount to be locked with decimals included
    • expirationDate: date in seconds at which the funds can be released (lock expiration date)
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

release

Releases locked funds from an account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id where funds will be released
    • lockId: Id of the lock to be released
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

Hold

Create Hold by Partition

Creates a new hold for a specific partition by the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the hold expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Controller Create Hold by Partition

Similar to "Create Hold From by Partition", but can only be executed by accounts with the "Controller Role". Control list restrictions do not apply.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the hold expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Create Hold From by Partition

Similar to "Create Hold by Partition", but can only be executed by an authorized ERC20 account on behalf of the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the hold expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Protected Create Hold by Partition

Similar to "Create Hold by Partition", but can only be executed when partitions are protected. Only one of these two methods can be used depending on the partition protection status. Additional fields are required.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the hold expires.
    • deadline: Deadline for the hold execution.
    • nonce: Unique identifier for the request.
    • signature: Digital signature verifying the request.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Reclaim Hold by Partition

Can be executed by anyone, but only after the expiration date. Transfers all remaining hold assets back to the original account.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • holdId: Identifier of the hold.
    • targetId: Identifier of the target account.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Release Hold by Partition

Can only be executed by the escrow account. Transfers all or part of the held assets back to the original account.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • holdId: Identifier of the hold.
    • targetId: Identifier of the target account.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing

Clearing Create Hold by Partition

Creates a new clearing hold for a specific partition by the token holder.

  • Request:

    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • targetId: Identifier of the target account.
    • clearingExpirationDate: Date when the clearing expires.
    • holdExpirationDate: Date when the hold expires.
  • Response:

    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing Create Hold From by Partition

Similar to "Clearing Create Hold by Partition", but can only be executed by an authorized ERC20 account on behalf of the token holder.

  • Request:

    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • clearingExpirationDate: Date when the clearing expires.
    • holdExpirationDate: Date when the hold expires.
  • Response:

    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Protected Create Hold by Partition

Similar to "Clearing Create Hold by Partition", but can only be executed when partitions are protected. Only one of these two methods can be used depending on the partition protection status. Additional fields are required.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • escrow: Address of the escrow account.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • clearingExpirationDate: Date when the clearing expires.
    • holdExpirationDate: Date when the hold expires.
    • deadline: Deadline for the hold execution.
    • nonce: Unique identifier for the request.
    • signature: Digital signature verifying the request.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing Transfer by Partition

Creates a new clearing transfer for a specific partition by the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • amount: Amount to be held.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the clearing expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing Transfer From by Partition

Similar to "Clearing Transfer by Partition", but can only be executed by an authorized ERC20 account on behalf of the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the clearing expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Protected Clearing Transfer by Partition

Similar to "Clearing Transfer by Partition", but can only be executed when partitions are protected. Only one of these two methods can be used depending on the partition protection status. Additional fields are required.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • targetId: Identifier of the target account.
    • expirationDate: Date when the clearing expires.
    • deadline: Deadline for the hold execution.
    • nonce: Unique identifier for the request.
    • signature: Digital signature verifying the request.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing Redeem by Partition

Creates a new clearing redeem for a specific partition by the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • amount: Amount to be held.
    • expirationDate: Date when the clearing expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Clearing Redeem From by Partition

Similar to "Clearing Redeem by Partition", but can only be executed by an authorized ERC20 account on behalf of the token holder.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • sourceId: Identifier of the source account.
    • amount: Amount to be held.
    • expirationDate: Date when the clearing expires.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Protected Clearing Redeem by Partition

Similar to "Clearing Redeem by Partition", but can only be executed when partitions are protected. Only one of these two methods can be used depending on the partition protection status. Additional fields are required.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • amount: Amount to be held.
    • sourceId: Identifier of the source account.
    • expirationDate: Date when the clearing expires.
    • deadline: Deadline for the hold execution.
    • nonce: Unique identifier for the request.
    • signature: Digital signature verifying the request.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Approve Clearing Operation by Partition

Approve the execution of a clearing transaction. Depending on the operation type, a hold will be created or a transfer or redemption will be made.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • targetId: Identifier of the target account.
    • clearingId: Identifier of the clearing.
    • clearingOperationType: Type of operation to perform.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Cancel Clearing Operation by Partition

Cancel the execution of a clearing operation. Transfers all assets back to the original account.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • targetId: Identifier of the target account.
    • clearingId: Identifier of the clearing.
    • clearingOperationType: Type of operation to perform.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Reclaim Clearing Operation by Partition

Can be executed by anyone, but only after the expiration date. Transfers all assets back to the original account.

  • Request:
    • securityId: Identifier of the security token.
    • partitionId: Identifier of the token partition.
    • targetId: Identifier of the target account.
    • clearingId: Identifier of the clearing.
    • clearingOperationType: Type of operation to perform.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

KYC

Grant KYC

Grant KYC from a target account.

  • Request:
    • securityId: Identifier of the security token.
    • targetId: Identifier of the target account.
    • vcBase64: Verifiable Credentials (VC) in base64 format
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Revoke KYC

Revoke KYC from a target account.

  • Request:
    • securityId: Identifier of the security token.
    • targetId: Identifier of the target account.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

SSI Management

Add Issuer

Add a new issuer (will fail if it already exists).

  • Request:
    • securityId: Identifier of the security token.
    • issuerId: Identifier of the Issuer.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Remove Issuer

Remove an existing issuer.

  • Request:
    • securityId: Identifier of the security token.
    • issuerId: Identifier of the existing Issuer.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Set Revocation Registry Address

Add revocation registry address.

  • Request:
    • securityId: Identifier of the security token.
    • revocationRegistryId: Identifier of the Revocation Registry.
  • Response:
    • payload: true (success) or false (failed).
    • transactionId: ID of the Hedera transaction, which can be used for tracking in any Hedera block explorer.

Role

applyRoles

Assigns a new set of roles for a given account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • roles: list of roles.
    • actives: list of boolean indicating whether the correspond role (from the above mentioned role list) must be granted or revoked.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

grantRole

Grants a role to an account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • role: role to be granted.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

revokeRole

Revokes a role from an account

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • targetId: accounts hedera id
    • role: role to be revoked.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

External Pauses Management

addExternalPause

Adds a new external pause address to a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalPauseAddress: address of the external pause to be added.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

removeExternalPause

Removes an existing external pause address from a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalPauseAddress: address of the external pause to be removed.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

updateExternalPauses

Updates the active status of multiple external pause addresses for a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalPausesAddresses: List of external pause addresses.
    • actives: list of boolean indicating whether the correspond externalPause (from the above mentioned external pauses list) should be added or removed.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

External Control Lists Management

addExternalControlList

Adds a new external control list address to a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalControlListAddress: address of the external control list to be added.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

removeExternalControlList

Removes an existing external control list address from a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalControlListAddress: address of the external control list to be removed.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

updateExternalControlLists

Updates the active status of multiple external control list addresses for a specific asset.

  • Request

    • securityId: Hedera id of the diamond contract representing the asset
    • externalControlListsAddresses: List of external control list addresses.
    • actives: list of boolean indicating whether the correspond externalControlList (from the above mentioned external control list) should be added or removed.
  • Response

    • Payload: True (success), false (failed)
    • TransactionId: Id of the Hedera transaction. Can be used to track the transaction in any Hedera block explorer.

Factory

getRegulationDetails

Returns the details of a specific regulation and subregulation.

  • Request

    • regulationType:
      • 0 : no regulation
      • 1 : Reg S
      • 2 : Reg D
    • regulationSubType:
      • 0 : no sub regulation
      • 1 : 506 B
      • 2 : 506 C
  • Response

    • RegulationViewModel.
      • type: string;
      • subType: string;
      • dealSize: string;
      • accreditedInvestors: string;
      • maxNonAccreditedInvestors: number;
      • manualInvestorVerification: string;
      • internationalInvestors: string;
      • resaleHoldPeriod: string;

Event

register

Registers callbacks for the wallet events emitted by the SDK

  • Request : callbacks to the wallet events (walletInit, walletFound, …)

  • Response : -

Use Cases

The first thing you have to do when using the SDK is to :

  • initialize it
  • connect an account

Initialise the SDK

Use the Network.init method, with the following input data:

Connect an account to the SDK

Use the Network.connect method, with the following input data:

Deploy a new Bond

Use the Bond.Create method.

Deploy a new Equity

Use the Equity.Create method.

Retrieve Regulation Details from Factory

Use the Factory.getRegulationDetails method.

Manage an Asset

Manage Asset Roles

  • The account applying the roles must have the “Admin Role”
  • Use the Role.applyRoles method

Minting

  • The account minting must have the “Minter Role” (check Manage Asset Roles)
  • Use the Security.issue method

Transfer and lock

  • The account transferring and locking the funds must have the “Locker Role” (check Manage Asset Roles)
  • Use the Security.transferAndLock method

Add and Remove accounts from Control List

  • The account applying the roles must have the “Control list Role” (check Manage Asset Roles)
  • Use the Security.addToControlList and Security.removeFromControlList methods

Readme

Keywords

none

Package Sidebar

Install

npm i @hashgraph/asset-tokenization-sdk

Weekly Downloads

21

Version

1.13.0

License

Apache-2.0

Unpacked Size

22.7 MB

Total Files

3082

Last publish

Collaborators

  • steven.sheehy
  • mehcode
  • swirldslabs-admin
  • danielakhterov
  • petreze
  • daniel.k.ivanov
  • georgi-l95
  • ochikov
  • rbair23
  • michielmulders
  • nathan-swirldslabs
  • stoqnkp
  • isavov
  • hedera-eng-automation
  • nana-ec