Context

Context in which the SDK is being used

  • Holds the current low level API

  • Holds the current keyring pair

  • Holds the current Identity

Hierarchy

  • Context

Index

Properties

Accessors

Methods

Properties

Optional currentPair

currentPair? : KeyringPair

Defined in src/base/Context.ts:111

isArchiveNode

isArchiveNode: boolean = false

Defined in src/base/Context.ts:116

Whether the current node is an archive node (contains a full history from genesis onward) or not

polymeshApi

polymeshApi: ApiPromise

Defined in src/base/Context.ts:109

ss58Format

ss58Format: number

Defined in src/base/Context.ts:118

Accessors

middlewareApi

get middlewareApi(): ApolloClient‹NormalizedCacheObject›

Defined in src/base/Context.ts:1003

Retrieve the middleware client

throws if the middleware is not enabled

Returns: ApolloClient‹NormalizedCacheObject›

Methods

accountBalance

accountBalance(account?: string | Account): Promise‹AccountBalance

Defined in src/base/Context.ts:342

Retrieve the account level POLYX balance

note can be subscribed to

Parameters:

NameType

account?

string | Account

Returns: Promise‹AccountBalance

accountBalance(account: string | Account | undefined, callback: SubCallbackAccountBalance›): Promise‹UnsubCallback

Defined in src/base/Context.ts:343

Parameters:

NameType

account

string | Account | undefined

callback

Returns: Promise‹UnsubCallback

accountSubsidy

accountSubsidy(account?: string | Account): Promise‹Omit‹Subsidy, "beneficiary"› | null›

Defined in src/base/Context.ts:396

Retrieve the account level subsidizer relationship. If there is no such relationship, return null

note can be subscribed to

Parameters:

NameType

account?

string | Account

Returns: Promise‹Omit‹Subsidy, "beneficiary"› | null›

accountSubsidy(account: string | Account | undefined, callback: SubCallback‹Omit‹Subsidy, "beneficiary"› | null›): Promise‹UnsubCallback

Defined in src/base/Context.ts:397

Parameters:

NameType

account

string | Account | undefined

callback

SubCallback‹Omit‹Subsidy, "beneficiary"› | null›

Returns: Promise‹UnsubCallback

addPair

addPair(params: AddPairParams): KeyringPair

Defined in src/base/Context.ts:277

Add a signing pair to the Keyring

Parameters:

NameType

params

Returns: KeyringPair

clone

clone(): Context

Defined in src/base/Context.ts:1100

Returns a (shallow) clone of this instance. Useful for providing a separate Context to Procedures with different signers

Returns: Context

disconnect

disconnect(): Promise‹void›

Defined in src/base/Context.ts:1082

Disconnect the Polkadot API, middleware, and render this instance unusable

note after disconnecting, trying to access any property in this objecct will result in an error

Returns: Promise‹void›

getAccounts

getAccounts(): Account[]

Defined in src/base/Context.ts:254

Retrieve a list of Accounts that can act as signers. The first Account in the array is the current Account (default signer)

Returns: Account[]

getCurrentAccount

getCurrentAccount(): Account

Defined in src/base/Context.ts:452

Retrieve current Account

throws if there is no current account associated to the SDK instance

Returns: Account

getCurrentIdentity

getCurrentIdentity(): Promise‹Identity

Defined in src/base/Context.ts:463

Retrieve current Identity

throws if there is no Identity associated to the current Account (or there is no current Account associated to the SDK instance)

Returns: Promise‹Identity

getCurrentPair

getCurrentPair(): KeyringPair

Defined in src/base/Context.ts:483

Retrieve current Keyring Pair

throws if there is no Account associated to the SDK instance

Returns: KeyringPair

getInvalidDids

getInvalidDids(identities: (string | Identity‹›)[]): Promise‹string[]›

Defined in src/base/Context.ts:512

Check whether Identities exist

Parameters:

NameType

identities

(string | Identity‹›)[]

Returns: Promise‹string[]›

getLatestBlock

getLatestBlock(): Promise‹BigNumber›

Defined in src/base/Context.ts:1061

Retrieve the latest block number

Returns: Promise‹BigNumber›

getNetworkVersion

getNetworkVersion(): Promise‹string›

Defined in src/base/Context.ts:1070

Retrieve the network version

Returns: Promise‹string›

getSigner

getSigner(): AddressOrPair

Defined in src/base/Context.ts:499

Retrieve the signer address (or keyring pair)

Returns: AddressOrPair

getTransactionArguments

getTransactionArguments(args: object): TransactionArgument[]

Defined in src/base/Context.ts:562

Retrieve the types of arguments that a certain transaction requires to be run

Parameters:

args: object

NameTypeDescription

tag

TxTag

tag associated with the transaction that will be executed if the proposal passes

Returns: TransactionArgument[]

getTransactionFees

getTransactionFees(tag: TxTag): Promise‹BigNumber›

Defined in src/base/Context.ts:535

Retrieve the protocol fees associated with running a specific transaction

Parameters:

NameTypeDescription

tag

TxTag

transaction tag (i.e. TxTags.asset.CreateAsset or "asset.createAsset")

Returns: Promise‹BigNumber›

isMiddlewareAvailable

isMiddlewareAvailable(): Promise‹boolean›

Defined in src/base/Context.ts:1048

Return whether the middleware is enabled and online

Returns: Promise‹boolean›

isMiddlewareEnabled

isMiddlewareEnabled(): boolean

Defined in src/base/Context.ts:1041

Return whether the middleware was enabled at startup

Returns: boolean

issuedClaims

issuedClaims(opts: object): Promise‹ResultSetClaimData››

Defined in src/base/Context.ts:952

Retrieve a list of claims. Can be filtered using parameters

note uses the middleware (optional)

Parameters:

Default value opts: object= {}

NameTypeDescription

claimTypes?

types of the claims to fetch. Defaults to any type

includeExpired?

undefined | false | true

whether to include expired claims. Defaults to true

size?

undefined | number

page size

start?

undefined | number

page offset

targets?

(string | Identity‹›)[]

identities (or Identity IDs) for which to fetch claims (targets). Defaults to all targets

trustedClaimIssuers?

(string | Identity‹›)[]

identity IDs of claim issuers. Defaults to all claim issuers

Returns: Promise‹ResultSetClaimData››

queryMiddleware

queryMiddlewareResult›(query: GraphqlQuery‹unknown›): Promise‹ApolloQueryResult‹Result››

Defined in src/base/Context.ts:1019

Make a query to the middleware server using the apollo client

Type parameters:

Result: Partial‹Query›

Parameters:

NameType

query

GraphqlQuery‹unknown›

Returns: Promise‹ApolloQueryResult‹Result››

setPair

setPair(address: string): void

Defined in src/base/Context.ts:319

Set a pair as the current Account keyring pair

Parameters:

NameType

address

string

Returns: void

Static create

create(params: object): Promise‹Context

Defined in src/base/Context.ts:179

Create the Context instance

Parameters:

params: object

NameType

accountMnemonic?

undefined | string

accountSeed?

undefined | string

accountUri?

undefined | string

keyring?

middlewareApi

ApolloClient‹NormalizedCacheObject› | null

polymeshApi

ApiPromise

Returns: Promise‹Context

Last updated