diff --git a/classes/_near_js_accounts.account.Account.html b/classes/_near_js_accounts.account.Account.html index 08de02893a..fba54a19b1 100644 --- a/classes/_near_js_accounts.account.Account.html +++ b/classes/_near_js_accounts.account.Account.html @@ -1,5 +1,5 @@ Account | Documentation

This class provides common account related RPC calls including signing transactions with a KeyPair.

-

Hierarchy (view full)

Implements

Constructors

Hierarchy (view full)

Implements

Constructors

Properties

Methods

addKey @@ -23,60 +23,60 @@ state viewFunction viewState -

Constructors

Properties

accountId: string
connection: Connection

Methods

  • Parameters

    • publicKey: string | PublicKey

      A public key to be associated with the contract

      +

Constructors

Properties

accountId: string
connection: Connection

Methods

  • Parameters

    • publicKey: string | PublicKey

      A public key to be associated with the contract

    • Optional contractId: string

      NEAR account where the contract is deployed

    • Optional methodNames: string | string[]

      The method names on the contract that should be allowed to be called. Pass null for no method names and '' or [] for any method names.

    • Optional amount: bigint

      Payment in yoctoⓃ that is sent to the contract during this function call

    Returns Promise<FinalExecutionOutcome>

    See

    https://docs.near.org/concepts/basics/accounts/access-keys

    Todo

    expand this API to support more options.

    -
  • Parameters

  • Parameters

    • newAccountId: string

      NEAR account name to be created

    • publicKey: string | PublicKey

      A public key created from the masterAccount

      -
    • amount: bigint

    Returns Promise<FinalExecutionOutcome>

  • Create a new account and deploy a contract to it

    +
  • amount: bigint

Returns Promise<FinalExecutionOutcome>

Returns Promise<Account>

Returns Promise<FinalExecutionOutcome>

\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_accounts.account_2fa.Account2FA.html b/classes/_near_js_accounts.account_2fa.Account2FA.html index 5cd7969ee6..f669a25b89 100644 --- a/classes/_near_js_accounts.account_2fa.Account2FA.html +++ b/classes/_near_js_accounts.account_2fa.Account2FA.html @@ -1,5 +1,5 @@ Account2FA | Documentation

This class provides common account related RPC calls including signing transactions with a KeyPair.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

accountId: string
connection: Connection
getCode: getCodeFunction
helperUrl: string = 'https://helper.testnet.near.org'
onAddRequestResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

onConfirmResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

sendCode: sendCodeFunction

+

Constructors

Properties

accountId: string
connection: Connection
getCode: getCodeFunction
helperUrl: string = 'https://helper.testnet.near.org'
onAddRequestResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

onConfirmResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

sendCode: sendCodeFunction

Account2FA has options object where you can provide callbacks for:

  • sendCode: how to send the 2FA code in case you don't use NEAR Contract Helper
  • @@ -59,124 +59,124 @@
  • onResult: the tx result after it's been confirmed by NEAR Contract Helper

-
storage: any
verifyCode: verifyCodeFunction

Methods

  • Parameters

storage: any
verifyCode: verifyCodeFunction

Methods

  • Parameters

    • publicKey: string | PublicKey

      A public key to be associated with the contract

    • Optional contractId: string

      NEAR account where the contract is deployed

    • Optional methodNames: string | string[]

      The method names on the contract that should be allowed to be called. Pass null for no method names and '' or [] for any method names.

    • Optional amount: bigint

      Payment in yoctoⓃ that is sent to the contract during this function call

    Returns Promise<FinalExecutionOutcome>

    See

    https://docs.near.org/concepts/basics/accounts/access-keys

    Todo

    expand this API to support more options.

    -
  • This method submits a canary transaction that is expected to always fail in order to determine whether the contract currently has valid multisig state and whether it is initialized. The canary transaction attempts to delete a request at index u32_max and will go through if a request exists at that index. a u32_max + 1 and -1 value cannot be used for the canary due to expected u32 error thrown before deserialization attempt.

    Parameters

    • Optional contractBytes: Uint8Array

      The bytecode of the multisig contract.

    Returns Promise<{
        codeStatus: MultisigCodeStatus;
        stateStatus: MultisigStateStatus;
    }>

    A promise that resolves to the status of the code and state.

    -
  • Parameters

    • newAccountId: string

      NEAR account name to be created

    • publicKey: string | PublicKey

      A public key created from the masterAccount

      -
    • amount: bigint

    Returns Promise<FinalExecutionOutcome>

  • Create a new account and deploy a contract to it

    +
  • amount: bigint

Returns Promise<FinalExecutionOutcome>

Returns Promise<Account>

Returns Promise<FinalExecutionOutcome>

\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_accounts.account_creator.AccountCreator.html b/classes/_near_js_accounts.account_creator.AccountCreator.html index 33db9af3c5..50e465ec90 100644 --- a/classes/_near_js_accounts.account_creator.AccountCreator.html +++ b/classes/_near_js_accounts.account_creator.AccountCreator.html @@ -1,4 +1,4 @@ AccountCreator | Documentation

Account creator provides an interface for implementations to actually create accounts

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Methods

Constructors

Methods

\ No newline at end of file +

Constructors

Methods

\ No newline at end of file diff --git a/classes/_near_js_accounts.account_creator.LocalAccountCreator.html b/classes/_near_js_accounts.account_creator.LocalAccountCreator.html index 96638048d6..1087ec8c3f 100644 --- a/classes/_near_js_accounts.account_creator.LocalAccountCreator.html +++ b/classes/_near_js_accounts.account_creator.LocalAccountCreator.html @@ -1,9 +1,9 @@ LocalAccountCreator | Documentation

Account creator provides an interface for implementations to actually create accounts

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

initialBalance: bigint
masterAccount: Account

Methods

  • Creates an account using a masterAccount, meaning the new account is created from an existing account

    +

Constructors

Properties

initialBalance: bigint
masterAccount: Account

Methods

  • Creates an account using a masterAccount, meaning the new account is created from an existing account

    Parameters

    • newAccountId: string

      The name of the NEAR account to be created

    • publicKey: PublicKey

      The public key from the masterAccount used to create this account

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_accounts.account_creator.UrlAccountCreator.html b/classes/_near_js_accounts.account_creator.UrlAccountCreator.html index 46c4e95dd0..4fcd007ced 100644 --- a/classes/_near_js_accounts.account_creator.UrlAccountCreator.html +++ b/classes/_near_js_accounts.account_creator.UrlAccountCreator.html @@ -1,10 +1,10 @@ UrlAccountCreator | Documentation

Account creator provides an interface for implementations to actually create accounts

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Methods

Constructors

Properties

connection: Connection
helperUrl: string

Methods

  • Creates an account using a helperUrl +

Constructors

Properties

connection: Connection
helperUrl: string

Methods

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_accounts.account_multisig.AccountMultisig.html b/classes/_near_js_accounts.account_multisig.AccountMultisig.html index a97f815af9..6aaf0b650a 100644 --- a/classes/_near_js_accounts.account_multisig.AccountMultisig.html +++ b/classes/_near_js_accounts.account_multisig.AccountMultisig.html @@ -1,5 +1,5 @@ AccountMultisig | Documentation

This class provides common account related RPC calls including signing transactions with a KeyPair.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Parameters

  • connection: Connection

    The NEAR connection object.

  • accountId: string

    The NEAR account ID.

  • options: any

    Additional options for the multisig account.

    -

Returns AccountMultisig

Properties

accountId: string
connection: Connection
onAddRequestResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

storage: any

Methods

Properties

accountId: string
connection: Connection
onAddRequestResult: ((any) => any)

Type declaration

    • (any): any
    • Parameters

      • any: any

      Returns any

storage: any

Methods

  • Parameters

    • publicKey: string | PublicKey

      A public key to be associated with the contract

    • Optional contractId: string

      NEAR account where the contract is deployed

    • Optional methodNames: string | string[]

      The method names on the contract that should be allowed to be called. Pass null for no method names and '' or [] for any method names.

    • Optional amount: bigint

      Payment in yoctoⓃ that is sent to the contract during this function call

    Returns Promise<FinalExecutionOutcome>

    See

    https://docs.near.org/concepts/basics/accounts/access-keys

    Todo

    expand this API to support more options.

    -
  • This method submits a canary transaction that is expected to always fail in order to determine whether the contract currently has valid multisig state +

  • This method submits a canary transaction that is expected to always fail in order to determine whether the contract currently has valid multisig state and whether it is initialized. The canary transaction attempts to delete a request at index u32_max and will go through if a request exists at that index. a u32_max + 1 and -1 value cannot be used for the canary due to expected u32 error thrown before deserialization attempt.

    Parameters

    • Optional contractBytes: Uint8Array

      The bytecode of the multisig contract.

    Returns Promise<{
        codeStatus: MultisigCodeStatus;
        stateStatus: MultisigStateStatus;
    }>

    A promise that resolves to the status of the code and state.

    -
  • Parameters

    • newAccountId: string

      NEAR account name to be created

    • publicKey: string | PublicKey

      A public key created from the masterAccount

      -
    • amount: bigint

    Returns Promise<FinalExecutionOutcome>

  • Create a new account and deploy a contract to it

    +
  • amount: bigint

Returns Promise<FinalExecutionOutcome>

  • Parameters

    • beneficiaryId: string

      The NEAR account that will receive the remaining Ⓝ balance from the account being deleted

      -

    Returns Promise<FinalExecutionOutcome>

  • Delete all multisig requests associated with the account.

    +

Returns Promise<Account>

Returns Promise<FinalExecutionOutcome>

\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_accounts.connection.Connection.html b/classes/_near_js_accounts.connection.Connection.html index 2977a7cad9..1f5ee0632b 100644 --- a/classes/_near_js_accounts.connection.Connection.html +++ b/classes/_near_js_accounts.connection.Connection.html @@ -1,10 +1,10 @@ Connection | Documentation

Connects an account to a given network via a given provider

-

Implements

Constructors

Implements

Constructors

Properties

jsvmAccountId: string
networkId: string
provider: Provider
signer: Signer

Methods

\ No newline at end of file +

Constructors

Properties

jsvmAccountId: string
networkId: string
provider: Provider
signer: Signer

Methods

\ No newline at end of file diff --git a/classes/_near_js_accounts.contract.Contract.html b/classes/_near_js_accounts.contract.Contract.html index 45276936f2..761f953fe3 100644 --- a/classes/_near_js_accounts.contract.Contract.html +++ b/classes/_near_js_accounts.contract.Contract.html @@ -2,7 +2,7 @@

See

https://docs.near.org/tools/near-api-js/quick-reference#contract

Example

import { Contract } from 'near-api-js';

async function contractExample() {
const methodOptions = {
viewMethods: ['getMessageByAccountId'],
changeMethods: ['addMessage']
};
const contract = new Contract(
wallet.account(),
'contract-id.testnet',
methodOptions
);

// use a contract view method
const messages = await contract.getMessages({
accountId: 'example-account.testnet'
});

// use a contract change method
await contract.addMessage({
meta: 'some info',
callbackUrl: 'https://example.com/callback',
args: { text: 'my message' },
amount: 1
})
}
-

Constructors

Constructors

Properties

account? connection contractId @@ -10,4 +10,4 @@

Example

import<
 

Methods

Constructors

Properties

account?: Account

Deprecated

connection: Connection
contractId: string

Methods

\ No newline at end of file +

Returns Contract

Properties

account?: Account

Deprecated

connection: Connection
contractId: string

Methods

\ No newline at end of file diff --git a/classes/_near_js_accounts.errors.ArgumentSchemaError.html b/classes/_near_js_accounts.errors.ArgumentSchemaError.html index 72f1e4e8fa..d6d6b2f614 100644 --- a/classes/_near_js_accounts.errors.ArgumentSchemaError.html +++ b/classes/_near_js_accounts.errors.ArgumentSchemaError.html @@ -1,4 +1,4 @@ -ArgumentSchemaError | Documentation

Hierarchy

  • Error
    • ArgumentSchemaError

Constructors

constructor +ArgumentSchemaError | Documentation

Hierarchy

  • Error
    • ArgumentSchemaError

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_accounts.errors.ConflictingOptions.html b/classes/_near_js_accounts.errors.ConflictingOptions.html index e2bc768e99..8c3a1b8d38 100644 --- a/classes/_near_js_accounts.errors.ConflictingOptions.html +++ b/classes/_near_js_accounts.errors.ConflictingOptions.html @@ -1,4 +1,4 @@ -ConflictingOptions | Documentation

Hierarchy

  • Error
    • ConflictingOptions

Constructors

constructor +ConflictingOptions | Documentation

Hierarchy

  • Error
    • ConflictingOptions

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_accounts.errors.UnknownArgumentError.html b/classes/_near_js_accounts.errors.UnknownArgumentError.html index 9b77e46810..32ee8b713f 100644 --- a/classes/_near_js_accounts.errors.UnknownArgumentError.html +++ b/classes/_near_js_accounts.errors.UnknownArgumentError.html @@ -1,4 +1,4 @@ -UnknownArgumentError | Documentation

Hierarchy

  • Error
    • UnknownArgumentError

Constructors

constructor +UnknownArgumentError | Documentation

Hierarchy

  • Error
    • UnknownArgumentError

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_accounts.errors.UnsupportedSerializationError.html b/classes/_near_js_accounts.errors.UnsupportedSerializationError.html index 118626a51b..f952d6f66b 100644 --- a/classes/_near_js_accounts.errors.UnsupportedSerializationError.html +++ b/classes/_near_js_accounts.errors.UnsupportedSerializationError.html @@ -1,4 +1,4 @@ -UnsupportedSerializationError | Documentation

Hierarchy

  • Error
    • UnsupportedSerializationError

Constructors

constructor +UnsupportedSerializationError | Documentation

Hierarchy

  • Error
    • UnsupportedSerializationError

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_accounts.local_view_execution.LocalViewExecution.html b/classes/_near_js_accounts.local_view_execution.LocalViewExecution.html index 2eb0426d89..94c3312d05 100644 --- a/classes/_near_js_accounts.local_view_execution.LocalViewExecution.html +++ b/classes/_near_js_accounts.local_view_execution.LocalViewExecution.html @@ -1,4 +1,4 @@ -LocalViewExecution | Documentation

Constructors

constructor +LocalViewExecution | Documentation

Constructors

Properties

Methods

Constructors

Properties

connection: Connection
storage: Storage

Methods

  • Parameters

    • contractId: string
    • blockQuery: BlockReference

    Returns Promise<{
        blockHash: string;
        blockHeight: number;
        blockTimestamp: number;
        contractCode: string;
        contractState: ContractState;
    }>

  • Calls a view function on a contract, fetching the contract code and state if needed.

    +

Constructors

Properties

connection: Connection
storage: Storage

Methods

  • Parameters

    • contractId: string
    • blockQuery: BlockReference

    Returns Promise<{
        blockHash: string;
        blockHeight: number;
        blockTimestamp: number;
        contractCode: string;
        contractState: ContractState;
    }>

  • Calls a view function on a contract, fetching the contract code and state if needed.

    Parameters

    • options: ViewFunctionCallOptions

      Options for calling the view function.

    Returns Promise<any>

    • A promise that resolves to the result of the view function.
    -
\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_accounts.local_view_execution_runtime.Runtime.html b/classes/_near_js_accounts.local_view_execution_runtime.Runtime.html index efc93fb6ee..5cabd4fcd6 100644 --- a/classes/_near_js_accounts.local_view_execution_runtime.Runtime.html +++ b/classes/_near_js_accounts.local_view_execution_runtime.Runtime.html @@ -1,4 +1,4 @@ -Runtime | Documentation

Constructors

constructor +Runtime | Documentation

Constructors

Properties

Constructors

Properties

context: RuntimeCtx
logs: any[]
memory: Memory
registers: Record<string, any>
result: Buffer
wasm: Buffer

Methods

  • Returns {
        abort: any;
        account_balance: (() => never);
        account_locked_balance: (() => never);
        attached_deposit: (() => never);
        block_index: any;
        block_timestamp: any;
        current_account_id: any;
        ecrecover: (() => never);
        epoch_height: (() => never);
        input: any;
        keccak256: (() => never);
        keccak512: (() => never);
        log_utf16: any;
        log_utf8: any;
        panic: (() => void);
        panic_utf8: ((len, ptr) => void);
        predecessor_account_id: (() => never);
        prepaid_gas: (() => never);
        promise_and: (() => never);
        promise_batch_action_add_key_with_full_access: (() => never);
        promise_batch_action_add_key_with_function_call: (() => never);
        promise_batch_action_create_account: (() => never);
        promise_batch_action_delete_account: (() => never);
        promise_batch_action_delete_key: (() => never);
        promise_batch_action_deploy_contract: (() => never);
        promise_batch_action_function_call: (() => never);
        promise_batch_action_function_call_weight: (() => never);
        promise_batch_action_stake: (() => never);
        promise_batch_action_transfer: (() => never);
        promise_batch_create: (() => never);
        promise_batch_then: (() => never);
        promise_create: (() => never);
        promise_result: (() => never);
        promise_results_count: (() => never);
        promise_return: (() => never);
        promise_then: (() => never);
        random_seed: (() => never);
        read_register: any;
        register_len: any;
        ripemd160: (() => never);
        sha256: any;
        signer_account_id: (() => never);
        signer_account_pk: (() => never);
        storage_has_key: any;
        storage_read: any;
        storage_remove: (() => never);
        storage_usage: (() => never);
        storage_write: (() => never);
        used_gas: (() => never);
        validator_stake: (() => never);
        validator_total_stake: (() => never);
        value_return: any;
        write_register: (() => never);
    }

    • abort: any
    • account_balance: (() => never)
        • (): never
        • Returns never

    • account_locked_balance: (() => never)
        • (): never
        • Returns never

    • attached_deposit: (() => never)
        • (): never
        • Returns never

    • block_index: any
    • block_timestamp: any
    • current_account_id: any
    • ecrecover: (() => never)
        • (): never
        • Returns never

    • epoch_height: (() => never)
        • (): never
        • Returns never

    • input: any
    • keccak256: (() => never)
        • (): never
        • Returns never

    • keccak512: (() => never)
        • (): never
        • Returns never

    • log_utf16: any
    • log_utf8: any
    • panic: (() => void)
        • (): void
        • Returns void

    • panic_utf8: ((len, ptr) => void)
        • (len, ptr): void
        • Parameters

          • len: bigint
          • ptr: bigint

          Returns void

    • predecessor_account_id: (() => never)
        • (): never
        • Returns never

    • prepaid_gas: (() => never)
        • (): never
        • Returns never

    • promise_and: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_add_key_with_full_access: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_add_key_with_function_call: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_create_account: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_delete_account: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_delete_key: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_deploy_contract: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_function_call: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_function_call_weight: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_stake: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_transfer: (() => never)
        • (): never
        • Returns never

    • promise_batch_create: (() => never)
        • (): never
        • Returns never

    • promise_batch_then: (() => never)
        • (): never
        • Returns never

    • promise_create: (() => never)
        • (): never
        • Returns never

    • promise_result: (() => never)
        • (): never
        • Returns never

    • promise_results_count: (() => never)
        • (): never
        • Returns never

    • promise_return: (() => never)
        • (): never
        • Returns never

    • promise_then: (() => never)
        • (): never
        • Returns never

    • random_seed: (() => never)
        • (): never
        • Returns never

    • read_register: any
    • register_len: any
    • ripemd160: (() => never)
        • (): never
        • Returns never

    • sha256: any
    • signer_account_id: (() => never)
        • (): never
        • Returns never

    • signer_account_pk: (() => never)
        • (): never
        • Returns never

    • storage_has_key: any
    • storage_read: any
    • storage_remove: (() => never)
        • (): never
        • Returns never

    • storage_usage: (() => never)
        • (): never
        • Returns never

    • storage_write: (() => never)
        • (): never
        • Returns never

    • used_gas: (() => never)
        • (): never
        • Returns never

    • validator_stake: (() => never)
        • (): never
        • Returns never

    • validator_total_stake: (() => never)
        • (): never
        • Returns never

    • value_return: any
    • write_register: (() => never)
        • (): never
        • Returns never

\ No newline at end of file +

Constructors

Properties

context: RuntimeCtx
logs: any[]
memory: Memory
registers: Record<string, any>
result: Buffer
wasm: Buffer

Methods

  • Returns {
        abort: any;
        account_balance: (() => never);
        account_locked_balance: (() => never);
        attached_deposit: (() => never);
        block_index: any;
        block_timestamp: any;
        current_account_id: any;
        ecrecover: (() => never);
        epoch_height: (() => never);
        input: any;
        keccak256: (() => never);
        keccak512: (() => never);
        log_utf16: any;
        log_utf8: any;
        panic: (() => void);
        panic_utf8: ((len, ptr) => void);
        predecessor_account_id: (() => never);
        prepaid_gas: (() => never);
        promise_and: (() => never);
        promise_batch_action_add_key_with_full_access: (() => never);
        promise_batch_action_add_key_with_function_call: (() => never);
        promise_batch_action_create_account: (() => never);
        promise_batch_action_delete_account: (() => never);
        promise_batch_action_delete_key: (() => never);
        promise_batch_action_deploy_contract: (() => never);
        promise_batch_action_function_call: (() => never);
        promise_batch_action_function_call_weight: (() => never);
        promise_batch_action_stake: (() => never);
        promise_batch_action_transfer: (() => never);
        promise_batch_create: (() => never);
        promise_batch_then: (() => never);
        promise_create: (() => never);
        promise_result: (() => never);
        promise_results_count: (() => never);
        promise_return: (() => never);
        promise_then: (() => never);
        random_seed: (() => never);
        read_register: any;
        register_len: any;
        ripemd160: (() => never);
        sha256: any;
        signer_account_id: (() => never);
        signer_account_pk: (() => never);
        storage_has_key: any;
        storage_read: any;
        storage_remove: (() => never);
        storage_usage: (() => never);
        storage_write: (() => never);
        used_gas: (() => never);
        validator_stake: (() => never);
        validator_total_stake: (() => never);
        value_return: any;
        write_register: (() => never);
    }

    • abort: any
    • account_balance: (() => never)
        • (): never
        • Returns never

    • account_locked_balance: (() => never)
        • (): never
        • Returns never

    • attached_deposit: (() => never)
        • (): never
        • Returns never

    • block_index: any
    • block_timestamp: any
    • current_account_id: any
    • ecrecover: (() => never)
        • (): never
        • Returns never

    • epoch_height: (() => never)
        • (): never
        • Returns never

    • input: any
    • keccak256: (() => never)
        • (): never
        • Returns never

    • keccak512: (() => never)
        • (): never
        • Returns never

    • log_utf16: any
    • log_utf8: any
    • panic: (() => void)
        • (): void
        • Returns void

    • panic_utf8: ((len, ptr) => void)
        • (len, ptr): void
        • Parameters

          • len: bigint
          • ptr: bigint

          Returns void

    • predecessor_account_id: (() => never)
        • (): never
        • Returns never

    • prepaid_gas: (() => never)
        • (): never
        • Returns never

    • promise_and: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_add_key_with_full_access: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_add_key_with_function_call: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_create_account: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_delete_account: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_delete_key: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_deploy_contract: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_function_call: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_function_call_weight: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_stake: (() => never)
        • (): never
        • Returns never

    • promise_batch_action_transfer: (() => never)
        • (): never
        • Returns never

    • promise_batch_create: (() => never)
        • (): never
        • Returns never

    • promise_batch_then: (() => never)
        • (): never
        • Returns never

    • promise_create: (() => never)
        • (): never
        • Returns never

    • promise_result: (() => never)
        • (): never
        • Returns never

    • promise_results_count: (() => never)
        • (): never
        • Returns never

    • promise_return: (() => never)
        • (): never
        • Returns never

    • promise_then: (() => never)
        • (): never
        • Returns never

    • random_seed: (() => never)
        • (): never
        • Returns never

    • read_register: any
    • register_len: any
    • ripemd160: (() => never)
        • (): never
        • Returns never

    • sha256: any
    • signer_account_id: (() => never)
        • (): never
        • Returns never

    • signer_account_pk: (() => never)
        • (): never
        • Returns never

    • storage_has_key: any
    • storage_read: any
    • storage_remove: (() => never)
        • (): never
        • Returns never

    • storage_usage: (() => never)
        • (): never
        • Returns never

    • storage_write: (() => never)
        • (): never
        • Returns never

    • used_gas: (() => never)
        • (): never
        • Returns never

    • validator_stake: (() => never)
        • (): never
        • Returns never

    • validator_total_stake: (() => never)
        • (): never
        • Returns never

    • value_return: any
    • write_register: (() => never)
        • (): never
        • Returns never

\ No newline at end of file diff --git a/classes/_near_js_accounts.local_view_execution_storage.Storage.html b/classes/_near_js_accounts.local_view_execution_storage.Storage.html index e118a3d328..60a6e90d4d 100644 --- a/classes/_near_js_accounts.local_view_execution_storage.Storage.html +++ b/classes/_near_js_accounts.local_view_execution_storage.Storage.html @@ -1,7 +1,7 @@ -Storage | Documentation

Constructors

constructor +Storage | Documentation

Constructors

Properties

Methods

Constructors

Properties

blockHeights: Map<string, number>
cache: LRUMap<string | number, any>
MAX_ELEMENTS: number = 100

Methods

\ No newline at end of file +

Constructors

Properties

blockHeights: Map<string, number>
cache: LRUMap<string | number, any>
MAX_ELEMENTS: number = 100

Methods

\ No newline at end of file diff --git a/classes/_near_js_biometric_ed25519.fido2.Fido2.html b/classes/_near_js_biometric_ed25519.fido2.Fido2.html index b3274d769f..75ac66db7a 100644 --- a/classes/_near_js_biometric_ed25519.fido2.Fido2.html +++ b/classes/_near_js_biometric_ed25519.fido2.Fido2.html @@ -1,8 +1,8 @@ -Fido2 | Documentation

Constructors

constructor +Fido2 | Documentation

Constructors

Properties

Methods

Constructors

Properties

f2l: Fido2Lib

Methods

  • Parameters

    • __namedParameters: {
          challenge: any;
          clientAttestationResponse: any;
          origin: any;
      }
      • challenge: any
      • clientAttestationResponse: any
      • origin: any

    Returns Promise<Fido2AttestationResult>

  • Parameters

    • __namedParameters: {
          rpId: any;
          rpName: any;
          timeout: any;
      }
      • rpId: any
      • rpName: any
      • timeout: any

    Returns Promise<void>

  • Returns Promise<{
        allowCredentials?: PublicKeyCredentialDescriptor[];
        attestation: string;
        challenge: string;
        extensions?: any;
        rawChallenge?: ArrayBuffer;
        rpId?: string;
        status: string;
        timeout?: number;
        userVerification?: UserVerification;
    }>

  • Parameters

    • __namedParameters: {
          displayName: any;
          id: any;
          username: any;
      }
      • displayName: any
      • id: any
      • username: any

    Returns Promise<{
        attestation?: Attestation;
        authenticatorSelection?: AuthenticatorSelectionCriteria;
        challenge: string;
        extensions?: any;
        pubKeyCredParams: {
            alg: number;
            type: "public-key";
        }[];
        rawChallenge?: ArrayBuffer;
        rp: {
            icon?: string;
            id: string;
            name: string;
        };
        status: string;
        timeout?: number;
        user: {
            displayName: any;
            id: any;
            name: any;
        };
    }>

\ No newline at end of file +

Constructors

Properties

f2l: Fido2Lib

Methods

  • Parameters

    • __namedParameters: {
          challenge: any;
          clientAttestationResponse: any;
          origin: any;
      }
      • challenge: any
      • clientAttestationResponse: any
      • origin: any

    Returns Promise<Fido2AttestationResult>

  • Parameters

    • __namedParameters: {
          rpId: any;
          rpName: any;
          timeout: any;
      }
      • rpId: any
      • rpName: any
      • timeout: any

    Returns Promise<void>

  • Returns Promise<{
        allowCredentials?: PublicKeyCredentialDescriptor[];
        attestation: string;
        challenge: string;
        extensions?: any;
        rawChallenge?: ArrayBuffer;
        rpId?: string;
        status: string;
        timeout?: number;
        userVerification?: UserVerification;
    }>

  • Parameters

    • __namedParameters: {
          displayName: any;
          id: any;
          username: any;
      }
      • displayName: any
      • id: any
      • username: any

    Returns Promise<{
        attestation?: Attestation;
        authenticatorSelection?: AuthenticatorSelectionCriteria;
        challenge: string;
        extensions?: any;
        pubKeyCredParams: {
            alg: number;
            type: "public-key";
        }[];
        rawChallenge?: ArrayBuffer;
        rp: {
            icon?: string;
            id: string;
            name: string;
        };
        status: string;
        timeout?: number;
        user: {
            displayName: any;
            id: any;
            name: any;
        };
    }>

\ No newline at end of file diff --git a/classes/_near_js_biometric_ed25519.index-1.PasskeyProcessCanceled.html b/classes/_near_js_biometric_ed25519.index-1.PasskeyProcessCanceled.html index 2d4210d26c..ec4b3c1989 100644 --- a/classes/_near_js_biometric_ed25519.index-1.PasskeyProcessCanceled.html +++ b/classes/_near_js_biometric_ed25519.index-1.PasskeyProcessCanceled.html @@ -1,4 +1,4 @@ -PasskeyProcessCanceled | Documentation

Hierarchy

  • Error
    • PasskeyProcessCanceled

Constructors

constructor +PasskeyProcessCanceled | Documentation

Hierarchy

  • Error
    • PasskeyProcessCanceled

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_crypto.key_pair.KeyPair.html b/classes/_near_js_crypto.key_pair.KeyPair.html index aef2404452..3b065b86a0 100644 --- a/classes/_near_js_crypto.key_pair.KeyPair.html +++ b/classes/_near_js_crypto.key_pair.KeyPair.html @@ -1,13 +1,13 @@ -KeyPair | Documentation

Hierarchy (view full)

Constructors

constructor +KeyPair | Documentation

Hierarchy (view full)

Constructors

Methods

  • Parameters

    • curve: "ed25519" | "secp256k1"

      Name of elliptical curve, case-insensitive

      +

Constructors

Methods

  • Parameters

    • curve: "ed25519" | "secp256k1"

      Name of elliptical curve, case-insensitive

    Returns KeyPair

    Random KeyPair based on the curve

    -
  • Creates a key pair from an encoded key string.

    Parameters

    Returns KeyPair

    The key pair created from the encoded key string.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_crypto.key_pair_base.KeyPairBase.html b/classes/_near_js_crypto.key_pair_base.KeyPairBase.html index 40c9ca5eb5..00669a231e 100644 --- a/classes/_near_js_crypto.key_pair_base.KeyPairBase.html +++ b/classes/_near_js_crypto.key_pair_base.KeyPairBase.html @@ -1,6 +1,6 @@ -KeyPairBase | Documentation

Hierarchy (view full)

Constructors

constructor +KeyPairBase | Documentation

Hierarchy (view full)

Constructors

Methods

  • Parameters

    • message: Uint8Array
    • signature: Uint8Array

    Returns boolean

\ No newline at end of file +

Constructors

Methods

  • Parameters

    • message: Uint8Array
    • signature: Uint8Array

    Returns boolean

\ No newline at end of file diff --git a/classes/_near_js_crypto.key_pair_ed25519.KeyPairEd25519.html b/classes/_near_js_crypto.key_pair_ed25519.KeyPairEd25519.html index dde8337d3a..905b4b1ec3 100644 --- a/classes/_near_js_crypto.key_pair_ed25519.KeyPairEd25519.html +++ b/classes/_near_js_crypto.key_pair_ed25519.KeyPairEd25519.html @@ -1,6 +1,6 @@ KeyPairEd25519 | Documentation

This class provides key pair functionality for Ed25519 curve: generating key pairs, encoding key pairs, signing and verifying.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Constructors

Properties

extendedSecretKey: string
publicKey: PublicKey
secretKey: string

Methods

Properties

extendedSecretKey: string
publicKey: PublicKey
secretKey: string

Methods

  • Verifies the signature of a message using the key pair's public key.

    Parameters

    • message: Uint8Array

      The message to be verified.

    • signature: Uint8Array

      The signature to be verified.

    Returns boolean

    true if the signature is valid, otherwise false.

    -
  • Generate a new random keypair.

    Returns KeyPairEd25519

    Example

    const keyRandom = KeyPair.fromRandom();
    keyRandom.publicKey
    // returns [PUBLIC_KEY]

    keyRandom.secretKey
    // returns [SECRET_KEY]
    -
\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_crypto.key_pair_secp256k1.KeyPairSecp256k1.html b/classes/_near_js_crypto.key_pair_secp256k1.KeyPairSecp256k1.html index 7aca0a8f34..e4dfb174f4 100644 --- a/classes/_near_js_crypto.key_pair_secp256k1.KeyPairSecp256k1.html +++ b/classes/_near_js_crypto.key_pair_secp256k1.KeyPairSecp256k1.html @@ -6,7 +6,7 @@ We'll force the secp256k1 library to always encode uncompressed keys with the corresponding 0x04 header byte, then manually insert/remove that byte as needed.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Constructors

Properties

extendedSecretKey: string
publicKey: PublicKey
secretKey: string

Methods

Properties

extendedSecretKey: string
publicKey: PublicKey
secretKey: string

Methods

\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_crypto.public_key.PublicKey.html b/classes/_near_js_crypto.public_key.PublicKey.html index 2fcf794ded..bdda61a9c7 100644 --- a/classes/_near_js_crypto.public_key.PublicKey.html +++ b/classes/_near_js_crypto.public_key.PublicKey.html @@ -1,5 +1,5 @@ PublicKey | Documentation

PublicKey representation that has type and bytes of the key.

-

Hierarchy

  • Enum
    • PublicKey

Constructors

Hierarchy

  • Enum
    • PublicKey

Constructors

Properties

Constructors

Properties

ed25519Key?: ED25519PublicKey
enum: string
secp256k1Key?: SECP256K1PublicKey

Accessors

  • get keyPair(): ED25519PublicKey | SECP256K1PublicKey
  • Returns ED25519PublicKey | SECP256K1PublicKey

Methods

  • Returns a string representation of the public key.

    +

Constructors

Properties

ed25519Key?: ED25519PublicKey
enum: string
secp256k1Key?: SECP256K1PublicKey

Accessors

  • get keyPair(): ED25519PublicKey | SECP256K1PublicKey
  • Returns ED25519PublicKey | SECP256K1PublicKey

Methods

  • Returns a string representation of the public key.

    Returns string

    The string representation of the public key.

    -
  • Verifies a message signature using the public key.

    +
  • Verifies a message signature using the public key.

    Parameters

    • message: Uint8Array

      The message to be verified.

    • signature: Uint8Array

      The signature to be verified.

    Returns boolean

    true if the signature is valid, otherwise false.

    -
  • Creates a PublicKey instance from a string or an existing PublicKey instance.

    Parameters

    • value: string | PublicKey

      The string or PublicKey instance to create a PublicKey from.

    Returns PublicKey

    The PublicKey instance.

    -
  • Creates a PublicKey instance from an encoded key string.

    Parameters

    • encodedKey: string

      The encoded key string.

    Returns PublicKey

    The PublicKey instance created from the encoded key string.

    -
\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_iframe_rpc.iframe_rpc.IFrameRPC.html b/classes/_near_js_iframe_rpc.iframe_rpc.IFrameRPC.html index 008eff5a5c..56f3a69582 100644 --- a/classes/_near_js_iframe_rpc.iframe_rpc.IFrameRPC.html +++ b/classes/_near_js_iframe_rpc.iframe_rpc.IFrameRPC.html @@ -1,4 +1,4 @@ -IFrameRPC | Documentation

Hierarchy

  • EventEmitter
    • IFrameRPC

Constructors

constructor +IFrameRPC | Documentation

Hierarchy

  • EventEmitter
    • IFrameRPC

Constructors

Properties

Constructors

Properties

calls: {
    [id: number]: ((err, result) => void);
} = ...

Type declaration

  • [id: number]: ((err, result) => void)
      • (err, result): void
      • Parameters

        Returns void

isReady: Promise<void>
lastCallId: number = 0
options: IRPCOptions

The configuration options for IFrameRPC.

-
remoteProtocolVersion: string
removeMessageListener: (() => void)

Type declaration

    • (): void
    • Returns void

captureRejectionSymbol: typeof captureRejectionSymbol
captureRejections: boolean

Sets or gets the default captureRejection value for all emitters.

+

Returns IFrameRPC

Properties

calls: {
    [id: number]: ((err, result) => void);
} = ...

Type declaration

  • [id: number]: ((err, result) => void)
      • (err, result): void
      • Parameters

        Returns void

isReady: Promise<void>
lastCallId: number = 0
options: IRPCOptions

The configuration options for IFrameRPC.

+
remoteProtocolVersion: string
removeMessageListener: (() => void)

Type declaration

    • (): void
    • Returns void

captureRejectionSymbol: typeof captureRejectionSymbol
captureRejections: boolean

Sets or gets the default captureRejection value for all emitters.

defaultMaxListeners: number
errorMonitor: typeof errorMonitor

This symbol shall be used to install a listener for only monitoring 'error' events. Listeners installed using this symbol are called before the regular 'error' listeners are called.

@@ -56,12 +56,12 @@

Type Parameters

  • T

