AccountManagement
Handles functionality related to Account Management
Hierarchy
AccountManagement
Index
Methods
Methods
freezeSecondaryAccounts
▸ freezeSecondaryAccounts(opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:161
Freeze all of the secondary Accounts in the signing Identity. This means revoking their permission to perform any operation on the blockchain and freezing their funds until the Accounts are unfrozen via unfreezeSecondaryAccounts
note
this method is of type NoArgsProcedureMethod, which means you can call freezeSecondaryAccounts.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹void››
getAccount
▸ getAccount(args
: object): Account
Defined in src/AccountManagement.ts:242
Return an Account instance from an address
Parameters:
▪ args: object
Returns: Account
getAccountBalance
▸ getAccountBalance(args?
: undefined | object): Promise‹AccountBalance›
Defined in src/AccountManagement.ts:196
Get the free/locked POLYX balance of an Account
note
can be subscribed to
Parameters:
Returns: Promise‹AccountBalance›
▸ getAccountBalance(callback
: SubCallback‹AccountBalance›): Promise‹UnsubCallback›
Defined in src/AccountManagement.ts:197
Parameters:
Returns: Promise‹UnsubCallback›
▸ getAccountBalance(args
: object, callback
: SubCallback‹AccountBalance›): Promise‹UnsubCallback›
Defined in src/AccountManagement.ts:198
Parameters:
▪ args: object
▪ callback: SubCallback‹AccountBalance›
Returns: Promise‹UnsubCallback›
getSigningAccount
▸ getSigningAccount(): Account | null
Defined in src/AccountManagement.ts:251
Return the signing Account, or null if no signing Account has been set
Returns: Account | null
getSigningAccounts
▸ getSigningAccounts(): Promise‹Account[]›
Defined in src/AccountManagement.ts:264
Return a list that contains all the signing Accounts associated to the SDK instance's Signing Manager
throws
— if there is no Signing Manager attached to the SDK
Returns: Promise‹Account[]›
inviteAccount
▸ inviteAccount(args
: InviteAccountParams, opts?
: ProcedureOpts): Promise‹TransactionQueue‹AuthorizationRequest››
Defined in src/AccountManagement.ts:151
Send an invitation to an Account to join the signing Identity as a secondary Account
note
this will create an Authorization Request which has to be accepted by the targetAccount
. An Account or Identity can fetch its pending Authorization Requests by calling authorizations.getReceived. Also, an Account or Identity can directly fetch the details of an Authorization Request by calling authorizations.getOne
note
this method is of type ProcedureMethod, which means you can call inviteAccount.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹AuthorizationRequest››
leaveIdentity
▸ leaveIdentity(opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:107
Disassociate the signing Account from its Identity. This operation can only be done if the signing Account is a secondary Account
note
this method is of type NoArgsProcedureMethod, which means you can call leaveIdentity.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹void››
modifyPermissions
▸ modifyPermissions(args
: ModifySignerPermissionsParams, opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:137
Modify all permissions of a list of secondary Accounts associated with the signing Identity
note
this method is of type ProcedureMethod, which means you can call modifyPermissions.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹void››
removeSecondaryAccounts
▸ removeSecondaryAccounts(args
: RemoveSecondaryAccountsParams, opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:117
Remove a list of secondary Accounts associated with the signing Identity
note
this method is of type ProcedureMethod, which means you can call removeSecondaryAccounts.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹void››
revokePermissions
▸ revokePermissions(args
: object, opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:127
Revoke all permissions of a list of secondary Accounts associated with the signing Identity
note
this method is of type ProcedureMethod, which means you can call revokePermissions.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
▪ args: object
▪Optional
opts: ProcedureOpts
Returns: Promise‹TransactionQueue‹void››
subsidizeAccount
▸ subsidizeAccount(args
: SubsidizeAccountParams, opts?
: ProcedureOpts): Promise‹TransactionQueue‹AuthorizationRequest››
Defined in src/AccountManagement.ts:185
Send an Authorization Request to an Account to subsidize its transaction fees
note
this will create an Authorization Request which has to be accepted by the beneficiary
Account. An Account or Identity can fetch its pending Authorization Requests by calling authorizations.getReceived. Also, an Account or Identity can directly fetch the details of an Authorization Request by calling authorizations.getOne
note
this method is of type ProcedureMethod, which means you can call subsidizeAccount.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹AuthorizationRequest››
unfreezeSecondaryAccounts
▸ unfreezeSecondaryAccounts(opts?
: ProcedureOpts): Promise‹TransactionQueue‹void››
Defined in src/AccountManagement.ts:171
Unfreeze all of the secondary Accounts in the signing Identity. This will restore their permissions as they were before being frozen
note
this method is of type NoArgsProcedureMethod, which means you can call unfreezeSecondaryAccounts.checkAuthorization on it to see whether the signing Account and Identity have the required roles and permissions to run it
Parameters:
Returns: Promise‹TransactionQueue‹void››
Last updated