Parameters

  • method: string

    The RPC method name.

  • handler: ((params) => any)

    The method handler function.

      • (params): any
      • Parameters

        • params: T

        Returns any

Returns this

The current IFrameRPC instance.

-
  • Calls an RPC method with the specified method name and parameters.

    Type Parameters

    • T

    Parameters

    • method: string

      The RPC method name.

    • params: object

      The parameters for the RPC method.

    Returns Promise<T>

    A Promise that resolves with the result of the RPC method.

    -
  • Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments +

  • Synchronously calls each of the listeners registered for the event namedeventName, in the order they were registered, passing the supplied arguments to each.

    Returns true if the event had listeners, false otherwise.

    const EventEmitter = require('events');
    const myEmitter = new EventEmitter();

    // First listener
    myEmitter.on('event', function firstListener() {
    console.log('Helloooo! first listener');
    });
    // Second listener
    myEmitter.on('event', function secondListener(arg1, arg2) {
    console.log(`event with parameters ${arg1}, ${arg2} in second listener`);
    });
    // Third listener
    myEmitter.on('event', function thirdListener(...args) {
    const parameters = args.join(', ');
    console.log(`event with parameters ${parameters} in third listener`);
    });

    console.log(myEmitter.listeners('event'));

    myEmitter.emit('event', 1, 2, 3, 4, 5);

    // Prints:
    // [
    // [Function: firstListener],
    // [Function: secondListener],
    // [Function: thirdListener]
    // ]
    // Helloooo! first listener
    // event with parameters 1, 2 in second listener
    // event with parameters 1, 2, 3, 4, 5 in third listener @@ -75,14 +75,14 @@
  • Returns the current max listener value for the EventEmitter which is either set by emitter.setMaxListeners(n) or defaults to defaultMaxListeners.

    Returns number

    Since

    v1.0.0

    -
  • Returns the number of listeners listening to the event named eventName.

    +
  • Returns the number of listeners listening to the event named eventName.

    Parameters

    • eventName: string | symbol

      The name of the event being listened for

    Returns number

    Since

    v3.2.0

  • Returns a copy of the array of listeners for the event named eventName.

    server.on('connection', (stream) => {
    console.log('someone connected!');
    });
    console.log(util.inspect(server.listeners('connection')));
    // Prints: [ [Function] ]

    Parameters

    • eventName: string | symbol

    Returns Function[]

    Since

    v0.1.26

    -
  • Alias for emitter.removeListener().

    +
  • Alias for emitter.removeListener().

    Parameters

    • eventName: string | symbol
    • listener: ((...args) => void)
        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns this

    Since

    v10.0.0

  • Adds the listener function to the end of the listeners array for the event named eventName. No checks are made to see if the listener has @@ -110,7 +110,7 @@

    Parameters

    • eventName: string | symbol

      The name of the event.

    • listener: ((...args) => void)

      The callback function

        • (...args): void
        • Parameters

          • Rest ...args: any[]

          Returns void

    Returns this

    Since

    v0.3.0

    -
  • Adds the listener function to the beginning of the listeners array for the +

  • Adds the listener function to the beginning of the listeners array for the event named eventName. No checks are made to see if the listener has already been added. Multiple calls passing the same combination of eventNameand listener will result in the listener being added, and called, multiple times.

    @@ -135,7 +135,7 @@

    Parameters

    • eventName: string | symbol

    Returns Function[]

    Since

    v9.4.0

  • Removes all listeners, or those of the specified eventName.

    It is bad practice to remove listeners added elsewhere in the code, particularly when the EventEmitter instance was created by some other component or module (e.g. sockets or file streams).

    @@ -182,7 +182,7 @@
  • A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    +
  • A class method that returns the number of listeners for the given eventNameregistered on the given emitter.

    const { EventEmitter, listenerCount } = require('events');
    const myEmitter = new EventEmitter();
    myEmitter.on('event', () => {});
    myEmitter.on('event', () => {});
    console.log(listenerCount(myEmitter, 'event'));
    // Prints: 2

    Parameters

    • emitter: EventEmitter

      The emitter to query

      diff --git a/classes/_near_js_iframe_rpc.iframe_rpc_error.IFrameRPCError.html b/classes/_near_js_iframe_rpc.iframe_rpc_error.IFrameRPCError.html index 9003cbf4d7..2f7e64f62c 100644 --- a/classes/_near_js_iframe_rpc.iframe_rpc_error.IFrameRPCError.html +++ b/classes/_near_js_iframe_rpc.iframe_rpc_error.IFrameRPCError.html @@ -1,4 +1,4 @@ -IFrameRPCError | Documentation

      Hierarchy

      • Error
        • IFrameRPCError

      Constructors

      constructor +IFrameRPCError | Documentation

      Hierarchy

      • Error
        • IFrameRPCError

      Constructors

      Properties

      Methods

      Constructors

      Properties

      cause?: unknown
      code: number
      message: string
      name: string
      stack?: string
      prepareStackTrace?: ((err, stackTraces) => any)

      Optional override for formatting stack traces

      +

      Constructors

      Properties

      cause?: unknown
      code: number
      message: string
      name: string
      stack?: string
      prepareStackTrace?: ((err, stackTraces) => any)

      Optional override for formatting stack traces

      Type declaration

        • (err, stackTraces): any
        • Parameters

          • err: Error
          • stackTraces: CallSite[]

          Returns any

      stackTraceLimit: number

      Methods

      • Create .stack property on a target object

        +
      stackTraceLimit: number

      Methods

      • Create .stack property on a target object

        Parameters

        • targetObject: object
        • Optional constructorOpt: Function

        Returns void

      \ No newline at end of file diff --git a/classes/_near_js_keystores.in_memory_key_store.InMemoryKeyStore.html b/classes/_near_js_keystores.in_memory_key_store.InMemoryKeyStore.html index 00ddbe41ad..c9d38398a6 100644 --- a/classes/_near_js_keystores.in_memory_key_store.InMemoryKeyStore.html +++ b/classes/_near_js_keystores.in_memory_key_store.InMemoryKeyStore.html @@ -2,25 +2,25 @@

      See

      https://docs.near.org/docs/develop/front-end/naj-quick-reference#key-store

      Example

      import { connect, keyStores, utils } from 'near-api-js';

      const privateKey = '.......';
      const keyPair = utils.KeyPair.fromString(privateKey);

      const keyStore = new keyStores.InMemoryKeyStore();
      keyStore.setKey('testnet', 'example-account.testnet', keyPair);

      const config = {
      keyStore, // instance of InMemoryKeyStore
      networkId: 'testnet',
      nodeUrl: 'https://rpc.testnet.near.org',
      walletUrl: 'https://wallet.testnet.near.org',
      helperUrl: 'https://helper.testnet.near.org',
      explorerUrl: 'https://explorer.testnet.near.org'
      };

      // inside an async function
      const near = await connect(config)
      -

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Methods

  • Gets the account(s) from in-memory storage

    +

Constructors

Methods

  • Gets the account(s) from in-memory storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<string[]>

  • Gets a KeyPair from in-memory storage

    +

Returns Promise<string[]>

  • Gets a KeyPair from in-memory storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<KeyPair>

  • Removes a KeyPair from in-memory storage

    +

Returns Promise<KeyPair>

  • Removes a KeyPair from in-memory storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<void>

  • Stores a KeyPair in in-memory storage item

    +

Returns Promise<void>

  • Stores a KeyPair in in-memory storage item

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • keyPair: KeyPair

      The key pair to store in local storage

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores.keystore.KeyStore.html b/classes/_near_js_keystores.keystore.KeyStore.html index 865b63d77e..f9384c651b 100644 --- a/classes/_near_js_keystores.keystore.KeyStore.html +++ b/classes/_near_js_keystores.keystore.KeyStore.html @@ -1,10 +1,10 @@ KeyStore | Documentation

KeyStores are passed to Near via NearConfig and are used by the InMemorySigner to sign transactions.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Methods

  • Parameters

    • networkId: string

    Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<KeyPair>

  • Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<void>

  • Parameters

    • networkId: string
    • accountId: string
    • keyPair: KeyPair

    Returns Promise<void>

\ No newline at end of file +

Constructors

Methods

  • Parameters

    • networkId: string

    Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<KeyPair>

  • Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<void>

  • Parameters

    • networkId: string
    • accountId: string
    • keyPair: KeyPair

    Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores.merge_key_store.MergeKeyStore.html b/classes/_near_js_keystores.merge_key_store.MergeKeyStore.html index cc6397ad6c..d222572ab0 100644 --- a/classes/_near_js_keystores.merge_key_store.MergeKeyStore.html +++ b/classes/_near_js_keystores.merge_key_store.MergeKeyStore.html @@ -1,6 +1,6 @@ MergeKeyStore | Documentation

KeyStores are passed to Near via NearConfig and are used by the InMemorySigner to sign transactions.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

Methods

clear @@ -11,18 +11,18 @@ setKey

Constructors

Properties

keyStores: KeyStore[]
options: MergeKeyStoreOptions

Methods

  • Gets the account(s) from the array of key stores

    +

Returns MergeKeyStore

Properties

keyStores: KeyStore[]
options: MergeKeyStoreOptions

Methods

  • Gets the account(s) from the array of key stores

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<string[]>

  • Gets a KeyPair from the array of key stores

    +

Returns Promise<string[]>

  • Gets a KeyPair from the array of key stores

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<KeyPair>

  • Removes a KeyPair from the array of key stores

    +

Returns Promise<KeyPair>

  • Removes a KeyPair from the array of key stores

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<void>

  • Store a KeyPair to the first index of a key store array

    +

Returns Promise<void>

  • Store a KeyPair to the first index of a key store array

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • keyPair: KeyPair

      The key pair to store in local storage

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores.multi_contract_keystore.MultiContractKeyStore.html b/classes/_near_js_keystores.multi_contract_keystore.MultiContractKeyStore.html index 766c306728..12330d0b36 100644 --- a/classes/_near_js_keystores.multi_contract_keystore.MultiContractKeyStore.html +++ b/classes/_near_js_keystores.multi_contract_keystore.MultiContractKeyStore.html @@ -1,7 +1,7 @@ MultiContractKeyStore | Documentation

KeyStores are passed to near!Near via near!NearConfig and are used by the signer!InMemorySigner to sign transactions.

See

connect

-

Constructors

Constructors

Methods

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string
    • contractId: string

    Returns Promise<KeyPair>

  • Parameters

    • networkId: string
    • accountId: string
    • contractId: string

    Returns Promise<void>

  • Parameters

    • networkId: string
    • accountId: string
    • keyPair: KeyPair
    • contractId: string

    Returns Promise<void>

\ No newline at end of file +

Constructors

Methods

  • Parameters

    • networkId: string
    • accountId: string

    Returns Promise<string[]>

  • Parameters

    • networkId: string
    • accountId: string
    • contractId: string

    Returns Promise<KeyPair>

  • Parameters

    • networkId: string
    • accountId: string
    • contractId: string

    Returns Promise<void>

  • Parameters

    • networkId: string
    • accountId: string
    • keyPair: KeyPair
    • contractId: string

    Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores_browser.browser_local_storage_key_store.BrowserLocalStorageKeyStore.html b/classes/_near_js_keystores_browser.browser_local_storage_key_store.BrowserLocalStorageKeyStore.html index 537709dc37..234ef183b7 100644 --- a/classes/_near_js_keystores_browser.browser_local_storage_key_store.BrowserLocalStorageKeyStore.html +++ b/classes/_near_js_keystores_browser.browser_local_storage_key_store.BrowserLocalStorageKeyStore.html @@ -2,7 +2,7 @@

See

https://docs.near.org/docs/develop/front-end/naj-quick-reference#key-store

Example

import { connect, keyStores } from 'near-api-js';

const keyStore = new keyStores.BrowserLocalStorageKeyStore();
const config = {
keyStore, // instance of BrowserLocalStorageKeyStore
networkId: 'testnet',
nodeUrl: 'https://rpc.testnet.near.org',
walletUrl: 'https://wallet.testnet.near.org',
helperUrl: 'https://helper.testnet.near.org',
explorerUrl: 'https://explorer.testnet.near.org'
};

// inside an async function
const near = await connect(config)
-

Hierarchy

  • KeyStore
    • BrowserLocalStorageKeyStore

Constructors

Hierarchy

  • KeyStore
    • BrowserLocalStorageKeyStore

Constructors

Methods

clear getAccounts getKey @@ -11,18 +11,18 @@

Example

import<
 setKey
 

Constructors

Methods

  • Gets the account(s) from local storage

    +

Returns BrowserLocalStorageKeyStore

Methods

  • Gets the account(s) from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<string[]>

  • Gets a KeyPair from local storage

    +

Returns Promise<string[]>

  • Gets a KeyPair from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<KeyPair>

  • Removes a KeyPair from local storage

    +

Returns Promise<KeyPair>

  • Removes a KeyPair from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<void>

  • Stores a KeyPair in local storage.

    +

Returns Promise<void>

  • Stores a KeyPair in local storage.

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • keyPair: KeyPair

      The key pair to store in local storage

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.MultiContractBrowserLocalStorageKeyStore.html b/classes/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.MultiContractBrowserLocalStorageKeyStore.html index 8c5743f7e4..4d3f886019 100644 --- a/classes/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.MultiContractBrowserLocalStorageKeyStore.html +++ b/classes/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.MultiContractBrowserLocalStorageKeyStore.html @@ -2,7 +2,7 @@

See

https://docs.near.org/docs/develop/front-end/naj-quick-reference#key-store

Example

import { connect, keyStores } from 'near-api-js';

const keyStore = new keyStores.MultiContractBrowserLocalStorageKeyStore();
const config = {
keyStore, // instance of MultiContractBrowserLocalStorageKeyStore
networkId: 'testnet',
nodeUrl: 'https://rpc.testnet.near.org',
walletUrl: 'https://wallet.testnet.near.org',
helperUrl: 'https://helper.testnet.near.org',
explorerUrl: 'https://explorer.testnet.near.org'
};

// inside an async function
const near = await connect(config)
-

Hierarchy

  • MultiContractKeyStore
    • MultiContractBrowserLocalStorageKeyStore

Constructors

Hierarchy

  • MultiContractKeyStore
    • MultiContractBrowserLocalStorageKeyStore

Constructors

Methods

clear getAccounts getContracts @@ -12,24 +12,24 @@

Example

import<
 setKey
 

Constructors

Methods

  • Gets the account(s) from local storage

    +

Returns MultiContractBrowserLocalStorageKeyStore

Methods

  • Gets the account(s) from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<string[]>

  • Gets the contract(s) from local storage

    +

Returns Promise<string[]>

  • Gets the contract(s) from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The targeted account.

      -

    Returns Promise<string[]>

  • Gets a utils/key_pair!KeyPair from local storage

    +

Returns Promise<string[]>

  • Gets a utils/key_pair!KeyPair from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • contractId: string

      The NEAR contract tied to the key pair

      -

    Returns Promise<KeyPair>

  • Removes a utils/key_pair!KeyPair from local storage

    +

Returns Promise<KeyPair>

  • Removes a utils/key_pair!KeyPair from local storage

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • contractId: string

      The NEAR contract tied to the key pair

      -

    Returns Promise<void>

  • Stores a utils/key_pair!KeyPair in local storage.

    +

Returns Promise<void>

  • Stores a utils/key_pair!KeyPair in local storage.

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • keyPair: KeyPair

      The key pair to store in local storage

    • contractId: string

      The contract to store in local storage

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_keystores_node.unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.html b/classes/_near_js_keystores_node.unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.html index d9549e6215..b60764eb21 100644 --- a/classes/_near_js_keystores_node.unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.html +++ b/classes/_near_js_keystores_node.unencrypted_file_system_keystore.UnencryptedFileSystemKeyStore.html @@ -2,7 +2,7 @@

See

https://docs.near.org/docs/develop/front-end/naj-quick-reference#key-store

Example

const { homedir } = require('os');
const { connect, keyStores } = require('near-api-js');

const keyStore = new keyStores.UnencryptedFileSystemKeyStore(`${homedir()}/.near-credentials`);
const config = {
keyStore, // instance of UnencryptedFileSystemKeyStore
networkId: 'testnet',
nodeUrl: 'https://rpc.testnet.near.org',
walletUrl: 'https://wallet.testnet.near.org',
helperUrl: 'https://helper.testnet.near.org',
explorerUrl: 'https://explorer.testnet.near.org'
};

// inside an async function
const near = await connect(config)
-

Hierarchy

  • KeyStore
    • UnencryptedFileSystemKeyStore

Constructors

Hierarchy

  • KeyStore
    • UnencryptedFileSystemKeyStore

Constructors

Methods

clear getAccounts getKey @@ -10,18 +10,18 @@

Example

constremoveKey
 setKey
 

Constructors

Methods

  • Gets the account(s) files in keyDir/networkId

    +

Returns UnencryptedFileSystemKeyStore

Methods

  • Gets the account(s) files in keyDir/networkId

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<string[]>

  • Gets a KeyPair from an unencrypted file

    +

Returns Promise<string[]>

  • Gets a KeyPair from an unencrypted file

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<KeyPair>

  • Deletes an unencrypted file holding a KeyPair

    +

Returns Promise<KeyPair>

  • Deletes an unencrypted file holding a KeyPair

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

      -

    Returns Promise<void>

  • Store a KeyPair in an unencrypted file

    +

Returns Promise<void>

  • Store a KeyPair in an unencrypted file

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account tied to the key pair

    • keyPair: KeyPair

      The key pair to store in local storage

      -

    Returns Promise<void>

\ No newline at end of file +

Returns Promise<void>

\ No newline at end of file diff --git a/classes/_near_js_providers.failover_rpc_provider.FailoverRpcProvider.html b/classes/_near_js_providers.failover_rpc_provider.FailoverRpcProvider.html index a98293c733..c0b528ef46 100644 --- a/classes/_near_js_providers.failover_rpc_provider.FailoverRpcProvider.html +++ b/classes/_near_js_providers.failover_rpc_provider.FailoverRpcProvider.html @@ -1,6 +1,6 @@ FailoverRpcProvider | Documentation

Client class to interact with the NEAR RPC API.

Hierarchy

  • Provider
    • FailoverRpcProvider

Constructors

Hierarchy

  • Provider
    • FailoverRpcProvider

Constructors

Properties

Accessors

Methods

Constructors

Properties

currentProviderIndex: number

Accessors

Methods

  • Gets access key changes for a given array of accountIds +

Returns FailoverRpcProvider

Properties

currentProviderIndex: number

Accessors

Methods

  • Gets access key changes for a given array of accountIds See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets account changes for a given array of accountIds +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets account changes for a given array of accountIds pass block_id OR finality as blockQuery, not both See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Query for block info from the RPC +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Query for block info from the RPC pass block_id OR finality as blockQuery, not both

    Parameters

    • blockQuery: BlockId | BlockReference

      BlockReference (passing a BlockId is deprecated)

    Returns Promise<BlockResult>

  • Query changes in block from the RPC +

  • Queries for details about a specific chunk appending details of receipts and transactions to the same chunk data provided by a block

    +
  • Queries for details about a specific chunk appending details of receipts and transactions to the same chunk data provided by a block

    Parameters

    • chunkId: ChunkId

      Hash of a chunk ID or shard ID

    Returns Promise<ChunkResult>

  • Gets contract code changes for a given array of accountIds +

  • Gets contract code changes for a given array of accountIds pass block_id OR finality as blockQuery, not both Note: Change is returned in a base64 encoded WASM file See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets contract state changes for a given array of accountIds +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets contract state changes for a given array of accountIds pass block_id OR finality as blockQuery, not both Note: If you pass a keyPrefix it must be base64 encoded See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference
    • keyPrefix: string = ''

    Returns Promise<ChangeResult>

  • Gets the protocol config at a block from RPC

    +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference
    • keyPrefix: string = ''

    Returns Promise<ChangeResult>

  • Gets the protocol config at a block from RPC

    Parameters

    • blockReference: BlockReference | {
          sync_checkpoint: "genesis";
      }

      specifies the block to get the protocol config for

      -

    Returns Promise<NearProtocolConfig>

  • Returns gas price for a specific block_height or block_hash.

    +

Returns Promise<NearProtocolConfig>

  • Gets a light client execution proof for verifying execution outcomes

    +
  • Returns the next light client block as far in the future as possible from the last known hash +

  • Sends a signed transaction to the RPC and waits until transaction is fully complete

    +
  • Type Parameters

    • T extends QueryResponseKind

    Parameters

    • path: string
    • data: string

    Returns Promise<T>

  • Sends a signed transaction to the RPC and immediately returns transaction hash +

  • Sends a signed transaction to the RPC and immediately returns transaction hash See docs for more info

    Parameters

    • signedTransaction: SignedTransaction

      The signed transaction being sent

      -

    Returns Promise<FinalExecutionOutcome>

  • Parameters

    • signedTransaction: SignedTransaction
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Gets single access key changes for a given array of access keys +

Returns Promise<FinalExecutionOutcome>

  • Parameters

    • signedTransaction: SignedTransaction
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Gets single access key changes for a given array of access keys pass block_id OR finality as blockQuery, not both See docs for more info

    -

    Parameters

    • accessKeyArray: AccessKeyWithPublicKey[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets the RPC's status

    +

    Parameters

    • accessKeyArray: AccessKeyWithPublicKey[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets a transaction's status from the RPC

    +
  • Gets a transaction's status from the RPC

    Parameters

    • txHash: string | Uint8Array

      A transaction hash as either a Uint8Array or a base58 encoded string

    • accountId: string

      The NEAR account that signed the transaction

    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Gets a transaction's status from the RPC with receipts +

  • Gets a transaction's status from the RPC with receipts See docs for more info

    Parameters

    • txHash: string | Uint8Array

      The hash of the transaction

    • accountId: string

      The NEAR account that signed the transaction

      -
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Query validators of the epoch defined by the given block id.

    +
  • waitUntil: TxExecutionStatus

Returns Promise<FinalExecutionOutcome>

  • Parameters

    • getResult: ((provider) => Promise<any>)
        • (provider): Promise<any>
        • Parameters

          • provider: Provider

          Returns Promise<any>

    Returns Promise<any>

\ No newline at end of file +
  • Parameters

    • getResult: ((provider) => Promise<any>)
        • (provider): Promise<any>
        • Parameters

          • provider: Provider

          Returns Promise<any>

    Returns Promise<any>

\ No newline at end of file diff --git a/classes/_near_js_providers.json_rpc_provider.JsonRpcProvider.html b/classes/_near_js_providers.json_rpc_provider.JsonRpcProvider.html index 63c33e0dd6..eacf247af9 100644 --- a/classes/_near_js_providers.json_rpc_provider.JsonRpcProvider.html +++ b/classes/_near_js_providers.json_rpc_provider.JsonRpcProvider.html @@ -1,6 +1,6 @@ JsonRpcProvider | Documentation

Client class to interact with the NEAR RPC API.

Hierarchy

  • Provider
    • JsonRpcProvider

Constructors

Hierarchy

  • Provider
    • JsonRpcProvider

Constructors

Methods

  • Gets access key changes for a given array of accountIds +

  • Optional options: Partial<RequestOptions>

Returns JsonRpcProvider

Methods

  • Gets access key changes for a given array of accountIds See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets account changes for a given array of accountIds +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets account changes for a given array of accountIds pass block_id OR finality as blockQuery, not both See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Query for block info from the RPC +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Query for block info from the RPC pass block_id OR finality as blockQuery, not both

    Parameters

    • blockQuery: BlockId | BlockReference

      BlockReference (passing a BlockId is deprecated)

    Returns Promise<BlockResult>

  • Query changes in block from the RPC +

  • Queries for details about a specific chunk appending details of receipts and transactions to the same chunk data provided by a block

    +
  • Queries for details about a specific chunk appending details of receipts and transactions to the same chunk data provided by a block

    Parameters

    • chunkId: ChunkId

      Hash of a chunk ID or shard ID

    Returns Promise<ChunkResult>

  • Gets contract code changes for a given array of accountIds +

  • Gets contract code changes for a given array of accountIds pass block_id OR finality as blockQuery, not both Note: Change is returned in a base64 encoded WASM file See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets contract state changes for a given array of accountIds +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets contract state changes for a given array of accountIds pass block_id OR finality as blockQuery, not both Note: If you pass a keyPrefix it must be base64 encoded See docs for more info

    -

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference
    • keyPrefix: string = ''

    Returns Promise<ChangeResult>

  • Gets the protocol config at a block from RPC

    +

    Parameters

    • accountIdArray: string[]
    • blockQuery: BlockReference
    • keyPrefix: string = ''

    Returns Promise<ChangeResult>

  • Gets the protocol config at a block from RPC

    Parameters

    • blockReference: BlockReference | {
          sync_checkpoint: "genesis";
      }

      specifies the block to get the protocol config for

      -

    Returns Promise<NearProtocolConfig>

  • Returns gas price for a specific block_height or block_hash.

    +

Returns Promise<NearProtocolConfig>

  • Returns gas price for a specific block_height or block_hash.

    Parameters

    • blockId: BlockId

      Block hash or height, or null for latest.

    Returns Promise<GasPrice>

  • Gets a light client execution proof for verifying execution outcomes

    +
  • Returns the next light client block as far in the future as possible from the last known hash +

  • Directly call the RPC specifying the method and params

    +
  • Directly call the RPC specifying the method and params

    Type Parameters

    • T

    Parameters

    • method: string

      RPC method

    • params: object

      Parameters to the method

      -

    Returns Promise<T>

  • Sends a signed transaction to the RPC and waits until transaction is fully complete

    +

Returns Promise<T>

  • Sends a signed transaction to the RPC and immediately returns transaction hash +

  • Sends a signed transaction to the RPC and immediately returns transaction hash See docs for more info

    Parameters

    • signedTransaction: SignedTransaction

      The signed transaction being sent

      -

    Returns Promise<FinalExecutionOutcome>

  • Sends a signed transaction to the RPC

    +

Returns Promise<FinalExecutionOutcome>

  • Sends a signed transaction to the RPC

    Parameters

    • signedTransaction: SignedTransaction

      The signed transaction being sent

      -
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Gets single access key changes for a given array of access keys +

  • waitUntil: TxExecutionStatus

Returns Promise<FinalExecutionOutcome>

  • Gets single access key changes for a given array of access keys pass block_id OR finality as blockQuery, not both See docs for more info

    -

    Parameters

    • accessKeyArray: AccessKeyWithPublicKey[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets the RPC's status

    +

    Parameters

    • accessKeyArray: AccessKeyWithPublicKey[]
    • blockQuery: BlockReference

    Returns Promise<ChangeResult>

  • Gets a transaction's status from the RPC

    +
  • Gets a transaction's status from the RPC

    Parameters

    • txHash: string | Uint8Array

      A transaction hash as either a Uint8Array or a base58 encoded string

    • accountId: string

      The NEAR account that signed the transaction

    • waitUntil: TxExecutionStatus = 'EXECUTED_OPTIMISTIC'

    Returns Promise<FinalExecutionOutcome>

  • Gets a transaction's status from the RPC with receipts +

  • Gets a transaction's status from the RPC with receipts See docs for more info

    Parameters

    • txHash: string | Uint8Array

      The hash of the transaction

    • accountId: string

      The NEAR account that signed the transaction

      -
    • waitUntil: TxExecutionStatus = 'EXECUTED_OPTIMISTIC'

    Returns Promise<FinalExecutionOutcome>

  • Parameters

    • txHash: string
    • accountId: string
    • waitUntil: string

    Returns Promise<FinalExecutionOutcome>

  • Parameters

    • txHash: Uint8Array
    • accountId: string
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

  • Query validators of the epoch defined by the given block id.

    +
  • waitUntil: TxExecutionStatus = 'EXECUTED_OPTIMISTIC'

Returns Promise<FinalExecutionOutcome>

  • Parameters

    • txHash: string
    • accountId: string
    • waitUntil: string

    Returns Promise<FinalExecutionOutcome>

  • Parameters

    • txHash: Uint8Array
    • accountId: string
    • waitUntil: TxExecutionStatus

    Returns Promise<FinalExecutionOutcome>

\ No newline at end of file +
\ No newline at end of file diff --git a/classes/_near_js_signers.in_memory_signer.InMemorySigner.html b/classes/_near_js_signers.in_memory_signer.InMemorySigner.html index 07d4f97b50..879759f949 100644 --- a/classes/_near_js_signers.in_memory_signer.InMemorySigner.html +++ b/classes/_near_js_signers.in_memory_signer.InMemorySigner.html @@ -1,24 +1,24 @@ InMemorySigner | Documentation

Signs using in memory key store.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Properties

keyStore: KeyStore

Methods

  • Creates a public key for the account given

    +

Constructors

Properties

keyStore: KeyStore

Methods

  • Creates a public key for the account given

    Parameters

    • accountId: string

      The NEAR account to assign a public key to

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -
    • Optional keyType: KeyType

    Returns Promise<PublicKey>

  • Gets the existing public key for a given account

    +
  • Optional keyType: KeyType

Returns Promise<PublicKey>

  • Gets the existing public key for a given account

    Parameters

    • Optional accountId: string

      The NEAR account to assign a public key to

    • Optional networkId: string

      The targeted network. (ex. default, betanet, etc…)

    Returns Promise<PublicKey>

    Returns the public key or null if not found

    -
  • Parameters

  • Parameters

    • message: Uint8Array

      A message to be signed, typically a serialized transaction

    • Optional accountId: string

      the NEAR account signing the message

    • Optional networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<Signature>

  • Creates a single account Signer instance with account, network and keyPair provided.

    +

Returns Promise<Signature>

  • Creates a single account Signer instance with account, network and keyPair provided.

    Intended to be useful for temporary keys (e.g. claiming a Linkdrop).

    Parameters

    • networkId: string

      The targeted network. (ex. default, betanet, etc…)

    • accountId: string

      The NEAR account to assign the key pair to

    • keyPair: KeyPair

      The keyPair to use for signing

      -

    Returns Promise<Signer>

\ No newline at end of file +

Returns Promise<Signer>

\ No newline at end of file diff --git a/classes/_near_js_signers.signer.Signer.html b/classes/_near_js_signers.signer.Signer.html index 92ba5f8959..53cd10c157 100644 --- a/classes/_near_js_signers.signer.Signer.html +++ b/classes/_near_js_signers.signer.Signer.html @@ -1,16 +1,16 @@ Signer | Documentation

General signing interface, can be used for in memory signing, RPC singing, external wallet, HSM, etc.

-

Hierarchy (view full)

Constructors

Hierarchy (view full)

Constructors

Methods

  • Creates new key and returns public key.

    Parameters

    • accountId: string

      accountId to retrieve from.

    • Optional networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -
    • Optional keyType: KeyType

    Returns Promise<PublicKey>

  • Returns public key for given account / network.

    +
  • Optional keyType: KeyType

Returns Promise<PublicKey>

  • Returns public key for given account / network.

    Parameters

    • Optional accountId: string

      accountId to retrieve from.

    • Optional networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<PublicKey>

  • Signs given message, by first hashing with sha256.

    +

Returns Promise<PublicKey>

  • Signs given message, by first hashing with sha256.

    Parameters

    • message: Uint8Array

      message to sign.

    • Optional accountId: string

      accountId to use for signing.

    • Optional networkId: string

      The targeted network. (ex. default, betanet, etc…)

      -

    Returns Promise<Signature>

\ No newline at end of file +

Returns Promise<Signature>

\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.AccessKey.html b/classes/_near_js_transactions.actions.AccessKey.html index a91f776224..6de62c0117 100644 --- a/classes/_near_js_transactions.actions.AccessKey.html +++ b/classes/_near_js_transactions.actions.AccessKey.html @@ -1,4 +1,4 @@ -AccessKey | Documentation

Constructors

constructor +AccessKey | Documentation

Constructors

Properties

Constructors

Properties

nonce: bigint
\ No newline at end of file +

Constructors

Properties

nonce: bigint
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.AccessKeyPermission.html b/classes/_near_js_transactions.actions.AccessKeyPermission.html index 12702adf88..a462d59162 100644 --- a/classes/_near_js_transactions.actions.AccessKeyPermission.html +++ b/classes/_near_js_transactions.actions.AccessKeyPermission.html @@ -1,5 +1,5 @@ -AccessKeyPermission | Documentation

Hierarchy

  • Enum
    • AccessKeyPermission

Constructors

constructor +AccessKeyPermission | Documentation

Hierarchy

  • Enum
    • AccessKeyPermission

Constructors

Properties

Constructors

Properties

enum: string
functionCall?: FunctionCallPermission
\ No newline at end of file +

Constructors

Properties

enum: string
functionCall?: FunctionCallPermission
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.Action.html b/classes/_near_js_transactions.actions.Action.html index a1d560a787..43654bf48a 100644 --- a/classes/_near_js_transactions.actions.Action.html +++ b/classes/_near_js_transactions.actions.Action.html @@ -1,6 +1,6 @@ Action | Documentation

Contains a list of the valid transaction Actions available with this API

Hierarchy

  • Enum
    • Action

Constructors

Hierarchy

  • Enum
    • Action

Constructors

Properties

addKey?: AddKey
createAccount?: CreateAccount
deleteAccount?: DeleteAccount
deleteKey?: DeleteKey
deployContract?: DeployContract
enum: string
functionCall?: FunctionCall
signedDelegate?: SignedDelegate
stake?: Stake
transfer?: Transfer
\ No newline at end of file +

Constructors

Properties

addKey?: AddKey
createAccount?: CreateAccount
deleteAccount?: DeleteAccount
deleteKey?: DeleteKey
deployContract?: DeployContract
enum: string
functionCall?: FunctionCall
signedDelegate?: SignedDelegate
stake?: Stake
transfer?: Transfer
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.AddKey.html b/classes/_near_js_transactions.actions.AddKey.html index 8a09bf0141..105c997596 100644 --- a/classes/_near_js_transactions.actions.AddKey.html +++ b/classes/_near_js_transactions.actions.AddKey.html @@ -1,4 +1,4 @@ -AddKey | Documentation

Constructors

constructor +AddKey | Documentation

Constructors

Properties

Constructors

Properties

accessKey: AccessKey
publicKey: PublicKey
\ No newline at end of file +

Constructors

Properties

accessKey: AccessKey
publicKey: PublicKey
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.CreateAccount.html b/classes/_near_js_transactions.actions.CreateAccount.html index dce001d4df..87293257ff 100644 --- a/classes/_near_js_transactions.actions.CreateAccount.html +++ b/classes/_near_js_transactions.actions.CreateAccount.html @@ -1,2 +1,2 @@ -CreateAccount | Documentation

Constructors

constructor +CreateAccount | Documentation

Constructors

Constructors

\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.DeleteAccount.html b/classes/_near_js_transactions.actions.DeleteAccount.html index e2bfef71f2..f3161d17fa 100644 --- a/classes/_near_js_transactions.actions.DeleteAccount.html +++ b/classes/_near_js_transactions.actions.DeleteAccount.html @@ -1,3 +1,3 @@ -DeleteAccount | Documentation

Constructors

constructor +DeleteAccount | Documentation

Constructors

Properties

Constructors

Properties

beneficiaryId: string
\ No newline at end of file +

Constructors

Properties

beneficiaryId: string
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.DeleteKey.html b/classes/_near_js_transactions.actions.DeleteKey.html index e062519906..b049fbe3c0 100644 --- a/classes/_near_js_transactions.actions.DeleteKey.html +++ b/classes/_near_js_transactions.actions.DeleteKey.html @@ -1,3 +1,3 @@ -DeleteKey | Documentation

Constructors

constructor +DeleteKey | Documentation

Constructors

Properties

Constructors

  • Parameters

    • __namedParameters: {
          publicKey: PublicKey;
      }
      • publicKey: PublicKey

    Returns DeleteKey

Properties

publicKey: PublicKey
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          publicKey: PublicKey;
      }
      • publicKey: PublicKey

    Returns DeleteKey

Properties

publicKey: PublicKey
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.DeployContract.html b/classes/_near_js_transactions.actions.DeployContract.html index d036a7a37f..a6db6cc5c2 100644 --- a/classes/_near_js_transactions.actions.DeployContract.html +++ b/classes/_near_js_transactions.actions.DeployContract.html @@ -1,3 +1,3 @@ -DeployContract | Documentation

Constructors

constructor +DeployContract | Documentation

Constructors

Properties

Constructors

Properties

code: Uint8Array
\ No newline at end of file +

Constructors

Properties

code: Uint8Array
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.FullAccessPermission.html b/classes/_near_js_transactions.actions.FullAccessPermission.html index d396719420..539be5f4db 100644 --- a/classes/_near_js_transactions.actions.FullAccessPermission.html +++ b/classes/_near_js_transactions.actions.FullAccessPermission.html @@ -1,2 +1,2 @@ -FullAccessPermission | Documentation

Constructors

constructor +FullAccessPermission | Documentation

Constructors

Constructors

\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.FunctionCall.html b/classes/_near_js_transactions.actions.FunctionCall.html index 15e94933d1..7b473a6945 100644 --- a/classes/_near_js_transactions.actions.FunctionCall.html +++ b/classes/_near_js_transactions.actions.FunctionCall.html @@ -1,6 +1,6 @@ -FunctionCall | Documentation

Constructors

constructor +FunctionCall | Documentation

Constructors

Properties

Constructors

  • Parameters

    • __namedParameters: {
          args: Uint8Array;
          deposit: bigint;
          gas: bigint;
          methodName: string;
      }
      • args: Uint8Array
      • deposit: bigint
      • gas: bigint
      • methodName: string

    Returns FunctionCall

Properties

args: Uint8Array
deposit: bigint
gas: bigint
methodName: string
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          args: Uint8Array;
          deposit: bigint;
          gas: bigint;
          methodName: string;
      }
      • args: Uint8Array
      • deposit: bigint
      • gas: bigint
      • methodName: string

    Returns FunctionCall

Properties

args: Uint8Array
deposit: bigint
gas: bigint
methodName: string
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.FunctionCallPermission.html b/classes/_near_js_transactions.actions.FunctionCallPermission.html index 279dfae9f8..57daed54b2 100644 --- a/classes/_near_js_transactions.actions.FunctionCallPermission.html +++ b/classes/_near_js_transactions.actions.FunctionCallPermission.html @@ -1,5 +1,5 @@ -FunctionCallPermission | Documentation

Constructors

constructor +FunctionCallPermission | Documentation

Constructors

  • Parameters

    • __namedParameters: {
          allowance: bigint;
          methodNames: string[];
          receiverId: string;
      }
      • allowance: bigint
      • methodNames: string[]
      • receiverId: string

    Returns FunctionCallPermission

Properties

allowance?: bigint
methodNames: string[]
receiverId: string
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          allowance: bigint;
          methodNames: string[];
          receiverId: string;
      }
      • allowance: bigint
      • methodNames: string[]
      • receiverId: string

    Returns FunctionCallPermission

Properties

allowance?: bigint
methodNames: string[]
receiverId: string
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.SignedDelegate.html b/classes/_near_js_transactions.actions.SignedDelegate.html index 8c3f0f1ec3..709e9f0584 100644 --- a/classes/_near_js_transactions.actions.SignedDelegate.html +++ b/classes/_near_js_transactions.actions.SignedDelegate.html @@ -1,4 +1,4 @@ -SignedDelegate | Documentation

Constructors

constructor +SignedDelegate | Documentation

Constructors

Properties

Constructors

Properties

delegateAction: DelegateAction
signature: Signature
\ No newline at end of file +

Constructors

Properties

delegateAction: DelegateAction
signature: Signature
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.Stake.html b/classes/_near_js_transactions.actions.Stake.html index 31563c4ce7..a821affaa7 100644 --- a/classes/_near_js_transactions.actions.Stake.html +++ b/classes/_near_js_transactions.actions.Stake.html @@ -1,4 +1,4 @@ -Stake | Documentation

Constructors

constructor +Stake | Documentation

Constructors

Properties

Constructors

  • Parameters

    • __namedParameters: {
          publicKey: PublicKey;
          stake: bigint;
      }
      • publicKey: PublicKey
      • stake: bigint

    Returns Stake

Properties

publicKey: PublicKey
stake: bigint
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          publicKey: PublicKey;
          stake: bigint;
      }
      • publicKey: PublicKey
      • stake: bigint

    Returns Stake

Properties

publicKey: PublicKey
stake: bigint
\ No newline at end of file diff --git a/classes/_near_js_transactions.actions.Transfer.html b/classes/_near_js_transactions.actions.Transfer.html index 9409b67866..20c9b96cac 100644 --- a/classes/_near_js_transactions.actions.Transfer.html +++ b/classes/_near_js_transactions.actions.Transfer.html @@ -1,3 +1,3 @@ -Transfer | Documentation

Constructors

constructor +Transfer | Documentation

Constructors

Properties

Constructors

  • Parameters

    • __namedParameters: {
          deposit: bigint;
      }
      • deposit: bigint

    Returns Transfer

Properties

deposit: bigint
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          deposit: bigint;
      }
      • deposit: bigint

    Returns Transfer

Properties

deposit: bigint
\ No newline at end of file diff --git a/classes/_near_js_transactions.delegate.DelegateAction.html b/classes/_near_js_transactions.delegate.DelegateAction.html index a199ddf3bb..640b2fb524 100644 --- a/classes/_near_js_transactions.delegate.DelegateAction.html +++ b/classes/_near_js_transactions.delegate.DelegateAction.html @@ -1,8 +1,8 @@ -DelegateAction | Documentation

Constructors

constructor +DelegateAction | Documentation

Constructors

  • Parameters

    • __namedParameters: {
          actions: Action[];
          maxBlockHeight: bigint;
          nonce: bigint;
          publicKey: PublicKey;
          receiverId: string;
          senderId: string;
      }
      • actions: Action[]
      • maxBlockHeight: bigint
      • nonce: bigint
      • publicKey: PublicKey
      • receiverId: string
      • senderId: string

    Returns DelegateAction

Properties

actions: Action[]
maxBlockHeight: bigint
nonce: bigint
publicKey: PublicKey
receiverId: string
senderId: string
\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          actions: Action[];
          maxBlockHeight: bigint;
          nonce: bigint;
          publicKey: PublicKey;
          receiverId: string;
          senderId: string;
      }
      • actions: Action[]
      • maxBlockHeight: bigint
      • nonce: bigint
      • publicKey: PublicKey
      • receiverId: string
      • senderId: string

    Returns DelegateAction

Properties

actions: Action[]
maxBlockHeight: bigint
nonce: bigint
publicKey: PublicKey
receiverId: string
senderId: string
\ No newline at end of file diff --git a/classes/_near_js_transactions.prefix.DelegateActionPrefix.html b/classes/_near_js_transactions.prefix.DelegateActionPrefix.html index 4138896f8f..f78fc77114 100644 --- a/classes/_near_js_transactions.prefix.DelegateActionPrefix.html +++ b/classes/_near_js_transactions.prefix.DelegateActionPrefix.html @@ -1,4 +1,4 @@ DelegateActionPrefix | Documentation

Prefix for delegate actions whose signatures must always be distinguishable from valid transaction signatures *

-

Hierarchy

  • ActionableMessagePrefix
    • DelegateActionPrefix

Constructors

Hierarchy

  • ActionableMessagePrefix
    • DelegateActionPrefix

Constructors

Properties

Constructors

Properties

prefix: number
\ No newline at end of file +

Constructors

Properties

prefix: number
\ No newline at end of file diff --git a/classes/_near_js_transactions.schema.SignedTransaction.html b/classes/_near_js_transactions.schema.SignedTransaction.html index bc05447046..b68511e47f 100644 --- a/classes/_near_js_transactions.schema.SignedTransaction.html +++ b/classes/_near_js_transactions.schema.SignedTransaction.html @@ -1,6 +1,6 @@ -SignedTransaction | Documentation

Constructors

constructor +SignedTransaction | Documentation

Constructors

Properties

Methods

Constructors

Properties

signature: Signature
transaction: Transaction

Methods

\ No newline at end of file +

Constructors

Properties

signature: Signature
transaction: Transaction

Methods

\ No newline at end of file diff --git a/classes/_near_js_transactions.schema.Transaction.html b/classes/_near_js_transactions.schema.Transaction.html index d344e23335..b80397f8fb 100644 --- a/classes/_near_js_transactions.schema.Transaction.html +++ b/classes/_near_js_transactions.schema.Transaction.html @@ -1,4 +1,4 @@ -Transaction | Documentation

Constructors

constructor +Transaction | Documentation

Constructors

Properties

actions blockHash nonce @@ -7,4 +7,4 @@ signerId

Methods

Constructors

  • Parameters

    • __namedParameters: {
          actions: Action[];
          blockHash: Uint8Array;
          nonce: bigint;
          publicKey: PublicKey;
          receiverId: string;
          signerId: string;
      }
      • actions: Action[]
      • blockHash: Uint8Array
      • nonce: bigint
      • publicKey: PublicKey
      • receiverId: string
      • signerId: string

    Returns Transaction

Properties

actions: Action[]
blockHash: Uint8Array
nonce: bigint
publicKey: PublicKey
receiverId: string
signerId: string

Methods

  • Returns Uint8Array

\ No newline at end of file +

Constructors

  • Parameters

    • __namedParameters: {
          actions: Action[];
          blockHash: Uint8Array;
          nonce: bigint;
          publicKey: PublicKey;
          receiverId: string;
          signerId: string;
      }
      • actions: Action[]
      • blockHash: Uint8Array
      • nonce: bigint
      • publicKey: PublicKey
      • receiverId: string
      • signerId: string

    Returns Transaction

Properties

actions: Action[]
blockHash: Uint8Array
nonce: bigint
publicKey: PublicKey
receiverId: string
signerId: string

Methods

  • Returns Uint8Array

\ No newline at end of file diff --git a/classes/_near_js_transactions.signature.Signature.html b/classes/_near_js_transactions.signature.Signature.html index 286214b15b..052e68fb1e 100644 --- a/classes/_near_js_transactions.signature.Signature.html +++ b/classes/_near_js_transactions.signature.Signature.html @@ -1,8 +1,8 @@ -Signature | Documentation

Hierarchy

  • Enum
    • Signature

Constructors

constructor +Signature | Documentation

Hierarchy

  • Enum
    • Signature

Constructors

  • Parameters

    • signature: {
          data: Uint8Array;
          keyType: KeyType;
      }
      • data: Uint8Array
      • keyType: KeyType

    Returns Signature

Properties

ed25519Signature?: ED25519Signature
enum: string
secp256k1Signature?: SECP256K1Signature

Accessors

  • get signature(): ED25519Signature | SECP256K1Signature
  • Returns ED25519Signature | SECP256K1Signature

\ No newline at end of file +

Constructors

  • Parameters

    • signature: {
          data: Uint8Array;
          keyType: KeyType;
      }
      • data: Uint8Array
      • keyType: KeyType

    Returns Signature

Properties

ed25519Signature?: ED25519Signature
enum: string
secp256k1Signature?: SECP256K1Signature

Accessors

  • get signature(): ED25519Signature | SECP256K1Signature
  • Returns ED25519Signature | SECP256K1Signature

\ No newline at end of file diff --git a/classes/_near_js_types.assignable.Assignable.html b/classes/_near_js_types.assignable.Assignable.html index 137e3f0921..08bba910e5 100644 --- a/classes/_near_js_types.assignable.Assignable.html +++ b/classes/_near_js_types.assignable.Assignable.html @@ -1,2 +1,2 @@ -Assignable | Documentation

Constructors

Constructors

\ No newline at end of file +Assignable | Documentation

Constructors

Constructors

\ No newline at end of file diff --git a/classes/_near_js_types.enum.Enum.html b/classes/_near_js_types.enum.Enum.html index 468e34fb64..ed350e2bad 100644 --- a/classes/_near_js_types.enum.Enum.html +++ b/classes/_near_js_types.enum.Enum.html @@ -1,3 +1,3 @@ -Enum | Documentation

Constructors

constructor +Enum | Documentation

Constructors

Properties

Constructors

Properties

enum: string
\ No newline at end of file +

Constructors

Properties

enum: string
\ No newline at end of file diff --git a/classes/_near_js_types.errors.ArgumentTypeError.html b/classes/_near_js_types.errors.ArgumentTypeError.html index aef2ff4e22..4b1d89d77d 100644 --- a/classes/_near_js_types.errors.ArgumentTypeError.html +++ b/classes/_near_js_types.errors.ArgumentTypeError.html @@ -1,4 +1,4 @@ -ArgumentTypeError | Documentation

Hierarchy

  • Error
    • ArgumentTypeError

Constructors

constructor +ArgumentTypeError | Documentation

Hierarchy

  • Error
    • ArgumentTypeError

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_types.errors.ErrorContext.html b/classes/_near_js_types.errors.ErrorContext.html index 119b4d5061..a6cb5eef70 100644 --- a/classes/_near_js_types.errors.ErrorContext.html +++ b/classes/_near_js_types.errors.ErrorContext.html @@ -1,3 +1,3 @@ -ErrorContext | Documentation

Constructors

constructor +ErrorContext | Documentation

Constructors

Properties

Constructors

Properties

transactionHash?: string
\ No newline at end of file +

Constructors

Properties

transactionHash?: string
\ No newline at end of file diff --git a/classes/_near_js_types.errors.PositionalArgsError.html b/classes/_near_js_types.errors.PositionalArgsError.html index b93600ed5f..1481a6351c 100644 --- a/classes/_near_js_types.errors.PositionalArgsError.html +++ b/classes/_near_js_types.errors.PositionalArgsError.html @@ -1,4 +1,4 @@ -PositionalArgsError | Documentation

Hierarchy

  • Error
    • PositionalArgsError

Constructors

constructor +PositionalArgsError | Documentation

Hierarchy

  • Error
    • PositionalArgsError

Constructors

Properties

Methods

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

+

Constructors

Properties

cause?: unknown
message: string
name: string
stack?: string
prepareStackTrace?: ((err, stackTraces) => any)

Optional override for formatting stack traces

Type declaration

    • (err, stackTraces): any
    • Parameters

      • err: Error
      • stackTraces: CallSite[]

      Returns any

stackTraceLimit: number

Methods

  • Create .stack property on a target object

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

\ No newline at end of file diff --git a/classes/_near_js_types.errors.TypedError.html b/classes/_near_js_types.errors.TypedError.html index a0c2fb7b6b..4f3b715d0f 100644 --- a/classes/_near_js_types.errors.TypedError.html +++ b/classes/_near_js_types.errors.TypedError.html @@ -1,4 +1,4 @@ -TypedError | Documentation

Hierarchy

  • Error
    • TypedError

    Constructors

    constructor +TypedError | Documentation

    Hierarchy

    • Error
      • TypedError

      Constructors

      Properties

      cause?: unknown
      context?: ErrorContext
      message: string
      name: string
      stack?: string
      type: string
      prepareStackTrace?: ((err, stackTraces) => any)

      Optional override for formatting stack traces

      +

      Constructors

      Properties

      cause?: unknown
      context?: ErrorContext
      message: string
      name: string
      stack?: string
      type: string
      prepareStackTrace?: ((err, stackTraces) => any)

      Optional override for formatting stack traces

      Type declaration

        • (err, stackTraces): any
        • Parameters

          • err: Error
          • stackTraces: CallSite[]

          Returns any

      stackTraceLimit: number

      Methods

      • Create .stack property on a target object

        Parameters

        • targetObject: object
        • Optional constructorOpt: Function

        Returns void

      \ No newline at end of file diff --git a/classes/_near_js_utils.errors_rpc_errors.ServerError.html b/classes/_near_js_utils.errors_rpc_errors.ServerError.html index 676422d0b4..dad6489766 100644 --- a/classes/_near_js_utils.errors_rpc_errors.ServerError.html +++ b/classes/_near_js_utils.errors_rpc_errors.ServerError.html @@ -1,4 +1,4 @@ -ServerError | Documentation

      Hierarchy

      • TypedError
        • ServerError

      Constructors

      constructor +ServerError | Documentation

      Hierarchy

      • TypedError
        • ServerError

      Constructors

      Properties

      cause? context? message diff --git a/classes/_near_js_utils.logger_console_logger.ConsoleLogger.html b/classes/_near_js_utils.logger_console_logger.ConsoleLogger.html index 6ad1e6cd2d..a31ee473a2 100644 --- a/classes/_near_js_utils.logger_console_logger.ConsoleLogger.html +++ b/classes/_near_js_utils.logger_console_logger.ConsoleLogger.html @@ -1,4 +1,4 @@ -ConsoleLogger | Documentation

      Implements

      Constructors

      constructor +ConsoleLogger | Documentation

      Implements

      Constructors

      Properties

      Methods

      debug error @@ -8,10 +8,10 @@ print verbose warn -

      Constructors

      Properties

      logLevels: LogLevel[]

      Methods

      \ No newline at end of file +

      Constructors

      Properties

      logLevels: LogLevel[]

      Methods

      \ No newline at end of file diff --git a/classes/_near_js_utils.logger_logger.Logger.html b/classes/_near_js_utils.logger_logger.Logger.html index 641464bbe9..b39d89cc7a 100644 --- a/classes/_near_js_utils.logger_logger.Logger.html +++ b/classes/_near_js_utils.logger_logger.Logger.html @@ -1,5 +1,5 @@ Logger | Documentation

      Used to log the library messages

      -

      Constructors

      Constructors

      Properties

      Methods

      debug error @@ -8,10 +8,10 @@ overrideLogger verbose warn -

      Constructors

      Properties

      instanceRef?: LoggerService = DEFAULT_LOGGER

      Methods

      \ No newline at end of file +

      Constructors

      Properties

      instanceRef?: LoggerService = DEFAULT_LOGGER

      Methods

      \ No newline at end of file diff --git a/classes/_near_js_wallet_account.near.Near.html b/classes/_near_js_wallet_account.near.Near.html index 1657c704f3..6340a6e14d 100644 --- a/classes/_near_js_wallet_account.near.Near.html +++ b/classes/_near_js_wallet_account.near.Near.html @@ -1,17 +1,17 @@ Near | Documentation

      This is the main class developers should use to interact with NEAR.

      Example

      const near = new Near(config);
       
      -

      Constructors

      Constructors

      Properties

      accountCreator: AccountCreator
      config: any
      connection: Connection

      Methods

      • Create an account using the AccountCreator. Either:

        +

      Constructors

      Properties

      accountCreator: AccountCreator
      config: any
      connection: Connection

      Methods

      \ No newline at end of file +
      \ No newline at end of file diff --git a/classes/_near_js_wallet_account.walletAccount.ConnectedWalletAccount.html b/classes/_near_js_wallet_account.walletAccount.ConnectedWalletAccount.html index 5ee0e7f8e4..7b9e6ab527 100644 --- a/classes/_near_js_wallet_account.walletAccount.ConnectedWalletAccount.html +++ b/classes/_near_js_wallet_account.walletAccount.ConnectedWalletAccount.html @@ -1,5 +1,5 @@ ConnectedWalletAccount | Documentation

      Account implementation which redirects to wallet using WalletConnection when no local key is available.

      -

      Hierarchy (view full)

      Constructors

      Hierarchy (view full)

      Constructors

      Properties

      Constructors

      Properties

      accountId: string
      connection: Connection
      walletConnection: WalletConnection

      Methods

      • Helper function returning the access key (if it exists) to the receiver that grants the designated permission

        +

      Constructors

      Properties

      accountId: string
      connection: Connection
      walletConnection: WalletConnection

      Methods

      • Helper function returning the access key (if it exists) to the receiver that grants the designated permission

        Parameters

        • receiverId: string

          The NEAR account seeking the access key for a transaction

        • actions: Action[]

          The action(s) sought to gain access to

        • Optional localKey: PublicKey

          A local public key provided to check for access

          -

        Returns Promise<any>

      • Check if given access key allows the function call or method attempted in transaction

        +

      Returns Promise<any>

      • Check if given access key allows the function call or method attempted in transaction

        Parameters

        • accessKey: any

          Array of {access_key: AccessKey, public_key: PublicKey} items

        • receiverId: string

          The NEAR account attempting to have access

        • actions: Action[]

          The action(s) needed to be checked for access

          -

        Returns Promise<boolean>

      • Parameters

        • publicKey: string | PublicKey

          A public key to be associated with the contract

        • Optional contractId: string

          NEAR account where the contract is deployed

        • Optional methodNames: string | string[]

          The method names on the contract that should be allowed to be called. Pass null for no method names and '' or [] for any method names.

        • Optional amount: bigint

          Payment in yoctoⓃ that is sent to the contract during this function call

          @@ -70,7 +70,7 @@

          Todo

          expand this API to support more options.

        Returns Promise<FinalExecutionOutcome>

      • Create a signed transaction which can be broadcast to the network

        Parameters

        • receiverId: string

          NEAR account receiving the transaction

        • actions: Action[]

          list of actions to perform as part of the transaction

        Returns Promise<[Uint8Array, SignedTransaction]>

        See

        JsonRpcProvider.sendTransaction

        diff --git a/classes/_near_js_wallet_account.walletAccount.WalletConnection.html b/classes/_near_js_wallet_account.walletAccount.WalletConnection.html index 14e5830c08..c47971e5da 100644 --- a/classes/_near_js_wallet_account.walletAccount.WalletConnection.html +++ b/classes/_near_js_wallet_account.walletAccount.WalletConnection.html @@ -2,7 +2,7 @@

        See

        https://docs.near.org/tools/near-api-js/quick-reference#wallet

        Example

        // create new WalletConnection instance
        const wallet = new WalletConnection(near, 'my-app');

        // If not signed in redirect to the NEAR wallet to sign in
        // keys will be stored in the BrowserLocalStorageKeyStore
        if(!wallet.isSignedIn()) return wallet.requestSignIn()
        -

      Constructors

      Constructors

      Methods

      Constructors

      Methods

      • Returns authorized Account ID.

        +

      Constructors

      Methods

      • Returns authorized Account ID.

        Returns string

        Example

        const wallet = new WalletConnection(near, 'my-app');
        wallet.getAccountId();
        -
      • Returns true, if this WalletConnection is authorized with the wallet.

        Returns boolean

        Example

        const wallet = new WalletConnection(near, 'my-app');
        wallet.isSignedIn();
        -
      • Returns promise of completing signing in after redirecting from wallet

        Returns Promise<boolean>

        Example

        // on login callback page
        const wallet = new WalletConnection(near, 'my-app');
        wallet.isSignedIn(); // false
        await wallet.isSignedInAsync(); // true
        -
      • Redirects current page to the wallet authentication page.

        Parameters

        • options: SignInOptions

          An optional options object

        Returns Promise<void>

        Example

        const wallet = new WalletConnection(near, 'my-app');
        // redirects to the NEAR Wallet
        wallet.requestSignIn({ contractId: 'account-with-deploy-contract.near' });
        -
      • Constructs string URL to the wallet authentication page.

        Parameters

        • options: SignInOptions

          An optional options object

        Returns Promise<string>

        Example

        const wallet = new WalletConnection(near, 'my-app');
        // return string URL to the NEAR Wallet
        const url = await wallet.requestSignInUrl({ contractId: 'account-with-deploy-contract.near' });
        -
      • Requests the user to quickly sign for a transaction or batch of transactions by redirecting to the wallet.

        Parameters

        • options: RequestSignTransactionsOptions

          A required options object

          -

        Returns void

      • Constructs string URL to the wallet to sign a transaction or batch of transactions.

        +

      Returns void

      • Constructs string URL to the wallet to sign a transaction or batch of transactions.

        Parameters

        • options: RequestSignTransactionsOptions

          A required options object

          -

        Returns string

      • Sign out from the current account

        +

      Returns string

      \ No newline at end of file +
      \ No newline at end of file diff --git a/enums/_near_js_accounts.types.MultisigDeleteRequestRejectionError.html b/enums/_near_js_accounts.types.MultisigDeleteRequestRejectionError.html index 7b273f8f35..b28099d935 100644 --- a/enums/_near_js_accounts.types.MultisigDeleteRequestRejectionError.html +++ b/enums/_near_js_accounts.types.MultisigDeleteRequestRejectionError.html @@ -1,6 +1,6 @@ -MultisigDeleteRequestRejectionError | Documentation

      Enumeration MultisigDeleteRequestRejectionError

      Enumeration Members

      CANNOT_DESERIALIZE_STATE +MultisigDeleteRequestRejectionError | Documentation

      Enumeration MultisigDeleteRequestRejectionError

      Enumeration Members

      CANNOT_DESERIALIZE_STATE: "Cannot deserialize the contract state"
      METHOD_NOT_FOUND: "Contract method is not found"
      MULTISIG_NOT_INITIALIZED: "Smart contract panicked: Multisig contract should be initialized before usage"
      NO_SUCH_REQUEST: "Smart contract panicked: panicked at 'No such request: either wrong number or already confirmed'"
      REQUEST_COOLDOWN_ERROR: "Request cannot be deleted immediately after creation."
      \ No newline at end of file +

      Enumeration Members

      CANNOT_DESERIALIZE_STATE: "Cannot deserialize the contract state"
      METHOD_NOT_FOUND: "Contract method is not found"
      MULTISIG_NOT_INITIALIZED: "Smart contract panicked: Multisig contract should be initialized before usage"
      NO_SUCH_REQUEST: "Smart contract panicked: panicked at 'No such request: either wrong number or already confirmed'"
      REQUEST_COOLDOWN_ERROR: "Request cannot be deleted immediately after creation."
      \ No newline at end of file diff --git a/enums/_near_js_accounts.types.MultisigStateStatus.html b/enums/_near_js_accounts.types.MultisigStateStatus.html index d32430d26e..6c3f66d6f4 100644 --- a/enums/_near_js_accounts.types.MultisigStateStatus.html +++ b/enums/_near_js_accounts.types.MultisigStateStatus.html @@ -1,5 +1,5 @@ -MultisigStateStatus | Documentation

      Enumeration Members

      INVALID_STATE +MultisigStateStatus | Documentation

      Enumeration Members

      INVALID_STATE: 0
      STATE_NOT_INITIALIZED: 1
      UNKNOWN_STATE: 3
      VALID_STATE: 2
      \ No newline at end of file +

      Enumeration Members

      INVALID_STATE: 0
      STATE_NOT_INITIALIZED: 1
      UNKNOWN_STATE: 3
      VALID_STATE: 2
      \ No newline at end of file diff --git a/enums/_near_js_crypto.constants.KeyType.html b/enums/_near_js_crypto.constants.KeyType.html index ec47e24d1b..f143ba0009 100644 --- a/enums/_near_js_crypto.constants.KeyType.html +++ b/enums/_near_js_crypto.constants.KeyType.html @@ -1,4 +1,4 @@ KeyType | Documentation

      All supported key types

      -

      Enumeration Members

      Enumeration Members

      Enumeration Members

      ED25519: 0
      SECP256K1: 1
      \ No newline at end of file +

      Enumeration Members

      ED25519: 0
      SECP256K1: 1
      \ No newline at end of file diff --git a/enums/_near_js_types.provider_light_client.IdType.html b/enums/_near_js_types.provider_light_client.IdType.html index 87305e628e..1d5e942dd1 100644 --- a/enums/_near_js_types.provider_light_client.IdType.html +++ b/enums/_near_js_types.provider_light_client.IdType.html @@ -1,3 +1,3 @@ -IdType | Documentation

      Enumeration Members

      Receipt +IdType | Documentation

      Enumeration Members

      Enumeration Members

      Receipt: "receipt"
      Transaction: "transaction"
      \ No newline at end of file +

      Enumeration Members

      Receipt: "receipt"
      Transaction: "transaction"
      \ No newline at end of file diff --git a/enums/_near_js_types.provider_response.ExecutionStatusBasic.html b/enums/_near_js_types.provider_response.ExecutionStatusBasic.html index 49a09bb239..efbcb22559 100644 --- a/enums/_near_js_types.provider_response.ExecutionStatusBasic.html +++ b/enums/_near_js_types.provider_response.ExecutionStatusBasic.html @@ -1,4 +1,4 @@ -ExecutionStatusBasic | Documentation

      Enumeration Members

      Failure +ExecutionStatusBasic | Documentation

      Enumeration Members

      Enumeration Members

      Failure: "Failure"
      Pending: "Pending"
      Unknown: "Unknown"
      \ No newline at end of file +

      Enumeration Members

      Failure: "Failure"
      Pending: "Pending"
      Unknown: "Unknown"
      \ No newline at end of file diff --git a/enums/_near_js_types.provider_response.FinalExecutionStatusBasic.html b/enums/_near_js_types.provider_response.FinalExecutionStatusBasic.html index 7b2a5c1cbd..9dcc045e2c 100644 --- a/enums/_near_js_types.provider_response.FinalExecutionStatusBasic.html +++ b/enums/_near_js_types.provider_response.FinalExecutionStatusBasic.html @@ -1,4 +1,4 @@ -FinalExecutionStatusBasic | Documentation

      Enumeration Members

      Failure +FinalExecutionStatusBasic | Documentation

      Enumeration Members

      Enumeration Members

      Failure: "Failure"
      NotStarted: "NotStarted"
      Started: "Started"
      \ No newline at end of file +

      Enumeration Members

      Failure: "Failure"
      NotStarted: "NotStarted"
      Started: "Started"
      \ No newline at end of file diff --git a/functions/_near_js_accounts.utils.encodeJSContractArgs.html b/functions/_near_js_accounts.utils.encodeJSContractArgs.html index 15f91c7c8b..b9af95b0a3 100644 --- a/functions/_near_js_accounts.utils.encodeJSContractArgs.html +++ b/functions/_near_js_accounts.utils.encodeJSContractArgs.html @@ -1 +1 @@ -encodeJSContractArgs | Documentation
      \ No newline at end of file +encodeJSContractArgs | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_accounts.utils.validateArgs.html b/functions/_near_js_accounts.utils.validateArgs.html index 53ed064838..40ed17d69b 100644 --- a/functions/_near_js_accounts.utils.validateArgs.html +++ b/functions/_near_js_accounts.utils.validateArgs.html @@ -1 +1 @@ -validateArgs | Documentation
      \ No newline at end of file +validateArgs | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_accounts.utils.viewFunction.html b/functions/_near_js_accounts.utils.viewFunction.html index 82c42707b0..016fd83d3a 100644 --- a/functions/_near_js_accounts.utils.viewFunction.html +++ b/functions/_near_js_accounts.utils.viewFunction.html @@ -1,3 +1,3 @@ viewFunction | Documentation
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_accounts.utils.viewState.html b/functions/_near_js_accounts.utils.viewState.html index 6360ef32f0..f32835da24 100644 --- a/functions/_near_js_accounts.utils.viewState.html +++ b/functions/_near_js_accounts.utils.viewState.html @@ -5,4 +5,4 @@
    • prefix: string | Uint8Array

      allows to filter which keys should be returned. Empty prefix means all keys. String prefix is utf-8 encoded.

    • blockQuery: BlockReference = ...

      specifies which block to query state at. By default returns last "optimistic" block (i.e. not necessarily finalized).

    • Returns Promise<{
          key: Buffer;
          value: Buffer;
      }[]>

      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.index-1.createKey.html b/functions/_near_js_biometric_ed25519.index-1.createKey.html index 125cfa3212..c5eb6806f3 100644 --- a/functions/_near_js_biometric_ed25519.index-1.createKey.html +++ b/functions/_near_js_biometric_ed25519.index-1.createKey.html @@ -1 +1 @@ -createKey | Documentation
      \ No newline at end of file +createKey | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.index-1.getKeys.html b/functions/_near_js_biometric_ed25519.index-1.getKeys.html index 57ef202404..2a649b7d28 100644 --- a/functions/_near_js_biometric_ed25519.index-1.getKeys.html +++ b/functions/_near_js_biometric_ed25519.index-1.getKeys.html @@ -1 +1 @@ -getKeys | Documentation
      \ No newline at end of file +getKeys | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.index-1.isDeviceSupported.html b/functions/_near_js_biometric_ed25519.index-1.isDeviceSupported.html index 1ace16a0ed..67a7ff23d1 100644 --- a/functions/_near_js_biometric_ed25519.index-1.isDeviceSupported.html +++ b/functions/_near_js_biometric_ed25519.index-1.isDeviceSupported.html @@ -1 +1 @@ -isDeviceSupported | Documentation
      \ No newline at end of file +isDeviceSupported | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.index-1.isPassKeyAvailable.html b/functions/_near_js_biometric_ed25519.index-1.isPassKeyAvailable.html index 199c113c54..8d0d7e6e04 100644 --- a/functions/_near_js_biometric_ed25519.index-1.isPassKeyAvailable.html +++ b/functions/_near_js_biometric_ed25519.index-1.isPassKeyAvailable.html @@ -1 +1 @@ -isPassKeyAvailable | Documentation
      \ No newline at end of file +isPassKeyAvailable | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.get64BytePublicKeyFromPEM.html b/functions/_near_js_biometric_ed25519.utils.get64BytePublicKeyFromPEM.html index 8609d81628..857552d564 100644 --- a/functions/_near_js_biometric_ed25519.utils.get64BytePublicKeyFromPEM.html +++ b/functions/_near_js_biometric_ed25519.utils.get64BytePublicKeyFromPEM.html @@ -1 +1 @@ -get64BytePublicKeyFromPEM | Documentation
      \ No newline at end of file +get64BytePublicKeyFromPEM | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.preformatGetAssertReq.html b/functions/_near_js_biometric_ed25519.utils.preformatGetAssertReq.html index 1dc0ef1a75..045da24fb7 100644 --- a/functions/_near_js_biometric_ed25519.utils.preformatGetAssertReq.html +++ b/functions/_near_js_biometric_ed25519.utils.preformatGetAssertReq.html @@ -1 +1 @@ -preformatGetAssertReq | Documentation
      \ No newline at end of file +preformatGetAssertReq | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.preformatMakeCredReq.html b/functions/_near_js_biometric_ed25519.utils.preformatMakeCredReq.html index df980f5c61..3ef0c0a998 100644 --- a/functions/_near_js_biometric_ed25519.utils.preformatMakeCredReq.html +++ b/functions/_near_js_biometric_ed25519.utils.preformatMakeCredReq.html @@ -1 +1 @@ -preformatMakeCredReq | Documentation
      \ No newline at end of file +preformatMakeCredReq | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.publicKeyCredentialToJSON.html b/functions/_near_js_biometric_ed25519.utils.publicKeyCredentialToJSON.html index 156a11fdb5..811346cc5a 100644 --- a/functions/_near_js_biometric_ed25519.utils.publicKeyCredentialToJSON.html +++ b/functions/_near_js_biometric_ed25519.utils.publicKeyCredentialToJSON.html @@ -1 +1 @@ -publicKeyCredentialToJSON | Documentation
      \ No newline at end of file +publicKeyCredentialToJSON | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.recoverPublicKey.html b/functions/_near_js_biometric_ed25519.utils.recoverPublicKey.html index 3d3a252b4a..821e6b1b31 100644 --- a/functions/_near_js_biometric_ed25519.utils.recoverPublicKey.html +++ b/functions/_near_js_biometric_ed25519.utils.recoverPublicKey.html @@ -1 +1 @@ -recoverPublicKey | Documentation
      \ No newline at end of file +recoverPublicKey | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.sanitizeCreateKeyResponse.html b/functions/_near_js_biometric_ed25519.utils.sanitizeCreateKeyResponse.html index a87f25fa68..57e63fe99f 100644 --- a/functions/_near_js_biometric_ed25519.utils.sanitizeCreateKeyResponse.html +++ b/functions/_near_js_biometric_ed25519.utils.sanitizeCreateKeyResponse.html @@ -1 +1 @@ -sanitizeCreateKeyResponse | Documentation
      • Parameters

        • res: Credential

        Returns Credential | {
            authenticatorAttachment: string;
            id: string;
            rawId: any;
            response: {
                attestationObject: any;
                clientDataJSON: any;
            };
            type: string;
            getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
        }

      \ No newline at end of file +sanitizeCreateKeyResponse | Documentation
      • Parameters

        • res: Credential

        Returns Credential | {
            authenticatorAttachment: string;
            id: string;
            rawId: any;
            response: {
                attestationObject: any;
                clientDataJSON: any;
            };
            type: string;
            getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
        }

      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.sanitizeGetKeyResponse.html b/functions/_near_js_biometric_ed25519.utils.sanitizeGetKeyResponse.html index 48df3275e7..3033f01118 100644 --- a/functions/_near_js_biometric_ed25519.utils.sanitizeGetKeyResponse.html +++ b/functions/_near_js_biometric_ed25519.utils.sanitizeGetKeyResponse.html @@ -1 +1 @@ -sanitizeGetKeyResponse | Documentation
      • Parameters

        • res: Credential

        Returns Credential | {
            authenticatorAttachment: string;
            id: string;
            rawId: any;
            response: {
                authenticatorData: any;
                clientDataJSON: any;
                signature: any;
                userHandle: any;
            };
            type: string;
            getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
        }

      \ No newline at end of file +sanitizeGetKeyResponse | Documentation
      • Parameters

        • res: Credential

        Returns Credential | {
            authenticatorAttachment: string;
            id: string;
            rawId: any;
            response: {
                authenticatorData: any;
                clientDataJSON: any;
                signature: any;
                userHandle: any;
            };
            type: string;
            getClientExtensionResults(): AuthenticationExtensionsClientOutputs;
        }

      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.uint8ArrayToBigInt.html b/functions/_near_js_biometric_ed25519.utils.uint8ArrayToBigInt.html index 7fc46ecfd0..861074dce2 100644 --- a/functions/_near_js_biometric_ed25519.utils.uint8ArrayToBigInt.html +++ b/functions/_near_js_biometric_ed25519.utils.uint8ArrayToBigInt.html @@ -1 +1 @@ -uint8ArrayToBigInt | Documentation
      \ No newline at end of file +uint8ArrayToBigInt | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_biometric_ed25519.utils.validateUsername.html b/functions/_near_js_biometric_ed25519.utils.validateUsername.html index 7cbf858a17..61c1415f30 100644 --- a/functions/_near_js_biometric_ed25519.utils.validateUsername.html +++ b/functions/_near_js_biometric_ed25519.utils.validateUsername.html @@ -1 +1 @@ -validateUsername | Documentation
      \ No newline at end of file +validateUsername | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_iframe_rpc.types.isRPCMessage.html b/functions/_near_js_iframe_rpc.types.isRPCMessage.html index d4c4d9b336..71b8cca818 100644 --- a/functions/_near_js_iframe_rpc.types.isRPCMessage.html +++ b/functions/_near_js_iframe_rpc.types.isRPCMessage.html @@ -1 +1 @@ -isRPCMessage | Documentation
      \ No newline at end of file +isRPCMessage | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_providers.exponential_backoff.exponentialBackoff.html b/functions/_near_js_providers.exponential_backoff.exponentialBackoff.html index ce705e74ac..44e8ba351f 100644 --- a/functions/_near_js_providers.exponential_backoff.exponentialBackoff.html +++ b/functions/_near_js_providers.exponential_backoff.exponentialBackoff.html @@ -1 +1 @@ -exponentialBackoff | Documentation
      • Parameters

        • startWaitTime: any
        • retryNumber: any
        • waitBackoff: any
        • getResult: any

        Returns Promise<any>

      \ No newline at end of file +exponentialBackoff | Documentation
      • Parameters

        • startWaitTime: any
        • retryNumber: any
        • waitBackoff: any
        • getResult: any

        Returns Promise<any>

      \ No newline at end of file diff --git a/functions/_near_js_providers.fetch_json.fetchJsonRpc.html b/functions/_near_js_providers.fetch_json.fetchJsonRpc.html index cb4b0182f4..5653a7fe5c 100644 --- a/functions/_near_js_providers.fetch_json.fetchJsonRpc.html +++ b/functions/_near_js_providers.fetch_json.fetchJsonRpc.html @@ -3,4 +3,4 @@
    • json: JsonRpcRequest

      Request body

    • headers: object

      HTTP headers to include with the request

    • Returns Promise<any>

      Promise }arsed JSON response from the HTTP request.

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_transactions.action_creators.stringifyJsonOrBytes.html b/functions/_near_js_transactions.action_creators.stringifyJsonOrBytes.html index df62e6e6ca..96f72c01b1 100644 --- a/functions/_near_js_transactions.action_creators.stringifyJsonOrBytes.html +++ b/functions/_near_js_transactions.action_creators.stringifyJsonOrBytes.html @@ -1,4 +1,4 @@ stringifyJsonOrBytes | Documentation
      • Converts an input argument to a Buffer, handling cases for both JSON and Uint8Array.

        Parameters

        • args: any

          The input argument, either JSON object or Uint8Array.

        Returns Buffer

        A Buffer representation of the input argument.

        -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_transactions.create_transaction.createTransaction.html b/functions/_near_js_transactions.create_transaction.createTransaction.html index 13046c0e2a..4653063846 100644 --- a/functions/_near_js_transactions.create_transaction.createTransaction.html +++ b/functions/_near_js_transactions.create_transaction.createTransaction.html @@ -6,4 +6,4 @@
    • actions: Action[]

      An array of transaction actions to be performed.

    • blockHash: Uint8Array

      The hash of the block where the transaction will be included.

    • Returns Transaction

      A new transaction object initialized with the provided parameters.

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_transactions.delegate.buildDelegateAction.html b/functions/_near_js_transactions.delegate.buildDelegateAction.html index 963b14cafc..263868d0c0 100644 --- a/functions/_near_js_transactions.delegate.buildDelegateAction.html +++ b/functions/_near_js_transactions.delegate.buildDelegateAction.html @@ -1,2 +1,2 @@ buildDelegateAction | Documentation
      \ No newline at end of file +

      Parameters

      Returns DelegateAction

      \ No newline at end of file diff --git a/functions/_near_js_transactions.schema.decodeSignedTransaction.html b/functions/_near_js_transactions.schema.decodeSignedTransaction.html index f4c106916a..ed026f2256 100644 --- a/functions/_near_js_transactions.schema.decodeSignedTransaction.html +++ b/functions/_near_js_transactions.schema.decodeSignedTransaction.html @@ -1,3 +1,3 @@ decodeSignedTransaction | Documentation
      \ No newline at end of file +

      Returns SignedTransaction

      \ No newline at end of file diff --git a/functions/_near_js_transactions.schema.decodeTransaction.html b/functions/_near_js_transactions.schema.decodeTransaction.html index 49338b0e99..9467428d9d 100644 --- a/functions/_near_js_transactions.schema.decodeTransaction.html +++ b/functions/_near_js_transactions.schema.decodeTransaction.html @@ -1,3 +1,3 @@ decodeTransaction | Documentation
      • Borsh-decode a Transaction instance from a buffer

        Parameters

        • bytes: Uint8Array

          Uint8Array data to be decoded

          -

        Returns Transaction

      \ No newline at end of file +

      Returns Transaction

      \ No newline at end of file diff --git a/functions/_near_js_transactions.schema.encodeDelegateAction.html b/functions/_near_js_transactions.schema.encodeDelegateAction.html index 4c19f7c59a..4fe122ca78 100644 --- a/functions/_near_js_transactions.schema.encodeDelegateAction.html +++ b/functions/_near_js_transactions.schema.encodeDelegateAction.html @@ -2,4 +2,4 @@ NB per NEP-461 this requires a Borsh-serialized prefix specific to delegate actions, ensuring signed delegate actions may never be identical to signed transactions with the same fields

      Parameters

      • delegateAction: DelegateAction

        Delegate action to be signed by the meta transaction sender

        -

      Returns Uint8Array

      \ No newline at end of file +

      Returns Uint8Array

      \ No newline at end of file diff --git a/functions/_near_js_transactions.schema.encodeSignedDelegate.html b/functions/_near_js_transactions.schema.encodeSignedDelegate.html index c624b97b28..6cb2490899 100644 --- a/functions/_near_js_transactions.schema.encodeSignedDelegate.html +++ b/functions/_near_js_transactions.schema.encodeSignedDelegate.html @@ -1,3 +1,3 @@ encodeSignedDelegate | Documentation
      • Borsh-encode a signed delegate for validation and execution by a relayer

        Parameters

        • signedDelegate: SignedDelegate

          Signed delegate to be executed in a meta transaction

          -

        Returns Uint8Array

      \ No newline at end of file +

      Returns Uint8Array

      \ No newline at end of file diff --git a/functions/_near_js_transactions.schema.encodeTransaction.html b/functions/_near_js_transactions.schema.encodeTransaction.html index 80840c4adc..48fab14244 100644 --- a/functions/_near_js_transactions.schema.encodeTransaction.html +++ b/functions/_near_js_transactions.schema.encodeTransaction.html @@ -1,4 +1,4 @@ encodeTransaction | Documentation
      • Borsh-encode a transaction or signed transaction into a serialized form.

        Parameters

        Returns Uint8Array

        A serialized representation of the input transaction.

        -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_transactions.sign.signDelegateAction.html b/functions/_near_js_transactions.sign.signDelegateAction.html index 65eae36adf..dc9d3fc4a7 100644 --- a/functions/_near_js_transactions.sign.signDelegateAction.html +++ b/functions/_near_js_transactions.sign.signDelegateAction.html @@ -1,3 +1,3 @@ signDelegateAction | Documentation
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_transactions.sign.signTransaction.html b/functions/_near_js_transactions.sign.signTransaction.html index f1c7d17859..863e7e707d 100644 --- a/functions/_near_js_transactions.sign.signTransaction.html +++ b/functions/_near_js_transactions.sign.signTransaction.html @@ -1 +1 @@ -signTransaction | Documentation
      • Parameters

        • transaction: Transaction
        • signer: Signer
        • Optional accountId: string
        • Optional networkId: string

        Returns Promise<[Uint8Array, SignedTransaction]>

      • Parameters

        • receiverId: string
        • nonce: bigint
        • actions: Action[]
        • blockHash: Uint8Array
        • signer: Signer
        • Optional accountId: string
        • Optional networkId: string

        Returns Promise<[Uint8Array, SignedTransaction]>

      \ No newline at end of file +signTransaction | Documentation
      • Parameters

        • transaction: Transaction
        • signer: Signer
        • Optional accountId: string
        • Optional networkId: string

        Returns Promise<[Uint8Array, SignedTransaction]>

      • Parameters

        • receiverId: string
        • nonce: bigint
        • actions: Action[]
        • blockHash: Uint8Array
        • signer: Signer
        • Optional accountId: string
        • Optional networkId: string

        Returns Promise<[Uint8Array, SignedTransaction]>

      \ No newline at end of file diff --git a/functions/_near_js_utils.errors_rpc_errors.formatError.html b/functions/_near_js_utils.errors_rpc_errors.formatError.html index 9248568d90..6ad8fb8621 100644 --- a/functions/_near_js_utils.errors_rpc_errors.formatError.html +++ b/functions/_near_js_utils.errors_rpc_errors.formatError.html @@ -1 +1 @@ -formatError | Documentation
      \ No newline at end of file +formatError | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_utils.errors_rpc_errors.getErrorTypeFromErrorMessage.html b/functions/_near_js_utils.errors_rpc_errors.getErrorTypeFromErrorMessage.html index 1dff3e91e2..81fc182d36 100644 --- a/functions/_near_js_utils.errors_rpc_errors.getErrorTypeFromErrorMessage.html +++ b/functions/_near_js_utils.errors_rpc_errors.getErrorTypeFromErrorMessage.html @@ -1 +1 @@ -getErrorTypeFromErrorMessage | Documentation
      \ No newline at end of file +getErrorTypeFromErrorMessage | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_utils.errors_rpc_errors.parseResultError.html b/functions/_near_js_utils.errors_rpc_errors.parseResultError.html index eff83b06bd..8ad1f4aac9 100644 --- a/functions/_near_js_utils.errors_rpc_errors.parseResultError.html +++ b/functions/_near_js_utils.errors_rpc_errors.parseResultError.html @@ -1 +1 @@ -parseResultError | Documentation
      \ No newline at end of file +parseResultError | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_utils.errors_rpc_errors.parseRpcError.html b/functions/_near_js_utils.errors_rpc_errors.parseRpcError.html index 27cca0227e..c367d76c02 100644 --- a/functions/_near_js_utils.errors_rpc_errors.parseRpcError.html +++ b/functions/_near_js_utils.errors_rpc_errors.parseRpcError.html @@ -1 +1 @@ -parseRpcError | Documentation
      \ No newline at end of file +parseRpcError | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_utils.format.baseDecode.html b/functions/_near_js_utils.format.baseDecode.html index f0cf8d562b..8bcb86f775 100644 --- a/functions/_near_js_utils.format.baseDecode.html +++ b/functions/_near_js_utils.format.baseDecode.html @@ -1,4 +1,4 @@ baseDecode | Documentation
      • Decodes a base58 string into a Uint8Array

        Parameters

        • value: string

          base58 encoded string

        Returns Uint8Array

        Uint8Array representing the decoded value

        -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_utils.format.baseEncode.html b/functions/_near_js_utils.format.baseEncode.html index 09bc687ce3..ff013762c5 100644 --- a/functions/_near_js_utils.format.baseEncode.html +++ b/functions/_near_js_utils.format.baseEncode.html @@ -1,4 +1,4 @@ baseEncode | Documentation
      • Encodes a Uint8Array or string into base58

        Parameters

        • value: string | Uint8Array

          Uint8Array or string representing a borsh encoded object

        Returns string

        string base58 encoding of the value

        -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_utils.format.formatNearAmount.html b/functions/_near_js_utils.format.formatNearAmount.html index 406bad91a6..05a9225af9 100644 --- a/functions/_near_js_utils.format.formatNearAmount.html +++ b/functions/_near_js_utils.format.formatNearAmount.html @@ -3,4 +3,4 @@

      Parameters

      • balance: string

        decimal string representing balance in smallest non-divisible NEAR units (as specified by NEAR_NOMINATION)

      • fracDigits: number = NEAR_NOMINATION_EXP

        number of fractional digits to preserve in formatted string. Balance is rounded to match given number of digits.

      Returns string

      Value in Ⓝ

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_utils.format.parseNearAmount.html b/functions/_near_js_utils.format.parseNearAmount.html index fb45d00a64..132d13635e 100644 --- a/functions/_near_js_utils.format.parseNearAmount.html +++ b/functions/_near_js_utils.format.parseNearAmount.html @@ -2,4 +2,4 @@ Effectively this multiplies given amount by NEAR_NOMINATION.

      Parameters

      • Optional amt: string

        decimal string (potentially fractional) denominated in NEAR.

      Returns string | null

      The parsed yoctoⓃ amount or null if no amount was passed in

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/_near_js_utils.logging.printTxOutcomeLogs.html b/functions/_near_js_utils.logging.printTxOutcomeLogs.html index 9837bc7729..5103fba507 100644 --- a/functions/_near_js_utils.logging.printTxOutcomeLogs.html +++ b/functions/_near_js_utils.logging.printTxOutcomeLogs.html @@ -2,4 +2,4 @@

      Parameters

      • params: {
            contractId: string;
            logs: string[];
            prefix?: string;
        }
        • contractId: string

          ID of the account/contract which made the query

        • logs: string[]

          log output from a query execution response

        • Optional prefix?: string

          string to append to the beginning of each log

          -

      Returns void

      \ No newline at end of file +

      Returns void

      \ No newline at end of file diff --git a/functions/_near_js_utils.logging.printTxOutcomeLogsAndFailures.html b/functions/_near_js_utils.logging.printTxOutcomeLogsAndFailures.html index 605f52c130..5066549ebd 100644 --- a/functions/_near_js_utils.logging.printTxOutcomeLogsAndFailures.html +++ b/functions/_near_js_utils.logging.printTxOutcomeLogsAndFailures.html @@ -1,4 +1,4 @@ printTxOutcomeLogsAndFailures | Documentation
      • Parse and print details from a query execution response

        Parameters

        • params: {
              contractId: string;
              outcome: FinalExecutionOutcome;
          }
          • contractId: string

            ID of the account/contract which made the query

          • outcome: FinalExecutionOutcome

            the query execution response

            -

        Returns void

      \ No newline at end of file +

      Returns void

      \ No newline at end of file diff --git a/functions/_near_js_utils.utils.sortBigIntAsc.html b/functions/_near_js_utils.utils.sortBigIntAsc.html index 80c2c527c3..5f059f16d2 100644 --- a/functions/_near_js_utils.utils.sortBigIntAsc.html +++ b/functions/_near_js_utils.utils.sortBigIntAsc.html @@ -1 +1 @@ -sortBigIntAsc | Documentation
      \ No newline at end of file +sortBigIntAsc | Documentation
      \ No newline at end of file diff --git a/functions/_near_js_utils.validators.diffEpochValidators.html b/functions/_near_js_utils.validators.diffEpochValidators.html index 7aa082e26d..a4ab6dacc9 100644 --- a/functions/_near_js_utils.validators.diffEpochValidators.html +++ b/functions/_near_js_utils.validators.diffEpochValidators.html @@ -1,3 +1,3 @@ diffEpochValidators | Documentation
      \ No newline at end of file +

      Parameters

      • currentValidators: CurrentEpochValidatorInfo[]
      • nextValidators: NextEpochValidatorInfo[]

      Returns EpochValidatorsDiff

      \ No newline at end of file diff --git a/functions/_near_js_utils.validators.findSeatPrice.html b/functions/_near_js_utils.validators.findSeatPrice.html index 5c9535c7d8..43816addfd 100644 --- a/functions/_near_js_utils.validators.findSeatPrice.html +++ b/functions/_near_js_utils.validators.findSeatPrice.html @@ -1,3 +1,3 @@ findSeatPrice | Documentation
      \ No newline at end of file +

      Parameters

      • validators: (CurrentEpochValidatorInfo | NextEpochValidatorInfo)[]
      • maxNumberOfSeats: number
      • minimumStakeRatio: number[]
      • Optional protocolVersion: number

      Returns bigint

      \ No newline at end of file diff --git a/functions/near_api_js.browserConnect.connect.html b/functions/near_api_js.browserConnect.connect.html index 113f71620d..4fef2045e6 100644 --- a/functions/near_api_js.browserConnect.connect.html +++ b/functions/near_api_js.browserConnect.connect.html @@ -1,2 +1,2 @@ connect | Documentation
      \ No newline at end of file +

      Parameters

      Returns Promise<Near>

      \ No newline at end of file diff --git a/functions/near_api_js.connect.connect.html b/functions/near_api_js.connect.connect.html index 8a6b25aebe..2b2e8ba501 100644 --- a/functions/near_api_js.connect.connect.html +++ b/functions/near_api_js.connect.connect.html @@ -3,4 +3,4 @@

      Returns Promise<Near>

      A Promise that resolves to a Near object representing the connection.

      Example

      const connectionConfig = {
      networkId: 'testnet',
      nodeUrl: 'https://rpc.testnet.near.org',
      walletUrl: 'https://wallet.testnet.near.org',
      helperUrl: 'https://helper.testnet.near.org',
      keyStore: new InMemoryKeyStore(),
      deps: { keyStore: new BrowserLocalStorageKeyStore() },
      logger: true,
      keyPath: '/path/to/account-key.json',
      masterAccount: 'master-account.near',
      };

      const nearConnection = await connect(connectionConfig);
      console.log(nearConnection); // Near object representing the connection
      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.addKey-1.html b/functions/near_api_js.transaction.addKey-1.html index c4fadfa783..6ac971fcc2 100644 --- a/functions/near_api_js.transaction.addKey-1.html +++ b/functions/near_api_js.transaction.addKey-1.html @@ -1 +1 @@ -addKey | Documentation
      \ No newline at end of file +addKey | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.createAccount-1.html b/functions/near_api_js.transaction.createAccount-1.html index 73979d7529..03f8ffd79e 100644 --- a/functions/near_api_js.transaction.createAccount-1.html +++ b/functions/near_api_js.transaction.createAccount-1.html @@ -1 +1 @@ -createAccount | Documentation
      \ No newline at end of file +createAccount | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.deleteAccount-1.html b/functions/near_api_js.transaction.deleteAccount-1.html index a4d1156390..ecc986d3de 100644 --- a/functions/near_api_js.transaction.deleteAccount-1.html +++ b/functions/near_api_js.transaction.deleteAccount-1.html @@ -1 +1 @@ -deleteAccount | Documentation
      \ No newline at end of file +deleteAccount | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.deleteKey-1.html b/functions/near_api_js.transaction.deleteKey-1.html index eee35d56ce..b473302612 100644 --- a/functions/near_api_js.transaction.deleteKey-1.html +++ b/functions/near_api_js.transaction.deleteKey-1.html @@ -1 +1 @@ -deleteKey | Documentation
      \ No newline at end of file +deleteKey | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.deployContract-1.html b/functions/near_api_js.transaction.deployContract-1.html index b03e3b18c4..fa4ae59486 100644 --- a/functions/near_api_js.transaction.deployContract-1.html +++ b/functions/near_api_js.transaction.deployContract-1.html @@ -1 +1 @@ -deployContract | Documentation
      \ No newline at end of file +deployContract | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.fullAccessKey.html b/functions/near_api_js.transaction.fullAccessKey.html index f2c057aa5c..0195c2401c 100644 --- a/functions/near_api_js.transaction.fullAccessKey.html +++ b/functions/near_api_js.transaction.fullAccessKey.html @@ -1 +1 @@ -fullAccessKey | Documentation
      \ No newline at end of file +fullAccessKey | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.functionCall-1.html b/functions/near_api_js.transaction.functionCall-1.html index bfbd76236e..8cc1c1d384 100644 --- a/functions/near_api_js.transaction.functionCall-1.html +++ b/functions/near_api_js.transaction.functionCall-1.html @@ -1,4 +1,4 @@ functionCall | Documentation
      • Parameters

        • methodName: string
        • args: object | Uint8Array
        • gas: bigint
        • deposit: bigint
        • Optional stringify: ((args) => Buffer)
            • (args): Buffer
            • Converts an input argument to a Buffer, handling cases for both JSON and Uint8Array.

              Parameters

              • args: any

                The input argument, either JSON object or Uint8Array.

              Returns Buffer

              A Buffer representation of the input argument.

              -
        • Optional jsContract: boolean

        Returns Action

      \ No newline at end of file +
    • Optional jsContract: boolean
    • Returns Action

      \ No newline at end of file diff --git a/functions/near_api_js.transaction.functionCallAccessKey.html b/functions/near_api_js.transaction.functionCallAccessKey.html index 9cc7472236..685ca2cd20 100644 --- a/functions/near_api_js.transaction.functionCallAccessKey.html +++ b/functions/near_api_js.transaction.functionCallAccessKey.html @@ -1 +1 @@ -functionCallAccessKey | Documentation
      \ No newline at end of file +functionCallAccessKey | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.stake-1.html b/functions/near_api_js.transaction.stake-1.html index 5348499c01..500f0e34fa 100644 --- a/functions/near_api_js.transaction.stake-1.html +++ b/functions/near_api_js.transaction.stake-1.html @@ -1 +1 @@ -stake | Documentation
      \ No newline at end of file +stake | Documentation
      \ No newline at end of file diff --git a/functions/near_api_js.transaction.transfer-1.html b/functions/near_api_js.transaction.transfer-1.html index dd38df1929..58919d3aaa 100644 --- a/functions/near_api_js.transaction.transfer-1.html +++ b/functions/near_api_js.transaction.transfer-1.html @@ -1 +1 @@ -transfer | Documentation
      \ No newline at end of file +transfer | Documentation
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.account.AccountAuthorizedApp.html b/interfaces/_near_js_accounts.account.AccountAuthorizedApp.html index 4131d59c33..1baa7b7c8f 100644 --- a/interfaces/_near_js_accounts.account.AccountAuthorizedApp.html +++ b/interfaces/_near_js_accounts.account.AccountAuthorizedApp.html @@ -1,4 +1,4 @@ -AccountAuthorizedApp | Documentation
      interface AccountAuthorizedApp {
          amount: string;
          contractId: string;
          publicKey: string;
      }

      Properties

      amount +AccountAuthorizedApp | Documentation
      interface AccountAuthorizedApp {
          amount: string;
          contractId: string;
          publicKey: string;
      }

      Properties

      amount: string
      contractId: string
      publicKey: string
      \ No newline at end of file +

      Properties

      amount: string
      contractId: string
      publicKey: string
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.account.AccountBalance.html b/interfaces/_near_js_accounts.account.AccountBalance.html index 6e4483d592..f7d0f5626b 100644 --- a/interfaces/_near_js_accounts.account.AccountBalance.html +++ b/interfaces/_near_js_accounts.account.AccountBalance.html @@ -1,5 +1,5 @@ -AccountBalance | Documentation
      interface AccountBalance {
          available: string;
          staked: string;
          stateStaked: string;
          total: string;
      }

      Properties

      available +AccountBalance | Documentation
      interface AccountBalance {
          available: string;
          staked: string;
          stateStaked: string;
          total: string;
      }

      Properties

      available: string
      staked: string
      stateStaked: string
      total: string
      \ No newline at end of file +

      Properties

      available: string
      staked: string
      stateStaked: string
      total: string
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.account.SignAndSendTransactionOptions.html b/interfaces/_near_js_accounts.account.SignAndSendTransactionOptions.html index 5c25f07468..1c628719ba 100644 --- a/interfaces/_near_js_accounts.account.SignAndSendTransactionOptions.html +++ b/interfaces/_near_js_accounts.account.SignAndSendTransactionOptions.html @@ -1,11 +1,11 @@ SignAndSendTransactionOptions | Documentation

      Options used to initiate sining and sending transactions

      -
      interface SignAndSendTransactionOptions {
          actions: Action[];
          receiverId: string;
          returnError?: boolean;
          walletCallbackUrl?: string;
          walletMeta?: string;
      }

      Properties

      interface SignAndSendTransactionOptions {
          actions: Action[];
          receiverId: string;
          returnError?: boolean;
          walletCallbackUrl?: string;
          walletMeta?: string;
      }

      Properties

      actions: Action[]
      receiverId: string
      returnError?: boolean
      walletCallbackUrl?: string

      Callback url to send the NEAR Wallet if using it to sign transactions.

      +

      Properties

      actions: Action[]
      receiverId: string
      returnError?: boolean
      walletCallbackUrl?: string

      Callback url to send the NEAR Wallet if using it to sign transactions.

      See

      RequestSignTransactionsOptions

      -
      walletMeta?: string

      Metadata to send the NEAR Wallet if using it to sign transactions.

      +
      walletMeta?: string

      Metadata to send the NEAR Wallet if using it to sign transactions.

      See

      RequestSignTransactionsOptions

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.contract.ContractMethods.html b/interfaces/_near_js_accounts.contract.ContractMethods.html index cdf6766c84..39928e2e6c 100644 --- a/interfaces/_near_js_accounts.contract.ContractMethods.html +++ b/interfaces/_near_js_accounts.contract.ContractMethods.html @@ -1,11 +1,11 @@ -ContractMethods | Documentation
      interface ContractMethods {
          abi?: AbiRoot;
          changeMethods: string[];
          useLocalViewExecution: boolean;
          viewMethods: string[];
      }

      Properties

      abi? +ContractMethods | Documentation
      interface ContractMethods {
          abi?: AbiRoot;
          changeMethods: string[];
          useLocalViewExecution: boolean;
          viewMethods: string[];
      }

      Properties

      abi?: AbiRoot

      ABI defining this contract's interface.

      -
      changeMethods: string[]

      Methods that change state. These methods cost gas and require a signed transaction.

      +
      changeMethods: string[]

      Methods that change state. These methods cost gas and require a signed transaction.

      useLocalViewExecution: boolean

      Executes view methods locally. This flag is useful when multiple view calls will be made for the same blockId

      -
      viewMethods: string[]

      View methods do not require a signed transaction.

      +
      useLocalViewExecution: boolean

      Executes view methods locally. This flag is useful when multiple view calls will be made for the same blockId

      +
      viewMethods: string[]

      View methods do not require a signed transaction.

      \ No newline at end of file +
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.interface.ChangeFunctionCallOptions.html b/interfaces/_near_js_accounts.interface.ChangeFunctionCallOptions.html index de4c15f3bd..6fcafe11e1 100644 --- a/interfaces/_near_js_accounts.interface.ChangeFunctionCallOptions.html +++ b/interfaces/_near_js_accounts.interface.ChangeFunctionCallOptions.html @@ -1,6 +1,6 @@ ChangeFunctionCallOptions | Documentation

      Options used to initiate a function call (especially a change function call)

      See

      Account#viewFunction | viewFunction to initiate a view function call

      -
      interface ChangeFunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          stringify?: ((input) => Buffer);
          walletCallbackUrl?: string;
          walletMeta?: string;
      }

      Hierarchy (view full)

      Properties

      interface ChangeFunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          stringify?: ((input) => Buffer);
          walletCallbackUrl?: string;
          walletMeta?: string;
      }

      Hierarchy (view full)

      Properties

      args?: object

      named arguments to pass the method { messageText: 'my message' }

      -
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      -
      contractId: string

      The NEAR account id where the contract is deployed

      -
      gas?: bigint

      max amount of gas that method call can use

      -
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      -
      methodName: string

      The name of the method to invoke

      -
      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      -

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      walletCallbackUrl?: string

      Callback url to send the NEAR Wallet if using it to sign transactions.

      +
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      +
      contractId: string

      The NEAR account id where the contract is deployed

      +
      gas?: bigint

      max amount of gas that method call can use

      +
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      +
      methodName: string

      The name of the method to invoke

      +
      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      +

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      walletCallbackUrl?: string

      Callback url to send the NEAR Wallet if using it to sign transactions.

      See

      RequestSignTransactionsOptions

      -
      walletMeta?: string

      Metadata to send the NEAR Wallet if using it to sign transactions.

      +
      walletMeta?: string

      Metadata to send the NEAR Wallet if using it to sign transactions.

      See

      RequestSignTransactionsOptions

      -
      \ No newline at end of file +
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.interface.FunctionCallOptions.html b/interfaces/_near_js_accounts.interface.FunctionCallOptions.html index 5297d2c467..421662e02b 100644 --- a/interfaces/_near_js_accounts.interface.FunctionCallOptions.html +++ b/interfaces/_near_js_accounts.interface.FunctionCallOptions.html @@ -1,6 +1,6 @@ FunctionCallOptions | Documentation

      Options used to initiate a function call (especially a change function call)

      See

      Account#viewFunction | viewFunction to initiate a view function call

      -
      interface FunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          stringify?: ((input) => Buffer);
      }

      Hierarchy (view full)

      Properties

      interface FunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          stringify?: ((input) => Buffer);
      }

      Hierarchy (view full)

      Properties

      args?: object

      named arguments to pass the method { messageText: 'my message' }

      -
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      -
      contractId: string

      The NEAR account id where the contract is deployed

      -
      gas?: bigint

      max amount of gas that method call can use

      -
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      -
      methodName: string

      The name of the method to invoke

      -
      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      -

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      \ No newline at end of file +
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      +
      contractId: string

      The NEAR account id where the contract is deployed

      +
      gas?: bigint

      max amount of gas that method call can use

      +
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      +
      methodName: string

      The name of the method to invoke

      +
      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      +

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.interface.IntoConnection.html b/interfaces/_near_js_accounts.interface.IntoConnection.html index 97baeec472..4e09a5c642 100644 --- a/interfaces/_near_js_accounts.interface.IntoConnection.html +++ b/interfaces/_near_js_accounts.interface.IntoConnection.html @@ -1,2 +1,2 @@ -IntoConnection | Documentation
      interface IntoConnection {
          getConnection(): Connection;
      }

      Implemented by

      Methods

      Methods

      \ No newline at end of file +IntoConnection | Documentation
      interface IntoConnection {
          getConnection(): Connection;
      }

      Implemented by

      Methods

      Methods

      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.interface.ViewFunctionCallOptions.html b/interfaces/_near_js_accounts.interface.ViewFunctionCallOptions.html index c9f501af49..458e9ab7c0 100644 --- a/interfaces/_near_js_accounts.interface.ViewFunctionCallOptions.html +++ b/interfaces/_near_js_accounts.interface.ViewFunctionCallOptions.html @@ -1,6 +1,6 @@ ViewFunctionCallOptions | Documentation

      Options used to initiate a function call (especially a change function call)

      See

      Account#viewFunction | viewFunction to initiate a view function call

      -
      interface ViewFunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          blockQuery?: BlockReference;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          parse?: ((response) => any);
          stringify?: ((input) => Buffer);
      }

      Hierarchy (view full)

      Properties

      interface ViewFunctionCallOptions {
          args?: object;
          attachedDeposit?: bigint;
          blockQuery?: BlockReference;
          contractId: string;
          gas?: bigint;
          jsContract?: boolean;
          methodName: string;
          parse?: ((response) => any);
          stringify?: ((input) => Buffer);
      }

      Hierarchy (view full)

      Properties

      args?: object

      named arguments to pass the method { messageText: 'my message' }

      -
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      -
      blockQuery?: BlockReference
      contractId: string

      The NEAR account id where the contract is deployed

      -
      gas?: bigint

      max amount of gas that method call can use

      -
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      -
      methodName: string

      The name of the method to invoke

      -
      parse?: ((response) => any)

      Type declaration

        • (response): any
        • Parameters

          • response: Uint8Array

          Returns any

      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      -

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      \ No newline at end of file +
      attachedDeposit?: bigint

      amount of NEAR (in yoctoNEAR) to send together with the call

      +
      blockQuery?: BlockReference
      contractId: string

      The NEAR account id where the contract is deployed

      +
      gas?: bigint

      max amount of gas that method call can use

      +
      jsContract?: boolean

      Is contract from JS SDK, automatically encodes args from JS SDK to binary.

      +
      methodName: string

      The name of the method to invoke

      +
      parse?: ((response) => any)

      Type declaration

        • (response): any
        • Parameters

          • response: Uint8Array

          Returns any

      stringify?: ((input) => Buffer)

      Convert input arguments into bytes array.

      +

      Type declaration

        • (input): Buffer
        • Parameters

          • input: any

          Returns Buffer

      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.local_view_execution_storage.StorageData.html b/interfaces/_near_js_accounts.local_view_execution_storage.StorageData.html index 78fb6393e1..8de8a412de 100644 --- a/interfaces/_near_js_accounts.local_view_execution_storage.StorageData.html +++ b/interfaces/_near_js_accounts.local_view_execution_storage.StorageData.html @@ -1,5 +1,5 @@ -StorageData | Documentation
      interface StorageData {
          blockHeight: number;
          blockTimestamp: number;
          contractCode: string;
          contractState: ContractState;
      }

      Properties

      blockHeight +StorageData | Documentation
      interface StorageData {
          blockHeight: number;
          blockTimestamp: number;
          contractCode: string;
          contractState: ContractState;
      }

      Properties

      blockHeight: number
      blockTimestamp: number
      contractCode: string
      contractState: ContractState
      \ No newline at end of file +

      Properties

      blockHeight: number
      blockTimestamp: number
      contractCode: string
      contractState: ContractState
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.local_view_execution_storage.StorageOptions.html b/interfaces/_near_js_accounts.local_view_execution_storage.StorageOptions.html index e1ae1549ac..aed935d743 100644 --- a/interfaces/_near_js_accounts.local_view_execution_storage.StorageOptions.html +++ b/interfaces/_near_js_accounts.local_view_execution_storage.StorageOptions.html @@ -1,2 +1,2 @@ -StorageOptions | Documentation
      interface StorageOptions {
          max: number;
      }

      Properties

      max -

      Properties

      max: number
      \ No newline at end of file +StorageOptions | Documentation
      interface StorageOptions {
          max: number;
      }

      Properties

      max +

      Properties

      max: number
      \ No newline at end of file diff --git a/interfaces/_near_js_accounts.local_view_execution_types.ContractState.html b/interfaces/_near_js_accounts.local_view_execution_types.ContractState.html index 54145b1c1c..a0121832a0 100644 --- a/interfaces/_near_js_accounts.local_view_execution_types.ContractState.html +++ b/interfaces/_near_js_accounts.local_view_execution_types.ContractState.html @@ -1,4 +1,4 @@ -ContractState | Documentation
      interface ContractState {
          [unscopables]: {
              [unscopables]?: boolean;
              length?: boolean;
              [iterator]?: any;
              at?: any;
              concat?: any;
              copyWithin?: any;
              entries?: any;
              every?: any;
              fill?: any;
              filter?: any;
              find?: any;
              findIndex?: any;
              flat?: any;
              flatMap?: any;
              forEach?: any;
              includes?: any;
              indexOf?: any;
              join?: any;
              keys?: any;
              lastIndexOf?: any;
              map?: any;
              pop?: any;
              push?: any;
              reduce?: any;
              reduceRight?: any;
              reverse?: any;
              shift?: any;
              slice?: any;
              some?: any;
              sort?: any;
              splice?: any;
              toLocaleString?: any;
              toString?: any;
              unshift?: any;
              values?: any;
          };
          length: number;
          [iterator](): IterableIterator<{
              key: Buffer;
              value: Buffer;
          }>;
          at(index): {
              key: Buffer;
              value: Buffer;
          };
          concat(...items): {
              key: Buffer;
              value: Buffer;
          }[];
          concat(...items): {
              key: Buffer;
              value: Buffer;
          }[];
          copyWithin(target, start, end?): this;
          entries(): IterableIterator<[number, {
              key: Buffer;
              value: Buffer;
          }]>;
          every<S>(predicate, thisArg?): this is S[];
          every(predicate, thisArg?): boolean;
          fill(value, start?, end?): this;
          filter<S>(predicate, thisArg?): S[];
          filter(predicate, thisArg?): {
              key: Buffer;
              value: Buffer;
          }[];
          find<S>(predicate, thisArg?): S;
          find(predicate, thisArg?): {
              key: Buffer;
              value: Buffer;
          };
          findIndex(predicate, thisArg?): number;
          flat<A, D>(this, depth?): FlatArray<A, D>[];
          flatMap<U, This>(callback, thisArg?): U[];
          forEach(callbackfn, thisArg?): void;
          includes(searchElement, fromIndex?): boolean;
          indexOf(searchElement, fromIndex?): number;
          join(separator?): string;
          keys(): IterableIterator<number>;
          lastIndexOf(searchElement, fromIndex?): number;
          map<U>(callbackfn, thisArg?): U[];
          pop(): {
              key: Buffer;
              value: Buffer;
          };
          push(...items): number;
          reduce(callbackfn): {
              key: Buffer;
              value: Buffer;
          };
          reduce(callbackfn, initialValue): {
              key: Buffer;
              value: Buffer;
          };
          reduce<U>(callbackfn, initialValue): U;
          reduceRight(callbackfn): {
              key: Buffer;
              value: Buffer;
          };
          reduceRight(callbackfn, initialValue): {
              key: Buffer;
              value: Buffer;
          };
          reduceRight<U>(callbackfn, initialValue): U;
          reverse(): {
              key: Buffer;
              value: Buffer;
          }[];
          shift(): {
              key: Buffer;
              value: Buffer;
          };
          slice(start?, end?): {
              key: Buffer;
              value: Buffer;
          }[];
          some(predicate, thisArg?): boolean;
          sort(compareFn?): this;
          splice(start, deleteCount?): {
              key: Buffer;
              value: Buffer;
          }[];
          splice(start, deleteCount, ...items): {
              key: Buffer;
              value: Buffer;
          }[];
          toLocaleString(): string;
          toString(): string;
          unshift(...items): number;
          values(): IterableIterator<{
              key: Buffer;
              value: Buffer;
          }>;
      }

      Hierarchy

      • Array<{
            key: Buffer;
            value: Buffer;
        }>
        • ContractState

      Properties

      [unscopables] +ContractState | Documentation
      interface ContractState {
          [unscopables]: {
              [unscopables]?: boolean;
              length?: boolean;
              [iterator]?: any;
              at?: any;
              concat?: any;
              copyWithin?: any;
              entries?: any;
              every?: any;
              fill?: any;
              filter?: any;
              find?: any;
              findIndex?: any;
              flat?: any;
              flatMap?: any;
              forEach?: any;
              includes?: any;
              indexOf?: any;
              join?: any;
              keys?: any;
              lastIndexOf?: any;
              map?: any;
              pop?: any;
              push?: any;
              reduce?: any;
              reduceRight?: any;
              reverse?: any;
              shift?: any;
              slice?: any;
              some?: any;
              sort?: any;
              splice?: any;
              toLocaleString?: any;
              toString?: any;
              unshift?: any;
              values?: any;
          };
          length: number;
          [iterator](): IterableIterator<{
              key: Buffer;
              value: Buffer;
          }>;
          at(index): {
              key: Buffer;
              value: Buffer;
          };
          concat(...items): {
              key: Buffer;
              value: Buffer;
          }[];
          concat(...items): {
              key: Buffer;
              value: Buffer;
          }[];
          copyWithin(target, start, end?): this;
          entries(): IterableIterator<[number, {
              key: Buffer;
              value: Buffer;
          }]>;
          every<S>(predicate, thisArg?): this is S[];
          every(predicate, thisArg?): boolean;
          fill(value, start?, end?): this;
          filter<S>(predicate, thisArg?): S[];
          filter(predicate, thisArg?): {
              key: Buffer;
              value: Buffer;
          }[];
          find<S>(predicate, thisArg?): S;
          find(predicate, thisArg?): {
              key: Buffer;
              value: Buffer;
          };
          findIndex(predicate, thisArg?): number;
          flat<A, D>(this, depth?): FlatArray<A, D>[];
          flatMap<U, This>(callback, thisArg?): U[];
          forEach(callbackfn, thisArg?): void;
          includes(searchElement, fromIndex?): boolean;
          indexOf(searchElement, fromIndex?): number;
          join(separator?): string;
          keys(): IterableIterator<number>;
          lastIndexOf(searchElement, fromIndex?): number;
          map<U>(callbackfn, thisArg?): U[];
          pop(): {
              key: Buffer;
              value: Buffer;
          };
          push(...items): number;
          reduce(callbackfn): {
              key: Buffer;
              value: Buffer;
          };
          reduce(callbackfn, initialValue): {
              key: Buffer;
              value: Buffer;
          };
          reduce<U>(callbackfn, initialValue): U;
          reduceRight(callbackfn): {
              key: Buffer;
              value: Buffer;
          };
          reduceRight(callbackfn, initialValue): {
              key: Buffer;
              value: Buffer;
          };
          reduceRight<U>(callbackfn, initialValue): U;
          reverse(): {
              key: Buffer;
              value: Buffer;
          }[];
          shift(): {
              key: Buffer;
              value: Buffer;
          };
          slice(start?, end?): {
              key: Buffer;
              value: Buffer;
          }[];
          some(predicate, thisArg?): boolean;
          sort(compareFn?): this;
          splice(start, deleteCount?): {
              key: Buffer;
              value: Buffer;
          }[];
          splice(start, deleteCount, ...items): {
              key: Buffer;
              value: Buffer;
          }[];
          toLocaleString(): string;
          toString(): string;
          unshift(...items): number;
          values(): IterableIterator<{
              key: Buffer;
              value: Buffer;
          }>;
      }

      Hierarchy

      • Array<{
            key: Buffer;
            value: Buffer;
        }>
        • ContractState

      Properties

      Methods

      [iterator] at diff --git a/interfaces/_near_js_crypto.key_pair_base.Signature.html b/interfaces/_near_js_crypto.key_pair_base.Signature.html index ec83b0164c..59ed57111a 100644 --- a/interfaces/_near_js_crypto.key_pair_base.Signature.html +++ b/interfaces/_near_js_crypto.key_pair_base.Signature.html @@ -1,3 +1,3 @@ -Signature | Documentation
      interface Signature {
          publicKey: PublicKey;
          signature: Uint8Array;
      }

      Properties

      publicKey +Signature | Documentation
      interface Signature {
          publicKey: PublicKey;
          signature: Uint8Array;
      }

      Properties

      Properties

      publicKey: PublicKey
      signature: Uint8Array
      \ No newline at end of file +

      Properties

      publicKey: PublicKey
      signature: Uint8Array
      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.iframe_rpc.IRPCOptions.html b/interfaces/_near_js_iframe_rpc.iframe_rpc.IRPCOptions.html index 272cb2be2c..2e2a159404 100644 --- a/interfaces/_near_js_iframe_rpc.iframe_rpc.IRPCOptions.html +++ b/interfaces/_near_js_iframe_rpc.iframe_rpc.IRPCOptions.html @@ -1,6 +1,6 @@ -IRPCOptions | Documentation
      interface IRPCOptions {
          origin?: string;
          protocolVersion?: string;
          receiver?: IMessageReceiver;
          requesterId: string;
          target: IMessagePoster;
      }

      Properties

      origin? +IRPCOptions | Documentation
      interface IRPCOptions {
          origin?: string;
          protocolVersion?: string;
          receiver?: IMessageReceiver;
          requesterId: string;
          target: IMessagePoster;
      }

      Properties

      origin?: string
      protocolVersion?: string
      receiver?: IMessageReceiver
      requesterId: string
      \ No newline at end of file +

      Properties

      origin?: string
      protocolVersion?: string
      receiver?: IMessageReceiver
      requesterId: string
      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.types.IMessageEvent.html b/interfaces/_near_js_iframe_rpc.types.IMessageEvent.html index ed64d55104..d2108056e1 100644 --- a/interfaces/_near_js_iframe_rpc.types.IMessageEvent.html +++ b/interfaces/_near_js_iframe_rpc.types.IMessageEvent.html @@ -1,3 +1,3 @@ -IMessageEvent | Documentation
      interface IMessageEvent {
          data: any;
          origin: string;
      }

      Properties

      data +IMessageEvent | Documentation
      interface IMessageEvent {
          data: any;
          origin: string;
      }

      Properties

      Properties

      data: any
      origin: string
      \ No newline at end of file +

      Properties

      data: any
      origin: string
      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.types.IMessagePoster.html b/interfaces/_near_js_iframe_rpc.types.IMessagePoster.html index 8110977083..76323ad801 100644 --- a/interfaces/_near_js_iframe_rpc.types.IMessagePoster.html +++ b/interfaces/_near_js_iframe_rpc.types.IMessagePoster.html @@ -1,2 +1,2 @@ -IMessagePoster | Documentation
      interface IMessagePoster {
          postMessage(data, targetOrigin): void;
      }

      Methods

      Methods

      \ No newline at end of file +IMessagePoster | Documentation
      interface IMessagePoster {
          postMessage(data, targetOrigin): void;
      }

      Methods

      Methods

      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.types.IMessageReceiver.html b/interfaces/_near_js_iframe_rpc.types.IMessageReceiver.html index 2f6547b063..482d92337c 100644 --- a/interfaces/_near_js_iframe_rpc.types.IMessageReceiver.html +++ b/interfaces/_near_js_iframe_rpc.types.IMessageReceiver.html @@ -1,2 +1,2 @@ -IMessageReceiver | Documentation
      interface IMessageReceiver {
          readMessages(callback): (() => void);
      }

      Methods

      Methods

      \ No newline at end of file +IMessageReceiver | Documentation
      interface IMessageReceiver {
          readMessages(callback): (() => void);
      }

      Methods

      Methods

      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.types.IRPCMethod.html b/interfaces/_near_js_iframe_rpc.types.IRPCMethod.html index b7617e2b7d..4fef40496a 100644 --- a/interfaces/_near_js_iframe_rpc.types.IRPCMethod.html +++ b/interfaces/_near_js_iframe_rpc.types.IRPCMethod.html @@ -1,6 +1,6 @@ -IRPCMethod | Documentation
      interface IRPCMethod<T> {
          id: number;
          method: string;
          params: T;
          requesterId: string;
          type: "method";
      }

      Type Parameters

      • T

      Properties

      id +IRPCMethod | Documentation
      interface IRPCMethod<T> {
          id: number;
          method: string;
          params: T;
          requesterId: string;
          type: "method";
      }

      Type Parameters

      • T

      Properties

      id: number
      method: string
      params: T
      requesterId: string
      type: "method"
      \ No newline at end of file +

      Properties

      id: number
      method: string
      params: T
      requesterId: string
      type: "method"
      \ No newline at end of file diff --git a/interfaces/_near_js_iframe_rpc.types.IRPCResponse.html b/interfaces/_near_js_iframe_rpc.types.IRPCResponse.html index 470ba097a5..63bc1b919d 100644 --- a/interfaces/_near_js_iframe_rpc.types.IRPCResponse.html +++ b/interfaces/_near_js_iframe_rpc.types.IRPCResponse.html @@ -1,6 +1,6 @@ -IRPCResponse | Documentation
      interface IRPCResponse<T> {
          error?: {
              code: number;
              message: string;
          };
          id: number;
          requesterId: string;
          result: T;
          type: "response";
      }

      Type Parameters

      • T

      Properties

      error? +IRPCResponse | Documentation
      interface IRPCResponse<T> {
          error?: {
              code: number;
              message: string;
          };
          id: number;
          requesterId: string;
          result: T;
          type: "response";
      }

      Type Parameters

      • T

      Properties

      error?: {
          code: number;
          message: string;
      }

      Type declaration

      • code: number
      • message: string
      id: number
      requesterId: string
      result: T
      type: "response"
      \ No newline at end of file +

      Properties

      error?: {
          code: number;
          message: string;
      }

      Type declaration

      • code: number
      • message: string
      id: number
      requesterId: string
      result: T
      type: "response"
      \ No newline at end of file diff --git a/interfaces/_near_js_providers.fetch_json.ConnectionInfo.html b/interfaces/_near_js_providers.fetch_json.ConnectionInfo.html index 7c4ba12f6a..5d542b19f7 100644 --- a/interfaces/_near_js_providers.fetch_json.ConnectionInfo.html +++ b/interfaces/_near_js_providers.fetch_json.ConnectionInfo.html @@ -1,3 +1,3 @@ -ConnectionInfo | Documentation
      interface ConnectionInfo {
          headers?: {
              [key: string]: string | number;
          };
          url: string;
      }

      Properties

      headers? +ConnectionInfo | Documentation
      interface ConnectionInfo {
          headers?: {
              [key: string]: string | number;
          };
          url: string;
      }

      Properties

      Properties

      headers?: {
          [key: string]: string | number;
      }

      Type declaration

      • [key: string]: string | number
      url: string
      \ No newline at end of file +

      Properties

      headers?: {
          [key: string]: string | number;
      }

      Type declaration

      • [key: string]: string | number
      url: string
      \ No newline at end of file diff --git a/interfaces/_near_js_transactions.sign.SignedDelegateWithHash.html b/interfaces/_near_js_transactions.sign.SignedDelegateWithHash.html index 0134d147c9..bccbc05a3b 100644 --- a/interfaces/_near_js_transactions.sign.SignedDelegateWithHash.html +++ b/interfaces/_near_js_transactions.sign.SignedDelegateWithHash.html @@ -1,3 +1,3 @@ -SignedDelegateWithHash | Documentation
      interface SignedDelegateWithHash {
          hash: Uint8Array;
          signedDelegateAction: SignedDelegate;
      }

      Properties

      hash +SignedDelegateWithHash | Documentation
      interface SignedDelegateWithHash {
          hash: Uint8Array;
          signedDelegateAction: SignedDelegate;
      }

      Properties

      hash: Uint8Array
      signedDelegateAction: SignedDelegate
      \ No newline at end of file +

      Properties

      hash: Uint8Array
      signedDelegateAction: SignedDelegate
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_light_client.LightClientBlockLiteView.html b/interfaces/_near_js_types.provider_light_client.LightClientBlockLiteView.html index f7710ffefa..4abf7ff946 100644 --- a/interfaces/_near_js_types.provider_light_client.LightClientBlockLiteView.html +++ b/interfaces/_near_js_types.provider_light_client.LightClientBlockLiteView.html @@ -1,4 +1,4 @@ -LightClientBlockLiteView | Documentation
      interface LightClientBlockLiteView {
          inner_lite: BlockHeaderInnerLiteView;
          inner_rest_hash: string;
          prev_block_hash: string;
      }

      Properties

      inner_lite +LightClientBlockLiteView | Documentation
      interface LightClientBlockLiteView {
          inner_lite: BlockHeaderInnerLiteView;
          inner_rest_hash: string;
          prev_block_hash: string;
      }

      Properties

      inner_rest_hash: string
      prev_block_hash: string
      \ No newline at end of file +

      Properties

      inner_rest_hash: string
      prev_block_hash: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_light_client.LightClientProof.html b/interfaces/_near_js_types.provider_light_client.LightClientProof.html index 57acf6c523..5b661286e1 100644 --- a/interfaces/_near_js_types.provider_light_client.LightClientProof.html +++ b/interfaces/_near_js_types.provider_light_client.LightClientProof.html @@ -1,5 +1,5 @@ -LightClientProof | Documentation

      Properties

      block_header_lite +LightClientProof | Documentation
      \ No newline at end of file +

      Properties

      block_header_lite: LightClientBlockLiteView
      block_proof: MerklePath
      outcome_root_proof: MerklePath
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_light_client.LightClientProofRequest.html b/interfaces/_near_js_types.provider_light_client.LightClientProofRequest.html index 5fb0781039..0e937e3924 100644 --- a/interfaces/_near_js_types.provider_light_client.LightClientProofRequest.html +++ b/interfaces/_near_js_types.provider_light_client.LightClientProofRequest.html @@ -1,7 +1,7 @@ -LightClientProofRequest | Documentation
      interface LightClientProofRequest {
          light_client_head: string;
          receipt_id?: string;
          receiver_id?: string;
          sender_id?: string;
          transaction_hash?: string;
          type: IdType;
      }

      Properties

      light_client_head +LightClientProofRequest | Documentation
      interface LightClientProofRequest {
          light_client_head: string;
          receipt_id?: string;
          receiver_id?: string;
          sender_id?: string;
          transaction_hash?: string;
          type: IdType;
      }

      Properties

      light_client_head: string
      receipt_id?: string
      receiver_id?: string
      sender_id?: string
      transaction_hash?: string
      type: IdType
      \ No newline at end of file +

      Properties

      light_client_head: string
      receipt_id?: string
      receiver_id?: string
      sender_id?: string
      transaction_hash?: string
      type: IdType
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_light_client.NextLightClientBlockRequest.html b/interfaces/_near_js_types.provider_light_client.NextLightClientBlockRequest.html index 4d8a32110d..a681253fee 100644 --- a/interfaces/_near_js_types.provider_light_client.NextLightClientBlockRequest.html +++ b/interfaces/_near_js_types.provider_light_client.NextLightClientBlockRequest.html @@ -1,2 +1,2 @@ -NextLightClientBlockRequest | Documentation
      interface NextLightClientBlockRequest {
          last_block_hash: string;
      }

      Properties

      Properties

      last_block_hash: string
      \ No newline at end of file +NextLightClientBlockRequest | Documentation
      interface NextLightClientBlockRequest {
          last_block_hash: string;
      }

      Properties

      Properties

      last_block_hash: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_light_client.NextLightClientBlockResponse.html b/interfaces/_near_js_types.provider_light_client.NextLightClientBlockResponse.html index 2266741a82..c27db6fbba 100644 --- a/interfaces/_near_js_types.provider_light_client.NextLightClientBlockResponse.html +++ b/interfaces/_near_js_types.provider_light_client.NextLightClientBlockResponse.html @@ -1,7 +1,7 @@ -NextLightClientBlockResponse | Documentation
      interface NextLightClientBlockResponse {
          approvals_after_next: string[];
          inner_lite: BlockHeaderInnerLiteView;
          inner_rest_hash: string;
          next_block_inner_hash: string;
          next_bps?: ValidatorStakeView[];
          prev_block_hash: string;
      }

      Properties

      approvals_after_next +NextLightClientBlockResponse | Documentation
      interface NextLightClientBlockResponse {
          approvals_after_next: string[];
          inner_lite: BlockHeaderInnerLiteView;
          inner_rest_hash: string;
          next_block_inner_hash: string;
          next_bps?: ValidatorStakeView[];
          prev_block_hash: string;
      }

      Properties

      approvals_after_next: string[]
      inner_rest_hash: string
      next_block_inner_hash: string
      next_bps?: ValidatorStakeView[]
      prev_block_hash: string
      \ No newline at end of file +

      Properties

      approvals_after_next: string[]
      inner_rest_hash: string
      next_block_inner_hash: string
      next_bps?: ValidatorStakeView[]
      prev_block_hash: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.AccessKeyWithPublicKey.html b/interfaces/_near_js_types.provider_protocol.AccessKeyWithPublicKey.html index 1119076be4..cacb3edb9b 100644 --- a/interfaces/_near_js_types.provider_protocol.AccessKeyWithPublicKey.html +++ b/interfaces/_near_js_types.provider_protocol.AccessKeyWithPublicKey.html @@ -1,3 +1,3 @@ -AccessKeyWithPublicKey | Documentation
      interface AccessKeyWithPublicKey {
          account_id: string;
          public_key: string;
      }

      Properties

      account_id +AccessKeyWithPublicKey | Documentation
      interface AccessKeyWithPublicKey {
          account_id: string;
          public_key: string;
      }

      Properties

      account_id: string
      public_key: string
      \ No newline at end of file +

      Properties

      account_id: string
      public_key: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.BlockChange.html b/interfaces/_near_js_types.provider_protocol.BlockChange.html index ccd890a261..25796b6a4f 100644 --- a/interfaces/_near_js_types.provider_protocol.BlockChange.html +++ b/interfaces/_near_js_types.provider_protocol.BlockChange.html @@ -1,3 +1,3 @@ -BlockChange | Documentation
      interface BlockChange {
          account_id: string;
          type: string;
      }

      Properties

      account_id +BlockChange | Documentation
      interface BlockChange {
          account_id: string;
          type: string;
      }

      Properties

      Properties

      account_id: string
      type: string
      \ No newline at end of file +

      Properties

      account_id: string
      type: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.BlockChangeResult.html b/interfaces/_near_js_types.provider_protocol.BlockChangeResult.html index bad21e86fa..a220f97117 100644 --- a/interfaces/_near_js_types.provider_protocol.BlockChangeResult.html +++ b/interfaces/_near_js_types.provider_protocol.BlockChangeResult.html @@ -1,3 +1,3 @@ -BlockChangeResult | Documentation
      interface BlockChangeResult {
          block_hash: string;
          changes: BlockChange[];
      }

      Properties

      block_hash +BlockChangeResult | Documentation
      interface BlockChangeResult {
          block_hash: string;
          changes: BlockChange[];
      }

      Properties

      Properties

      block_hash: string
      changes: BlockChange[]
      \ No newline at end of file +

      Properties

      block_hash: string
      changes: BlockChange[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.BlockHeader.html b/interfaces/_near_js_types.provider_protocol.BlockHeader.html index b688e557ff..e6fc512708 100644 --- a/interfaces/_near_js_types.provider_protocol.BlockHeader.html +++ b/interfaces/_near_js_types.provider_protocol.BlockHeader.html @@ -1,4 +1,4 @@ -BlockHeader | Documentation
      interface BlockHeader {
          approvals: string[];
          block_merkle_root: string;
          challenges_result: any[];
          challenges_root: string;
          chunk_headers_root: string;
          chunk_mask: boolean[];
          chunk_receipts_root: string;
          chunk_tx_root: string;
          chunks_included: number;
          epoch_id: string;
          gas_price: string;
          hash: string;
          height: number;
          last_ds_final_block: string;
          last_final_block: string;
          latest_protocol_version: number;
          next_bp_hash: string;
          next_epoch_id: string;
          outcome_root: string;
          prev_hash: string;
          prev_state_root: string;
          random_value: string;
          rent_paid: string;
          signature: string;
          timestamp: number;
          timestamp_nanosec: string;
          total_supply: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      approvals +BlockHeader | Documentation
      interface BlockHeader {
          approvals: string[];
          block_merkle_root: string;
          challenges_result: any[];
          challenges_root: string;
          chunk_headers_root: string;
          chunk_mask: boolean[];
          chunk_receipts_root: string;
          chunk_tx_root: string;
          chunks_included: number;
          epoch_id: string;
          gas_price: string;
          hash: string;
          height: number;
          last_ds_final_block: string;
          last_final_block: string;
          latest_protocol_version: number;
          next_bp_hash: string;
          next_epoch_id: string;
          outcome_root: string;
          prev_hash: string;
          prev_state_root: string;
          random_value: string;
          rent_paid: string;
          signature: string;
          timestamp: number;
          timestamp_nanosec: string;
          total_supply: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      approvals: string[]
      block_merkle_root: string
      challenges_result: any[]
      challenges_root: string
      chunk_headers_root: string
      chunk_mask: boolean[]
      chunk_receipts_root: string
      chunk_tx_root: string
      chunks_included: number
      epoch_id: string
      gas_price: string
      hash: string
      height: number
      last_ds_final_block: string
      last_final_block: string
      latest_protocol_version: number
      next_bp_hash: string
      next_epoch_id: string
      outcome_root: string
      prev_hash: string
      prev_state_root: string
      random_value: string
      rent_paid: string
      signature: string
      timestamp: number
      timestamp_nanosec: string
      total_supply: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file +

      Properties

      approvals: string[]
      block_merkle_root: string
      challenges_result: any[]
      challenges_root: string
      chunk_headers_root: string
      chunk_mask: boolean[]
      chunk_receipts_root: string
      chunk_tx_root: string
      chunks_included: number
      epoch_id: string
      gas_price: string
      hash: string
      height: number
      last_ds_final_block: string
      last_final_block: string
      latest_protocol_version: number
      next_bp_hash: string
      next_epoch_id: string
      outcome_root: string
      prev_hash: string
      prev_state_root: string
      random_value: string
      rent_paid: string
      signature: string
      timestamp: number
      timestamp_nanosec: string
      total_supply: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.BlockHeaderInnerLiteView.html b/interfaces/_near_js_types.provider_protocol.BlockHeaderInnerLiteView.html index 9b3d75e25a..f08eac3d6e 100644 --- a/interfaces/_near_js_types.provider_protocol.BlockHeaderInnerLiteView.html +++ b/interfaces/_near_js_types.provider_protocol.BlockHeaderInnerLiteView.html @@ -1,4 +1,4 @@ -BlockHeaderInnerLiteView | Documentation
      interface BlockHeaderInnerLiteView {
          block_merkle_root: string;
          epoch_id: string;
          height: number;
          next_bp_hash: string;
          next_epoch_id: string;
          outcome_root: string;
          prev_state_root: string;
          timestamp: number;
          timestamp_nanosec: string;
      }

      Properties

      block_merkle_root +BlockHeaderInnerLiteView | Documentation
      interface BlockHeaderInnerLiteView {
          block_merkle_root: string;
          epoch_id: string;
          height: number;
          next_bp_hash: string;
          next_epoch_id: string;
          outcome_root: string;
          prev_state_root: string;
          timestamp: number;
          timestamp_nanosec: string;
      }

      Properties

      block_merkle_root: string
      epoch_id: string
      height: number
      next_bp_hash: string
      next_epoch_id: string
      outcome_root: string
      prev_state_root: string
      timestamp: number
      timestamp_nanosec: string
      \ No newline at end of file +

      Properties

      block_merkle_root: string
      epoch_id: string
      height: number
      next_bp_hash: string
      next_epoch_id: string
      outcome_root: string
      prev_state_root: string
      timestamp: number
      timestamp_nanosec: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.BlockResult.html b/interfaces/_near_js_types.provider_protocol.BlockResult.html index 6dc82049bd..d47889a3e1 100644 --- a/interfaces/_near_js_types.provider_protocol.BlockResult.html +++ b/interfaces/_near_js_types.provider_protocol.BlockResult.html @@ -1,4 +1,4 @@ -BlockResult | Documentation
      interface BlockResult {
          author: string;
          chunks: Chunk[];
          header: BlockHeader;
      }

      Properties

      author +BlockResult | Documentation
      interface BlockResult {
          author: string;
          chunks: Chunk[];
          header: BlockHeader;
      }

      Properties

      Properties

      author: string
      chunks: Chunk[]
      header: BlockHeader
      \ No newline at end of file +

      Properties

      author: string
      chunks: Chunk[]
      header: BlockHeader
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.ChangeResult.html b/interfaces/_near_js_types.provider_protocol.ChangeResult.html index 2dab6a9796..37ded6c32b 100644 --- a/interfaces/_near_js_types.provider_protocol.ChangeResult.html +++ b/interfaces/_near_js_types.provider_protocol.ChangeResult.html @@ -1,3 +1,3 @@ -ChangeResult | Documentation
      interface ChangeResult {
          block_hash: string;
          changes: any[];
      }

      Properties

      block_hash +ChangeResult | Documentation
      interface ChangeResult {
          block_hash: string;
          changes: any[];
      }

      Properties

      Properties

      block_hash: string
      changes: any[]
      \ No newline at end of file +

      Properties

      block_hash: string
      changes: any[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.Chunk.html b/interfaces/_near_js_types.provider_protocol.Chunk.html index 00f3824f7e..decc4cebf9 100644 --- a/interfaces/_near_js_types.provider_protocol.Chunk.html +++ b/interfaces/_near_js_types.provider_protocol.Chunk.html @@ -1,4 +1,4 @@ -Chunk | Documentation
      interface Chunk {
          balance_burnt: string;
          chunk_hash: string;
          encoded_length: number;
          encoded_merkle_root: string;
          gas_limit: number;
          gas_used: number;
          height_created: number;
          height_included: number;
          outcome_root: string;
          outgoing_receipts_root: string;
          prev_block_hash: string;
          prev_state_root: string;
          rent_paid: string;
          shard_id: number;
          signature: string;
          tx_root: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      balance_burnt +Chunk | Documentation
      interface Chunk {
          balance_burnt: string;
          chunk_hash: string;
          encoded_length: number;
          encoded_merkle_root: string;
          gas_limit: number;
          gas_used: number;
          height_created: number;
          height_included: number;
          outcome_root: string;
          outgoing_receipts_root: string;
          prev_block_hash: string;
          prev_state_root: string;
          rent_paid: string;
          shard_id: number;
          signature: string;
          tx_root: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      balance_burnt: string
      chunk_hash: string
      encoded_length: number
      encoded_merkle_root: string
      gas_limit: number
      gas_used: number
      height_created: number
      height_included: number
      outcome_root: string
      outgoing_receipts_root: string
      prev_block_hash: string
      prev_state_root: string
      rent_paid: string
      shard_id: number
      signature: string
      tx_root: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file +

      Properties

      balance_burnt: string
      chunk_hash: string
      encoded_length: number
      encoded_merkle_root: string
      gas_limit: number
      gas_used: number
      height_created: number
      height_included: number
      outcome_root: string
      outgoing_receipts_root: string
      prev_block_hash: string
      prev_state_root: string
      rent_paid: string
      shard_id: number
      signature: string
      tx_root: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.ChunkHeader.html b/interfaces/_near_js_types.provider_protocol.ChunkHeader.html index e532eba213..ab7ff66f32 100644 --- a/interfaces/_near_js_types.provider_protocol.ChunkHeader.html +++ b/interfaces/_near_js_types.provider_protocol.ChunkHeader.html @@ -1,4 +1,4 @@ -ChunkHeader | Documentation
      interface ChunkHeader {
          balance_burnt: string;
          chunk_hash: string;
          encoded_length: number;
          encoded_merkle_root: string;
          gas_limit: number;
          gas_used: number;
          height_created: number;
          height_included: number;
          outcome_root: string;
          outgoing_receipts_root: string;
          prev_block_hash: string;
          prev_state_root: string;
          rent_paid: string;
          shard_id: number;
          signature: string;
          tx_root: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      balance_burnt +ChunkHeader | Documentation
      interface ChunkHeader {
          balance_burnt: string;
          chunk_hash: string;
          encoded_length: number;
          encoded_merkle_root: string;
          gas_limit: number;
          gas_used: number;
          height_created: number;
          height_included: number;
          outcome_root: string;
          outgoing_receipts_root: string;
          prev_block_hash: string;
          prev_state_root: string;
          rent_paid: string;
          shard_id: number;
          signature: string;
          tx_root: string;
          validator_proposals: any[];
          validator_reward: string;
      }

      Properties

      balance_burnt: string
      chunk_hash: string
      encoded_length: number
      encoded_merkle_root: string
      gas_limit: number
      gas_used: number
      height_created: number
      height_included: number
      outcome_root: string
      outgoing_receipts_root: string
      prev_block_hash: string
      prev_state_root: string
      rent_paid: string
      shard_id: number
      signature: string
      tx_root: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file +

      Properties

      balance_burnt: string
      chunk_hash: string
      encoded_length: number
      encoded_merkle_root: string
      gas_limit: number
      gas_used: number
      height_created: number
      height_included: number
      outcome_root: string
      outgoing_receipts_root: string
      prev_block_hash: string
      prev_state_root: string
      rent_paid: string
      shard_id: number
      signature: string
      tx_root: string
      validator_proposals: any[]
      validator_reward: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.ChunkResult.html b/interfaces/_near_js_types.provider_protocol.ChunkResult.html index 459ca3f786..26963542b1 100644 --- a/interfaces/_near_js_types.provider_protocol.ChunkResult.html +++ b/interfaces/_near_js_types.provider_protocol.ChunkResult.html @@ -1,5 +1,5 @@ -ChunkResult | Documentation
      interface ChunkResult {
          author: string;
          header: ChunkHeader;
          receipts: any[];
          transactions: Transaction[];
      }

      Properties

      author +ChunkResult | Documentation
      interface ChunkResult {
          author: string;
          header: ChunkHeader;
          receipts: any[];
          transactions: Transaction[];
      }

      Properties

      author: string
      header: ChunkHeader
      receipts: any[]
      transactions: Transaction[]
      \ No newline at end of file +

      Properties

      author: string
      header: ChunkHeader
      receipts: any[]
      transactions: Transaction[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.GasPrice.html b/interfaces/_near_js_types.provider_protocol.GasPrice.html index 3c79e087fa..0a3c4c9d53 100644 --- a/interfaces/_near_js_types.provider_protocol.GasPrice.html +++ b/interfaces/_near_js_types.provider_protocol.GasPrice.html @@ -1,2 +1,2 @@ -GasPrice | Documentation
      interface GasPrice {
          gas_price: string;
      }

      Properties

      Properties

      gas_price: string
      \ No newline at end of file +GasPrice | Documentation
      interface GasPrice {
          gas_price: string;
      }

      Properties

      Properties

      gas_price: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.MerkleNode.html b/interfaces/_near_js_types.provider_protocol.MerkleNode.html index 28c6619f01..5f291a986d 100644 --- a/interfaces/_near_js_types.provider_protocol.MerkleNode.html +++ b/interfaces/_near_js_types.provider_protocol.MerkleNode.html @@ -1,3 +1,3 @@ -MerkleNode | Documentation
      interface MerkleNode {
          direction: string;
          hash: string;
      }

      Properties

      direction +MerkleNode | Documentation
      interface MerkleNode {
          direction: string;
          hash: string;
      }

      Properties

      Properties

      direction: string
      hash: string
      \ No newline at end of file +

      Properties

      direction: string
      hash: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.NearProtocolConfig.html b/interfaces/_near_js_types.provider_protocol.NearProtocolConfig.html index 57adaee83d..687f640d01 100644 --- a/interfaces/_near_js_types.provider_protocol.NearProtocolConfig.html +++ b/interfaces/_near_js_types.provider_protocol.NearProtocolConfig.html @@ -1,2 +1,2 @@ -NearProtocolConfig | Documentation
      interface NearProtocolConfig {
          runtime_config: NearProtocolRuntimeConfig;
      }

      Properties

      Properties

      \ No newline at end of file +NearProtocolConfig | Documentation
      interface NearProtocolConfig {
          runtime_config: NearProtocolRuntimeConfig;
      }

      Properties

      Properties

      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.NearProtocolRuntimeConfig.html b/interfaces/_near_js_types.provider_protocol.NearProtocolRuntimeConfig.html index eb4dd6caeb..2cafbe7337 100644 --- a/interfaces/_near_js_types.provider_protocol.NearProtocolRuntimeConfig.html +++ b/interfaces/_near_js_types.provider_protocol.NearProtocolRuntimeConfig.html @@ -1,2 +1,2 @@ -NearProtocolRuntimeConfig | Documentation
      interface NearProtocolRuntimeConfig {
          storage_amount_per_byte: string;
      }

      Properties

      storage_amount_per_byte: string
      \ No newline at end of file +NearProtocolRuntimeConfig | Documentation
      interface NearProtocolRuntimeConfig {
          storage_amount_per_byte: string;
      }

      Properties

      storage_amount_per_byte: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.NodeStatusResult.html b/interfaces/_near_js_types.provider_protocol.NodeStatusResult.html index 99d0f00fbe..a3a3d12e09 100644 --- a/interfaces/_near_js_types.provider_protocol.NodeStatusResult.html +++ b/interfaces/_near_js_types.provider_protocol.NodeStatusResult.html @@ -1,6 +1,6 @@ -NodeStatusResult | Documentation
      interface NodeStatusResult {
          chain_id: string;
          rpc_addr: string;
          sync_info: SyncInfo;
          validators: string[];
          version: Version;
      }

      Properties

      chain_id +NodeStatusResult | Documentation
      interface NodeStatusResult {
          chain_id: string;
          rpc_addr: string;
          sync_info: SyncInfo;
          validators: string[];
          version: Version;
      }

      Properties

      chain_id: string
      rpc_addr: string
      sync_info: SyncInfo
      validators: string[]
      version: Version
      \ No newline at end of file +

      Properties

      chain_id: string
      rpc_addr: string
      sync_info: SyncInfo
      validators: string[]
      version: Version
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.SyncInfo.html b/interfaces/_near_js_types.provider_protocol.SyncInfo.html index b5dd9d5f7e..c2493572fd 100644 --- a/interfaces/_near_js_types.provider_protocol.SyncInfo.html +++ b/interfaces/_near_js_types.provider_protocol.SyncInfo.html @@ -1,6 +1,6 @@ -SyncInfo | Documentation
      interface SyncInfo {
          latest_block_hash: string;
          latest_block_height: number;
          latest_block_time: string;
          latest_state_root: string;
          syncing: boolean;
      }

      Properties

      latest_block_hash +SyncInfo | Documentation
      interface SyncInfo {
          latest_block_hash: string;
          latest_block_height: number;
          latest_block_time: string;
          latest_state_root: string;
          syncing: boolean;
      }

      Properties

      latest_block_hash: string
      latest_block_height: number
      latest_block_time: string
      latest_state_root: string
      syncing: boolean
      \ No newline at end of file +

      Properties

      latest_block_hash: string
      latest_block_height: number
      latest_block_time: string
      latest_state_root: string
      syncing: boolean
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.TotalWeight.html b/interfaces/_near_js_types.provider_protocol.TotalWeight.html index 8bf70018a3..c002e7aa6c 100644 --- a/interfaces/_near_js_types.provider_protocol.TotalWeight.html +++ b/interfaces/_near_js_types.provider_protocol.TotalWeight.html @@ -1,2 +1,2 @@ -TotalWeight | Documentation
      interface TotalWeight {
          num: number;
      }

      Properties

      num -

      Properties

      num: number
      \ No newline at end of file +TotalWeight | Documentation
      interface TotalWeight {
          num: number;
      }

      Properties

      num +

      Properties

      num: number
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_protocol.Transaction.html b/interfaces/_near_js_types.provider_protocol.Transaction.html index 33ebc69967..70be2b63bb 100644 --- a/interfaces/_near_js_types.provider_protocol.Transaction.html +++ b/interfaces/_near_js_types.provider_protocol.Transaction.html @@ -1,8 +1,8 @@ -Transaction | Documentation
      interface Transaction {
          actions: any[];
          hash: string;
          nonce: bigint;
          public_key: string;
          receiver_id: string;
          signature: string;
          signer_id: string;
      }

      Properties

      actions +Transaction | Documentation
      interface Transaction {
          actions: any[];
          hash: string;
          nonce: bigint;
          public_key: string;
          receiver_id: string;
          signature: string;
          signer_id: string;
      }

      Properties

      actions: any[]
      hash: string
      nonce: bigint
      public_key: string
      receiver_id: string
      signature: string
      signer_id: string
      \ No newline at end of file +

      Properties

      actions: any[]
      hash: string
      nonce: bigint
      public_key: string
      receiver_id: string
      signature: string
      signer_id: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.CallFunctionRequest.html b/interfaces/_near_js_types.provider_request.CallFunctionRequest.html index 84c633dfde..d5a24dcb42 100644 --- a/interfaces/_near_js_types.provider_request.CallFunctionRequest.html +++ b/interfaces/_near_js_types.provider_request.CallFunctionRequest.html @@ -1,5 +1,5 @@ -CallFunctionRequest | Documentation
      interface CallFunctionRequest {
          account_id: string;
          args_base64: string;
          method_name: string;
          request_type: "call_function";
      }

      Properties

      account_id +CallFunctionRequest | Documentation
      interface CallFunctionRequest {
          account_id: string;
          args_base64: string;
          method_name: string;
          request_type: "call_function";
      }

      Properties

      account_id: string
      args_base64: string
      method_name: string
      request_type: "call_function"
      \ No newline at end of file +

      Properties

      account_id: string
      args_base64: string
      method_name: string
      request_type: "call_function"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.ViewAccessKeyListRequest.html b/interfaces/_near_js_types.provider_request.ViewAccessKeyListRequest.html index 4687f4dd06..689141955c 100644 --- a/interfaces/_near_js_types.provider_request.ViewAccessKeyListRequest.html +++ b/interfaces/_near_js_types.provider_request.ViewAccessKeyListRequest.html @@ -1,3 +1,3 @@ -ViewAccessKeyListRequest | Documentation
      interface ViewAccessKeyListRequest {
          account_id: string;
          request_type: "view_access_key_list";
      }

      Properties

      account_id +ViewAccessKeyListRequest | Documentation
      interface ViewAccessKeyListRequest {
          account_id: string;
          request_type: "view_access_key_list";
      }

      Properties

      account_id: string
      request_type: "view_access_key_list"
      \ No newline at end of file +

      Properties

      account_id: string
      request_type: "view_access_key_list"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.ViewAccessKeyRequest.html b/interfaces/_near_js_types.provider_request.ViewAccessKeyRequest.html index f57aeab67a..dad8e4d1f2 100644 --- a/interfaces/_near_js_types.provider_request.ViewAccessKeyRequest.html +++ b/interfaces/_near_js_types.provider_request.ViewAccessKeyRequest.html @@ -1,4 +1,4 @@ -ViewAccessKeyRequest | Documentation
      interface ViewAccessKeyRequest {
          account_id: string;
          public_key: string;
          request_type: "view_access_key";
      }

      Properties

      account_id +ViewAccessKeyRequest | Documentation
      interface ViewAccessKeyRequest {
          account_id: string;
          public_key: string;
          request_type: "view_access_key";
      }

      Properties

      account_id: string
      public_key: string
      request_type: "view_access_key"
      \ No newline at end of file +

      Properties

      account_id: string
      public_key: string
      request_type: "view_access_key"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.ViewAccountRequest.html b/interfaces/_near_js_types.provider_request.ViewAccountRequest.html index 12629c103b..8b8b26065d 100644 --- a/interfaces/_near_js_types.provider_request.ViewAccountRequest.html +++ b/interfaces/_near_js_types.provider_request.ViewAccountRequest.html @@ -1,3 +1,3 @@ -ViewAccountRequest | Documentation
      interface ViewAccountRequest {
          account_id: string;
          request_type: "view_account";
      }

      Properties

      account_id +ViewAccountRequest | Documentation
      interface ViewAccountRequest {
          account_id: string;
          request_type: "view_account";
      }

      Properties

      account_id: string
      request_type: "view_account"
      \ No newline at end of file +

      Properties

      account_id: string
      request_type: "view_account"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.ViewCodeRequest.html b/interfaces/_near_js_types.provider_request.ViewCodeRequest.html index ead793296b..210dce9b1c 100644 --- a/interfaces/_near_js_types.provider_request.ViewCodeRequest.html +++ b/interfaces/_near_js_types.provider_request.ViewCodeRequest.html @@ -1,3 +1,3 @@ -ViewCodeRequest | Documentation
      interface ViewCodeRequest {
          account_id: string;
          request_type: "view_code";
      }

      Properties

      account_id +ViewCodeRequest | Documentation
      interface ViewCodeRequest {
          account_id: string;
          request_type: "view_code";
      }

      Properties

      account_id: string
      request_type: "view_code"
      \ No newline at end of file +

      Properties

      account_id: string
      request_type: "view_code"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_request.ViewStateRequest.html b/interfaces/_near_js_types.provider_request.ViewStateRequest.html index 559360decb..0fb903e439 100644 --- a/interfaces/_near_js_types.provider_request.ViewStateRequest.html +++ b/interfaces/_near_js_types.provider_request.ViewStateRequest.html @@ -1,4 +1,4 @@ -ViewStateRequest | Documentation
      interface ViewStateRequest {
          account_id: string;
          prefix_base64: string;
          request_type: "view_state";
      }

      Properties

      account_id +ViewStateRequest | Documentation
      interface ViewStateRequest {
          account_id: string;
          prefix_base64: string;
          request_type: "view_state";
      }

      Properties

      account_id: string
      prefix_base64: string
      request_type: "view_state"
      \ No newline at end of file +

      Properties

      account_id: string
      prefix_base64: string
      request_type: "view_state"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.AccessKeyInfoView.html b/interfaces/_near_js_types.provider_response.AccessKeyInfoView.html index 998984ded6..ad5dbae4c2 100644 --- a/interfaces/_near_js_types.provider_response.AccessKeyInfoView.html +++ b/interfaces/_near_js_types.provider_response.AccessKeyInfoView.html @@ -1,3 +1,3 @@ -AccessKeyInfoView | Documentation
      interface AccessKeyInfoView {
          access_key: AccessKeyView;
          public_key: string;
      }

      Properties

      access_key +AccessKeyInfoView | Documentation
      \ No newline at end of file +

      Properties

      access_key: AccessKeyView
      public_key: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.AccessKeyList.html b/interfaces/_near_js_types.provider_response.AccessKeyList.html index b429cedc87..46ffe54d38 100644 --- a/interfaces/_near_js_types.provider_response.AccessKeyList.html +++ b/interfaces/_near_js_types.provider_response.AccessKeyList.html @@ -1,4 +1,4 @@ -AccessKeyList | Documentation
      interface AccessKeyList {
          block_hash: string;
          block_height: number;
          keys: AccessKeyInfoView[];
      }

      Hierarchy (view full)

      Properties

      block_hash +AccessKeyList | Documentation
      interface AccessKeyList {
          block_hash: string;
          block_height: number;
          keys: AccessKeyInfoView[];
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.AccessKeyView.html b/interfaces/_near_js_types.provider_response.AccessKeyView.html index 576d1fea59..355b6b65cf 100644 --- a/interfaces/_near_js_types.provider_response.AccessKeyView.html +++ b/interfaces/_near_js_types.provider_response.AccessKeyView.html @@ -1,5 +1,5 @@ -AccessKeyView | Documentation
      interface AccessKeyView {
          block_hash: string;
          block_height: number;
          nonce: bigint;
          permission: FunctionCallPermissionView | "FullAccess";
      }

      Hierarchy (view full)

      Properties

      block_hash +AccessKeyView | Documentation
      interface AccessKeyView {
          block_hash: string;
          block_height: number;
          nonce: bigint;
          permission: FunctionCallPermissionView | "FullAccess";
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      nonce: bigint
      permission: FunctionCallPermissionView | "FullAccess"
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      nonce: bigint
      permission: FunctionCallPermissionView | "FullAccess"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.AccessKeyViewRaw.html b/interfaces/_near_js_types.provider_response.AccessKeyViewRaw.html index d4446bfbfc..ed760e58ae 100644 --- a/interfaces/_near_js_types.provider_response.AccessKeyViewRaw.html +++ b/interfaces/_near_js_types.provider_response.AccessKeyViewRaw.html @@ -1,5 +1,5 @@ -AccessKeyViewRaw | Documentation
      interface AccessKeyViewRaw {
          block_hash: string;
          block_height: number;
          nonce: number;
          permission: FunctionCallPermissionView | "FullAccess";
      }

      Hierarchy (view full)

      Properties

      block_hash +AccessKeyViewRaw | Documentation
      interface AccessKeyViewRaw {
          block_hash: string;
          block_height: number;
          nonce: number;
          permission: FunctionCallPermissionView | "FullAccess";
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      nonce: number
      permission: FunctionCallPermissionView | "FullAccess"
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      nonce: number
      permission: FunctionCallPermissionView | "FullAccess"
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.AccountView.html b/interfaces/_near_js_types.provider_response.AccountView.html index 66de6ba3ce..8cdbd6c3fd 100644 --- a/interfaces/_near_js_types.provider_response.AccountView.html +++ b/interfaces/_near_js_types.provider_response.AccountView.html @@ -1,8 +1,8 @@ -AccountView | Documentation
      interface AccountView {
          amount: string;
          block_hash: string;
          block_height: number;
          code_hash: string;
          locked: string;
          storage_paid_at: number;
          storage_usage: number;
      }

      Hierarchy (view full)

      Properties

      amount +AccountView | Documentation
      interface AccountView {
          amount: string;
          block_hash: string;
          block_height: number;
          code_hash: string;
          locked: string;
          storage_paid_at: number;
          storage_usage: number;
      }

      Hierarchy (view full)

      Properties

      amount: string
      block_hash: string
      block_height: number
      code_hash: string
      locked: string
      storage_paid_at: number
      storage_usage: number
      \ No newline at end of file +

      Properties

      amount: string
      block_hash: string
      block_height: number
      code_hash: string
      locked: string
      storage_paid_at: number
      storage_usage: number
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.CodeResult.html b/interfaces/_near_js_types.provider_response.CodeResult.html index 59f5e56ca8..16fcb5626b 100644 --- a/interfaces/_near_js_types.provider_response.CodeResult.html +++ b/interfaces/_near_js_types.provider_response.CodeResult.html @@ -1,5 +1,5 @@ -CodeResult | Documentation
      interface CodeResult {
          block_hash: string;
          block_height: number;
          logs: string[];
          result: number[];
      }

      Hierarchy (view full)

      Properties

      block_hash +CodeResult | Documentation
      interface CodeResult {
          block_hash: string;
          block_height: number;
          logs: string[];
          result: number[];
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      logs: string[]
      result: number[]
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      logs: string[]
      result: number[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ContractCodeView.html b/interfaces/_near_js_types.provider_response.ContractCodeView.html index e5ca60cb5a..50c11e61e6 100644 --- a/interfaces/_near_js_types.provider_response.ContractCodeView.html +++ b/interfaces/_near_js_types.provider_response.ContractCodeView.html @@ -1,5 +1,5 @@ -ContractCodeView | Documentation
      interface ContractCodeView {
          block_hash: string;
          block_height: number;
          code_base64: string;
          hash: string;
      }

      Hierarchy (view full)

      Properties

      block_hash +ContractCodeView | Documentation
      interface ContractCodeView {
          block_hash: string;
          block_height: number;
          code_base64: string;
          hash: string;
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      code_base64: string
      hash: string
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      code_base64: string
      hash: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ExecutionError.html b/interfaces/_near_js_types.provider_response.ExecutionError.html index b871ea7b2a..713f4600b3 100644 --- a/interfaces/_near_js_types.provider_response.ExecutionError.html +++ b/interfaces/_near_js_types.provider_response.ExecutionError.html @@ -1,3 +1,3 @@ -ExecutionError | Documentation
      interface ExecutionError {
          error_message: string;
          error_type: string;
      }

      Properties

      error_message +ExecutionError | Documentation
      interface ExecutionError {
          error_message: string;
          error_type: string;
      }

      Properties

      error_message: string
      error_type: string
      \ No newline at end of file +

      Properties

      error_message: string
      error_type: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ExecutionOutcome.html b/interfaces/_near_js_types.provider_response.ExecutionOutcome.html index 368af705bd..5ee6bfd07e 100644 --- a/interfaces/_near_js_types.provider_response.ExecutionOutcome.html +++ b/interfaces/_near_js_types.provider_response.ExecutionOutcome.html @@ -1,7 +1,7 @@ -ExecutionOutcome | Documentation
      interface ExecutionOutcome {
          executor_id: string;
          gas_burnt: number;
          logs: string[];
          receipt_ids: string[];
          status: ExecutionStatus | ExecutionStatusBasic;
          tokens_burnt: string;
      }

      Properties

      executor_id +ExecutionOutcome | Documentation
      interface ExecutionOutcome {
          executor_id: string;
          gas_burnt: number;
          logs: string[];
          receipt_ids: string[];
          status: ExecutionStatus | ExecutionStatusBasic;
          tokens_burnt: string;
      }

      Properties

      executor_id: string
      gas_burnt: number
      logs: string[]
      receipt_ids: string[]
      tokens_burnt: string
      \ No newline at end of file +

      Properties

      executor_id: string
      gas_burnt: number
      logs: string[]
      receipt_ids: string[]
      tokens_burnt: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithId.html b/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithId.html index 413787da49..167f15edf5 100644 --- a/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithId.html +++ b/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithId.html @@ -1,3 +1,3 @@ -ExecutionOutcomeWithId | Documentation
      interface ExecutionOutcomeWithId {
          id: string;
          outcome: ExecutionOutcome;
      }

      Properties

      id +ExecutionOutcomeWithId | Documentation
      interface ExecutionOutcomeWithId {
          id: string;
          outcome: ExecutionOutcome;
      }

      Properties

      Properties

      id: string
      \ No newline at end of file +

      Properties

      id: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithIdView.html b/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithIdView.html index 259ec90d0d..811fe45ccd 100644 --- a/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithIdView.html +++ b/interfaces/_near_js_types.provider_response.ExecutionOutcomeWithIdView.html @@ -1,5 +1,5 @@ -ExecutionOutcomeWithIdView | Documentation
      interface ExecutionOutcomeWithIdView {
          block_hash: string;
          id: string;
          outcome: ExecutionOutcome;
          proof: MerklePath;
      }

      Properties

      block_hash +ExecutionOutcomeWithIdView | Documentation
      interface ExecutionOutcomeWithIdView {
          block_hash: string;
          id: string;
          outcome: ExecutionOutcome;
          proof: MerklePath;
      }

      Properties

      block_hash: string
      id: string
      proof: MerklePath
      \ No newline at end of file +

      Properties

      block_hash: string
      id: string
      proof: MerklePath
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ExecutionStatus.html b/interfaces/_near_js_types.provider_response.ExecutionStatus.html index 1002167e28..ae70bf6873 100644 --- a/interfaces/_near_js_types.provider_response.ExecutionStatus.html +++ b/interfaces/_near_js_types.provider_response.ExecutionStatus.html @@ -1,4 +1,4 @@ -ExecutionStatus | Documentation
      interface ExecutionStatus {
          Failure?: ExecutionError;
          SuccessReceiptId?: string;
          SuccessValue?: string;
      }

      Properties

      Failure? +ExecutionStatus | Documentation
      interface ExecutionStatus {
          Failure?: ExecutionError;
          SuccessReceiptId?: string;
          SuccessValue?: string;
      }

      Properties

      Failure?: ExecutionError
      SuccessReceiptId?: string
      SuccessValue?: string
      \ No newline at end of file +

      Properties

      Failure?: ExecutionError
      SuccessReceiptId?: string
      SuccessValue?: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.FinalExecutionOutcome.html b/interfaces/_near_js_types.provider_response.FinalExecutionOutcome.html index f87aa633d0..847f8be117 100644 --- a/interfaces/_near_js_types.provider_response.FinalExecutionOutcome.html +++ b/interfaces/_near_js_types.provider_response.FinalExecutionOutcome.html @@ -1,6 +1,6 @@ -FinalExecutionOutcome | Documentation

      Properties

      final_execution_status +FinalExecutionOutcome | Documentation
      \ No newline at end of file +

      Properties

      final_execution_status: TxExecutionStatus
      receipts_outcome: ExecutionOutcomeWithId[]
      transaction: any
      transaction_outcome: ExecutionOutcomeWithId
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.FinalExecutionStatus.html b/interfaces/_near_js_types.provider_response.FinalExecutionStatus.html index e820d906d6..0b4a5da8de 100644 --- a/interfaces/_near_js_types.provider_response.FinalExecutionStatus.html +++ b/interfaces/_near_js_types.provider_response.FinalExecutionStatus.html @@ -1,3 +1,3 @@ -FinalExecutionStatus | Documentation
      interface FinalExecutionStatus {
          Failure?: ExecutionError;
          SuccessValue?: string;
      }

      Properties

      Failure? +FinalExecutionStatus | Documentation
      interface FinalExecutionStatus {
          Failure?: ExecutionError;
          SuccessValue?: string;
      }

      Properties

      Failure?: ExecutionError
      SuccessValue?: string
      \ No newline at end of file +

      Properties

      Failure?: ExecutionError
      SuccessValue?: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.FunctionCallPermissionView.html b/interfaces/_near_js_types.provider_response.FunctionCallPermissionView.html index c56872b501..a892b681a5 100644 --- a/interfaces/_near_js_types.provider_response.FunctionCallPermissionView.html +++ b/interfaces/_near_js_types.provider_response.FunctionCallPermissionView.html @@ -1,2 +1,2 @@ -FunctionCallPermissionView | Documentation
      interface FunctionCallPermissionView {
          FunctionCall: {
              allowance: string;
              method_names: string[];
              receiver_id: string;
          };
      }

      Properties

      Properties

      FunctionCall: {
          allowance: string;
          method_names: string[];
          receiver_id: string;
      }

      Type declaration

      • allowance: string
      • method_names: string[]
      • receiver_id: string
      \ No newline at end of file +FunctionCallPermissionView | Documentation
      interface FunctionCallPermissionView {
          FunctionCall: {
              allowance: string;
              method_names: string[];
              receiver_id: string;
          };
      }

      Properties

      Properties

      FunctionCall: {
          allowance: string;
          method_names: string[];
          receiver_id: string;
      }

      Type declaration

      • allowance: string
      • method_names: string[]
      • receiver_id: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.QueryResponseKind.html b/interfaces/_near_js_types.provider_response.QueryResponseKind.html index 71949acb1d..ea83268d34 100644 --- a/interfaces/_near_js_types.provider_response.QueryResponseKind.html +++ b/interfaces/_near_js_types.provider_response.QueryResponseKind.html @@ -1,3 +1,3 @@ -QueryResponseKind | Documentation
      interface QueryResponseKind {
          block_hash: string;
          block_height: number;
      }

      Hierarchy (view full)

      Properties

      block_hash +QueryResponseKind | Documentation
      interface QueryResponseKind {
          block_hash: string;
          block_height: number;
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_response.ViewStateResult.html b/interfaces/_near_js_types.provider_response.ViewStateResult.html index 556a0c5f0f..bef41cebde 100644 --- a/interfaces/_near_js_types.provider_response.ViewStateResult.html +++ b/interfaces/_near_js_types.provider_response.ViewStateResult.html @@ -1,5 +1,5 @@ -ViewStateResult | Documentation
      interface ViewStateResult {
          block_hash: string;
          block_height: number;
          proof: string[];
          values: StateItem[];
      }

      Hierarchy (view full)

      Properties

      block_hash +ViewStateResult | Documentation
      interface ViewStateResult {
          block_hash: string;
          block_height: number;
          proof: string[];
          values: StateItem[];
      }

      Hierarchy (view full)

      Properties

      block_hash: string
      block_height: number
      proof: string[]
      values: StateItem[]
      \ No newline at end of file +

      Properties

      block_hash: string
      block_height: number
      proof: string[]
      values: StateItem[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_validator.CurrentEpochValidatorInfo.html b/interfaces/_near_js_types.provider_validator.CurrentEpochValidatorInfo.html index ed5b77fd03..bce2c6ed46 100644 --- a/interfaces/_near_js_types.provider_validator.CurrentEpochValidatorInfo.html +++ b/interfaces/_near_js_types.provider_validator.CurrentEpochValidatorInfo.html @@ -1,8 +1,8 @@ -CurrentEpochValidatorInfo | Documentation
      interface CurrentEpochValidatorInfo {
          account_id: string;
          is_slashed: boolean;
          num_expected_blocks: number;
          num_produced_blocks: number;
          public_key: string;
          shards: number[];
          stake: string;
      }

      Properties

      account_id +CurrentEpochValidatorInfo | Documentation
      interface CurrentEpochValidatorInfo {
          account_id: string;
          is_slashed: boolean;
          num_expected_blocks: number;
          num_produced_blocks: number;
          public_key: string;
          shards: number[];
          stake: string;
      }

      Properties

      account_id: string
      is_slashed: boolean
      num_expected_blocks: number
      num_produced_blocks: number
      public_key: string
      shards: number[]
      stake: string
      \ No newline at end of file +

      Properties

      account_id: string
      is_slashed: boolean
      num_expected_blocks: number
      num_produced_blocks: number
      public_key: string
      shards: number[]
      stake: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_validator.EpochValidatorInfo.html b/interfaces/_near_js_types.provider_validator.EpochValidatorInfo.html index 0b41ccc340..24b2a4baeb 100644 --- a/interfaces/_near_js_types.provider_validator.EpochValidatorInfo.html +++ b/interfaces/_near_js_types.provider_validator.EpochValidatorInfo.html @@ -1,8 +1,8 @@ -EpochValidatorInfo | Documentation

      Properties

      current_fisherman +EpochValidatorInfo | Documentation
      \ No newline at end of file +

      Properties

      current_fisherman: ValidatorStakeView[]
      current_proposals: ValidatorStakeView[]
      current_validators: CurrentEpochValidatorInfo[]
      epoch_start_height: number
      next_fisherman: ValidatorStakeView[]
      next_validators: NextEpochValidatorInfo[]
      prev_epoch_kickout: ValidatorStakeView[]
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_validator.NextEpochValidatorInfo.html b/interfaces/_near_js_types.provider_validator.NextEpochValidatorInfo.html index 4eb6ff4590..c2a43b8356 100644 --- a/interfaces/_near_js_types.provider_validator.NextEpochValidatorInfo.html +++ b/interfaces/_near_js_types.provider_validator.NextEpochValidatorInfo.html @@ -1,5 +1,5 @@ -NextEpochValidatorInfo | Documentation
      interface NextEpochValidatorInfo {
          account_id: string;
          public_key: string;
          shards: number[];
          stake: string;
      }

      Properties

      account_id +NextEpochValidatorInfo | Documentation
      interface NextEpochValidatorInfo {
          account_id: string;
          public_key: string;
          shards: number[];
          stake: string;
      }

      Properties

      account_id: string
      public_key: string
      shards: number[]
      stake: string
      \ No newline at end of file +

      Properties

      account_id: string
      public_key: string
      shards: number[]
      stake: string
      \ No newline at end of file diff --git a/interfaces/_near_js_types.provider_validator.ValidatorStakeView.html b/interfaces/_near_js_types.provider_validator.ValidatorStakeView.html index f3deccf566..05d0829459 100644 --- a/interfaces/_near_js_types.provider_validator.ValidatorStakeView.html +++ b/interfaces/_near_js_types.provider_validator.ValidatorStakeView.html @@ -1,5 +1,5 @@ -ValidatorStakeView | Documentation
      interface ValidatorStakeView {
          account_id: string;
          public_key: string;
          stake: string;
          validator_stake_struct_version: string;
      }

      Properties

      account_id +ValidatorStakeView | Documentation
      interface ValidatorStakeView {
          account_id: string;
          public_key: string;
          stake: string;
          validator_stake_struct_version: string;
      }

      Properties

      account_id: string
      public_key: string
      stake: string
      validator_stake_struct_version: string
      \ No newline at end of file +

      Properties

      account_id: string
      public_key: string
      stake: string
      validator_stake_struct_version: string
      \ No newline at end of file diff --git a/interfaces/_near_js_utils.logger_interface.LoggerService.html b/interfaces/_near_js_utils.logger_interface.LoggerService.html index 764598b764..9c0d1c4b3b 100644 --- a/interfaces/_near_js_utils.logger_interface.LoggerService.html +++ b/interfaces/_near_js_utils.logger_interface.LoggerService.html @@ -1,13 +1,13 @@ -LoggerService | Documentation
      interface LoggerService {
          debug?(message, ...optionalParams): any;
          error(message, ...optionalParams): any;
          fatal?(message, ...optionalParams): any;
          log(message, ...optionalParams): any;
          verbose?(message, ...optionalParams): any;
          warn(message, ...optionalParams): any;
      }

      Implemented by

      Methods

      debug? +LoggerService | Documentation
      interface LoggerService {
          debug?(message, ...optionalParams): any;
          error(message, ...optionalParams): any;
          fatal?(message, ...optionalParams): any;
          log(message, ...optionalParams): any;
          verbose?(message, ...optionalParams): any;
          warn(message, ...optionalParams): any;
      }

      Implemented by

      Methods

      \ No newline at end of file +

      Parameters

      • message: any
      • Rest ...optionalParams: any[]

      Returns any

      \ No newline at end of file diff --git a/interfaces/_near_js_utils.validators.ChangedValidatorInfo.html b/interfaces/_near_js_utils.validators.ChangedValidatorInfo.html index 5f494a50f2..bfe97e43dc 100644 --- a/interfaces/_near_js_utils.validators.ChangedValidatorInfo.html +++ b/interfaces/_near_js_utils.validators.ChangedValidatorInfo.html @@ -1,3 +1,3 @@ -ChangedValidatorInfo | Documentation
      interface ChangedValidatorInfo {
          current: CurrentEpochValidatorInfo;
          next: NextEpochValidatorInfo;
      }

      Properties

      current +ChangedValidatorInfo | Documentation
      interface ChangedValidatorInfo {
          current: CurrentEpochValidatorInfo;
          next: NextEpochValidatorInfo;
      }

      Properties

      Properties

      current: CurrentEpochValidatorInfo
      next: NextEpochValidatorInfo
      \ No newline at end of file +

      Properties

      current: CurrentEpochValidatorInfo
      next: NextEpochValidatorInfo
      \ No newline at end of file diff --git a/interfaces/_near_js_utils.validators.EpochValidatorsDiff.html b/interfaces/_near_js_utils.validators.EpochValidatorsDiff.html index 32ebf84678..b03b56026d 100644 --- a/interfaces/_near_js_utils.validators.EpochValidatorsDiff.html +++ b/interfaces/_near_js_utils.validators.EpochValidatorsDiff.html @@ -1,4 +1,4 @@ -EpochValidatorsDiff | Documentation
      interface EpochValidatorsDiff {
          changedValidators: ChangedValidatorInfo[];
          newValidators: NextEpochValidatorInfo[];
          removedValidators: CurrentEpochValidatorInfo[];
      }

      Properties

      changedValidators +EpochValidatorsDiff | Documentation
      interface EpochValidatorsDiff {
          changedValidators: ChangedValidatorInfo[];
          newValidators: NextEpochValidatorInfo[];
          removedValidators: CurrentEpochValidatorInfo[];
      }

      Properties

      changedValidators: ChangedValidatorInfo[]
      newValidators: NextEpochValidatorInfo[]
      removedValidators: CurrentEpochValidatorInfo[]
      \ No newline at end of file +

      Properties

      changedValidators: ChangedValidatorInfo[]
      newValidators: NextEpochValidatorInfo[]
      removedValidators: CurrentEpochValidatorInfo[]
      \ No newline at end of file diff --git a/interfaces/_near_js_wallet_account.near.NearConfig.html b/interfaces/_near_js_wallet_account.near.NearConfig.html index 6b868ded9d..b6acaa1704 100644 --- a/interfaces/_near_js_wallet_account.near.NearConfig.html +++ b/interfaces/_near_js_wallet_account.near.NearConfig.html @@ -1,4 +1,4 @@ -NearConfig | Documentation
      interface NearConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Properties

      deps? +NearConfig | Documentation
      interface NearConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Properties

      deps?: {
          keyStore: KeyStore;
      }

      Backward-compatibility for older versions

      -

      Type declaration

      headers?: {
          [key: string]: string | number;
      }

      NEAR RPC API headers. Can be used to pass API KEY and other parameters.

      +

      Type declaration

      headers?: {
          [key: string]: string | number;
      }

      NEAR RPC API headers. Can be used to pass API KEY and other parameters.

      Type declaration

      • [key: string]: string | number
      helperUrl?: string

      NEAR Contract Helper url used to create accounts if no master account is provided

      +
      helperUrl?: string

      NEAR Contract Helper url used to create accounts if no master account is provided

      initialBalance?: string

      The balance transferred from the NearConfig#masterAccount to a created account

      +
      initialBalance?: string

      The balance transferred from the NearConfig#masterAccount to a created account

      jsvmAccountId?: string

      JVSM account ID for NEAR JS SDK

      -
      keyStore?: KeyStore

      Holds KeyPair for signing transactions

      -
      logger?: false | LoggerService

      Specifies the logger to use. Pass false to turn off logging.

      -
      masterAccount?: string

      The account to use when creating new accounts

      +
      jsvmAccountId?: string

      JVSM account ID for NEAR JS SDK

      +
      keyStore?: KeyStore

      Holds KeyPair for signing transactions

      +
      logger?: false | LoggerService

      Specifies the logger to use. Pass false to turn off logging.

      +
      masterAccount?: string

      The account to use when creating new accounts

      networkId: string

      KeyPair are stored in a KeyStore under the networkId namespace.

      -
      nodeUrl: string

      NEAR RPC API url. used to make JSON RPC calls to interact with NEAR.

      +
      networkId: string

      KeyPair are stored in a KeyStore under the networkId namespace.

      +
      nodeUrl: string

      NEAR RPC API url. used to make JSON RPC calls to interact with NEAR.

      provider?: Provider

      Specifies NEAR RPC API connections, and is used to make JSON RPC calls to interact with NEAR

      +
      provider?: Provider

      Specifies NEAR RPC API connections, and is used to make JSON RPC calls to interact with NEAR

      See

      -
      walletUrl?: string

      NEAR wallet url used to redirect users to their wallet in browser applications.

      +
      walletUrl?: string

      NEAR wallet url used to redirect users to their wallet in browser applications.

      \ No newline at end of file +
      \ No newline at end of file diff --git a/interfaces/near_api_js.browserConnect.ConnectConfig.html b/interfaces/near_api_js.browserConnect.ConnectConfig.html index 9c20da761f..6cbde56e40 100644 --- a/interfaces/near_api_js.browserConnect.ConnectConfig.html +++ b/interfaces/near_api_js.browserConnect.ConnectConfig.html @@ -1,4 +1,4 @@ -ConnectConfig | Documentation
      interface ConnectConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Hierarchy (view full)

      Properties

      deps? +ConnectConfig | Documentation
      interface ConnectConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Hierarchy (view full)

      Properties

      deps? headers? helperUrl? initialBalance? diff --git a/interfaces/near_api_js.connect.ConnectConfig.html b/interfaces/near_api_js.connect.ConnectConfig.html index 643f6bd3b8..9906cdd68e 100644 --- a/interfaces/near_api_js.connect.ConnectConfig.html +++ b/interfaces/near_api_js.connect.ConnectConfig.html @@ -1,4 +1,4 @@ -ConnectConfig | Documentation
      interface ConnectConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyPath?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Hierarchy (view full)

      Properties

      deps? +ConnectConfig | Documentation
      interface ConnectConfig {
          deps?: {
              keyStore: KeyStore;
          };
          headers?: {
              [key: string]: string | number;
          };
          helperUrl?: string;
          initialBalance?: string;
          jsvmAccountId?: string;
          keyPath?: string;
          keyStore?: KeyStore;
          logger?: false | LoggerService;
          masterAccount?: string;
          networkId: string;
          nodeUrl: string;
          provider?: Provider;
          walletUrl?: string;
      }

      Hierarchy (view full)

      Properties

      See

      LocalAccountCreator

      jsvmAccountId?: string

      JVSM account ID for NEAR JS SDK

      keyPath?: string

      Initialize an InMemoryKeyStore by reading the file at keyPath.

      -
      keyStore?: KeyStore

      Holds KeyPair for signing transactions

      +
      keyStore?: KeyStore

      Holds KeyPair for signing transactions

      logger?: false | LoggerService

      Specifies the logger to use. Pass false to turn off logging.

      masterAccount?: string

      The account to use when creating new accounts

      See

      LocalAccountCreator

      diff --git a/modules/_near_js_accounts.account.html b/modules/_near_js_accounts.account.html index 5757b0dc29..fab7a07f7f 100644 --- a/modules/_near_js_accounts.account.html +++ b/modules/_near_js_accounts.account.html @@ -1,4 +1,4 @@ -account | Documentation

      Index

      Classes

      Account +account | Documentation

      Index

      Classes

      Interfaces

      AccountAuthorizedApp AccountBalance SignAndSendTransactionOptions diff --git a/modules/_near_js_accounts.account_2fa.html b/modules/_near_js_accounts.account_2fa.html index f2aa84c41d..646523d6a4 100644 --- a/modules/_near_js_accounts.account_2fa.html +++ b/modules/_near_js_accounts.account_2fa.html @@ -1,2 +1,2 @@ -account_2fa | Documentation

      Index

      Classes

      Account2FA +account_2fa | Documentation
      \ No newline at end of file diff --git a/modules/_near_js_accounts.account_creator.html b/modules/_near_js_accounts.account_creator.html index f1856d245e..ec1e2e8ff3 100644 --- a/modules/_near_js_accounts.account_creator.html +++ b/modules/_near_js_accounts.account_creator.html @@ -1,4 +1,4 @@ -account_creator | Documentation

      Index

      Classes

      AccountCreator +account_creator | Documentation
      \ No newline at end of file diff --git a/modules/_near_js_accounts.account_multisig.html b/modules/_near_js_accounts.account_multisig.html index db08d9c8a5..ad9a6a552b 100644 --- a/modules/_near_js_accounts.account_multisig.html +++ b/modules/_near_js_accounts.account_multisig.html @@ -1,2 +1,2 @@ -account_multisig | Documentation

      Index

      Classes

      AccountMultisig +account_multisig | Documentation
      \ No newline at end of file diff --git a/modules/_near_js_accounts.connection.html b/modules/_near_js_accounts.connection.html index 182ad85b21..403425c0f1 100644 --- a/modules/_near_js_accounts.connection.html +++ b/modules/_near_js_accounts.connection.html @@ -1,2 +1,2 @@ -connection | Documentation

      Index

      Classes

      Connection +connection | Documentation
      \ No newline at end of file diff --git a/modules/_near_js_accounts.constants.html b/modules/_near_js_accounts.constants.html index f512195ec9..b7671b003a 100644 --- a/modules/_near_js_accounts.constants.html +++ b/modules/_near_js_accounts.constants.html @@ -1,4 +1,4 @@ -constants | Documentation

      Index

      Variables

      MULTISIG_ALLOWANCE +constants | Documentation

      Index

      Variables

      MULTISIG_ALLOWANCE MULTISIG_CHANGE_METHODS MULTISIG_CONFIRM_METHODS MULTISIG_DEPOSIT diff --git a/modules/_near_js_accounts.contract.html b/modules/_near_js_accounts.contract.html index fb6592700a..6bd6585a15 100644 --- a/modules/_near_js_accounts.contract.html +++ b/modules/_near_js_accounts.contract.html @@ -1,3 +1,3 @@ -contract | Documentation

      Index

      Classes

      Contract +contract | Documentation
      \ No newline at end of file diff --git a/modules/_near_js_accounts.errors.html b/modules/_near_js_accounts.errors.html index a2eecfed2f..bff51b67be 100644 --- a/modules/_near_js_accounts.errors.html +++ b/modules/_near_js_accounts.errors.html @@ -1,4 +1,4 @@ -errors | Documentation

      Index

      Classes

      ArgumentSchemaError +errors | Documentation

      Index

      Classes

      ArgumentSchemaError ConflictingOptions UnknownArgumentError UnsupportedSerializationError diff --git a/modules/_near_js_accounts.html b/modules/_near_js_accounts.html index 7b716256ad..1afdbb87b9 100644 --- a/modules/_near_js_accounts.html +++ b/modules/_near_js_accounts.html @@ -1,4 +1,4 @@ -@near-js/accounts - v1.2.2 | Documentation

      Module @near-js/accounts - v1.2.2

      NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

      +@near-js/accounts - v1.3.0 | Documentation

      Module @near-js/accounts - v1.3.0

      NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

      👉 Learn how to use the library in your project.

      Resources

      • Cookbook with common use cases

        diff --git a/modules/_near_js_accounts.index.html b/modules/_near_js_accounts.index.html index 25fd09689b..0e17b75900 100644 --- a/modules/_near_js_accounts.index.html +++ b/modules/_near_js_accounts.index.html @@ -1,4 +1,4 @@ -index | Documentation

        References

        Account +index | Documentation

        References

        Account Account2FA AccountAuthorizedApp AccountBalance diff --git a/modules/_near_js_accounts.interface.html b/modules/_near_js_accounts.interface.html index 11fdd5233e..e83b8c9306 100644 --- a/modules/_near_js_accounts.interface.html +++ b/modules/_near_js_accounts.interface.html @@ -1,4 +1,4 @@ -interface | Documentation

        Index

        Interfaces

        ChangeFunctionCallOptions +interface | Documentation

        Index

        Interfaces

        ChangeFunctionCallOptions FunctionCallOptions IntoConnection ViewFunctionCallOptions diff --git a/modules/_near_js_accounts.local_view_execution.html b/modules/_near_js_accounts.local_view_execution.html index ce3fb07946..7d0bce9feb 100644 --- a/modules/_near_js_accounts.local_view_execution.html +++ b/modules/_near_js_accounts.local_view_execution.html @@ -1,2 +1,2 @@ -local-view-execution | Documentation

        Index

        Classes

        LocalViewExecution +local-view-execution | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_accounts.local_view_execution_runtime.html b/modules/_near_js_accounts.local_view_execution_runtime.html index 164c169526..328b3815d2 100644 --- a/modules/_near_js_accounts.local_view_execution_runtime.html +++ b/modules/_near_js_accounts.local_view_execution_runtime.html @@ -1,2 +1,2 @@ -local-view-execution/runtime | Documentation

        Index

        Classes

        Runtime +local-view-execution/runtime | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_accounts.local_view_execution_storage.html b/modules/_near_js_accounts.local_view_execution_storage.html index 7dbcd985e8..97c3791d08 100644 --- a/modules/_near_js_accounts.local_view_execution_storage.html +++ b/modules/_near_js_accounts.local_view_execution_storage.html @@ -1,4 +1,4 @@ -local-view-execution/storage | Documentation

        Index

        Classes

        Storage +local-view-execution/storage | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_accounts.local_view_execution_types.html b/modules/_near_js_accounts.local_view_execution_types.html index fae0ef8709..9b3bd6a473 100644 --- a/modules/_near_js_accounts.local_view_execution_types.html +++ b/modules/_near_js_accounts.local_view_execution_types.html @@ -1,2 +1,2 @@ -local-view-execution/types | Documentation

        Index

        Interfaces

        ContractState +local-view-execution/types | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_accounts.types.html b/modules/_near_js_accounts.types.html index 94d667d1a0..1dfac9e131 100644 --- a/modules/_near_js_accounts.types.html +++ b/modules/_near_js_accounts.types.html @@ -1,3 +1,3 @@ -types | Documentation

        Index

        Enumerations

        MultisigDeleteRequestRejectionError +types | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_accounts.utils.html b/modules/_near_js_accounts.utils.html index 9ae7e2094f..498140c3b3 100644 --- a/modules/_near_js_accounts.utils.html +++ b/modules/_near_js_accounts.utils.html @@ -1,4 +1,4 @@ -utils | Documentation

        Index

        Functions

        encodeJSContractArgs +utils | Documentation

        Index

        Functions

        encodeJSContractArgs validateArgs viewFunction viewState diff --git a/modules/_near_js_biometric_ed25519.fido2.html b/modules/_near_js_biometric_ed25519.fido2.html index df979a262d..56ade8ad7b 100644 --- a/modules/_near_js_biometric_ed25519.fido2.html +++ b/modules/_near_js_biometric_ed25519.fido2.html @@ -1,2 +1,2 @@ -fido2 | Documentation

        Index

        Classes

        Fido2 +fido2 | Documentation
        \ No newline at end of file diff --git a/modules/_near_js_biometric_ed25519.html b/modules/_near_js_biometric_ed25519.html index 0c17f47079..650b84fbd6 100644 --- a/modules/_near_js_biometric_ed25519.html +++ b/modules/_near_js_biometric_ed25519.html @@ -1,4 +1,4 @@ -@near-js/biometric-ed25519 - v1.2.5 | Documentation

        Module @near-js/biometric-ed25519 - v1.2.5

        NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

        +@near-js/biometric-ed25519 - v1.3.0 | Documentation

        Module @near-js/biometric-ed25519 - v1.3.0

        NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

        👉 Learn how to use the library in your project.

        Resources

        • Cookbook with common use cases

          diff --git a/modules/_near_js_biometric_ed25519.index-1.html b/modules/_near_js_biometric_ed25519.index-1.html index 108133bff2..46952a9c98 100644 --- a/modules/_near_js_biometric_ed25519.index-1.html +++ b/modules/_near_js_biometric_ed25519.index-1.html @@ -1,4 +1,4 @@ -index | Documentation

          Index

          Classes

          PasskeyProcessCanceled +index | Documentation

          Index

          Classes

          Functions

          createKey getKeys isDeviceSupported diff --git a/modules/_near_js_biometric_ed25519.index.html b/modules/_near_js_biometric_ed25519.index.html index 926fbedd8e..935637023c 100644 --- a/modules/_near_js_biometric_ed25519.index.html +++ b/modules/_near_js_biometric_ed25519.index.html @@ -1,2 +1,2 @@ -index | Documentation

          Index

          Type Aliases

          AssertionResponse +index | Documentation
          \ No newline at end of file diff --git a/modules/_near_js_biometric_ed25519.utils.html b/modules/_near_js_biometric_ed25519.utils.html index 902206411e..8bfe946920 100644 --- a/modules/_near_js_biometric_ed25519.utils.html +++ b/modules/_near_js_biometric_ed25519.utils.html @@ -1,4 +1,4 @@ -utils | Documentation

          Index

          Functions

          get64BytePublicKeyFromPEM +utils | Documentation

          Index

          Functions

          get64BytePublicKeyFromPEM preformatGetAssertReq preformatMakeCredReq publicKeyCredentialToJSON diff --git a/modules/_near_js_crypto.constants.html b/modules/_near_js_crypto.constants.html index 4c9ac27efa..3987882a4d 100644 --- a/modules/_near_js_crypto.constants.html +++ b/modules/_near_js_crypto.constants.html @@ -1,3 +1,3 @@ -constants | Documentation

          Index

          Enumerations

          KeyType +constants | Documentation

          Index

          Enumerations

          Variables

          \ No newline at end of file diff --git a/modules/_near_js_crypto.html b/modules/_near_js_crypto.html index 42420d47a9..8c9f9eb38e 100644 --- a/modules/_near_js_crypto.html +++ b/modules/_near_js_crypto.html @@ -1,4 +1,4 @@ -@near-js/crypto - v1.3.0 | Documentation

          Module @near-js/crypto - v1.3.0

          NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

          +@near-js/crypto - v1.4.0 | Documentation

          Module @near-js/crypto - v1.4.0

          NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

          👉 Learn how to use the library in your project.

          Resources

          • Cookbook with common use cases

            diff --git a/modules/_near_js_crypto.index.html b/modules/_near_js_crypto.index.html index a302a41354..81b1d81fb1 100644 --- a/modules/_near_js_crypto.index.html +++ b/modules/_near_js_crypto.index.html @@ -1,4 +1,4 @@ -index | Documentation

            References

            KeyPair +index | Documentation

            References

            KeyPair KeyPairEd25519 KeyPairSecp256k1 KeyPairString diff --git a/modules/_near_js_crypto.key_pair.html b/modules/_near_js_crypto.key_pair.html index 7707b9a8fd..6e03b9d913 100644 --- a/modules/_near_js_crypto.key_pair.html +++ b/modules/_near_js_crypto.key_pair.html @@ -1,3 +1,3 @@ -key_pair | Documentation

            Index

            Classes

            KeyPair +key_pair | Documentation

            Index

            Classes

            Type Aliases

            \ No newline at end of file diff --git a/modules/_near_js_crypto.key_pair_base.html b/modules/_near_js_crypto.key_pair_base.html index fb6abb611f..7ae31eaae6 100644 --- a/modules/_near_js_crypto.key_pair_base.html +++ b/modules/_near_js_crypto.key_pair_base.html @@ -1,3 +1,3 @@ -key_pair_base | Documentation

            Index

            Classes

            KeyPairBase +key_pair_base | Documentation

            Index

            Classes

            Interfaces

            \ No newline at end of file diff --git a/modules/_near_js_crypto.key_pair_ed25519.html b/modules/_near_js_crypto.key_pair_ed25519.html index 6b3e3d714a..d1397f7c4a 100644 --- a/modules/_near_js_crypto.key_pair_ed25519.html +++ b/modules/_near_js_crypto.key_pair_ed25519.html @@ -1,2 +1,2 @@ -key_pair_ed25519 | Documentation

            Index

            Classes

            KeyPairEd25519 +key_pair_ed25519 | Documentation
            \ No newline at end of file diff --git a/modules/_near_js_crypto.key_pair_secp256k1.html b/modules/_near_js_crypto.key_pair_secp256k1.html index 12910afde5..6181ba9861 100644 --- a/modules/_near_js_crypto.key_pair_secp256k1.html +++ b/modules/_near_js_crypto.key_pair_secp256k1.html @@ -1,2 +1,2 @@ -key_pair_secp256k1 | Documentation

            Index

            Classes

            KeyPairSecp256k1 +key_pair_secp256k1 | Documentation
            \ No newline at end of file diff --git a/modules/_near_js_crypto.public_key.html b/modules/_near_js_crypto.public_key.html index ee48376874..b96e620624 100644 --- a/modules/_near_js_crypto.public_key.html +++ b/modules/_near_js_crypto.public_key.html @@ -1,2 +1,2 @@ -public_key | Documentation

            Index

            Classes

            PublicKey +public_key | Documentation
            \ No newline at end of file diff --git a/modules/_near_js_iframe_rpc.html b/modules/_near_js_iframe_rpc.html index 34a9c69574..6a2868ac3b 100644 --- a/modules/_near_js_iframe_rpc.html +++ b/modules/_near_js_iframe_rpc.html @@ -1,4 +1,4 @@ -@near-js/iframe-rpc - v0.0.2 | Documentation

            Module @near-js/iframe-rpc - v0.0.2

            NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

            +@near-js/iframe-rpc - v0.1.0 | Documentation

            Module @near-js/iframe-rpc - v0.1.0

            NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

            👉 Learn how to use the library in your project.

            Resources

            • Cookbook with common use cases

              diff --git a/modules/_near_js_iframe_rpc.iframe_rpc.html b/modules/_near_js_iframe_rpc.iframe_rpc.html index 45acd5afaa..5ac92e5aea 100644 --- a/modules/_near_js_iframe_rpc.iframe_rpc.html +++ b/modules/_near_js_iframe_rpc.iframe_rpc.html @@ -1,3 +1,3 @@ -iframe-rpc | Documentation

              Index

              Classes

              IFrameRPC +iframe-rpc | Documentation
              \ No newline at end of file diff --git a/modules/_near_js_iframe_rpc.iframe_rpc_error.html b/modules/_near_js_iframe_rpc.iframe_rpc_error.html index 05fc19df85..2ad6745811 100644 --- a/modules/_near_js_iframe_rpc.iframe_rpc_error.html +++ b/modules/_near_js_iframe_rpc.iframe_rpc_error.html @@ -1,2 +1,2 @@ -iframe-rpc-error | Documentation

              Index

              Classes

              IFrameRPCError +iframe-rpc-error | Documentation
              \ No newline at end of file diff --git a/modules/_near_js_iframe_rpc.index.html b/modules/_near_js_iframe_rpc.index.html index 260bc6e381..7509e9f21c 100644 --- a/modules/_near_js_iframe_rpc.index.html +++ b/modules/_near_js_iframe_rpc.index.html @@ -1,4 +1,4 @@ -index | Documentation

              References

              IFrameRPC +index | Documentation

              References

              IFrameRPC IFrameRPCError IMessageEvent IMessagePoster diff --git a/modules/_near_js_iframe_rpc.types.html b/modules/_near_js_iframe_rpc.types.html index 7012c96985..b5920c00d1 100644 --- a/modules/_near_js_iframe_rpc.types.html +++ b/modules/_near_js_iframe_rpc.types.html @@ -1,4 +1,4 @@ -types | Documentation

              Index

              Interfaces

              IMessageEvent +types | Documentation

              Index

              Interfaces

              IMessageEvent IMessagePoster IMessageReceiver IRPCMethod diff --git a/modules/_near_js_keystores.html b/modules/_near_js_keystores.html index 81bc912fc9..b03401c2db 100644 --- a/modules/_near_js_keystores.html +++ b/modules/_near_js_keystores.html @@ -1,4 +1,4 @@ -@near-js/keystores - v0.1.0 | Documentation

              Module @near-js/keystores - v0.1.0

              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

              +@near-js/keystores - v0.2.0 | Documentation

              Module @near-js/keystores - v0.2.0

              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

              👉 Learn how to use the library in your project.

              Resources

              • Cookbook with common use cases

                diff --git a/modules/_near_js_keystores.in_memory_key_store.html b/modules/_near_js_keystores.in_memory_key_store.html index 2a8b711192..6a1f46f505 100644 --- a/modules/_near_js_keystores.in_memory_key_store.html +++ b/modules/_near_js_keystores.in_memory_key_store.html @@ -1,2 +1,2 @@ -in_memory_key_store | Documentation

                Index

                Classes

                InMemoryKeyStore +in_memory_key_store | Documentation
                \ No newline at end of file diff --git a/modules/_near_js_keystores.index.html b/modules/_near_js_keystores.index.html index 69b806eaa8..a874a4a160 100644 --- a/modules/_near_js_keystores.index.html +++ b/modules/_near_js_keystores.index.html @@ -1,4 +1,4 @@ -index | Documentation

                References

                InMemoryKeyStore +index | Documentation

                References

                InMemoryKeyStore KeyStore MergeKeyStore MultiContractKeyStore diff --git a/modules/_near_js_keystores.keystore.html b/modules/_near_js_keystores.keystore.html index 9d65b2ab0d..edd6571f04 100644 --- a/modules/_near_js_keystores.keystore.html +++ b/modules/_near_js_keystores.keystore.html @@ -1,2 +1,2 @@ -keystore | Documentation

                Index

                Classes

                KeyStore +keystore | Documentation
                \ No newline at end of file diff --git a/modules/_near_js_keystores.merge_key_store.html b/modules/_near_js_keystores.merge_key_store.html index dad003f77e..4b585e3296 100644 --- a/modules/_near_js_keystores.merge_key_store.html +++ b/modules/_near_js_keystores.merge_key_store.html @@ -1,2 +1,2 @@ -merge_key_store | Documentation

                Index

                Classes

                MergeKeyStore +merge_key_store | Documentation
                \ No newline at end of file diff --git a/modules/_near_js_keystores.multi_contract_keystore.html b/modules/_near_js_keystores.multi_contract_keystore.html index 0f9e547269..053c054d31 100644 --- a/modules/_near_js_keystores.multi_contract_keystore.html +++ b/modules/_near_js_keystores.multi_contract_keystore.html @@ -1,2 +1,2 @@ -multi_contract_keystore | Documentation

                Index

                Classes

                MultiContractKeyStore +multi_contract_keystore | Documentation
                \ No newline at end of file diff --git a/modules/_near_js_keystores_browser.browser_local_storage_key_store.html b/modules/_near_js_keystores_browser.browser_local_storage_key_store.html index 90ff7b4f03..c7b59293ec 100644 --- a/modules/_near_js_keystores_browser.browser_local_storage_key_store.html +++ b/modules/_near_js_keystores_browser.browser_local_storage_key_store.html @@ -1,2 +1,2 @@ -browser_local_storage_key_store | Documentation

                Index

                Classes

                BrowserLocalStorageKeyStore +browser_local_storage_key_store | Documentation
                \ No newline at end of file diff --git a/modules/_near_js_keystores_browser.html b/modules/_near_js_keystores_browser.html index c6253dd836..72e876fb80 100644 --- a/modules/_near_js_keystores_browser.html +++ b/modules/_near_js_keystores_browser.html @@ -1,4 +1,4 @@ -@near-js/keystores-browser - v0.1.0 | Documentation

                Module @near-js/keystores-browser - v0.1.0

                NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                +@near-js/keystores-browser - v0.2.0 | Documentation

                Module @near-js/keystores-browser - v0.2.0

                NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                👉 Learn how to use the library in your project.

                Resources

                • Cookbook with common use cases

                  diff --git a/modules/_near_js_keystores_browser.index.html b/modules/_near_js_keystores_browser.index.html index 2315a79038..8777a9bc88 100644 --- a/modules/_near_js_keystores_browser.index.html +++ b/modules/_near_js_keystores_browser.index.html @@ -1,3 +1,3 @@ -index | Documentation

                  References

                  BrowserLocalStorageKeyStore +index | Documentation

                  References

                  Re-exports BrowserLocalStorageKeyStore
                  Re-exports MultiContractBrowserLocalStorageKeyStore
                  \ No newline at end of file diff --git a/modules/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.html b/modules/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.html index 06c47473d4..d41d0e7b80 100644 --- a/modules/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.html +++ b/modules/_near_js_keystores_browser.multi_contract_browser_local_storage_key_store.html @@ -1,2 +1,2 @@ -multi_contract_browser_local_storage_key_store | Documentation

                  Index

                  Classes

                  MultiContractBrowserLocalStorageKeyStore +multi_contract_browser_local_storage_key_store | Documentation
                  \ No newline at end of file diff --git a/modules/_near_js_keystores_node.html b/modules/_near_js_keystores_node.html index ba230e00a0..a778bace83 100644 --- a/modules/_near_js_keystores_node.html +++ b/modules/_near_js_keystores_node.html @@ -1,4 +1,4 @@ -@near-js/keystores-node - v0.0.13 | Documentation

                  Module @near-js/keystores-node - v0.0.13

                  NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                  +@near-js/keystores-node - v0.1.0 | Documentation

                  Module @near-js/keystores-node - v0.1.0

                  NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                  👉 Learn how to use the library in your project.

                  Resources

                  • Cookbook with common use cases

                    diff --git a/modules/_near_js_keystores_node.index.html b/modules/_near_js_keystores_node.index.html index bc89ba6804..f3c76c25bb 100644 --- a/modules/_near_js_keystores_node.index.html +++ b/modules/_near_js_keystores_node.index.html @@ -1,2 +1,2 @@ -index | Documentation

                    References

                    UnencryptedFileSystemKeyStore +index | Documentation

                    References

                    Re-exports UnencryptedFileSystemKeyStore
                    \ No newline at end of file diff --git a/modules/_near_js_keystores_node.unencrypted_file_system_keystore.html b/modules/_near_js_keystores_node.unencrypted_file_system_keystore.html index 13a774546f..651b101c5d 100644 --- a/modules/_near_js_keystores_node.unencrypted_file_system_keystore.html +++ b/modules/_near_js_keystores_node.unencrypted_file_system_keystore.html @@ -1,2 +1,2 @@ -unencrypted_file_system_keystore | Documentation

                    Index

                    Classes

                    UnencryptedFileSystemKeyStore +unencrypted_file_system_keystore | Documentation
                    \ No newline at end of file diff --git a/modules/_near_js_providers.exponential_backoff.html b/modules/_near_js_providers.exponential_backoff.html index 2de3b00100..8dca245436 100644 --- a/modules/_near_js_providers.exponential_backoff.html +++ b/modules/_near_js_providers.exponential_backoff.html @@ -1,2 +1,2 @@ -exponential-backoff | Documentation

                    Index

                    Functions

                    exponentialBackoff +exponential-backoff | Documentation
                    \ No newline at end of file diff --git a/modules/_near_js_providers.failover_rpc_provider.html b/modules/_near_js_providers.failover_rpc_provider.html index 4ada758a20..6db924b1cb 100644 --- a/modules/_near_js_providers.failover_rpc_provider.html +++ b/modules/_near_js_providers.failover_rpc_provider.html @@ -1,5 +1,5 @@ failover-rpc-provider | Documentation

                    Description

                    This module contains the FailoverRpcProvider client class which can be used to interact with multiple NEAR RPC APIs.

                    See

                    provider for a list of request and response types

                    -

                    Index

                    Classes

                    Index

                    Classes

                    \ No newline at end of file diff --git a/modules/_near_js_providers.fetch_json.html b/modules/_near_js_providers.fetch_json.html index dda51bcb47..9157749163 100644 --- a/modules/_near_js_providers.fetch_json.html +++ b/modules/_near_js_providers.fetch_json.html @@ -1,3 +1,3 @@ -fetch_json | Documentation

                    Index

                    Interfaces

                    ConnectionInfo +fetch_json | Documentation
                    \ No newline at end of file diff --git a/modules/_near_js_providers.html b/modules/_near_js_providers.html index 30ce9f5d98..14bce073fa 100644 --- a/modules/_near_js_providers.html +++ b/modules/_near_js_providers.html @@ -1,4 +1,4 @@ -@near-js/providers - v0.2.3 | Documentation

                    Module @near-js/providers - v0.2.3

                    NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                    +@near-js/providers - v1.0.0 | Documentation

                    Module @near-js/providers - v1.0.0

                    NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                    👉 Learn how to use the library in your project.

                    Resources

                    • Cookbook with common use cases

                      diff --git a/modules/_near_js_providers.index.html b/modules/_near_js_providers.index.html index 0d21556b6a..4fc12ce22e 100644 --- a/modules/_near_js_providers.index.html +++ b/modules/_near_js_providers.index.html @@ -1,4 +1,4 @@ -index | Documentation

                      References

                      FailoverRpcProvider +index | Documentation

                      References

                      Re-exports FailoverRpcProvider
                      Re-exports JsonRpcProvider
                      Re-exports exponentialBackoff
                      \ No newline at end of file diff --git a/modules/_near_js_providers.json_rpc_provider.html b/modules/_near_js_providers.json_rpc_provider.html index e90747e45e..0e02c3e5f3 100644 --- a/modules/_near_js_providers.json_rpc_provider.html +++ b/modules/_near_js_providers.json_rpc_provider.html @@ -1,5 +1,5 @@ json-rpc-provider | Documentation

                      Description

                      This module contains the JsonRpcProvider client class which can be used to interact with the NEAR RPC API.

                      See

                      provider for a list of request and response types

                      -

                      Index

                      Classes

                      Index

                      Classes

                      \ No newline at end of file diff --git a/modules/_near_js_providers.provider.html b/modules/_near_js_providers.provider.html index b045469de4..6143f3c102 100644 --- a/modules/_near_js_providers.provider.html +++ b/modules/_near_js_providers.provider.html @@ -1,2 +1,2 @@ provider | Documentation

                      NEAR RPC API request types and responses

                      -
                      \ No newline at end of file +
                      \ No newline at end of file diff --git a/modules/_near_js_signers.html b/modules/_near_js_signers.html index 4c36c49038..c62389f54a 100644 --- a/modules/_near_js_signers.html +++ b/modules/_near_js_signers.html @@ -1,4 +1,4 @@ -@near-js/signers - v0.1.5 | Documentation

                      Module @near-js/signers - v0.1.5

                      NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                      +@near-js/signers - v0.2.0 | Documentation

                      Module @near-js/signers - v0.2.0

                      NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                      👉 Learn how to use the library in your project.

                      Resources

                      • Cookbook with common use cases

                        diff --git a/modules/_near_js_signers.in_memory_signer.html b/modules/_near_js_signers.in_memory_signer.html index 429e4e1ba7..dc933fbb00 100644 --- a/modules/_near_js_signers.in_memory_signer.html +++ b/modules/_near_js_signers.in_memory_signer.html @@ -1,2 +1,2 @@ -in_memory_signer | Documentation

                        Index

                        Classes

                        InMemorySigner +in_memory_signer | Documentation
                        \ No newline at end of file diff --git a/modules/_near_js_signers.index.html b/modules/_near_js_signers.index.html index 8677747c6d..ad9fc61bae 100644 --- a/modules/_near_js_signers.index.html +++ b/modules/_near_js_signers.index.html @@ -1,3 +1,3 @@ -index | Documentation

                        References

                        InMemorySigner +index | Documentation

                        References

                        Re-exports InMemorySigner
                        Re-exports Signer
                        \ No newline at end of file diff --git a/modules/_near_js_signers.signer.html b/modules/_near_js_signers.signer.html index e2f98251fd..0008383757 100644 --- a/modules/_near_js_signers.signer.html +++ b/modules/_near_js_signers.signer.html @@ -1,2 +1,2 @@ -signer | Documentation

                        Index

                        Classes

                        Signer +signer | Documentation

                        Index

                        Classes

                        \ No newline at end of file diff --git a/modules/_near_js_transactions.action_creators.html b/modules/_near_js_transactions.action_creators.html index 7a11209b85..50d0665da4 100644 --- a/modules/_near_js_transactions.action_creators.html +++ b/modules/_near_js_transactions.action_creators.html @@ -1,3 +1,3 @@ -action_creators | Documentation

                        Index

                        Variables

                        actionCreators +action_creators | Documentation
                        \ No newline at end of file diff --git a/modules/_near_js_transactions.actions.html b/modules/_near_js_transactions.actions.html index 2af116e028..ae4ae2eda5 100644 --- a/modules/_near_js_transactions.actions.html +++ b/modules/_near_js_transactions.actions.html @@ -1,4 +1,4 @@ -actions | Documentation

                        Index

                        Classes

                        AccessKey +actions | Documentation

                        Index

                        Classes

                        AccessKey AccessKeyPermission Action AddKey diff --git a/modules/_near_js_transactions.create_transaction.html b/modules/_near_js_transactions.create_transaction.html index 860d63d71e..4c1d298a87 100644 --- a/modules/_near_js_transactions.create_transaction.html +++ b/modules/_near_js_transactions.create_transaction.html @@ -1,2 +1,2 @@ -create_transaction | Documentation

                        Index

                        Functions

                        createTransaction +create_transaction | Documentation
                        \ No newline at end of file diff --git a/modules/_near_js_transactions.delegate.html b/modules/_near_js_transactions.delegate.html index 54ec8db474..2a76abf092 100644 --- a/modules/_near_js_transactions.delegate.html +++ b/modules/_near_js_transactions.delegate.html @@ -1,3 +1,3 @@ -delegate | Documentation

                        Index

                        Classes

                        DelegateAction +delegate | Documentation
                        \ No newline at end of file diff --git a/modules/_near_js_transactions.html b/modules/_near_js_transactions.html index a66186b3b5..f470b76330 100644 --- a/modules/_near_js_transactions.html +++ b/modules/_near_js_transactions.html @@ -1,4 +1,4 @@ -@near-js/transactions - v1.2.3 | Documentation

                        Module @near-js/transactions - v1.2.3

                        NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                        +@near-js/transactions - v1.3.0 | Documentation

                        Module @near-js/transactions - v1.3.0

                        NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                        👉 Learn how to use the library in your project.

                        Resources

                        • Cookbook with common use cases

                          diff --git a/modules/_near_js_transactions.index.html b/modules/_near_js_transactions.index.html index dc76485a29..adbc3aee91 100644 --- a/modules/_near_js_transactions.index.html +++ b/modules/_near_js_transactions.index.html @@ -1,4 +1,4 @@ -index | Documentation

                          References

                          AccessKey +index | Documentation

                          References

                          AccessKey AccessKeyPermission Action AddKey diff --git a/modules/_near_js_transactions.prefix.html b/modules/_near_js_transactions.prefix.html index e1efb40b33..fad25abbad 100644 --- a/modules/_near_js_transactions.prefix.html +++ b/modules/_near_js_transactions.prefix.html @@ -1,2 +1,2 @@ -prefix | Documentation

                          Index

                          Classes

                          DelegateActionPrefix +prefix | Documentation
                          \ No newline at end of file diff --git a/modules/_near_js_transactions.schema.html b/modules/_near_js_transactions.schema.html index 2a7cd13cc4..c92818bcd2 100644 --- a/modules/_near_js_transactions.schema.html +++ b/modules/_near_js_transactions.schema.html @@ -1,4 +1,4 @@ -schema | Documentation

                          Index

                          Classes

                          SignedTransaction +schema | Documentation

                          Index

                          Classes

                          Variables

                          Functions

                          decodeSignedTransaction diff --git a/modules/_near_js_transactions.sign.html b/modules/_near_js_transactions.sign.html index e54ca11323..3d3f2ec2af 100644 --- a/modules/_near_js_transactions.sign.html +++ b/modules/_near_js_transactions.sign.html @@ -1,4 +1,4 @@ -sign | Documentation

                          Index

                          Interfaces

                          SignedDelegateWithHash +sign | Documentation
                          \ No newline at end of file diff --git a/modules/_near_js_transactions.signature.html b/modules/_near_js_transactions.signature.html index 082bf08be7..e61b2719f1 100644 --- a/modules/_near_js_transactions.signature.html +++ b/modules/_near_js_transactions.signature.html @@ -1,2 +1,2 @@ -signature | Documentation

                          Index

                          Classes

                          Signature +signature | Documentation
                          \ No newline at end of file diff --git a/modules/_near_js_types.assignable.html b/modules/_near_js_types.assignable.html index 6539e8682c..8098b3a29f 100644 --- a/modules/_near_js_types.assignable.html +++ b/modules/_near_js_types.assignable.html @@ -1,2 +1,2 @@ -assignable | Documentation

                          Index

                          Classes

                          Assignable +assignable | Documentation
                          \ No newline at end of file diff --git a/modules/_near_js_types.enum.html b/modules/_near_js_types.enum.html index c1d45311fe..e45dd4ecfc 100644 --- a/modules/_near_js_types.enum.html +++ b/modules/_near_js_types.enum.html @@ -1,2 +1,2 @@ -enum | Documentation

                          Index

                          Classes

                          Enum +enum | Documentation
                          \ No newline at end of file diff --git a/modules/_near_js_types.errors.html b/modules/_near_js_types.errors.html index 827a2cc93b..071f435195 100644 --- a/modules/_near_js_types.errors.html +++ b/modules/_near_js_types.errors.html @@ -1,4 +1,4 @@ -errors | Documentation

                          Index

                          Classes

                          ArgumentTypeError +errors | Documentation

                          Index

                          Classes

                          ArgumentTypeError ErrorContext PositionalArgsError TypedError diff --git a/modules/_near_js_types.html b/modules/_near_js_types.html index ae2e0a0fa5..c57dca8a2b 100644 --- a/modules/_near_js_types.html +++ b/modules/_near_js_types.html @@ -1,4 +1,4 @@ -@near-js/types - v0.2.1 | Documentation

                          Module @near-js/types - v0.2.1

                          NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                          +@near-js/types - v0.3.0 | Documentation

                          Module @near-js/types - v0.3.0

                          NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                          👉 Learn how to use the library in your project.

                          Resources

                          • Cookbook with common use cases

                            diff --git a/modules/_near_js_types.index.html b/modules/_near_js_types.index.html index 49f46b4968..c94e5799dc 100644 --- a/modules/_near_js_types.index.html +++ b/modules/_near_js_types.index.html @@ -1,4 +1,4 @@ -index | Documentation

                            References

                            AccessKeyInfoView +index | Documentation

                            References

                            AccessKeyInfoView AccessKeyList AccessKeyView AccessKeyViewRaw diff --git a/modules/_near_js_types.provider-1.html b/modules/_near_js_types.provider-1.html index 285cfa7a61..a57fa20d18 100644 --- a/modules/_near_js_types.provider-1.html +++ b/modules/_near_js_types.provider-1.html @@ -1,4 +1,4 @@ -provider | Documentation

                            References

                            AccessKeyInfoView +provider | Documentation

                            References

                            AccessKeyInfoView AccessKeyList AccessKeyView AccessKeyViewRaw diff --git a/modules/_near_js_types.provider.html b/modules/_near_js_types.provider.html index b692f979fb..a35fdf8529 100644 --- a/modules/_near_js_types.provider.html +++ b/modules/_near_js_types.provider.html @@ -1,4 +1,4 @@ -provider | Documentation

                            References

                            AccessKeyInfoView +provider | Documentation

                            References

                            AccessKeyInfoView AccessKeyList AccessKeyView AccessKeyViewRaw diff --git a/modules/_near_js_types.provider_light_client-1.html b/modules/_near_js_types.provider_light_client-1.html index 25132ef493..c798add00e 100644 --- a/modules/_near_js_types.provider_light_client-1.html +++ b/modules/_near_js_types.provider_light_client-1.html @@ -1,5 +1,5 @@ provider/light_client | Documentation

                            NEAR RPC API request types and responses

                            -

                            References

                            References

                            IdType LightClientBlockLiteView LightClientProof LightClientProofRequest diff --git a/modules/_near_js_types.provider_light_client.html b/modules/_near_js_types.provider_light_client.html index d8407c3476..dbb805608a 100644 --- a/modules/_near_js_types.provider_light_client.html +++ b/modules/_near_js_types.provider_light_client.html @@ -1,5 +1,5 @@ provider/light_client | Documentation

                            NEAR RPC API request types and responses

                            -

                            Index

                            Enumerations

                            Index

                            Enumerations

                            Interfaces

                            LightClientBlockLiteView LightClientProof LightClientProofRequest diff --git a/modules/_near_js_types.provider_protocol-1.html b/modules/_near_js_types.provider_protocol-1.html index 2473df860e..3a585ed933 100644 --- a/modules/_near_js_types.provider_protocol-1.html +++ b/modules/_near_js_types.provider_protocol-1.html @@ -1,5 +1,5 @@ provider/protocol | Documentation

                            NEAR RPC API request types and responses

                            -

                            References

                            References

                            AccessKeyWithPublicKey BlockChange BlockChangeResult BlockHash diff --git a/modules/_near_js_types.provider_protocol.html b/modules/_near_js_types.provider_protocol.html index bb3c415093..991eb3e84f 100644 --- a/modules/_near_js_types.provider_protocol.html +++ b/modules/_near_js_types.provider_protocol.html @@ -1,5 +1,5 @@ provider/protocol | Documentation

                            NEAR RPC API request types and responses

                            -

                            Index

                            Interfaces

                            Index

                            Interfaces

                            AccessKeyWithPublicKey BlockChange BlockChangeResult BlockHeader diff --git a/modules/_near_js_types.provider_request-1.html b/modules/_near_js_types.provider_request-1.html index af700825b6..e0611cb6a7 100644 --- a/modules/_near_js_types.provider_request-1.html +++ b/modules/_near_js_types.provider_request-1.html @@ -1,5 +1,5 @@ provider/request | Documentation

                            NEAR RPC API request types and responses

                            -

                            References

                            References

                            CallFunctionRequest RpcQueryRequest ViewAccessKeyListRequest ViewAccessKeyRequest diff --git a/modules/_near_js_types.provider_request.html b/modules/_near_js_types.provider_request.html index f9830589c5..01794312c9 100644 --- a/modules/_near_js_types.provider_request.html +++ b/modules/_near_js_types.provider_request.html @@ -1,5 +1,5 @@ provider/request | Documentation

                            NEAR RPC API request types and responses

                            -

                            Index

                            Interfaces

                            Index

                            Interfaces

                            CallFunctionRequest ViewAccessKeyListRequest ViewAccessKeyRequest ViewAccountRequest diff --git a/modules/_near_js_types.provider_response-1.html b/modules/_near_js_types.provider_response-1.html index f3fce13ab3..26b2ad98f3 100644 --- a/modules/_near_js_types.provider_response-1.html +++ b/modules/_near_js_types.provider_response-1.html @@ -1,5 +1,5 @@ provider/response | Documentation

                            NEAR RPC API request types and responses

                            -

                            References

                            References

                            AccessKeyInfoView AccessKeyList AccessKeyView AccessKeyViewRaw diff --git a/modules/_near_js_types.provider_response.html b/modules/_near_js_types.provider_response.html index 8f758305a1..70777dea1e 100644 --- a/modules/_near_js_types.provider_response.html +++ b/modules/_near_js_types.provider_response.html @@ -1,5 +1,5 @@ provider/response | Documentation

                            NEAR RPC API request types and responses

                            -

                            Index

                            Enumerations

                            Index

                            Enumerations

                            Interfaces

                            AccessKeyInfoView AccessKeyList diff --git a/modules/_near_js_types.provider_validator-1.html b/modules/_near_js_types.provider_validator-1.html index 52faf631d9..75635f1ad6 100644 --- a/modules/_near_js_types.provider_validator-1.html +++ b/modules/_near_js_types.provider_validator-1.html @@ -1,5 +1,5 @@ provider/validator | Documentation

                            NEAR RPC API request types and responses

                            -

                            References

                            References

                            CurrentEpochValidatorInfo EpochValidatorInfo NextEpochValidatorInfo ValidatorStakeView diff --git a/modules/_near_js_types.provider_validator.html b/modules/_near_js_types.provider_validator.html index c9bb6f3284..6a0f1c5828 100644 --- a/modules/_near_js_types.provider_validator.html +++ b/modules/_near_js_types.provider_validator.html @@ -1,5 +1,5 @@ provider/validator | Documentation

                            NEAR RPC API request types and responses

                            -

                            Index

                            Interfaces

                            Index

                            Interfaces

                            CurrentEpochValidatorInfo EpochValidatorInfo NextEpochValidatorInfo ValidatorStakeView diff --git a/modules/_near_js_utils.constants.html b/modules/_near_js_utils.constants.html index bc93fb25f1..76300e589b 100644 --- a/modules/_near_js_utils.constants.html +++ b/modules/_near_js_utils.constants.html @@ -1,2 +1,2 @@ -constants | Documentation

                            Index

                            Variables

                            DEFAULT_FUNCTION_CALL_GAS +constants | Documentation
                            \ No newline at end of file diff --git a/modules/_near_js_utils.errors.html b/modules/_near_js_utils.errors.html index 16e5eec95b..9b7618355a 100644 --- a/modules/_near_js_utils.errors.html +++ b/modules/_near_js_utils.errors.html @@ -1,4 +1,4 @@ -errors | Documentation

                            References

                            ErrorMessages +errors | Documentation

                            References

                            ErrorMessages ServerError formatError getErrorTypeFromErrorMessage diff --git a/modules/_near_js_utils.errors_errors.html b/modules/_near_js_utils.errors_errors.html index d6b72f9709..e851fb9d21 100644 --- a/modules/_near_js_utils.errors_errors.html +++ b/modules/_near_js_utils.errors_errors.html @@ -1,2 +1,2 @@ -errors/errors | Documentation

                            Index

                            Variables

                            ErrorMessages +errors/errors | Documentation
                            \ No newline at end of file diff --git a/modules/_near_js_utils.errors_rpc_errors.html b/modules/_near_js_utils.errors_rpc_errors.html index 77c0dc1bc9..fdc89409f2 100644 --- a/modules/_near_js_utils.errors_rpc_errors.html +++ b/modules/_near_js_utils.errors_rpc_errors.html @@ -1,4 +1,4 @@ -errors/rpc_errors | Documentation

                            Index

                            Classes

                            ServerError +errors/rpc_errors | Documentation

                            Index

                            Classes

                            Functions

                            formatError getErrorTypeFromErrorMessage parseResultError diff --git a/modules/_near_js_utils.format.html b/modules/_near_js_utils.format.html index 2debbbde0b..162189d1a0 100644 --- a/modules/_near_js_utils.format.html +++ b/modules/_near_js_utils.format.html @@ -1,4 +1,4 @@ -format | Documentation

                            Index

                            Variables

                            NEAR_NOMINATION +format | Documentation

                            Index

                            Variables

                            Functions

                            baseDecode baseEncode diff --git a/modules/_near_js_utils.html b/modules/_near_js_utils.html index 8cec92b72a..216ad6352c 100644 --- a/modules/_near_js_utils.html +++ b/modules/_near_js_utils.html @@ -1,4 +1,4 @@ -@near-js/utils - v0.3.0 | Documentation

                            Module @near-js/utils - v0.3.0

                            NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                            +@near-js/utils - v1.0.0 | Documentation

                            Module @near-js/utils - v1.0.0

                            NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                            👉 Learn how to use the library in your project.

                            Resources

                            • Cookbook with common use cases

                              diff --git a/modules/_near_js_utils.index.html b/modules/_near_js_utils.index.html index 9c77976c91..aea2834561 100644 --- a/modules/_near_js_utils.index.html +++ b/modules/_near_js_utils.index.html @@ -1,4 +1,4 @@ -index | Documentation

                              References

                              ChangedValidatorInfo +index | Documentation

                              References

                              ChangedValidatorInfo ConsoleLogger DEFAULT_FUNCTION_CALL_GAS EpochValidatorsDiff diff --git a/modules/_near_js_utils.logger.html b/modules/_near_js_utils.logger.html index c153baafd7..01f2eaf8b2 100644 --- a/modules/_near_js_utils.logger.html +++ b/modules/_near_js_utils.logger.html @@ -1,4 +1,4 @@ -logger | Documentation

                              References

                              ConsoleLogger +logger | Documentation

                              References

                              Re-exports ConsoleLogger
                              Re-exports Logger
                              Re-exports LoggerService
                              \ No newline at end of file diff --git a/modules/_near_js_utils.logger_console_logger.html b/modules/_near_js_utils.logger_console_logger.html index a5f32f8301..36d4be108f 100644 --- a/modules/_near_js_utils.logger_console_logger.html +++ b/modules/_near_js_utils.logger_console_logger.html @@ -1,2 +1,2 @@ -logger/console.logger | Documentation

                              Index

                              Classes

                              ConsoleLogger +logger/console.logger | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.logger_interface.html b/modules/_near_js_utils.logger_interface.html index bdedb3da8f..45a3c2a934 100644 --- a/modules/_near_js_utils.logger_interface.html +++ b/modules/_near_js_utils.logger_interface.html @@ -1,3 +1,3 @@ -logger/interface | Documentation

                              Index

                              Interfaces

                              LoggerService +logger/interface | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.logger_logger.html b/modules/_near_js_utils.logger_logger.html index 9d62b83c3e..26afa0fd18 100644 --- a/modules/_near_js_utils.logger_logger.html +++ b/modules/_near_js_utils.logger_logger.html @@ -1,2 +1,2 @@ -logger/logger | Documentation

                              Index

                              Classes

                              Logger +logger/logger | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.logging.html b/modules/_near_js_utils.logging.html index 823f578fb6..815e2cc1f6 100644 --- a/modules/_near_js_utils.logging.html +++ b/modules/_near_js_utils.logging.html @@ -1,3 +1,3 @@ -logging | Documentation

                              Index

                              Functions

                              printTxOutcomeLogs +logging | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.provider.html b/modules/_near_js_utils.provider.html index 64ea2fdb28..a968ade7d2 100644 --- a/modules/_near_js_utils.provider.html +++ b/modules/_near_js_utils.provider.html @@ -1 +1 @@ -provider | Documentation
                              \ No newline at end of file +provider | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.utils.html b/modules/_near_js_utils.utils.html index 1b8685cea7..ae543d7ea8 100644 --- a/modules/_near_js_utils.utils.html +++ b/modules/_near_js_utils.utils.html @@ -1,2 +1,2 @@ -utils | Documentation

                              Index

                              Functions

                              sortBigIntAsc +utils | Documentation
                              \ No newline at end of file diff --git a/modules/_near_js_utils.validators.html b/modules/_near_js_utils.validators.html index 2228c7a4d5..6f66698f37 100644 --- a/modules/_near_js_utils.validators.html +++ b/modules/_near_js_utils.validators.html @@ -1,4 +1,4 @@ -validators | Documentation

                              Index

                              Interfaces

                              ChangedValidatorInfo +validators | Documentation

                              Index

                              Interfaces

                              Functions

                              diffEpochValidators findSeatPrice diff --git a/modules/_near_js_wallet_account.html b/modules/_near_js_wallet_account.html index c8109b0875..3204493879 100644 --- a/modules/_near_js_wallet_account.html +++ b/modules/_near_js_wallet_account.html @@ -1,4 +1,4 @@ -@near-js/wallet-account - v1.2.3 | Documentation

                              Module @near-js/wallet-account - v1.2.3

                              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                              +@near-js/wallet-account - v1.3.0 | Documentation

                              Module @near-js/wallet-account - v1.3.0

                              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                              👉 Learn how to use the library in your project.

                              Resources

                              -

                              Index

                              Classes

                              Index

                              Classes

                              \ No newline at end of file diff --git a/modules/near_api_js.account.html b/modules/near_api_js.account.html index 6a1f8c46e1..34fc0fa511 100644 --- a/modules/near_api_js.account.html +++ b/modules/near_api_js.account.html @@ -1,4 +1,4 @@ -account | Documentation

                              Index

                              Classes

                              Account +account | Documentation

                              Index

                              Classes

                              Interfaces

                              AccountAuthorizedApp AccountBalance ChangeFunctionCallOptions diff --git a/modules/near_api_js.account_creator.html b/modules/near_api_js.account_creator.html index b06b93bfdd..d4878ef587 100644 --- a/modules/near_api_js.account_creator.html +++ b/modules/near_api_js.account_creator.html @@ -1,4 +1,4 @@ -account_creator | Documentation

                              Index

                              Classes

                              AccountCreator +account_creator | Documentation
                              \ No newline at end of file diff --git a/modules/near_api_js.account_multisig.html b/modules/near_api_js.account_multisig.html index f9037e9657..6d603181aa 100644 --- a/modules/near_api_js.account_multisig.html +++ b/modules/near_api_js.account_multisig.html @@ -1,4 +1,4 @@ -account_multisig | Documentation

                              Index

                              Enumerations

                              MultisigDeleteRequestRejectionError +account_multisig | Documentation

                              Index

                              Enumerations

                              Classes

                              Account2FA AccountMultisig diff --git a/modules/near_api_js.browserConnect.html b/modules/near_api_js.browserConnect.html index 176afe53bb..3e1f9736e5 100644 --- a/modules/near_api_js.browserConnect.html +++ b/modules/near_api_js.browserConnect.html @@ -5,6 +5,6 @@

                              See

                              ConnectConfig

                              Example

                              async function initNear() {
                              const near = await connect({
                              networkId: 'testnet',
                              nodeUrl: 'https://rpc.testnet.near.org'
                              })
                              }
                              -

                              Index

                              Interfaces

                              Index

                              Interfaces

                              Functions

                              \ No newline at end of file diff --git a/modules/near_api_js.connect.html b/modules/near_api_js.connect.html index a9a05f77c9..2f54336dcc 100644 --- a/modules/near_api_js.connect.html +++ b/modules/near_api_js.connect.html @@ -1,3 +1,3 @@ -connect | Documentation

                              Index

                              Interfaces

                              ConnectConfig +connect | Documentation
                              \ No newline at end of file diff --git a/modules/near_api_js.connection.html b/modules/near_api_js.connection.html index 507953ddbb..ee0f1c3632 100644 --- a/modules/near_api_js.connection.html +++ b/modules/near_api_js.connection.html @@ -1 +1 @@ -connection | Documentation
                              \ No newline at end of file +connection | Documentation
                              \ No newline at end of file diff --git a/modules/near_api_js.constants.html b/modules/near_api_js.constants.html index 611737a885..37ef817adc 100644 --- a/modules/near_api_js.constants.html +++ b/modules/near_api_js.constants.html @@ -1,2 +1,2 @@ -constants | Documentation

                              Index

                              Variables

                              DEFAULT_FUNCTION_CALL_GAS +constants | Documentation
                              \ No newline at end of file diff --git a/modules/near_api_js.contract.html b/modules/near_api_js.contract.html index 6498864fb0..96ed02debb 100644 --- a/modules/near_api_js.contract.html +++ b/modules/near_api_js.contract.html @@ -1,2 +1,2 @@ -contract | Documentation

                              Index

                              Interfaces

                              ContractMethods +contract | Documentation
                              \ No newline at end of file diff --git a/modules/near_api_js.html b/modules/near_api_js.html index 611dc463f2..d9aff94f39 100644 --- a/modules/near_api_js.html +++ b/modules/near_api_js.html @@ -1,4 +1,4 @@ -near-api-js - v4.0.4 | Documentation

                              Module near-api-js - v4.0.4

                              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                              +near-api-js - v5.0.0 | Documentation

                              Module near-api-js - v5.0.0

                              NEAR JavaScript API is a complete library to interact with the NEAR blockchain. You can use it in the browser, or in Node.js runtime.

                              👉 Learn how to use the library in your project.

                              Resources

                              • Cookbook with common use cases

                                diff --git a/modules/near_api_js.key_stores_browser_local_storage_key_store.html b/modules/near_api_js.key_stores_browser_local_storage_key_store.html index ae68ea1d96..620b0d0237 100644 --- a/modules/near_api_js.key_stores_browser_local_storage_key_store.html +++ b/modules/near_api_js.key_stores_browser_local_storage_key_store.html @@ -1 +1 @@ -key_stores/browser_local_storage_key_store | Documentation
                                \ No newline at end of file +key_stores/browser_local_storage_key_store | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.key_stores_in_memory_key_store.html b/modules/near_api_js.key_stores_in_memory_key_store.html index e7a91c22b0..533de1f8fa 100644 --- a/modules/near_api_js.key_stores_in_memory_key_store.html +++ b/modules/near_api_js.key_stores_in_memory_key_store.html @@ -1 +1 @@ -key_stores/in_memory_key_store | Documentation
                                \ No newline at end of file +key_stores/in_memory_key_store | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.key_stores_keystore.html b/modules/near_api_js.key_stores_keystore.html index a88828bec6..705d02df70 100644 --- a/modules/near_api_js.key_stores_keystore.html +++ b/modules/near_api_js.key_stores_keystore.html @@ -1 +1 @@ -key_stores/keystore | Documentation
                                \ No newline at end of file +key_stores/keystore | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.key_stores_merge_key_store.html b/modules/near_api_js.key_stores_merge_key_store.html index 60e4b23e34..beab74d6e6 100644 --- a/modules/near_api_js.key_stores_merge_key_store.html +++ b/modules/near_api_js.key_stores_merge_key_store.html @@ -1 +1 @@ -key_stores/merge_key_store | Documentation
                                \ No newline at end of file +key_stores/merge_key_store | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.key_stores_unencrypted_file_system_keystore.html b/modules/near_api_js.key_stores_unencrypted_file_system_keystore.html index 893c13e6ec..9671f3b539 100644 --- a/modules/near_api_js.key_stores_unencrypted_file_system_keystore.html +++ b/modules/near_api_js.key_stores_unencrypted_file_system_keystore.html @@ -1 +1 @@ -key_stores/unencrypted_file_system_keystore | Documentation
                                \ No newline at end of file +key_stores/unencrypted_file_system_keystore | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.near.html b/modules/near_api_js.near.html index ccefd78e55..b7b9be617e 100644 --- a/modules/near_api_js.near.html +++ b/modules/near_api_js.near.html @@ -1,2 +1,2 @@ -near | Documentation

                                Index

                                Interfaces

                                NearConfig +near | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.providers_failover_rpc_provider.html b/modules/near_api_js.providers_failover_rpc_provider.html index 7d27a8b62c..5611f74cce 100644 --- a/modules/near_api_js.providers_failover_rpc_provider.html +++ b/modules/near_api_js.providers_failover_rpc_provider.html @@ -1,2 +1,2 @@ -providers/failover-rpc-provider | Documentation

                                Module providers/failover-rpc-provider

                                Index

                                Classes

                                FailoverRpcProvider +providers/failover-rpc-provider | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.providers_json_rpc_provider.html b/modules/near_api_js.providers_json_rpc_provider.html index 2bb13e278d..f9ffa0f1ab 100644 --- a/modules/near_api_js.providers_json_rpc_provider.html +++ b/modules/near_api_js.providers_json_rpc_provider.html @@ -1 +1 @@ -providers/json-rpc-provider | Documentation
                                \ No newline at end of file +providers/json-rpc-provider | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.providers_provider.html b/modules/near_api_js.providers_provider.html index 22450190b4..1ca2f72c4a 100644 --- a/modules/near_api_js.providers_provider.html +++ b/modules/near_api_js.providers_provider.html @@ -1,4 +1,4 @@ -providers/provider | Documentation

                                Index

                                Enumerations

                                ExecutionStatusBasic +providers/provider | Documentation

                                Index

                                Enumerations

                                Interfaces

                                AccessKeyInfoView AccessKeyList diff --git a/modules/near_api_js.signer.html b/modules/near_api_js.signer.html index 7cfe6d153a..7fc307eba7 100644 --- a/modules/near_api_js.signer.html +++ b/modules/near_api_js.signer.html @@ -1 +1 @@ -signer | Documentation
                                \ No newline at end of file +signer | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.transaction.html b/modules/near_api_js.transaction.html index aada8a2241..c94dae8554 100644 --- a/modules/near_api_js.transaction.html +++ b/modules/near_api_js.transaction.html @@ -1,4 +1,4 @@ -transaction | Documentation

                                References

                                stringifyJsonOrBytes +transaction | Documentation

                                References

                                Classes

                                AccessKey AccessKeyPermission Action diff --git a/modules/near_api_js.utils.html b/modules/near_api_js.utils.html index 641a9360a0..ff0f92f7cf 100644 --- a/modules/near_api_js.utils.html +++ b/modules/near_api_js.utils.html @@ -1,4 +1,4 @@ -utils | Documentation

                                References

                                enums +utils | Documentation

                                References

                                enums format key_pair rpc_errors diff --git a/modules/near_api_js.utils_enums.html b/modules/near_api_js.utils_enums.html index ca534e5d8f..59e5fa7208 100644 --- a/modules/near_api_js.utils_enums.html +++ b/modules/near_api_js.utils_enums.html @@ -1,2 +1,2 @@ -utils/enums | Documentation

                                Index

                                Classes

                                Enum +utils/enums | Documentation
                                \ No newline at end of file diff --git a/modules/near_api_js.utils_format.html b/modules/near_api_js.utils_format.html index 9963e07cd5..b50eae2397 100644 --- a/modules/near_api_js.utils_format.html +++ b/modules/near_api_js.utils_format.html @@ -1,4 +1,4 @@ -utils/format | Documentation

                                Index

                                Variables

                                NEAR_NOMINATION +utils/format | Documentation

                                Index

                                Variables

                                Functions

                                formatNearAmount parseNearAmount diff --git a/modules/near_api_js.utils_key_pair.html b/modules/near_api_js.utils_key_pair.html index 9e46deb720..d7b5181e9d 100644 --- a/modules/near_api_js.utils_key_pair.html +++ b/modules/near_api_js.utils_key_pair.html @@ -1,4 +1,4 @@ -utils/key_pair | Documentation

                                References

                                KeyPairEd25519 +utils/key_pair | Documentation

                                References

                                Enumerations

                                KeyType diff --git a/modules/near_api_js.utils_logger.html b/modules/near_api_js.utils_logger.html index 2885709399..8af82e37b1 100644 --- a/modules/near_api_js.utils_logger.html +++ b/modules/near_api_js.utils_logger.html @@ -1,2 +1,2 @@ -utils/logger | Documentation

                                References

                                Logger +utils/logger | Documentation

                                References

                                References

                                Re-exports Logger
                                \ No newline at end of file diff --git a/modules/near_api_js.utils_rpc_errors.html b/modules/near_api_js.utils_rpc_errors.html index 06f5a19536..6f985ffe38 100644 --- a/modules/near_api_js.utils_rpc_errors.html +++ b/modules/near_api_js.utils_rpc_errors.html @@ -1,4 +1,4 @@ -utils/rpc_errors | Documentation

                                Index

                                Classes

                                ServerError +utils/rpc_errors | Documentation

                                Index

                                Classes

                                Functions

                                formatError getErrorTypeFromErrorMessage parseResultError diff --git a/modules/near_api_js.utils_serialize.html b/modules/near_api_js.utils_serialize.html index 1c59c87b30..d88ab93fe4 100644 --- a/modules/near_api_js.utils_serialize.html +++ b/modules/near_api_js.utils_serialize.html @@ -1,4 +1,4 @@ -utils/serialize | Documentation

                                Index

                                Type Aliases

                                Schema +utils/serialize | Documentation

                                Index

                                Type Aliases

                                Functions

                                base_decode base_encode deserialize diff --git a/modules/near_api_js.validators.html b/modules/near_api_js.validators.html index 550d67c1df..5b425210fd 100644 --- a/modules/near_api_js.validators.html +++ b/modules/near_api_js.validators.html @@ -1,4 +1,4 @@ -validators | Documentation

                                Index

                                Interfaces

                                ChangedValidatorInfo +validators | Documentation

                                Index

                                Interfaces

                                Functions

                                diffEpochValidators findSeatPrice diff --git a/modules/near_api_js.wallet_account.html b/modules/near_api_js.wallet_account.html index cb3c3b9c0a..3f99d38aba 100644 --- a/modules/near_api_js.wallet_account.html +++ b/modules/near_api_js.wallet_account.html @@ -1 +1 @@ -wallet-account | Documentation
                                \ No newline at end of file +wallet-account | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_biometric_ed25519.index.AssertionResponse.html b/types/_near_js_biometric_ed25519.index.AssertionResponse.html index 9467843867..96ea03da80 100644 --- a/types/_near_js_biometric_ed25519.index.AssertionResponse.html +++ b/types/_near_js_biometric_ed25519.index.AssertionResponse.html @@ -1 +1 @@ -AssertionResponse | Documentation
                                AssertionResponse: {
                                    authenticatorAttachment: "platform" | "cross-platform";
                                    getClientExtensionResults: (() => any);
                                    id: string;
                                    rawId: string;
                                    response: {
                                        authenticatorData: string;
                                        clientDataJSON: string;
                                        signature: string;
                                        userHandle: string;
                                    };
                                    type: "public-key";
                                }

                                Type declaration

                                • authenticatorAttachment: "platform" | "cross-platform"
                                • getClientExtensionResults: (() => any)
                                    • (): any
                                    • Returns any

                                • id: string
                                • rawId: string
                                • response: {
                                      authenticatorData: string;
                                      clientDataJSON: string;
                                      signature: string;
                                      userHandle: string;
                                  }
                                  • authenticatorData: string
                                  • clientDataJSON: string
                                  • signature: string
                                  • userHandle: string
                                • type: "public-key"
                                \ No newline at end of file +AssertionResponse | Documentation
                                AssertionResponse: {
                                    authenticatorAttachment: "platform" | "cross-platform";
                                    getClientExtensionResults: (() => any);
                                    id: string;
                                    rawId: string;
                                    response: {
                                        authenticatorData: string;
                                        clientDataJSON: string;
                                        signature: string;
                                        userHandle: string;
                                    };
                                    type: "public-key";
                                }

                                Type declaration

                                • authenticatorAttachment: "platform" | "cross-platform"
                                • getClientExtensionResults: (() => any)
                                    • (): any
                                    • Returns any

                                • id: string
                                • rawId: string
                                • response: {
                                      authenticatorData: string;
                                      clientDataJSON: string;
                                      signature: string;
                                      userHandle: string;
                                  }
                                  • authenticatorData: string
                                  • clientDataJSON: string
                                  • signature: string
                                  • userHandle: string
                                • type: "public-key"
                                \ No newline at end of file diff --git a/types/_near_js_crypto.key_pair.KeyPairString.html b/types/_near_js_crypto.key_pair.KeyPairString.html index 02642b5af2..78158948a2 100644 --- a/types/_near_js_crypto.key_pair.KeyPairString.html +++ b/types/_near_js_crypto.key_pair.KeyPairString.html @@ -1 +1 @@ -KeyPairString | Documentation
                                KeyPairString: `ed25519:${string}` | `secp256k1:${string}`
                                \ No newline at end of file +KeyPairString | Documentation
                                KeyPairString: `ed25519:${string}` | `secp256k1:${string}`
                                \ No newline at end of file diff --git a/types/_near_js_iframe_rpc.types.RPCMessage.html b/types/_near_js_iframe_rpc.types.RPCMessage.html index b69454062a..33b09a2731 100644 --- a/types/_near_js_iframe_rpc.types.RPCMessage.html +++ b/types/_near_js_iframe_rpc.types.RPCMessage.html @@ -1 +1 @@ -RPCMessage | Documentation
                                RPCMessage<T>: IRPCMethod<T> | IRPCResponse<T>

                                Type Parameters

                                • T
                                \ No newline at end of file +RPCMessage | Documentation
                                RPCMessage<T>: IRPCMethod<T> | IRPCResponse<T>

                                Type Parameters

                                • T
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.BlockHash.html b/types/_near_js_types.provider_protocol.BlockHash.html index 0699089af3..6e76ddaee7 100644 --- a/types/_near_js_types.provider_protocol.BlockHash.html +++ b/types/_near_js_types.provider_protocol.BlockHash.html @@ -1 +1 @@ -BlockHash | Documentation
                                \ No newline at end of file +BlockHash | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.BlockHeight.html b/types/_near_js_types.provider_protocol.BlockHeight.html index c5c0b50576..77b679199d 100644 --- a/types/_near_js_types.provider_protocol.BlockHeight.html +++ b/types/_near_js_types.provider_protocol.BlockHeight.html @@ -1 +1 @@ -BlockHeight | Documentation
                                \ No newline at end of file +BlockHeight | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.BlockId.html b/types/_near_js_types.provider_protocol.BlockId.html index 371566eb68..7a505e01b5 100644 --- a/types/_near_js_types.provider_protocol.BlockId.html +++ b/types/_near_js_types.provider_protocol.BlockId.html @@ -1 +1 @@ -BlockId | Documentation
                                \ No newline at end of file +BlockId | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.BlockReference.html b/types/_near_js_types.provider_protocol.BlockReference.html index 7bcb4a411e..79925aaeb4 100644 --- a/types/_near_js_types.provider_protocol.BlockReference.html +++ b/types/_near_js_types.provider_protocol.BlockReference.html @@ -1 +1 @@ -BlockReference | Documentation
                                BlockReference: {
                                    blockId: BlockId;
                                } | {
                                    finality: Finality;
                                } | {
                                    sync_checkpoint: "genesis" | "earliest_available";
                                }

                                Type declaration

                                Type declaration

                                Type declaration

                                • sync_checkpoint: "genesis" | "earliest_available"
                                \ No newline at end of file +BlockReference | Documentation
                                BlockReference: {
                                    blockId: BlockId;
                                } | {
                                    finality: Finality;
                                } | {
                                    sync_checkpoint: "genesis" | "earliest_available";
                                }

                                Type declaration

                                Type declaration

                                Type declaration

                                • sync_checkpoint: "genesis" | "earliest_available"
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.BlockShardId.html b/types/_near_js_types.provider_protocol.BlockShardId.html index a82c3bd371..9db29f3e92 100644 --- a/types/_near_js_types.provider_protocol.BlockShardId.html +++ b/types/_near_js_types.provider_protocol.BlockShardId.html @@ -1 +1 @@ -BlockShardId | Documentation
                                \ No newline at end of file +BlockShardId | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.ChunkHash.html b/types/_near_js_types.provider_protocol.ChunkHash.html index fcfec41154..9219277e04 100644 --- a/types/_near_js_types.provider_protocol.ChunkHash.html +++ b/types/_near_js_types.provider_protocol.ChunkHash.html @@ -1 +1 @@ -ChunkHash | Documentation
                                \ No newline at end of file +ChunkHash | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.ChunkId.html b/types/_near_js_types.provider_protocol.ChunkId.html index 81ab8a709b..a745afbae4 100644 --- a/types/_near_js_types.provider_protocol.ChunkId.html +++ b/types/_near_js_types.provider_protocol.ChunkId.html @@ -1 +1 @@ -ChunkId | Documentation
                                \ No newline at end of file +ChunkId | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.Finality.html b/types/_near_js_types.provider_protocol.Finality.html index 3e88fe3632..33b08e77ef 100644 --- a/types/_near_js_types.provider_protocol.Finality.html +++ b/types/_near_js_types.provider_protocol.Finality.html @@ -1 +1 @@ -Finality | Documentation
                                Finality: "optimistic" | "near-final" | "final"
                                \ No newline at end of file +Finality | Documentation
                                Finality: "optimistic" | "near-final" | "final"
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.MerklePath.html b/types/_near_js_types.provider_protocol.MerklePath.html index 4343b21352..28071d9a9f 100644 --- a/types/_near_js_types.provider_protocol.MerklePath.html +++ b/types/_near_js_types.provider_protocol.MerklePath.html @@ -1 +1 @@ -MerklePath | Documentation
                                \ No newline at end of file +MerklePath | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.ShardId.html b/types/_near_js_types.provider_protocol.ShardId.html index 34c54dcbdc..a548c9f695 100644 --- a/types/_near_js_types.provider_protocol.ShardId.html +++ b/types/_near_js_types.provider_protocol.ShardId.html @@ -1 +1 @@ -ShardId | Documentation
                                \ No newline at end of file +ShardId | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_protocol.TxExecutionStatus.html b/types/_near_js_types.provider_protocol.TxExecutionStatus.html index 496721f273..8da282fb50 100644 --- a/types/_near_js_types.provider_protocol.TxExecutionStatus.html +++ b/types/_near_js_types.provider_protocol.TxExecutionStatus.html @@ -1 +1 @@ -TxExecutionStatus | Documentation
                                TxExecutionStatus: "NONE" | "INCLUDED" | "INCLUDED_FINAL" | "EXECUTED" | "FINAL" | "EXECUTED_OPTIMISTIC"
                                \ No newline at end of file +TxExecutionStatus | Documentation
                                TxExecutionStatus: "NONE" | "INCLUDED" | "INCLUDED_FINAL" | "EXECUTED" | "FINAL" | "EXECUTED_OPTIMISTIC"
                                \ No newline at end of file diff --git a/types/_near_js_types.provider_request.RpcQueryRequest.html b/types/_near_js_types.provider_request.RpcQueryRequest.html index 89c0bc10a3..5e61b3dacc 100644 --- a/types/_near_js_types.provider_request.RpcQueryRequest.html +++ b/types/_near_js_types.provider_request.RpcQueryRequest.html @@ -1 +1 @@ -RpcQueryRequest | Documentation
                                \ No newline at end of file +RpcQueryRequest | Documentation
                                \ No newline at end of file diff --git a/types/_near_js_utils.logger_interface.LogLevel.html b/types/_near_js_utils.logger_interface.LogLevel.html index 0b2870793f..9ee4dc1bd1 100644 --- a/types/_near_js_utils.logger_interface.LogLevel.html +++ b/types/_near_js_utils.logger_interface.LogLevel.html @@ -1 +1 @@ -LogLevel | Documentation
                                LogLevel: "log" | "error" | "warn" | "debug" | "verbose" | "fatal"
                                \ No newline at end of file +LogLevel | Documentation
                                LogLevel: "log" | "error" | "warn" | "debug" | "verbose" | "fatal"
                                \ No newline at end of file diff --git a/types/near_api_js.utils_key_pair.Arrayish.html b/types/near_api_js.utils_key_pair.Arrayish.html index e7e4cb88e3..35537d1b6f 100644 --- a/types/near_api_js.utils_key_pair.Arrayish.html +++ b/types/near_api_js.utils_key_pair.Arrayish.html @@ -1 +1 @@ -Arrayish | Documentation
                                Arrayish: string | ArrayLike<number>
                                \ No newline at end of file +Arrayish | Documentation
                                Arrayish: string | ArrayLike<number>
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_ALLOWANCE.html b/variables/_near_js_accounts.constants.MULTISIG_ALLOWANCE.html index def6878972..f9b9f822a4 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_ALLOWANCE.html +++ b/variables/_near_js_accounts.constants.MULTISIG_ALLOWANCE.html @@ -1 +1 @@ -MULTISIG_ALLOWANCE | Documentation
                                MULTISIG_ALLOWANCE: bigint = ...
                                \ No newline at end of file +MULTISIG_ALLOWANCE | Documentation
                                MULTISIG_ALLOWANCE: bigint = ...
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_CHANGE_METHODS.html b/variables/_near_js_accounts.constants.MULTISIG_CHANGE_METHODS.html index 44c860fc8e..8cc849cec5 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_CHANGE_METHODS.html +++ b/variables/_near_js_accounts.constants.MULTISIG_CHANGE_METHODS.html @@ -1 +1 @@ -MULTISIG_CHANGE_METHODS | Documentation
                                MULTISIG_CHANGE_METHODS: string[] = ...
                                \ No newline at end of file +MULTISIG_CHANGE_METHODS | Documentation
                                MULTISIG_CHANGE_METHODS: string[] = ...
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_CONFIRM_METHODS.html b/variables/_near_js_accounts.constants.MULTISIG_CONFIRM_METHODS.html index 376e18e580..406c18e360 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_CONFIRM_METHODS.html +++ b/variables/_near_js_accounts.constants.MULTISIG_CONFIRM_METHODS.html @@ -1 +1 @@ -MULTISIG_CONFIRM_METHODS | Documentation
                                MULTISIG_CONFIRM_METHODS: string[] = ...
                                \ No newline at end of file +MULTISIG_CONFIRM_METHODS | Documentation
                                MULTISIG_CONFIRM_METHODS: string[] = ...
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_DEPOSIT.html b/variables/_near_js_accounts.constants.MULTISIG_DEPOSIT.html index fd069d1372..777867b0f5 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_DEPOSIT.html +++ b/variables/_near_js_accounts.constants.MULTISIG_DEPOSIT.html @@ -1 +1 @@ -MULTISIG_DEPOSIT | Documentation
                                MULTISIG_DEPOSIT: 0n = ...
                                \ No newline at end of file +MULTISIG_DEPOSIT | Documentation
                                MULTISIG_DEPOSIT: 0n = ...
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_GAS.html b/variables/_near_js_accounts.constants.MULTISIG_GAS.html index f53ce363b6..feb33476c0 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_GAS.html +++ b/variables/_near_js_accounts.constants.MULTISIG_GAS.html @@ -1 +1 @@ -MULTISIG_GAS | Documentation
                                MULTISIG_GAS: 100000000000000n = ...
                                \ No newline at end of file +MULTISIG_GAS | Documentation
                                MULTISIG_GAS: 100000000000000n = ...
                                \ No newline at end of file diff --git a/variables/_near_js_accounts.constants.MULTISIG_STORAGE_KEY.html b/variables/_near_js_accounts.constants.MULTISIG_STORAGE_KEY.html index 414ea275ad..ae4b115aa0 100644 --- a/variables/_near_js_accounts.constants.MULTISIG_STORAGE_KEY.html +++ b/variables/_near_js_accounts.constants.MULTISIG_STORAGE_KEY.html @@ -1 +1 @@ -MULTISIG_STORAGE_KEY | Documentation
                                MULTISIG_STORAGE_KEY: "__multisigRequest" = '__multisigRequest'
                                \ No newline at end of file +MULTISIG_STORAGE_KEY | Documentation
                                MULTISIG_STORAGE_KEY: "__multisigRequest" = '__multisigRequest'
                                \ No newline at end of file diff --git a/variables/_near_js_crypto.constants.KeySize.html b/variables/_near_js_crypto.constants.KeySize.html index 431638888e..31c59aa349 100644 --- a/variables/_near_js_crypto.constants.KeySize.html +++ b/variables/_near_js_crypto.constants.KeySize.html @@ -1 +1 @@ -KeySize | Documentation
                                KeySize: {
                                    ED25519_PUBLIC_KEY: number;
                                    SECP256k1_PUBLIC_KEY: number;
                                    SECRET_KEY: number;
                                } = ...

                                Type declaration

                                • ED25519_PUBLIC_KEY: number
                                • SECP256k1_PUBLIC_KEY: number
                                • SECRET_KEY: number
                                \ No newline at end of file +KeySize | Documentation
                                KeySize: {
                                    ED25519_PUBLIC_KEY: number;
                                    SECP256k1_PUBLIC_KEY: number;
                                    SECRET_KEY: number;
                                } = ...

                                Type declaration

                                • ED25519_PUBLIC_KEY: number
                                • SECP256k1_PUBLIC_KEY: number
                                • SECRET_KEY: number
                                \ No newline at end of file diff --git a/variables/_near_js_iframe_rpc.types.windowReceiver.html b/variables/_near_js_iframe_rpc.types.windowReceiver.html index 77e197ef49..c9a4acc939 100644 --- a/variables/_near_js_iframe_rpc.types.windowReceiver.html +++ b/variables/_near_js_iframe_rpc.types.windowReceiver.html @@ -1 +1 @@ -windowReceiver | Documentation
                                \ No newline at end of file +windowReceiver | Documentation
                                \ No newline at end of file diff --git a/variables/_near_js_transactions.action_creators.actionCreators.html b/variables/_near_js_transactions.action_creators.actionCreators.html index 6ea9377e55..372be5fb00 100644 --- a/variables/_near_js_transactions.action_creators.actionCreators.html +++ b/variables/_near_js_transactions.action_creators.actionCreators.html @@ -40,4 +40,4 @@
                          • transfer: ((deposit?) => Action)
                              • (deposit?): Action
                              • Creates a new action for transferring funds, optionally specifying a deposit amount.

                                Parameters

                                • deposit: bigint = ...

                                  The amount to be deposited along with the transfer. Default: 0.

                                Returns Action

                                A new action for transferring funds.

                                -
                          \ No newline at end of file +
                    \ No newline at end of file diff --git a/variables/_near_js_transactions.schema.SCHEMA.html b/variables/_near_js_transactions.schema.SCHEMA.html index 252a6e8163..e3225bf915 100644 --- a/variables/_near_js_transactions.schema.SCHEMA.html +++ b/variables/_near_js_transactions.schema.SCHEMA.html @@ -1 +1 @@ -SCHEMA | Documentation
                    SCHEMA: BorshSchema = ...
                    \ No newline at end of file +SCHEMA | Documentation
                    SCHEMA: BorshSchema = ...
                    \ No newline at end of file diff --git a/variables/_near_js_utils.constants.DEFAULT_FUNCTION_CALL_GAS.html b/variables/_near_js_utils.constants.DEFAULT_FUNCTION_CALL_GAS.html index ccd65884a7..9c08994ece 100644 --- a/variables/_near_js_utils.constants.DEFAULT_FUNCTION_CALL_GAS.html +++ b/variables/_near_js_utils.constants.DEFAULT_FUNCTION_CALL_GAS.html @@ -1 +1 @@ -DEFAULT_FUNCTION_CALL_GAS | Documentation
                    DEFAULT_FUNCTION_CALL_GAS: 30000000000000n = ...
                    \ No newline at end of file +DEFAULT_FUNCTION_CALL_GAS | Documentation
                    DEFAULT_FUNCTION_CALL_GAS: 30000000000000n = ...
                    \ No newline at end of file diff --git a/variables/_near_js_utils.errors_errors.ErrorMessages.html b/variables/_near_js_utils.errors_errors.ErrorMessages.html index e533b3b3ea..0b1da76ff7 100644 --- a/variables/_near_js_utils.errors_errors.ErrorMessages.html +++ b/variables/_near_js_utils.errors_errors.ErrorMessages.html @@ -1 +1 @@ -ErrorMessages | Documentation
                    ErrorMessages: {
                        [error: string]: string;
                    } = ErrorMessagesJson

                    Type declaration

                    • [error: string]: string
                    \ No newline at end of file +ErrorMessages | Documentation
                    ErrorMessages: {
                        [error: string]: string;
                    } = ErrorMessagesJson

                    Type declaration

                    • [error: string]: string
                    \ No newline at end of file diff --git a/variables/_near_js_utils.format.NEAR_NOMINATION.html b/variables/_near_js_utils.format.NEAR_NOMINATION.html index 4feabe273a..3e56eba394 100644 --- a/variables/_near_js_utils.format.NEAR_NOMINATION.html +++ b/variables/_near_js_utils.format.NEAR_NOMINATION.html @@ -1,2 +1,2 @@ NEAR_NOMINATION | Documentation
                    NEAR_NOMINATION: bigint = ...

                    Number of indivisible units in one NEAR. Derived from NEAR_NOMINATION_EXP.

                    -
                    \ No newline at end of file +
                    \ No newline at end of file diff --git a/variables/_near_js_utils.format.NEAR_NOMINATION_EXP.html b/variables/_near_js_utils.format.NEAR_NOMINATION_EXP.html index 46031671f1..f0d68a68e3 100644 --- a/variables/_near_js_utils.format.NEAR_NOMINATION_EXP.html +++ b/variables/_near_js_utils.format.NEAR_NOMINATION_EXP.html @@ -1,2 +1,2 @@ NEAR_NOMINATION_EXP | Documentation
                    NEAR_NOMINATION_EXP: 24 = 24

                    Exponent for calculating how many indivisible units are there in one NEAR. See NEAR_NOMINATION.

                    -
                    \ No newline at end of file +
                    \ No newline at end of file