diff --git a/classes/collections_lookup_map.LookupMap.html b/classes/collections_lookup_map.LookupMap.html index dc8b32c11..f17c808be 100644 --- a/classes/collections_lookup_map.LookupMap.html +++ b/classes/collections_lookup_map.LookupMap.html @@ -1,5 +1,5 @@ -LookupMap | near-sdk-js - v1.0.0

A lookup map that stores data in NEAR storage.

-

Type Parameters

  • DataType

Hierarchy

Constructors

constructor +LookupMap | near-sdk-js - v2.0.0

A lookup map that stores data in NEAR storage.

+

Type Parameters

  • DataType

Hierarchy

Constructors

Properties

Methods

containsKey extend @@ -11,24 +11,24 @@ subtype reconstruct

Constructors

Properties

keyPrefix: string

The byte prefix to use when storing elements inside this collection.

-

Methods

  • Checks whether the collection contains the value.

    +

Returns LookupMap<DataType>

Properties

keyPrefix: string

The byte prefix to use when storing elements inside this collection.

+

Methods

  • Extends the current collection with the passed in array of key-value pairs.

    +

Returns boolean

Returns void

Returns DataType

Returns DataType

Returns Uint8Array

Returns DataType

Generated using TypeDoc

\ No newline at end of file +

Returns LookupMap<DataType>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_lookup_set.LookupSet.html b/classes/collections_lookup_set.LookupSet.html index ed05faca7..e9f31aff0 100644 --- a/classes/collections_lookup_set.LookupSet.html +++ b/classes/collections_lookup_set.LookupSet.html @@ -1,5 +1,5 @@ -LookupSet | near-sdk-js - v1.0.0

A lookup set collection that stores entries in NEAR storage.

-

Type Parameters

  • DataType

Constructors

constructor +LookupSet | near-sdk-js - v2.0.0

A lookup set collection that stores entries in NEAR storage.

+

Type Parameters

  • DataType

Constructors

Properties

Methods

contains extend @@ -8,22 +8,22 @@ set reconstruct

Constructors

Properties

keyPrefix: string

The byte prefix to use when storing elements inside this collection.

-

Methods

  • Checks whether the collection contains the value.

    +

Returns LookupSet<DataType>

Properties

keyPrefix: string

The byte prefix to use when storing elements inside this collection.

+

Methods

  • Extends the current collection with the passed in array of elements.

    +

Returns boolean

Returns void

Returns boolean

Returns Uint8Array

Returns boolean

Generated using TypeDoc

\ No newline at end of file +

Returns LookupSet<DataType>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_subtype.SubType.html b/classes/collections_subtype.SubType.html index cfd9d01e7..e9c10f1c1 100644 --- a/classes/collections_subtype.SubType.html +++ b/classes/collections_subtype.SubType.html @@ -1,4 +1,4 @@ -SubType | near-sdk-js - v1.0.0

Class SubType<DataType>Abstract

Type Parameters

  • DataType

Hierarchy

Constructors

constructor +SubType | near-sdk-js - v2.0.0

Class SubType<DataType>Abstract

Type Parameters

  • DataType

Hierarchy

Constructors

  • Type Parameters

    • DataType

    Returns SubType<DataType>

Methods

Generated using TypeDoc

\ No newline at end of file +

Constructors

  • Type Parameters

    • DataType

    Returns SubType<DataType>

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_unordered_map.UnorderedMap.html b/classes/collections_unordered_map.UnorderedMap.html index 1037edaee..9d0aee6a6 100644 --- a/classes/collections_unordered_map.UnorderedMap.html +++ b/classes/collections_unordered_map.UnorderedMap.html @@ -1,5 +1,5 @@ -UnorderedMap | near-sdk-js - v1.0.0

An unordered map that stores data in NEAR storage.

-

Type Parameters

  • DataType

Hierarchy

Constructors

constructor +UnorderedMap | near-sdk-js - v2.0.0

An unordered map that stores data in NEAR storage.

+

Type Parameters

  • DataType

Hierarchy

Constructors

Properties

_keys prefix values @@ -19,28 +19,28 @@ toArray reconstruct

Constructors

Properties

_keys: Vector<string>
prefix: string

The byte prefix to use when storing elements inside this collection.

-
values: LookupMap<ValueAndIndex>

Accessors

Methods

  • Create a iterator on top of the default collection iterator using custom options.

    +

Returns UnorderedMap<DataType>

Properties

_keys: Vector<string>
prefix: string

The byte prefix to use when storing elements inside this collection.

+
values: LookupMap<ValueAndIndex>

Accessors

Methods

  • Extends the current collection with the passed in array of key-value pairs.

    +

Returns {
    [iterator](): UnorderedMapIterator<DataType>;
}

Returns void

Returns DataType

Returns DataType

Returns Uint8Array

Returns DataType

Returns [string, DataType][]

Generated using TypeDoc

\ No newline at end of file +

Returns UnorderedMap<DataType>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_unordered_set.UnorderedSet.html b/classes/collections_unordered_set.UnorderedSet.html index 07b22b4a5..eac32a50e 100644 --- a/classes/collections_unordered_set.UnorderedSet.html +++ b/classes/collections_unordered_set.UnorderedSet.html @@ -1,5 +1,5 @@ -UnorderedSet | near-sdk-js - v1.0.0

An unordered set that stores data in NEAR storage.

-

Type Parameters

  • DataType

Constructors

constructor +UnorderedSet | near-sdk-js - v2.0.0

An unordered set that stores data in NEAR storage.

+

Type Parameters

  • DataType

Constructors

Properties

Constructors

Properties

_elements: Vector<DataType>
elementIndexPrefix: string
prefix: string

The byte prefix to use when storing elements inside this collection.

-

Accessors

Methods

  • Checks whether the collection contains the value.

    +

Returns UnorderedSet<DataType>

Properties

_elements: Vector<DataType>
elementIndexPrefix: string
prefix: string

The byte prefix to use when storing elements inside this collection.

+

Accessors

Methods

  • Create a iterator on top of the default collection iterator using custom options.

    +

Returns boolean

Returns {
    [iterator](): VectorIterator<DataType>;
}

Returns void

Returns boolean

Returns Uint8Array

Returns boolean

Returns DataType[]

Generated using TypeDoc

\ No newline at end of file +

Returns UnorderedSet<DataType>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_vector.Vector.html b/classes/collections_vector.Vector.html index 84a79a922..470c9fd90 100644 --- a/classes/collections_vector.Vector.html +++ b/classes/collections_vector.Vector.html @@ -1,6 +1,6 @@ -Vector | near-sdk-js - v1.0.0

An iterable implementation of vector that stores its content on the trie. +Vector | near-sdk-js - v2.0.0

An iterable implementation of vector that stores its content on the trie. Uses the following map: index -> element

-

Type Parameters

  • DataType

Hierarchy

Constructors

Type Parameters

  • DataType

Hierarchy

Constructors

Properties

Methods

[iterator] @@ -20,35 +20,35 @@ reconstruct

Constructors

Properties

length: number = 0

The initial length of the collection. By default 0.

-
prefix: string

The byte prefix to use when storing elements inside this collection.

-

Methods

  • Create a iterator on top of the default collection iterator using custom options.

    +

Returns Vector<DataType>

Properties

length: number = 0

The initial length of the collection. By default 0.

+
prefix: string

The byte prefix to use when storing elements inside this collection.

+

Methods

  • Extends the current collection with the passed in array of elements.

    +

Returns {
    [iterator](): VectorIterator<DataType>;
}

  • Get the data stored at the provided index.

    +

Returns void

Returns DataType

Returns DataType

Returns void

Returns DataType

Returns Uint8Array

Returns DataType

Returns DataType[]

Generated using TypeDoc

\ No newline at end of file +

Returns Vector<DataType>

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/collections_vector.VectorIterator.html b/classes/collections_vector.VectorIterator.html index 211cee121..93dbd09c5 100644 --- a/classes/collections_vector.VectorIterator.html +++ b/classes/collections_vector.VectorIterator.html @@ -1,11 +1,11 @@ -VectorIterator | near-sdk-js - v1.0.0

Class VectorIterator<DataType>

An iterator for the Vector collection.

-

Type Parameters

  • DataType

Constructors

constructor +VectorIterator | near-sdk-js - v2.0.0

Class VectorIterator<DataType>

An iterator for the Vector collection.

+

Type Parameters

  • DataType

Constructors

Properties

Methods

Constructors

Properties

current: number = 0
options?: GetOptions<DataType>

Options for retrieving and storing data.

-
vector: Vector<DataType>

The vector collection to create an iterator for.

-

Methods

Generated using TypeDoc

\ No newline at end of file +

Returns VectorIterator<DataType>

Properties

current: number = 0
options?: GetOptions<DataType>

Options for retrieving and storing data.

+
vector: Vector<DataType>

The vector collection to create an iterator for.

+

Methods

Generated using TypeDoc

\ No newline at end of file diff --git a/classes/promise.AddAccessKey.html b/classes/promise.AddAccessKey.html index 2f168a4a7..db36207e8 100644 --- a/classes/promise.AddAccessKey.html +++ b/classes/promise.AddAccessKey.html @@ -1,5 +1,5 @@ -AddAccessKey | near-sdk-js - v1.0.0

A add access key promise action.

-

Hierarchy

Constructors

constructor +AddAccessKey | near-sdk-js - v2.0.0

A add access key promise action.

+

Hierarchy

Constructors

Properties

allowance functionNames nonce @@ -11,11 +11,11 @@
  • receiverId: string

    The account ID of the receiver.

  • functionNames: string

    The names of funcitons to authorize.

  • nonce: bigint

    The nonce to use.

    -
  • Returns AddAccessKey

    Properties

    allowance: bigint

    The allowance for the key in yoctoNEAR.

    -
    functionNames: string

    The names of funcitons to authorize.

    -
    nonce: bigint

    The nonce to use.

    -
    publicKey: PublicKey

    The public key to add as a access key.

    -
    receiverId: string

    The account ID of the receiver.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns AddAccessKey

    Properties

    allowance: bigint

    The allowance for the key in yoctoNEAR.

    +
    functionNames: string

    The names of funcitons to authorize.

    +
    nonce: bigint

    The nonce to use.

    +
    publicKey: PublicKey

    The public key to add as a access key.

    +
    receiverId: string

    The account ID of the receiver.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.AddFullAccessKey.html b/classes/promise.AddFullAccessKey.html index 6cd18a4fb..de963eee4 100644 --- a/classes/promise.AddFullAccessKey.html +++ b/classes/promise.AddFullAccessKey.html @@ -1,12 +1,12 @@ -AddFullAccessKey | near-sdk-js - v1.0.0

    A add full access key promise action.

    -

    Hierarchy

    Constructors

    constructor +AddFullAccessKey | near-sdk-js - v2.0.0

    A add full access key promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    nonce: bigint

    The nonce to use.

    -
    publicKey: PublicKey

    The public key to add as a full access key.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns AddFullAccessKey

    Properties

    nonce: bigint

    The nonce to use.

    +
    publicKey: PublicKey

    The public key to add as a full access key.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.CreateAccount.html b/classes/promise.CreateAccount.html index 387d15177..fca67c189 100644 --- a/classes/promise.CreateAccount.html +++ b/classes/promise.CreateAccount.html @@ -1,6 +1,6 @@ -CreateAccount | near-sdk-js - v1.0.0

    A create account promise action.

    -

    Hierarchy

    Constructors

    constructor +CreateAccount | near-sdk-js - v2.0.0

    A create account promise action.

    +

    Hierarchy

    Constructors

    Methods

    Constructors

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.DeleteAccount.html b/classes/promise.DeleteAccount.html index 9c7dd8c5f..94d23de78 100644 --- a/classes/promise.DeleteAccount.html +++ b/classes/promise.DeleteAccount.html @@ -1,9 +1,9 @@ -DeleteAccount | near-sdk-js - v1.0.0

    A delete account promise action.

    -

    Hierarchy

    Constructors

    constructor +DeleteAccount | near-sdk-js - v2.0.0

    A delete account promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    beneficiaryId: string

    The beneficiary of the account deletion - the account to recieve all of the remaining funds of the deleted account.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns DeleteAccount

    Properties

    beneficiaryId: string

    The beneficiary of the account deletion - the account to recieve all of the remaining funds of the deleted account.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.DeleteKey.html b/classes/promise.DeleteKey.html index 606c41b52..d09adb4fa 100644 --- a/classes/promise.DeleteKey.html +++ b/classes/promise.DeleteKey.html @@ -1,9 +1,9 @@ -DeleteKey | near-sdk-js - v1.0.0

    A delete key promise action.

    -

    Hierarchy

    Constructors

    constructor +DeleteKey | near-sdk-js - v2.0.0

    A delete key promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    publicKey: PublicKey

    The public key to delete from the account.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns DeleteKey

    Properties

    publicKey: PublicKey

    The public key to delete from the account.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.DeployContract.html b/classes/promise.DeployContract.html index 8cb190926..9e54e18c2 100644 --- a/classes/promise.DeployContract.html +++ b/classes/promise.DeployContract.html @@ -1,9 +1,9 @@ -DeployContract | near-sdk-js - v1.0.0

    A deploy contract promise action.

    -

    Hierarchy

    Constructors

    constructor +DeployContract | near-sdk-js - v2.0.0

    A deploy contract promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    code: Uint8Array

    The code of the contract to be deployed.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns DeployContract

    Properties

    code: Uint8Array

    The code of the contract to be deployed.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.FunctionCall.html b/classes/promise.FunctionCall.html index a74b152f6..c5f5e248a 100644 --- a/classes/promise.FunctionCall.html +++ b/classes/promise.FunctionCall.html @@ -1,5 +1,5 @@ -FunctionCall | near-sdk-js - v1.0.0

    A function call promise action.

    -

    Hierarchy

    Constructors

    constructor +FunctionCall | near-sdk-js - v2.0.0

    A function call promise action.

    +

    Hierarchy

    Constructors

    Properties

    amount args functionName @@ -9,10 +9,10 @@
  • args: string

    The utf-8 string arguments to be passed to the function.

  • amount: bigint

    The amount of NEAR to attach to the call.

  • gas: bigint

    The amount of Gas to attach to the call.

    -
  • Returns FunctionCall

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    -
    args: string

    The utf-8 string arguments to be passed to the function.

    -
    functionName: string

    The name of the function to be called.

    -
    gas: bigint

    The amount of Gas to attach to the call.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns FunctionCall

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    +
    args: string

    The utf-8 string arguments to be passed to the function.

    +
    functionName: string

    The name of the function to be called.

    +
    gas: bigint

    The amount of Gas to attach to the call.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.FunctionCallRaw.html b/classes/promise.FunctionCallRaw.html index 575bc2cf5..ee143ea67 100644 --- a/classes/promise.FunctionCallRaw.html +++ b/classes/promise.FunctionCallRaw.html @@ -1,5 +1,5 @@ -FunctionCallRaw | near-sdk-js - v1.0.0

    A function call raw promise action.

    -

    Hierarchy

    Constructors

    constructor +FunctionCallRaw | near-sdk-js - v2.0.0

    A function call raw promise action.

    +

    Hierarchy

    Constructors

    Properties

    amount args functionName @@ -9,10 +9,10 @@
  • args: Uint8Array

    The arguments to be passed to the function.

  • amount: bigint

    The amount of NEAR to attach to the call.

  • gas: bigint

    The amount of Gas to attach to the call.

    -
  • Returns FunctionCallRaw

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    -
    args: Uint8Array

    The arguments to be passed to the function.

    -
    functionName: string

    The name of the function to be called.

    -
    gas: bigint

    The amount of Gas to attach to the call.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns FunctionCallRaw

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    +
    args: Uint8Array

    The arguments to be passed to the function.

    +
    functionName: string

    The name of the function to be called.

    +
    gas: bigint

    The amount of Gas to attach to the call.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.FunctionCallWeight.html b/classes/promise.FunctionCallWeight.html index b392cf01d..94bc9d04e 100644 --- a/classes/promise.FunctionCallWeight.html +++ b/classes/promise.FunctionCallWeight.html @@ -1,5 +1,5 @@ -FunctionCallWeight | near-sdk-js - v1.0.0

    Class FunctionCallWeight

    A function call weight promise action.

    -

    Hierarchy

    Constructors

    constructor +FunctionCallWeight | near-sdk-js - v2.0.0

    Class FunctionCallWeight

    A function call weight promise action.

    +

    Hierarchy

    Constructors

    Properties

    amount args functionName @@ -11,11 +11,11 @@
  • amount: bigint

    The amount of NEAR to attach to the call.

  • gas: bigint

    The amount of Gas to attach to the call.

  • weight: bigint

    The weight of unused Gas to use.

    -
  • Returns FunctionCallWeight

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    -
    args: string

    The utf-8 string arguments to be passed to the function.

    -
    functionName: string

    The name of the function to be called.

    -
    gas: bigint

    The amount of Gas to attach to the call.

    -
    weight: bigint

    The weight of unused Gas to use.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns FunctionCallWeight

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    +
    args: string

    The utf-8 string arguments to be passed to the function.

    +
    functionName: string

    The name of the function to be called.

    +
    gas: bigint

    The amount of Gas to attach to the call.

    +
    weight: bigint

    The weight of unused Gas to use.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.FunctionCallWeightRaw.html b/classes/promise.FunctionCallWeightRaw.html index 338502d3e..af3b07b5f 100644 --- a/classes/promise.FunctionCallWeightRaw.html +++ b/classes/promise.FunctionCallWeightRaw.html @@ -1,5 +1,5 @@ -FunctionCallWeightRaw | near-sdk-js - v1.0.0

    Class FunctionCallWeightRaw

    A function call weight raw promise action.

    -

    Hierarchy

    Constructors

    constructor +FunctionCallWeightRaw | near-sdk-js - v2.0.0

    Class FunctionCallWeightRaw

    A function call weight raw promise action.

    +

    Hierarchy

    Constructors

    Properties

    amount args functionName @@ -11,11 +11,11 @@
  • amount: bigint

    The amount of NEAR to attach to the call.

  • gas: bigint

    The amount of Gas to attach to the call.

  • weight: bigint

    The weight of unused Gas to use.

    -
  • Returns FunctionCallWeightRaw

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    -
    args: Uint8Array

    The arguments to be passed to the function.

    -
    functionName: string

    The name of the function to be called.

    -
    gas: bigint

    The amount of Gas to attach to the call.

    -
    weight: bigint

    The weight of unused Gas to use.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns FunctionCallWeightRaw

    Properties

    amount: bigint

    The amount of NEAR to attach to the call.

    +
    args: Uint8Array

    The arguments to be passed to the function.

    +
    functionName: string

    The name of the function to be called.

    +
    gas: bigint

    The amount of Gas to attach to the call.

    +
    weight: bigint

    The weight of unused Gas to use.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.NearPromise.html b/classes/promise.NearPromise.html index 2ff790d03..67e102904 100644 --- a/classes/promise.NearPromise.html +++ b/classes/promise.NearPromise.html @@ -1,5 +1,5 @@ -NearPromise | near-sdk-js - v1.0.0

    A high level class to construct and work with NEAR promises.

    -

    Constructors

    constructor +NearPromise | near-sdk-js - v2.0.0

    A high level class to construct and work with NEAR promises.

    +

    Constructors

    Properties

    Methods

    addAccessKey @@ -26,73 +26,73 @@ new

    Constructors

    Properties

    shouldReturn: boolean

    Whether the promise should return.

    -
    subtype: PromiseSubtype

    The subtype of the promise.

    -

    Methods

    • Creates a add access key promise action and adds it to the current promise. +

    Returns NearPromise

    Properties

    shouldReturn: boolean

    Whether the promise should return.

    +
    subtype: PromiseSubtype

    The subtype of the promise.

    +

    Methods

    • Creates a add access key promise action and adds it to the current promise. Uses 0n as the nonce.

      Parameters

      • publicKey: PublicKey

        The public key to add as a access key.

      • allowance: bigint

        The allowance for the key in yoctoNEAR.

      • receiverId: string

        The account ID of the receiver.

      • functionNames: string

        The names of funcitons to authorize.

        -

      Returns NearPromise

    • Creates a add access key promise action and adds it to the current promise. +

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Returns NearPromise

    Generated using TypeDoc

    \ No newline at end of file +

    Returns NearPromise

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.PromiseAction.html b/classes/promise.PromiseAction.html index eca6e1f2b..52e796795 100644 --- a/classes/promise.PromiseAction.html +++ b/classes/promise.PromiseAction.html @@ -1,6 +1,6 @@ -PromiseAction | near-sdk-js - v1.0.0

    Class PromiseActionAbstract

    A promise action which can be executed on the NEAR blockchain.

    -

    Hierarchy

    Constructors

    constructor +PromiseAction | near-sdk-js - v2.0.0

    Class PromiseActionAbstract

    A promise action which can be executed on the NEAR blockchain.

    +

    Hierarchy

    Constructors

    Methods

    Constructors

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      Parameters

      • promiseIndex: PromiseIndex

        The index of the promise batch to attach the action to.

        -

      Returns void

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.PromiseJoint.html b/classes/promise.PromiseJoint.html index 186d61e09..b622755b3 100644 --- a/classes/promise.PromiseJoint.html +++ b/classes/promise.PromiseJoint.html @@ -1,6 +1,6 @@ -PromiseJoint | near-sdk-js - v1.0.0

    Constructors

    constructor +PromiseJoint | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Constructors

    Properties

    promiseA: NearPromise
    promiseB: NearPromise
    promiseIndex: PromiseIndex

    Methods

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.Stake.html b/classes/promise.Stake.html index c96351ac4..640586c92 100644 --- a/classes/promise.Stake.html +++ b/classes/promise.Stake.html @@ -1,12 +1,12 @@ -Stake | near-sdk-js - v1.0.0

    A stake promise action.

    -

    Hierarchy

    Constructors

    constructor +Stake | near-sdk-js - v2.0.0

    A stake promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    amount: bigint

    The amount of NEAR to tranfer.

    -
    publicKey: PublicKey

    The public key to use for staking.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns Stake

    Properties

    amount: bigint

    The amount of NEAR to tranfer.

    +
    publicKey: PublicKey

    The public key to use for staking.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/promise.Transfer.html b/classes/promise.Transfer.html index 8eea6b0e4..edd709154 100644 --- a/classes/promise.Transfer.html +++ b/classes/promise.Transfer.html @@ -1,9 +1,9 @@ -Transfer | near-sdk-js - v1.0.0

    A transfer promise action.

    -

    Hierarchy

    Constructors

    constructor +Transfer | near-sdk-js - v2.0.0

    A transfer promise action.

    +

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

    amount: bigint

    The amount of NEAR to tranfer.

    -

    Methods

    • The method that describes how a promise action adds it's action to the promise batch with the provided index.

      +

    Returns Transfer

    Properties

    amount: bigint

    The amount of NEAR to tranfer.

    +

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/types_public_key.Base58Error.html b/classes/types_public_key.Base58Error.html index 19c5b5f5a..a9a43451c 100644 --- a/classes/types_public_key.Base58Error.html +++ b/classes/types_public_key.Base58Error.html @@ -1,4 +1,4 @@ -Base58Error | near-sdk-js - v1.0.0

    Hierarchy

    Constructors

    constructor +Base58Error | near-sdk-js - v2.0.0

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

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

    Type declaration

      • (err, stackTraces): any
      • Optional override for formatting stack traces

        +

    Constructors

    Properties

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

    Type declaration

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    Generated using TypeDoc

    \ No newline at end of file +

    Parameters

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/types_public_key.InvalidLengthError.html b/classes/types_public_key.InvalidLengthError.html index a3795f4b5..a386ee507 100644 --- a/classes/types_public_key.InvalidLengthError.html +++ b/classes/types_public_key.InvalidLengthError.html @@ -1,4 +1,4 @@ -InvalidLengthError | near-sdk-js - v1.0.0

    Hierarchy

    Constructors

    constructor +InvalidLengthError | near-sdk-js - v2.0.0

    Hierarchy

    Constructors

    Properties

    cause?: Error
    expectedLength: number
    length: number
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Type declaration

      • (err, stackTraces): any
      • Optional override for formatting stack traces

        +

    Constructors

    Properties

    cause?: Error
    expectedLength: number
    length: number
    message: string
    name: string
    stack?: string
    prepareStackTrace?: ((err, stackTraces) => any)

    Type declaration

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    Generated using TypeDoc

    \ No newline at end of file +

    Parameters

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/types_public_key.ParsePublicKeyError.html b/classes/types_public_key.ParsePublicKeyError.html index 02d2ae1f3..9ca862bd4 100644 --- a/classes/types_public_key.ParsePublicKeyError.html +++ b/classes/types_public_key.ParsePublicKeyError.html @@ -1,4 +1,4 @@ -ParsePublicKeyError | near-sdk-js - v1.0.0

    Hierarchy

    Constructors

    constructor +ParsePublicKeyError | near-sdk-js - v2.0.0

    Hierarchy

    Constructors

    Properties

    cause? message name @@ -9,4 +9,4 @@

    Constructors

    • Parameters

      • Optional message: string

      Returns ParsePublicKeyError

    • Parameters

      • Optional message: string
      • Optional options: ErrorOptions

      Returns ParsePublicKeyError

    Properties

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

    Type declaration

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    Generated using TypeDoc

    \ No newline at end of file +

    Parameters

    • targetObject: object
    • Optional constructorOpt: Function

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/types_public_key.PublicKey.html b/classes/types_public_key.PublicKey.html index 85417c347..ae8e9d93f 100644 --- a/classes/types_public_key.PublicKey.html +++ b/classes/types_public_key.PublicKey.html @@ -1,12 +1,12 @@ -PublicKey | near-sdk-js - v1.0.0

    A abstraction on top of the NEAR public key string.

    -

    Constructors

    constructor +PublicKey | near-sdk-js - v2.0.0

    A abstraction on top of the NEAR public key string.

    +

    Constructors

    Properties

    Methods

    Constructors

    Properties

    data: Uint8Array

    The actual value of the public key.

    -
    type: CurveType

    Methods

    • Create a public key from a public key string.

      +

    Returns PublicKey

    Properties

    data: Uint8Array

    The actual value of the public key.

    +
    type: CurveType

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Returns PublicKey

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/types_public_key.UnknownCurve.html b/classes/types_public_key.UnknownCurve.html index ced40a3ed..02aab7150 100644 --- a/classes/types_public_key.UnknownCurve.html +++ b/classes/types_public_key.UnknownCurve.html @@ -1,4 +1,4 @@ -UnknownCurve | near-sdk-js - v1.0.0

    Hierarchy

    Constructors

    constructor +UnknownCurve | near-sdk-js - v2.0.0

    Hierarchy

    Constructors

    Properties

    Methods

    Constructors

    Properties

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

    Type declaration

      • (err, stackTraces): any
      • Optional override for formatting stack traces

        +

    Constructors

    Properties

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

    Type declaration

    stackTraceLimit: number

    Methods

    • Create .stack property on a target object

      -

      Parameters

      • targetObject: object
      • Optional constructorOpt: Function

      Returns void

    Generated using TypeDoc

    \ No newline at end of file +

    Parameters

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/utils.TextDecoder.html b/classes/utils.TextDecoder.html index c0395acaf..cdc020568 100644 --- a/classes/utils.TextDecoder.html +++ b/classes/utils.TextDecoder.html @@ -1,5 +1,5 @@ -TextDecoder | near-sdk-js - v1.0.0

    A subset of NodeJS TextDecoder API. Only support utf-8 and latin1 encoding.

    -

    Constructors

    constructor +TextDecoder | near-sdk-js - v2.0.0

    A subset of NodeJS TextDecoder API. Only support utf-8 and latin1 encoding.

    +

    Constructors

    Properties

    Methods

    Constructors

    Properties

    encoding: string = "utf-8"

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Constructors

    Properties

    encoding: string = "utf-8"

    Methods

    Generated using TypeDoc

    \ No newline at end of file diff --git a/classes/utils.TextEncoder.html b/classes/utils.TextEncoder.html index 265c450e1..5d0ea37e4 100644 --- a/classes/utils.TextEncoder.html +++ b/classes/utils.TextEncoder.html @@ -1,4 +1,4 @@ -TextEncoder | near-sdk-js - v1.0.0

    A subset of NodeJS TextEncoder API

    -

    Constructors

    constructor +TextEncoder | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Constructors

    Methods

    Generated using TypeDoc

    \ No newline at end of file diff --git a/enums/types_public_key.CurveType.html b/enums/types_public_key.CurveType.html index 71a26fcda..ac790a509 100644 --- a/enums/types_public_key.CurveType.html +++ b/enums/types_public_key.CurveType.html @@ -1,3 +1,3 @@ -CurveType | near-sdk-js - v1.0.0

    Enumeration Members

    ED25519 +CurveType | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Enumeration Members

    ED25519: 0
    SECP256K1: 1

    Generated using TypeDoc

    \ No newline at end of file diff --git a/enums/types_vm_types.PromiseError.html b/enums/types_vm_types.PromiseError.html index 58c483ccd..9d3291925 100644 --- a/enums/types_vm_types.PromiseError.html +++ b/enums/types_vm_types.PromiseError.html @@ -1,4 +1,4 @@ -PromiseError | near-sdk-js - v1.0.0

    A promise error can either be due to the promise failing or not yet being ready.

    -

    Enumeration Members

    Failed +PromiseError | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Enumeration Members

    Failed: 0
    NotReady: 1

    Generated using TypeDoc

    \ No newline at end of file diff --git a/enums/types_vm_types.PromiseResult.html b/enums/types_vm_types.PromiseResult.html index d906819af..a374bba80 100644 --- a/enums/types_vm_types.PromiseResult.html +++ b/enums/types_vm_types.PromiseResult.html @@ -1,10 +1,10 @@ -PromiseResult | near-sdk-js - v1.0.0

    A Promise result in near can be one of:

    +PromiseResult | near-sdk-js - v2.0.0

    A Promise result in near can be one of:

    • NotReady = 0 - the promise you are specifying is still not ready, not yet failed nor successful.
    • Successful = 1 - the promise has been successfully executed and you can retrieve the resulting value.
    • Failed = 2 - the promise execution has failed.
    -

    Enumeration Members

    Enumeration Members

    Enumeration Members

    Failed: 2
    NotReady: 0
    Successful: 1

    Generated using TypeDoc

    \ No newline at end of file +

    Enumeration Members

    Failed: 2
    NotReady: 0
    Successful: 1

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.accountBalance.html b/functions/api.accountBalance.html index 258ed4e2c..6b6fe199f 100644 --- a/functions/api.accountBalance.html +++ b/functions/api.accountBalance.html @@ -1,2 +1,2 @@ -accountBalance | near-sdk-js - v1.0.0

    Function accountBalance

    Generated using TypeDoc

    \ No newline at end of file +accountBalance | near-sdk-js - v2.0.0

    Function accountBalance

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.accountLockedBalance.html b/functions/api.accountLockedBalance.html index d90c85200..12300bb66 100644 --- a/functions/api.accountLockedBalance.html +++ b/functions/api.accountLockedBalance.html @@ -1,2 +1,2 @@ -accountLockedBalance | near-sdk-js - v1.0.0

    Function accountLockedBalance

    Generated using TypeDoc

    \ No newline at end of file +accountLockedBalance | near-sdk-js - v2.0.0

    Function accountLockedBalance

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.altBn128G1Multiexp.html b/functions/api.altBn128G1Multiexp.html index f5673a50c..08f9796ad 100644 --- a/functions/api.altBn128G1Multiexp.html +++ b/functions/api.altBn128G1Multiexp.html @@ -1,4 +1,4 @@ -altBn128G1Multiexp | near-sdk-js - v1.0.0

    Function altBn128G1Multiexp

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.altBn128G1Sum.html b/functions/api.altBn128G1Sum.html index 672efc725..ab6747207 100644 --- a/functions/api.altBn128G1Sum.html +++ b/functions/api.altBn128G1Sum.html @@ -1,8 +1,8 @@ -altBn128G1Sum | near-sdk-js - v1.0.0

    Function altBn128G1Sum

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.altBn128PairingCheck.html b/functions/api.altBn128PairingCheck.html index e243cd9d1..10d85011c 100644 --- a/functions/api.altBn128PairingCheck.html +++ b/functions/api.altBn128PairingCheck.html @@ -1,4 +1,4 @@ -altBn128PairingCheck | near-sdk-js - v1.0.0

    Function altBn128PairingCheck

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.attachedDeposit.html b/functions/api.attachedDeposit.html index 17d524177..9b8e40cf4 100644 --- a/functions/api.attachedDeposit.html +++ b/functions/api.attachedDeposit.html @@ -1,3 +1,3 @@ -attachedDeposit | near-sdk-js - v1.0.0

    Function attachedDeposit

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.blockHeight.html b/functions/api.blockHeight.html index 55f4dac40..9db7be638 100644 --- a/functions/api.blockHeight.html +++ b/functions/api.blockHeight.html @@ -1,2 +1,2 @@ -blockHeight | near-sdk-js - v1.0.0

    Function blockHeight

    Generated using TypeDoc

    \ No newline at end of file +blockHeight | near-sdk-js - v2.0.0

    Function blockHeight

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.blockIndex.html b/functions/api.blockIndex.html index aee27963d..8efed3e81 100644 --- a/functions/api.blockIndex.html +++ b/functions/api.blockIndex.html @@ -1,2 +1,2 @@ -blockIndex | near-sdk-js - v1.0.0

    Function blockIndex

    Generated using TypeDoc

    \ No newline at end of file +blockIndex | near-sdk-js - v2.0.0

    Function blockIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.blockTimestamp.html b/functions/api.blockTimestamp.html index 08271b50f..fcd0ff3c6 100644 --- a/functions/api.blockTimestamp.html +++ b/functions/api.blockTimestamp.html @@ -1,2 +1,2 @@ -blockTimestamp | near-sdk-js - v1.0.0

    Function blockTimestamp

    Generated using TypeDoc

    \ No newline at end of file +blockTimestamp | near-sdk-js - v2.0.0

    Function blockTimestamp

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.currentAccountId.html b/functions/api.currentAccountId.html index 750bcd078..fdb006573 100644 --- a/functions/api.currentAccountId.html +++ b/functions/api.currentAccountId.html @@ -1,2 +1,2 @@ -currentAccountId | near-sdk-js - v1.0.0

    Function currentAccountId

    Generated using TypeDoc

    \ No newline at end of file +currentAccountId | near-sdk-js - v2.0.0

    Function currentAccountId

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.ecrecover.html b/functions/api.ecrecover.html index 121a07d18..fd7b4d39c 100644 --- a/functions/api.ecrecover.html +++ b/functions/api.ecrecover.html @@ -1,4 +1,4 @@ -ecrecover | near-sdk-js - v1.0.0

    Function ecrecover

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.epochHeight.html b/functions/api.epochHeight.html index f4c1925ce..e7285747f 100644 --- a/functions/api.epochHeight.html +++ b/functions/api.epochHeight.html @@ -1,2 +1,2 @@ -epochHeight | near-sdk-js - v1.0.0

    Function epochHeight

    Generated using TypeDoc

    \ No newline at end of file +epochHeight | near-sdk-js - v2.0.0

    Function epochHeight

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.input.html b/functions/api.input.html index 33c379ddf..a298ae587 100644 --- a/functions/api.input.html +++ b/functions/api.input.html @@ -1,2 +1,2 @@ -input | near-sdk-js - v1.0.0

    Function input

    Generated using TypeDoc

    \ No newline at end of file +input | near-sdk-js - v2.0.0

    Function input

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.inputRaw.html b/functions/api.inputRaw.html index 879db7726..a2f4962c9 100644 --- a/functions/api.inputRaw.html +++ b/functions/api.inputRaw.html @@ -1,2 +1,2 @@ -inputRaw | near-sdk-js - v1.0.0

    Function inputRaw

    Generated using TypeDoc

    \ No newline at end of file +inputRaw | near-sdk-js - v2.0.0

    Function inputRaw

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.keccak256.html b/functions/api.keccak256.html index a7dbcda77..a55032dd2 100644 --- a/functions/api.keccak256.html +++ b/functions/api.keccak256.html @@ -1,4 +1,4 @@ -keccak256 | near-sdk-js - v1.0.0

    Function keccak256

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.keccak512.html b/functions/api.keccak512.html index 4f2549bc3..343078355 100644 --- a/functions/api.keccak512.html +++ b/functions/api.keccak512.html @@ -1,4 +1,4 @@ -keccak512 | near-sdk-js - v1.0.0

    Function keccak512

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.log.html b/functions/api.log.html index 61c08f0e9..a15aac142 100644 --- a/functions/api.log.html +++ b/functions/api.log.html @@ -1,3 +1,3 @@ -log | near-sdk-js - v1.0.0

    Function log

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.logUtf16.html b/functions/api.logUtf16.html index aad8a9378..74b007408 100644 --- a/functions/api.logUtf16.html +++ b/functions/api.logUtf16.html @@ -1,3 +1,3 @@ -logUtf16 | near-sdk-js - v1.0.0

    Function logUtf16

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.logUtf8.html b/functions/api.logUtf8.html index 383c2a3a2..c816b2197 100644 --- a/functions/api.logUtf8.html +++ b/functions/api.logUtf8.html @@ -1,3 +1,3 @@ -logUtf8 | near-sdk-js - v1.0.0

    Function logUtf8

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.panicUtf8.html b/functions/api.panicUtf8.html index 065af804b..a53599e45 100644 --- a/functions/api.panicUtf8.html +++ b/functions/api.panicUtf8.html @@ -1,3 +1,3 @@ -panicUtf8 | near-sdk-js - v1.0.0

    Function panicUtf8

    Returns never

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.predecessorAccountId.html b/functions/api.predecessorAccountId.html index 7dde63fad..8f4a6c8c9 100644 --- a/functions/api.predecessorAccountId.html +++ b/functions/api.predecessorAccountId.html @@ -1,3 +1,3 @@ -predecessorAccountId | near-sdk-js - v1.0.0

    Function predecessorAccountId

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.prepaidGas.html b/functions/api.prepaidGas.html index 2a840d685..5a61a91dc 100644 --- a/functions/api.prepaidGas.html +++ b/functions/api.prepaidGas.html @@ -1,2 +1,2 @@ -prepaidGas | near-sdk-js - v1.0.0

    Function prepaidGas

    Generated using TypeDoc

    \ No newline at end of file +prepaidGas | near-sdk-js - v2.0.0

    Function prepaidGas

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseAnd.html b/functions/api.promiseAnd.html index 816c01b39..31b64133c 100644 --- a/functions/api.promiseAnd.html +++ b/functions/api.promiseAnd.html @@ -1,3 +1,3 @@ -promiseAnd | near-sdk-js - v1.0.0

    Function promiseAnd

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionAddKeyWithFullAccess.html b/functions/api.promiseBatchActionAddKeyWithFullAccess.html index 8ee5347cf..1b9bfbe2a 100644 --- a/functions/api.promiseBatchActionAddKeyWithFullAccess.html +++ b/functions/api.promiseBatchActionAddKeyWithFullAccess.html @@ -1,5 +1,5 @@ -promiseBatchActionAddKeyWithFullAccess | near-sdk-js - v1.0.0

    Function promiseBatchActionAddKeyWithFullAccess

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionAddKeyWithFunctionCall.html b/functions/api.promiseBatchActionAddKeyWithFunctionCall.html index 57db44f2a..ea64d23a1 100644 --- a/functions/api.promiseBatchActionAddKeyWithFunctionCall.html +++ b/functions/api.promiseBatchActionAddKeyWithFunctionCall.html @@ -1,8 +1,8 @@ -promiseBatchActionAddKeyWithFunctionCall | near-sdk-js - v1.0.0

    Function promiseBatchActionAddKeyWithFunctionCall

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionCreateAccount.html b/functions/api.promiseBatchActionCreateAccount.html index 4d958f1c0..4ebd1ed75 100644 --- a/functions/api.promiseBatchActionCreateAccount.html +++ b/functions/api.promiseBatchActionCreateAccount.html @@ -1,3 +1,3 @@ -promiseBatchActionCreateAccount | near-sdk-js - v1.0.0

    Function promiseBatchActionCreateAccount

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionDeleteAccount.html b/functions/api.promiseBatchActionDeleteAccount.html index 5f9c7438e..c672e6d6f 100644 --- a/functions/api.promiseBatchActionDeleteAccount.html +++ b/functions/api.promiseBatchActionDeleteAccount.html @@ -1,4 +1,4 @@ -promiseBatchActionDeleteAccount | near-sdk-js - v1.0.0

    Function promiseBatchActionDeleteAccount

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionDeleteKey.html b/functions/api.promiseBatchActionDeleteKey.html index 0d5378edb..407955371 100644 --- a/functions/api.promiseBatchActionDeleteKey.html +++ b/functions/api.promiseBatchActionDeleteKey.html @@ -1,4 +1,4 @@ -promiseBatchActionDeleteKey | near-sdk-js - v1.0.0

    Function promiseBatchActionDeleteKey

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionDeployContract.html b/functions/api.promiseBatchActionDeployContract.html index e1103d2bd..1ffdc633c 100644 --- a/functions/api.promiseBatchActionDeployContract.html +++ b/functions/api.promiseBatchActionDeployContract.html @@ -1,4 +1,4 @@ -promiseBatchActionDeployContract | near-sdk-js - v1.0.0

    Function promiseBatchActionDeployContract

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionFunctionCall.html b/functions/api.promiseBatchActionFunctionCall.html index 0ec201b65..ca29de4bf 100644 --- a/functions/api.promiseBatchActionFunctionCall.html +++ b/functions/api.promiseBatchActionFunctionCall.html @@ -1,7 +1,7 @@ -promiseBatchActionFunctionCall | near-sdk-js - v1.0.0

    Function promiseBatchActionFunctionCall

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionFunctionCallRaw.html b/functions/api.promiseBatchActionFunctionCallRaw.html index b05de104e..56c2b33e8 100644 --- a/functions/api.promiseBatchActionFunctionCallRaw.html +++ b/functions/api.promiseBatchActionFunctionCallRaw.html @@ -1,7 +1,7 @@ -promiseBatchActionFunctionCallRaw | near-sdk-js - v1.0.0

    Function promiseBatchActionFunctionCallRaw

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionFunctionCallWeight.html b/functions/api.promiseBatchActionFunctionCallWeight.html index 5bdd5f2b3..0b1504b33 100644 --- a/functions/api.promiseBatchActionFunctionCallWeight.html +++ b/functions/api.promiseBatchActionFunctionCallWeight.html @@ -1,8 +1,8 @@ -promiseBatchActionFunctionCallWeight | near-sdk-js - v1.0.0

    Function promiseBatchActionFunctionCallWeight

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionFunctionCallWeightRaw.html b/functions/api.promiseBatchActionFunctionCallWeightRaw.html index 2626fc232..e92443cbc 100644 --- a/functions/api.promiseBatchActionFunctionCallWeightRaw.html +++ b/functions/api.promiseBatchActionFunctionCallWeightRaw.html @@ -1,8 +1,8 @@ -promiseBatchActionFunctionCallWeightRaw | near-sdk-js - v1.0.0

    Function promiseBatchActionFunctionCallWeightRaw

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionStake.html b/functions/api.promiseBatchActionStake.html index 41cd45506..928c3f55a 100644 --- a/functions/api.promiseBatchActionStake.html +++ b/functions/api.promiseBatchActionStake.html @@ -1,5 +1,5 @@ -promiseBatchActionStake | near-sdk-js - v1.0.0

    Function promiseBatchActionStake

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchActionTransfer.html b/functions/api.promiseBatchActionTransfer.html index 56c4f8822..bc466ce51 100644 --- a/functions/api.promiseBatchActionTransfer.html +++ b/functions/api.promiseBatchActionTransfer.html @@ -1,4 +1,4 @@ -promiseBatchActionTransfer | near-sdk-js - v1.0.0

    Function promiseBatchActionTransfer

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchCreate.html b/functions/api.promiseBatchCreate.html index 81ef8f1ba..ee64b5039 100644 --- a/functions/api.promiseBatchCreate.html +++ b/functions/api.promiseBatchCreate.html @@ -1,3 +1,3 @@ -promiseBatchCreate | near-sdk-js - v1.0.0

    Function promiseBatchCreate

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseBatchThen.html b/functions/api.promiseBatchThen.html index 75be94186..8f41f7bef 100644 --- a/functions/api.promiseBatchThen.html +++ b/functions/api.promiseBatchThen.html @@ -1,4 +1,4 @@ -promiseBatchThen | near-sdk-js - v1.0.0

    Function promiseBatchThen

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseCreate.html b/functions/api.promiseCreate.html index eacbe09d1..d1c6b61fa 100644 --- a/functions/api.promiseCreate.html +++ b/functions/api.promiseCreate.html @@ -1,7 +1,7 @@ -promiseCreate | near-sdk-js - v1.0.0

    Function promiseCreate

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseCreateRaw.html b/functions/api.promiseCreateRaw.html index e3a1d56bc..77e87fa17 100644 --- a/functions/api.promiseCreateRaw.html +++ b/functions/api.promiseCreateRaw.html @@ -1,7 +1,7 @@ -promiseCreateRaw | near-sdk-js - v1.0.0

    Function promiseCreateRaw

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseResult.html b/functions/api.promiseResult.html index bc4b20a6f..c967a2440 100644 --- a/functions/api.promiseResult.html +++ b/functions/api.promiseResult.html @@ -1,3 +1,3 @@ -promiseResult | near-sdk-js - v1.0.0

    Function promiseResult

    Returns string

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseResultRaw.html b/functions/api.promiseResultRaw.html index c54acba8f..c4d44b1ce 100644 --- a/functions/api.promiseResultRaw.html +++ b/functions/api.promiseResultRaw.html @@ -1,3 +1,3 @@ -promiseResultRaw | near-sdk-js - v1.0.0

    Function promiseResultRaw

    Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseResultsCount.html b/functions/api.promiseResultsCount.html index 15852d146..072bfd140 100644 --- a/functions/api.promiseResultsCount.html +++ b/functions/api.promiseResultsCount.html @@ -1,2 +1,2 @@ -promiseResultsCount | near-sdk-js - v1.0.0

    Function promiseResultsCount

    Generated using TypeDoc

    \ No newline at end of file +promiseResultsCount | near-sdk-js - v2.0.0

    Function promiseResultsCount

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseReturn.html b/functions/api.promiseReturn.html index 9eb844517..02cbe3873 100644 --- a/functions/api.promiseReturn.html +++ b/functions/api.promiseReturn.html @@ -1,3 +1,3 @@ -promiseReturn | near-sdk-js - v1.0.0

    Function promiseReturn

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseThen.html b/functions/api.promiseThen.html index d72f1c463..c16805dbf 100644 --- a/functions/api.promiseThen.html +++ b/functions/api.promiseThen.html @@ -1,8 +1,8 @@ -promiseThen | near-sdk-js - v1.0.0

    Function promiseThen

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.promiseThenRaw.html b/functions/api.promiseThenRaw.html index 053e1be67..710bd508e 100644 --- a/functions/api.promiseThenRaw.html +++ b/functions/api.promiseThenRaw.html @@ -1,8 +1,8 @@ -promiseThenRaw | near-sdk-js - v1.0.0

    Function promiseThenRaw

    Returns PromiseIndex

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.randomSeed.html b/functions/api.randomSeed.html index 560fc4836..4c56392d6 100644 --- a/functions/api.randomSeed.html +++ b/functions/api.randomSeed.html @@ -1,2 +1,2 @@ -randomSeed | near-sdk-js - v1.0.0

    Function randomSeed

    Generated using TypeDoc

    \ No newline at end of file +randomSeed | near-sdk-js - v2.0.0

    Function randomSeed

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.ripemd160.html b/functions/api.ripemd160.html index 9cd92dd49..207e67f9f 100644 --- a/functions/api.ripemd160.html +++ b/functions/api.ripemd160.html @@ -1,4 +1,4 @@ -ripemd160 | near-sdk-js - v1.0.0

    Function ripemd160

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.sha256.html b/functions/api.sha256.html index 2b41a8528..c263f7d40 100644 --- a/functions/api.sha256.html +++ b/functions/api.sha256.html @@ -1,4 +1,4 @@ -sha256 | near-sdk-js - v1.0.0

    Function sha256

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.signerAccountId.html b/functions/api.signerAccountId.html index 39ecce295..4fdfe6915 100644 --- a/functions/api.signerAccountId.html +++ b/functions/api.signerAccountId.html @@ -1,3 +1,3 @@ -signerAccountId | near-sdk-js - v1.0.0

    Function signerAccountId

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.signerAccountPk.html b/functions/api.signerAccountPk.html index cfd5fc359..ce096b5bf 100644 --- a/functions/api.signerAccountPk.html +++ b/functions/api.signerAccountPk.html @@ -1,3 +1,3 @@ -signerAccountPk | near-sdk-js - v1.0.0

    Function signerAccountPk

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageByteCost.html b/functions/api.storageByteCost.html index 8c7ba6840..44e6578f7 100644 --- a/functions/api.storageByteCost.html +++ b/functions/api.storageByteCost.html @@ -1,2 +1,2 @@ -storageByteCost | near-sdk-js - v1.0.0

    Function storageByteCost

    Generated using TypeDoc

    \ No newline at end of file +storageByteCost | near-sdk-js - v2.0.0

    Function storageByteCost

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageGetEvicted.html b/functions/api.storageGetEvicted.html index 571dd9d9a..d3c0b138a 100644 --- a/functions/api.storageGetEvicted.html +++ b/functions/api.storageGetEvicted.html @@ -1,2 +1,2 @@ -storageGetEvicted | near-sdk-js - v1.0.0

    Function storageGetEvicted

    Generated using TypeDoc

    \ No newline at end of file +storageGetEvicted | near-sdk-js - v2.0.0

    Function storageGetEvicted

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageGetEvictedRaw.html b/functions/api.storageGetEvictedRaw.html index 94c2131f4..e730397f6 100644 --- a/functions/api.storageGetEvictedRaw.html +++ b/functions/api.storageGetEvictedRaw.html @@ -1,2 +1,2 @@ -storageGetEvictedRaw | near-sdk-js - v1.0.0

    Function storageGetEvictedRaw

    Generated using TypeDoc

    \ No newline at end of file +storageGetEvictedRaw | near-sdk-js - v2.0.0

    Function storageGetEvictedRaw

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageHasKey.html b/functions/api.storageHasKey.html index c7ade420a..75b7b78dd 100644 --- a/functions/api.storageHasKey.html +++ b/functions/api.storageHasKey.html @@ -1,3 +1,3 @@ -storageHasKey | near-sdk-js - v1.0.0

    Function storageHasKey

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageHasKeyRaw.html b/functions/api.storageHasKeyRaw.html index b0c5af156..3a5699984 100644 --- a/functions/api.storageHasKeyRaw.html +++ b/functions/api.storageHasKeyRaw.html @@ -1,3 +1,3 @@ -storageHasKeyRaw | near-sdk-js - v1.0.0

    Function storageHasKeyRaw

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageRead.html b/functions/api.storageRead.html index 83470b258..2e4250adc 100644 --- a/functions/api.storageRead.html +++ b/functions/api.storageRead.html @@ -1,3 +1,3 @@ -storageRead | near-sdk-js - v1.0.0

    Function storageRead

    Returns string | null

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageReadRaw.html b/functions/api.storageReadRaw.html index 21f813a1a..cb41c1d91 100644 --- a/functions/api.storageReadRaw.html +++ b/functions/api.storageReadRaw.html @@ -1,3 +1,3 @@ -storageReadRaw | near-sdk-js - v1.0.0

    Function storageReadRaw

    Returns Uint8Array | null

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageRemove.html b/functions/api.storageRemove.html index a08db8963..fcb8baa10 100644 --- a/functions/api.storageRemove.html +++ b/functions/api.storageRemove.html @@ -1,3 +1,3 @@ -storageRemove | near-sdk-js - v1.0.0

    Function storageRemove

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageRemoveRaw.html b/functions/api.storageRemoveRaw.html index 3e03d2c92..8fbd43436 100644 --- a/functions/api.storageRemoveRaw.html +++ b/functions/api.storageRemoveRaw.html @@ -1,3 +1,3 @@ -storageRemoveRaw | near-sdk-js - v1.0.0

    Function storageRemoveRaw

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageUsage.html b/functions/api.storageUsage.html index 6618c5ba2..993af1969 100644 --- a/functions/api.storageUsage.html +++ b/functions/api.storageUsage.html @@ -1,2 +1,2 @@ -storageUsage | near-sdk-js - v1.0.0

    Function storageUsage

    Generated using TypeDoc

    \ No newline at end of file +storageUsage | near-sdk-js - v2.0.0

    Function storageUsage

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageWrite.html b/functions/api.storageWrite.html index e0aa9443a..6037b885f 100644 --- a/functions/api.storageWrite.html +++ b/functions/api.storageWrite.html @@ -1,4 +1,4 @@ -storageWrite | near-sdk-js - v1.0.0

    Function storageWrite

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.storageWriteRaw.html b/functions/api.storageWriteRaw.html index 24f4e4f6b..6075c17be 100644 --- a/functions/api.storageWriteRaw.html +++ b/functions/api.storageWriteRaw.html @@ -1,4 +1,4 @@ -storageWriteRaw | near-sdk-js - v1.0.0

    Function storageWriteRaw

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.usedGas.html b/functions/api.usedGas.html index 5e5c77613..7d4765bb2 100644 --- a/functions/api.usedGas.html +++ b/functions/api.usedGas.html @@ -1,2 +1,2 @@ -usedGas | near-sdk-js - v1.0.0

    Function usedGas

    Generated using TypeDoc

    \ No newline at end of file +usedGas | near-sdk-js - v2.0.0

    Function usedGas

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.validatorStake.html b/functions/api.validatorStake.html index be2a563a7..d319ccf9d 100644 --- a/functions/api.validatorStake.html +++ b/functions/api.validatorStake.html @@ -1,6 +1,6 @@ -validatorStake | near-sdk-js - v1.0.0

    Function validatorStake

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.validatorTotalStake.html b/functions/api.validatorTotalStake.html index 12d5b2a71..923aa7dd2 100644 --- a/functions/api.validatorTotalStake.html +++ b/functions/api.validatorTotalStake.html @@ -1,3 +1,3 @@ -validatorTotalStake | near-sdk-js - v1.0.0

    Function validatorTotalStake

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.valueReturn.html b/functions/api.valueReturn.html index 8c4446769..c9137acdb 100644 --- a/functions/api.valueReturn.html +++ b/functions/api.valueReturn.html @@ -1,3 +1,3 @@ -valueReturn | near-sdk-js - v1.0.0

    Function valueReturn

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/api.valueReturnRaw.html b/functions/api.valueReturnRaw.html index bacd5dd44..f1d780e54 100644 --- a/functions/api.valueReturnRaw.html +++ b/functions/api.valueReturnRaw.html @@ -1,3 +1,3 @@ -valueReturnRaw | near-sdk-js - v1.0.0

    Function valueReturnRaw

    Returns void

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_abi.runAbiCompilerPlugin.html b/functions/cli_abi.runAbiCompilerPlugin.html index b8c0ffcf7..6c843ce88 100644 --- a/functions/cli_abi.runAbiCompilerPlugin.html +++ b/functions/cli_abi.runAbiCompilerPlugin.html @@ -1 +1 @@ -runAbiCompilerPlugin | near-sdk-js - v1.0.0

    Function runAbiCompilerPlugin

    • Parameters

      • tsFile: string
      • packageJsonPath: string
      • tsConfigJsonPath: string

      Returns AbiRoot

    Generated using TypeDoc

    \ No newline at end of file +runAbiCompilerPlugin | near-sdk-js - v2.0.0

    Function runAbiCompilerPlugin

    • Parameters

      • tsFile: string
      • packageJsonPath: string
      • tsConfigJsonPath: string

      Returns AbiRoot

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_build_tools_include_bytes.default.html b/functions/cli_build_tools_include_bytes.default.html index e3e04cf19..c3a0d91a9 100644 --- a/functions/cli_build_tools_include_bytes.default.html +++ b/functions/cli_build_tools_include_bytes.default.html @@ -1 +1 @@ -default | near-sdk-js - v1.0.0

    Generated using TypeDoc

    \ No newline at end of file +default | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_build_tools_near_bindgen_exporter.default.html b/functions/cli_build_tools_near_bindgen_exporter.default.html index 6aaedb4da..abd289875 100644 --- a/functions/cli_build_tools_near_bindgen_exporter.default.html +++ b/functions/cli_build_tools_near_bindgen_exporter.default.html @@ -1 +1 @@ -default | near-sdk-js - v1.0.0

    Generated using TypeDoc

    \ No newline at end of file +default | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.buildCom.html b/functions/cli_cli.buildCom.html index ad8be7f2b..8ab21c868 100644 --- a/functions/cli_cli.buildCom.html +++ b/functions/cli_cli.buildCom.html @@ -1 +1 @@ -buildCom | near-sdk-js - v1.0.0
    • Parameters

      • source: string
      • target: string
      • packageJson: string
      • tsConfig: string
      • __namedParameters: {
            generateABI: boolean;
            verbose: boolean;
        }
        • generateABI: boolean
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +buildCom | near-sdk-js - v2.0.0
    • Parameters

      • source: string
      • target: string
      • packageJson: string
      • tsConfig: string
      • __namedParameters: {
            generateABI: boolean;
            verbose: boolean;
        }
        • generateABI: boolean
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.checkTypescriptCom.html b/functions/cli_cli.checkTypescriptCom.html index 4953c8bd1..6ef2db37e 100644 --- a/functions/cli_cli.checkTypescriptCom.html +++ b/functions/cli_cli.checkTypescriptCom.html @@ -1 +1 @@ -checkTypescriptCom | near-sdk-js - v1.0.0

    Function checkTypescriptCom

    • Parameters

      • source: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +checkTypescriptCom | near-sdk-js - v2.0.0

    Function checkTypescriptCom

    • Parameters

      • source: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.createJsFileWithRollupCom.html b/functions/cli_cli.createJsFileWithRollupCom.html index e47b0b737..a82f65d73 100644 --- a/functions/cli_cli.createJsFileWithRollupCom.html +++ b/functions/cli_cli.createJsFileWithRollupCom.html @@ -1 +1 @@ -createJsFileWithRollupCom | near-sdk-js - v1.0.0

    Function createJsFileWithRollupCom

    • Parameters

      • source: string
      • target: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +createJsFileWithRollupCom | near-sdk-js - v2.0.0

    Function createJsFileWithRollupCom

    • Parameters

      • source: string
      • target: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.generateAbi.html b/functions/cli_cli.generateAbi.html index 495207abf..cf2ffcbd1 100644 --- a/functions/cli_cli.generateAbi.html +++ b/functions/cli_cli.generateAbi.html @@ -1 +1 @@ -generateAbi | near-sdk-js - v1.0.0

    Function generateAbi

    • Parameters

      • source: string
      • target: string
      • packageJson: string
      • tsConfig: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +generateAbi | near-sdk-js - v2.0.0

    Function generateAbi

    • Parameters

      • source: string
      • target: string
      • packageJson: string
      • tsConfig: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.transpileJsAndBuildWasmCom.html b/functions/cli_cli.transpileJsAndBuildWasmCom.html index 91ac47f8d..42269ccf9 100644 --- a/functions/cli_cli.transpileJsAndBuildWasmCom.html +++ b/functions/cli_cli.transpileJsAndBuildWasmCom.html @@ -1 +1 @@ -transpileJsAndBuildWasmCom | near-sdk-js - v1.0.0

    Function transpileJsAndBuildWasmCom

    • Parameters

      • target: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +transpileJsAndBuildWasmCom | near-sdk-js - v2.0.0

    Function transpileJsAndBuildWasmCom

    • Parameters

      • target: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_cli.validateCom.html b/functions/cli_cli.validateCom.html index b78912ca4..f79470031 100644 --- a/functions/cli_cli.validateCom.html +++ b/functions/cli_cli.validateCom.html @@ -1 +1 @@ -validateCom | near-sdk-js - v1.0.0

    Function validateCom

    • Parameters

      • source: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file +validateCom | near-sdk-js - v2.0.0

    Function validateCom

    • Parameters

      • source: string
      • __namedParameters: {
            verbose: boolean;
        }
        • verbose: boolean

      Returns Promise<void>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_utils.download.html b/functions/cli_utils.download.html index d89f4ae76..91568f947 100644 --- a/functions/cli_utils.download.html +++ b/functions/cli_utils.download.html @@ -1 +1 @@ -download | near-sdk-js - v1.0.0

    Generated using TypeDoc

    \ No newline at end of file +download | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_utils.executeCommand.html b/functions/cli_utils.executeCommand.html index 3198b9d32..df44fc6d9 100644 --- a/functions/cli_utils.executeCommand.html +++ b/functions/cli_utils.executeCommand.html @@ -1 +1 @@ -executeCommand | near-sdk-js - v1.0.0

    Function executeCommand

    Generated using TypeDoc

    \ No newline at end of file +executeCommand | near-sdk-js - v2.0.0

    Function executeCommand

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/cli_utils.validateContract.html b/functions/cli_utils.validateContract.html index 9cd56e904..d7b1cba0a 100644 --- a/functions/cli_utils.validateContract.html +++ b/functions/cli_utils.validateContract.html @@ -1,4 +1,4 @@ -validateContract | near-sdk-js - v1.0.0

    Function validateContract

    Returns Promise<boolean>

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/index.includeBytes.html b/functions/index.includeBytes.html index 10703a7d4..ee3571b31 100644 --- a/functions/index.includeBytes.html +++ b/functions/index.includeBytes.html @@ -1,3 +1,3 @@ -includeBytes | near-sdk-js - v1.0.0

    Function includeBytes

    Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.NearBindgen.html b/functions/near_bindgen.NearBindgen.html index 175598c8f..99a6017ac 100644 --- a/functions/near_bindgen.NearBindgen.html +++ b/functions/near_bindgen.NearBindgen.html @@ -1,8 +1,8 @@ -NearBindgen | near-sdk-js - v1.0.0
  • serializer?:function
  • Returns any

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.call.html b/functions/near_bindgen.call.html index e56e3e6a2..27c31ba66 100644 --- a/functions/near_bindgen.call.html +++ b/functions/near_bindgen.call.html @@ -1,6 +1,6 @@ -call | near-sdk-js - v1.0.0

    Returns DecoratorFunction

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.initialize.html b/functions/near_bindgen.initialize.html index 1f1c8b358..23454aea5 100644 --- a/functions/near_bindgen.initialize.html +++ b/functions/near_bindgen.initialize.html @@ -1,3 +1,3 @@ -initialize | near-sdk-js - v1.0.0

    Returns DecoratorFunction

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.middleware.html b/functions/near_bindgen.middleware.html index 865cf54ce..36976f437 100644 --- a/functions/near_bindgen.middleware.html +++ b/functions/near_bindgen.middleware.html @@ -1,3 +1,3 @@ -middleware | near-sdk-js - v1.0.0

    Returns DecoratorFunction

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.migrate.html b/functions/near_bindgen.migrate.html index 079ba26d1..751c40c40 100644 --- a/functions/near_bindgen.migrate.html +++ b/functions/near_bindgen.migrate.html @@ -1,4 +1,4 @@ -migrate | near-sdk-js - v1.0.0

    Returns DecoratorFunction

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/near_bindgen.view.html b/functions/near_bindgen.view.html index 11b492a22..d746ec5bd 100644 --- a/functions/near_bindgen.view.html +++ b/functions/near_bindgen.view.html @@ -1,3 +1,3 @@ -view | near-sdk-js - v1.0.0

    Returns DecoratorFunction

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/types_public_key.curveTypeFromStr.html b/functions/types_public_key.curveTypeFromStr.html index 98331d994..744d9b457 100644 --- a/functions/types_public_key.curveTypeFromStr.html +++ b/functions/types_public_key.curveTypeFromStr.html @@ -1 +1 @@ -curveTypeFromStr | near-sdk-js - v1.0.0

    Generated using TypeDoc

    \ No newline at end of file +curveTypeFromStr | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.assert.html b/functions/utils.assert.html index 455b58652..d5f8fa93c 100644 --- a/functions/utils.assert.html +++ b/functions/utils.assert.html @@ -1,4 +1,4 @@ -assert | near-sdk-js - v1.0.0

    Function assert

    Returns asserts expression

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.bytes.html b/functions/utils.bytes.html index 461f5049a..32702bece 100644 --- a/functions/utils.bytes.html +++ b/functions/utils.bytes.html @@ -1,4 +1,4 @@ -bytes | near-sdk-js - v1.0.0

    Function bytes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.concat.html b/functions/utils.concat.html index d088e4a5c..c50bae654 100644 --- a/functions/utils.concat.html +++ b/functions/utils.concat.html @@ -1,3 +1,3 @@ -concat | near-sdk-js - v1.0.0

    Function concat

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.decode.html b/functions/utils.decode.html index 75ba8136c..3ad1803b8 100644 --- a/functions/utils.decode.html +++ b/functions/utils.decode.html @@ -1,4 +1,4 @@ -decode | near-sdk-js - v1.0.0

    Function decode

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.decodeObj2class.html b/functions/utils.decodeObj2class.html index e236e588e..8e08a466b 100644 --- a/functions/utils.decodeObj2class.html +++ b/functions/utils.decodeObj2class.html @@ -1 +1 @@ -decodeObj2class | near-sdk-js - v1.0.0

    Function decodeObj2class

    Generated using TypeDoc

    \ No newline at end of file +decodeObj2class | near-sdk-js - v2.0.0

    Function decodeObj2class

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.deserialize.html b/functions/utils.deserialize.html index da9965992..87f9a70a6 100644 --- a/functions/utils.deserialize.html +++ b/functions/utils.deserialize.html @@ -1 +1 @@ -deserialize | near-sdk-js - v1.0.0

    Function deserialize

    Generated using TypeDoc

    \ No newline at end of file +deserialize | near-sdk-js - v2.0.0

    Function deserialize

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.encode.html b/functions/utils.encode.html index 32007e099..866d1e711 100644 --- a/functions/utils.encode.html +++ b/functions/utils.encode.html @@ -1,4 +1,4 @@ -encode | near-sdk-js - v1.0.0

    Function encode

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.getValueWithOptions.html b/functions/utils.getValueWithOptions.html index ffa985efb..59a4fa869 100644 --- a/functions/utils.getValueWithOptions.html +++ b/functions/utils.getValueWithOptions.html @@ -1 +1 @@ -getValueWithOptions | near-sdk-js - v1.0.0

    Function getValueWithOptions

    • Type Parameters

      • DataType

      Parameters

      • subDatatype: unknown
      • value: Uint8Array
      • options: Omit<GetOptions<DataType>, "serializer"> = ...

      Returns DataType | null

    Generated using TypeDoc

    \ No newline at end of file +getValueWithOptions | near-sdk-js - v2.0.0

    Function getValueWithOptions

    • Type Parameters

      • DataType

      Parameters

      • subDatatype: unknown
      • value: Uint8Array
      • options: Omit<GetOptions<DataType>, "serializer"> = ...

      Returns DataType | null

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.serialize.html b/functions/utils.serialize.html index 72ae5e6f0..0cdf5b6c7 100644 --- a/functions/utils.serialize.html +++ b/functions/utils.serialize.html @@ -1 +1 @@ -serialize | near-sdk-js - v1.0.0

    Function serialize

    Generated using TypeDoc

    \ No newline at end of file +serialize | near-sdk-js - v2.0.0

    Function serialize

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.serializeValueWithOptions.html b/functions/utils.serializeValueWithOptions.html index 905627b0f..4976eabfc 100644 --- a/functions/utils.serializeValueWithOptions.html +++ b/functions/utils.serializeValueWithOptions.html @@ -1 +1 @@ -serializeValueWithOptions | near-sdk-js - v1.0.0

    Function serializeValueWithOptions

    • Type Parameters

      • DataType

      Parameters

      • value: DataType
      • __namedParameters: Pick<GetOptions<DataType>, "serializer"> = ...

      Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file +serializeValueWithOptions | near-sdk-js - v2.0.0

    Function serializeValueWithOptions

    • Type Parameters

      • DataType

      Parameters

      • value: DataType
      • __namedParameters: Pick<GetOptions<DataType>, "serializer"> = ...

      Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.str.html b/functions/utils.str.html index 5ab79fa01..1fa6d3cdc 100644 --- a/functions/utils.str.html +++ b/functions/utils.str.html @@ -1,4 +1,4 @@ -str | near-sdk-js - v1.0.0

    Generated using TypeDoc

    \ No newline at end of file diff --git a/functions/utils.validateAccountId.html b/functions/utils.validateAccountId.html index 2017848c5..eaf5af358 100644 --- a/functions/utils.validateAccountId.html +++ b/functions/utils.validateAccountId.html @@ -1,4 +1,4 @@ -validateAccountId | near-sdk-js - v1.0.0

    Function validateAccountId

    Returns boolean

    Generated using TypeDoc

    \ No newline at end of file diff --git a/index.html b/index.html index 40895096d..497bef70f 100644 --- a/index.html +++ b/index.html @@ -1,4 +1,4 @@ -near-sdk-js - v1.0.0

    near-sdk-js - v1.0.0

    NEAR JavaScript SDK

    +near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/interfaces/types_collections.GetOptions.html b/interfaces/types_collections.GetOptions.html index 4b83ea6a3..210de1733 100644 --- a/interfaces/types_collections.GetOptions.html +++ b/interfaces/types_collections.GetOptions.html @@ -1,13 +1,13 @@ -GetOptions | near-sdk-js - v1.0.0

    Interface GetOptions<DataType>

    Options for retrieving and storing data in the SDK collections.

    -
    interface GetOptions {
        defaultValue?: DataType;
        deserializer?(valueToDeserialize): unknown;
        reconstructor?(value): DataType;
        serializer?(valueToSerialize): Uint8Array;
    }

    Type Parameters

    • DataType

    Properties

    defaultValue? +GetOptions | near-sdk-js - v2.0.0

    Interface GetOptions<DataType>

    Options for retrieving and storing data in the SDK collections.

    +
    interface GetOptions {
        defaultValue?: DataType;
        deserializer?(valueToDeserialize): unknown;
        reconstructor?(value): DataType;
        serializer?(valueToSerialize): Uint8Array;
    }

    Type Parameters

    • DataType

    Properties

    defaultValue?: DataType

    A default value to return if the original value is not present or null.

    -

    Methods

    Methods

    • A deserializer function to customize the deserialization of values after reading from NEAR storage for this call.

      Parameters

      • valueToDeserialize: Uint8Array

        The Uint8Array retrieved from NEAR storage to deserialize.

        -

      Returns unknown

    • A constructor function to call after deserializing a value. Tipically this is a constructor of the class you are storing.

      +

    Returns unknown

    • A constructor function to call after deserializing a value. Tipically this is a constructor of the class you are storing.

      Parameters

      • value: unknown

        The value returned from deserialization - either the provided deserializer or default deserialization function.

        -

      Returns DataType

    • A serializer function to customize the serialization of the collection for this call.

      +

    Returns DataType

    • A serializer function to customize the serialization of the collection for this call.

      Parameters

      • valueToSerialize: unknown

        The value that will be serialized - either the DataType or a unknown value.

        -

      Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file +

    Returns Uint8Array

    Generated using TypeDoc

    \ No newline at end of file diff --git a/interfaces/utils.Env.html b/interfaces/utils.Env.html index bea6b82cc..7f40bb5e1 100644 --- a/interfaces/utils.Env.html +++ b/interfaces/utils.Env.html @@ -1,5 +1,5 @@ -Env | near-sdk-js - v1.0.0

    Interface Env

    interface Env {
        latin1_string_to_uint8array(s): Uint8Array;
        uint8array_to_latin1_string(a): string;
        uint8array_to_utf8_string(a): string;
        utf8_string_to_uint8array(s): Uint8Array;
    }

    Methods

    latin1_string_to_uint8array +Env | near-sdk-js - v2.0.0

    Interface Env

    interface Env {
        latin1_string_to_uint8array(s): Uint8Array;
        uint8array_to_latin1_string(a): string;
        uint8array_to_utf8_string(a): string;
        utf8_string_to_uint8array(s): Uint8Array;
    }

    Methods

    Generated using TypeDoc

    \ No newline at end of file +

    Methods

    Generated using TypeDoc

    \ No newline at end of file diff --git a/interfaces/utils.IntoStorageKey.html b/interfaces/utils.IntoStorageKey.html index cadb617dd..08e22166d 100644 --- a/interfaces/utils.IntoStorageKey.html +++ b/interfaces/utils.IntoStorageKey.html @@ -1,3 +1,3 @@ -IntoStorageKey | near-sdk-js - v1.0.0

    Interface IntoStorageKey

    When implemented, allow object to be stored as collection key

    -
    interface IntoStorageKey {
        into_storage_key(): string;
    }

    Methods

    Generated using TypeDoc

    \ No newline at end of file +IntoStorageKey | near-sdk-js - v2.0.0

    Interface IntoStorageKey

    When implemented, allow object to be stored as collection key

    +
    interface IntoStorageKey {
        into_storage_key(): string;
    }

    Methods

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/api.html b/modules/api.html index dad313cd6..7e33b0d48 100644 --- a/modules/api.html +++ b/modules/api.html @@ -1,4 +1,4 @@ -api | near-sdk-js - v1.0.0

    Module api

    Index

    Functions

    accountBalance +api | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_abi.html b/modules/cli_abi.html index efc7aa25c..6533f5fe9 100644 --- a/modules/cli_abi.html +++ b/modules/cli_abi.html @@ -1,2 +1,2 @@ -cli/abi | near-sdk-js - v1.0.0

    Module cli/abi

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file +cli/abi | near-sdk-js - v2.0.0

    Module cli/abi

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_build_tools_include_bytes.html b/modules/cli_build_tools_include_bytes.html index f1973b79c..025069c01 100644 --- a/modules/cli_build_tools_include_bytes.html +++ b/modules/cli_build_tools_include_bytes.html @@ -1,2 +1,2 @@ -cli/build-tools/include-bytes | near-sdk-js - v1.0.0

    Module cli/build-tools/include-bytes

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file +cli/build-tools/include-bytes | near-sdk-js - v2.0.0

    Module cli/build-tools/include-bytes

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_build_tools_near_bindgen_exporter.html b/modules/cli_build_tools_near_bindgen_exporter.html index f2fff9b40..58bd994c1 100644 --- a/modules/cli_build_tools_near_bindgen_exporter.html +++ b/modules/cli_build_tools_near_bindgen_exporter.html @@ -1,2 +1,2 @@ -cli/build-tools/near-bindgen-exporter | near-sdk-js - v1.0.0

    Module cli/build-tools/near-bindgen-exporter

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file +cli/build-tools/near-bindgen-exporter | near-sdk-js - v2.0.0

    Module cli/build-tools/near-bindgen-exporter

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_cli.html b/modules/cli_cli.html index 6dc776652..c0c7030c4 100644 --- a/modules/cli_cli.html +++ b/modules/cli_cli.html @@ -1,7 +1,7 @@ -cli/cli | near-sdk-js - v1.0.0

    Module cli/cli

    Index

    Functions

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_post_install.html b/modules/cli_post_install.html index 8ddd2a617..73ade1b15 100644 --- a/modules/cli_post_install.html +++ b/modules/cli_post_install.html @@ -1 +1 @@ -cli/post-install | near-sdk-js - v1.0.0

    Module cli/post-install

    Generated using TypeDoc

    \ No newline at end of file +cli/post-install | near-sdk-js - v2.0.0

    Module cli/post-install

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/cli_utils.html b/modules/cli_utils.html index f1c9317f9..20751314b 100644 --- a/modules/cli_utils.html +++ b/modules/cli_utils.html @@ -1,4 +1,4 @@ -cli/utils | near-sdk-js - v1.0.0

    Module cli/utils

    Index

    Functions

    download +cli/utils | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections.html b/modules/collections.html index 30022414d..6e5ecdcfb 100644 --- a/modules/collections.html +++ b/modules/collections.html @@ -1,8 +1,8 @@ -collections | near-sdk-js - v1.0.0

    Module collections

    References

    LookupMap +collections | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    References

    Re-exports LookupMap
    Re-exports LookupSet
    Re-exports SubType
    Re-exports UnorderedMap
    Re-exports UnorderedSet
    Re-exports Vector
    Re-exports VectorIterator

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_lookup_map.html b/modules/collections_lookup_map.html index 6c261accf..e73106969 100644 --- a/modules/collections_lookup_map.html +++ b/modules/collections_lookup_map.html @@ -1,2 +1,2 @@ -collections/lookup-map | near-sdk-js - v1.0.0

    Module collections/lookup-map

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file +collections/lookup-map | near-sdk-js - v2.0.0

    Module collections/lookup-map

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_lookup_set.html b/modules/collections_lookup_set.html index 094faaac5..4fda23ac3 100644 --- a/modules/collections_lookup_set.html +++ b/modules/collections_lookup_set.html @@ -1,2 +1,2 @@ -collections/lookup-set | near-sdk-js - v1.0.0

    Module collections/lookup-set

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file +collections/lookup-set | near-sdk-js - v2.0.0

    Module collections/lookup-set

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_subtype.html b/modules/collections_subtype.html index b869a7f69..47e2e8b8f 100644 --- a/modules/collections_subtype.html +++ b/modules/collections_subtype.html @@ -1,2 +1,2 @@ -collections/subtype | near-sdk-js - v1.0.0

    Module collections/subtype

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file +collections/subtype | near-sdk-js - v2.0.0

    Module collections/subtype

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_unordered_map.html b/modules/collections_unordered_map.html index 972ce544e..88ff7be92 100644 --- a/modules/collections_unordered_map.html +++ b/modules/collections_unordered_map.html @@ -1,2 +1,2 @@ -collections/unordered-map | near-sdk-js - v1.0.0

    Module collections/unordered-map

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file +collections/unordered-map | near-sdk-js - v2.0.0

    Module collections/unordered-map

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_unordered_set.html b/modules/collections_unordered_set.html index 66e117e8d..b57032c19 100644 --- a/modules/collections_unordered_set.html +++ b/modules/collections_unordered_set.html @@ -1,2 +1,2 @@ -collections/unordered-set | near-sdk-js - v1.0.0

    Module collections/unordered-set

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file +collections/unordered-set | near-sdk-js - v2.0.0

    Module collections/unordered-set

    Index

    Classes

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/collections_vector.html b/modules/collections_vector.html index e120f29fa..e5eb266c7 100644 --- a/modules/collections_vector.html +++ b/modules/collections_vector.html @@ -1,3 +1,3 @@ -collections/vector | near-sdk-js - v1.0.0

    Module collections/vector

    Index

    Classes

    Vector +collections/vector | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/index.html b/modules/index.html index 4c0390069..f2189d88e 100644 --- a/modules/index.html +++ b/modules/index.html @@ -1,4 +1,4 @@ -index | near-sdk-js - v1.0.0

    Module index

    References

    AccountId +index | near-sdk-js - v2.0.0

    Module index

    References

    Re-exports AccountId
    Re-exports AddAccessKey
    Re-exports AddFullAccessKey
    Re-exports Balance
    Re-exports Base58Error
    Re-exports BlockHeight
    Re-exports CreateAccount
    Re-exports CurveType
    Re-exports DeleteAccount
    Re-exports DeleteKey
    Re-exports DeployContract
    Re-exports ERR_INCONSISTENT_STATE
    Re-exports ERR_INDEX_OUT_OF_BOUNDS
    Re-exports Env
    Re-exports EpochHeight
    Re-exports FunctionCall
    Re-exports FunctionCallRaw
    Re-exports FunctionCallWeight
    Re-exports FunctionCallWeightRaw
    Re-exports Gas
    Re-exports GasWeight
    Re-exports IntoStorageKey
    Re-exports InvalidLengthError
    Re-exports IteratorIndex
    Re-exports LookupMap
    Re-exports LookupSet
    Re-exports Mutable
    Re-exports NearAmount
    Re-exports NearBindgen
    Re-exports NearPromise
    Re-exports Nonce
    Re-exports ONE_NEAR
    Re-exports ONE_TERA_GAS
    Re-exports ONE_YOCTO
    Re-exports ParsePublicKeyError
    Re-exports PromiseAction
    Re-exports PromiseError
    Re-exports PromiseIndex
    Re-exports PromiseJoint
    Re-exports PromiseOrValue
    Re-exports PromiseResult
    Re-exports PublicKey
    Re-exports ReceiptIndex
    Re-exports Register
    Re-exports Stake
    Re-exports StorageUsage
    Re-exports SubType
    Re-exports TextDecoder
    Re-exports TextEncoder
    Re-exports Transfer
    Re-exports UnknownCurve
    Re-exports UnorderedMap
    Re-exports UnorderedSet
    Re-exports Vector
    Re-exports VectorIterator
    Re-exports assert
    Re-exports bytes
    Re-exports call
    Re-exports concat
    Re-exports curveTypeFromStr
    Re-exports decode
    Re-exports decodeObj2class
    Re-exports deserialize
    Re-exports encode
    Re-exports getValueWithOptions
    Re-exports initialize
    Re-exports middleware
    Re-exports migrate
    Renames and re-exports api
    Re-exports serialize
    Re-exports serializeValueWithOptions
    Re-exports str
    Re-exports validateAccountId
    Re-exports view

    Generated using TypeDoc

    \ No newline at end of file +

    References

    Re-exports AccountId
    Re-exports AddAccessKey
    Re-exports AddFullAccessKey
    Re-exports Balance
    Re-exports Base58Error
    Re-exports BlockHeight
    Re-exports CreateAccount
    Re-exports CurveType
    Re-exports DeleteAccount
    Re-exports DeleteKey
    Re-exports DeployContract
    Re-exports ERR_INCONSISTENT_STATE
    Re-exports ERR_INDEX_OUT_OF_BOUNDS
    Re-exports Env
    Re-exports EpochHeight
    Re-exports FunctionCall
    Re-exports FunctionCallRaw
    Re-exports FunctionCallWeight
    Re-exports FunctionCallWeightRaw
    Re-exports Gas
    Re-exports GasWeight
    Re-exports IntoStorageKey
    Re-exports InvalidLengthError
    Re-exports IteratorIndex
    Re-exports LookupMap
    Re-exports LookupSet
    Re-exports Mutable
    Re-exports NearAmount
    Re-exports NearBindgen
    Re-exports NearPromise
    Re-exports Nonce
    Re-exports ONE_NEAR
    Re-exports ONE_TERA_GAS
    Re-exports ONE_YOCTO
    Re-exports ParsePublicKeyError
    Re-exports PromiseAction
    Re-exports PromiseError
    Re-exports PromiseIndex
    Re-exports PromiseJoint
    Re-exports PromiseOrValue
    Re-exports PromiseResult
    Re-exports PublicKey
    Re-exports ReceiptIndex
    Re-exports Register
    Re-exports Stake
    Re-exports StorageUsage
    Re-exports SubType
    Re-exports TextDecoder
    Re-exports TextEncoder
    Re-exports Transfer
    Re-exports UnknownCurve
    Re-exports UnorderedMap
    Re-exports UnorderedSet
    Re-exports Vector
    Re-exports VectorIterator
    Re-exports assert
    Re-exports bytes
    Re-exports call
    Re-exports concat
    Re-exports curveTypeFromStr
    Re-exports decode
    Re-exports decodeObj2class
    Re-exports deserialize
    Re-exports encode
    Re-exports getValueWithOptions
    Re-exports initialize
    Re-exports middleware
    Re-exports migrate
    Renames and re-exports api
    Re-exports serialize
    Re-exports serializeValueWithOptions
    Re-exports str
    Re-exports validateAccountId
    Re-exports view

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/near_bindgen.html b/modules/near_bindgen.html index 2927f8e2b..bec843fa3 100644 --- a/modules/near_bindgen.html +++ b/modules/near_bindgen.html @@ -1,7 +1,7 @@ -near-bindgen | near-sdk-js - v1.0.0

    Module near-bindgen

    Index

    Functions

    NearBindgen +near-bindgen | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/promise.html b/modules/promise.html index b28d0f65b..6a64b62ff 100644 --- a/modules/promise.html +++ b/modules/promise.html @@ -1,4 +1,4 @@ -promise | near-sdk-js - v1.0.0

    Module promise

    Index

    Classes

    AddAccessKey +promise | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types.html b/modules/types.html index 0996c000d..6ab802fb2 100644 --- a/modules/types.html +++ b/modules/types.html @@ -1,4 +1,4 @@ -types | near-sdk-js - v1.0.0

    Module types

    References

    AccountId +types | near-sdk-js - v2.0.0

    Module types

    References

    Re-exports AccountId
    Re-exports Balance
    Re-exports Base58Error
    Re-exports BlockHeight
    Re-exports CurveType
    Re-exports EpochHeight
    Re-exports Gas
    Re-exports GasWeight
    Re-exports InvalidLengthError
    Re-exports IteratorIndex
    Re-exports Nonce
    Re-exports ONE_NEAR
    Re-exports ONE_TERA_GAS
    Re-exports ONE_YOCTO
    Re-exports ParsePublicKeyError
    Re-exports PromiseError
    Re-exports PromiseResult
    Re-exports PublicKey
    Re-exports ReceiptIndex
    Re-exports StorageUsage
    Re-exports UnknownCurve
    Re-exports curveTypeFromStr

    Generated using TypeDoc

    \ No newline at end of file +

    References

    Re-exports AccountId
    Re-exports Balance
    Re-exports Base58Error
    Re-exports BlockHeight
    Re-exports CurveType
    Re-exports EpochHeight
    Re-exports Gas
    Re-exports GasWeight
    Re-exports InvalidLengthError
    Re-exports IteratorIndex
    Re-exports Nonce
    Re-exports ONE_NEAR
    Re-exports ONE_TERA_GAS
    Re-exports ONE_YOCTO
    Re-exports ParsePublicKeyError
    Re-exports PromiseError
    Re-exports PromiseResult
    Re-exports PublicKey
    Re-exports ReceiptIndex
    Re-exports StorageUsage
    Re-exports UnknownCurve
    Re-exports curveTypeFromStr

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_account_id.html b/modules/types_account_id.html index d8de1b53c..a55c28c71 100644 --- a/modules/types_account_id.html +++ b/modules/types_account_id.html @@ -1,2 +1,2 @@ -types/account_id | near-sdk-js - v1.0.0

    Module types/account_id

    Index

    Type Aliases

    Generated using TypeDoc

    \ No newline at end of file +types/account_id | near-sdk-js - v2.0.0

    Module types/account_id

    Index

    Type Aliases

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_collections.html b/modules/types_collections.html index d25f37eea..a11e7e3af 100644 --- a/modules/types_collections.html +++ b/modules/types_collections.html @@ -1,2 +1,2 @@ -types/collections | near-sdk-js - v1.0.0

    Module types/collections

    Index

    Interfaces

    Generated using TypeDoc

    \ No newline at end of file +types/collections | near-sdk-js - v2.0.0

    Module types/collections

    Index

    Interfaces

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_gas.html b/modules/types_gas.html index 6470a8ae0..d0878438c 100644 --- a/modules/types_gas.html +++ b/modules/types_gas.html @@ -1,3 +1,3 @@ -types/gas | near-sdk-js - v1.0.0

    Module types/gas

    Index

    Type Aliases

    Gas +types/gas | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_primitives.html b/modules/types_primitives.html index 799c7fb86..bc59508bb 100644 --- a/modules/types_primitives.html +++ b/modules/types_primitives.html @@ -1,4 +1,4 @@ -types/primitives | near-sdk-js - v1.0.0

    Module types/primitives

    Index

    Type Aliases

    Balance +types/primitives | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_public_key.html b/modules/types_public_key.html index e3ed380f8..fe06ec450 100644 --- a/modules/types_public_key.html +++ b/modules/types_public_key.html @@ -1,8 +1,8 @@ -types/public_key | near-sdk-js - v1.0.0

    Module types/public_key

    Index

    Enumerations

    CurveType +types/public_key | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/types_vm_types.html b/modules/types_vm_types.html index 4e08910be..32b7a88b6 100644 --- a/modules/types_vm_types.html +++ b/modules/types_vm_types.html @@ -1,5 +1,5 @@ -types/vm_types | near-sdk-js - v1.0.0

    Module types/vm_types

    Index

    Enumerations

    PromiseError +types/vm_types | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/utils.html b/modules/utils.html index 57deea5c3..63604c67c 100644 --- a/modules/utils.html +++ b/modules/utils.html @@ -1,4 +1,4 @@ -utils | near-sdk-js - v1.0.0

    Module utils

    Index

    Classes

    TextDecoder +utils | near-sdk-js - v2.0.0

    Generated using TypeDoc

    \ No newline at end of file +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/modules/version.html b/modules/version.html index 88fe14b1d..d75e3091b 100644 --- a/modules/version.html +++ b/modules/version.html @@ -1,2 +1,2 @@ -version | near-sdk-js - v1.0.0

    Module version

    Index

    Variables

    Generated using TypeDoc

    \ No newline at end of file +version | near-sdk-js - v2.0.0

    Module version

    Index

    Variables

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/promise.PromiseOrValue.html b/types/promise.PromiseOrValue.html index d48a21eb6..575a07a15 100644 --- a/types/promise.PromiseOrValue.html +++ b/types/promise.PromiseOrValue.html @@ -1 +1 @@ -PromiseOrValue | near-sdk-js - v1.0.0

    Type alias PromiseOrValue<T>

    PromiseOrValue<T>: NearPromise | T

    Type Parameters

    • T

    Generated using TypeDoc

    \ No newline at end of file +PromiseOrValue | near-sdk-js - v2.0.0

    Type alias PromiseOrValue<T>

    PromiseOrValue<T>: NearPromise | T

    Type Parameters

    • T

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_account_id.AccountId.html b/types/types_account_id.AccountId.html index 97fee30b2..a9593879d 100644 --- a/types/types_account_id.AccountId.html +++ b/types/types_account_id.AccountId.html @@ -1,2 +1,2 @@ -AccountId | near-sdk-js - v1.0.0
    AccountId: string

    A string that represents a NEAR account ID.

    -

    Generated using TypeDoc

    \ No newline at end of file +AccountId | near-sdk-js - v2.0.0
    AccountId: string

    A string that represents a NEAR account ID.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_gas.Gas.html b/types/types_gas.Gas.html index 7d885f616..8883c7e98 100644 --- a/types/types_gas.Gas.html +++ b/types/types_gas.Gas.html @@ -1,2 +1,2 @@ -Gas | near-sdk-js - v1.0.0
    Gas: bigint

    The Gas amount specified in yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +Gas | near-sdk-js - v2.0.0
    Gas: bigint

    The Gas amount specified in yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.Balance.html b/types/types_primitives.Balance.html index 74ca4fe2b..508047aa3 100644 --- a/types/types_primitives.Balance.html +++ b/types/types_primitives.Balance.html @@ -1,2 +1,2 @@ -Balance | near-sdk-js - v1.0.0
    Balance: bigint

    The amount of tokens in yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +Balance | near-sdk-js - v2.0.0
    Balance: bigint

    The amount of tokens in yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.BlockHeight.html b/types/types_primitives.BlockHeight.html index 2a99bdea1..5dd1c53fe 100644 --- a/types/types_primitives.BlockHeight.html +++ b/types/types_primitives.BlockHeight.html @@ -1,2 +1,2 @@ -BlockHeight | near-sdk-js - v1.0.0
    BlockHeight: bigint

    A large integer representing the block height.

    -

    Generated using TypeDoc

    \ No newline at end of file +BlockHeight | near-sdk-js - v2.0.0
    BlockHeight: bigint

    A large integer representing the block height.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.EpochHeight.html b/types/types_primitives.EpochHeight.html index 61a3bfded..dd5797c0d 100644 --- a/types/types_primitives.EpochHeight.html +++ b/types/types_primitives.EpochHeight.html @@ -1,2 +1,2 @@ -EpochHeight | near-sdk-js - v1.0.0
    EpochHeight: bigint

    A large integer representing the epoch height.

    -

    Generated using TypeDoc

    \ No newline at end of file +EpochHeight | near-sdk-js - v2.0.0
    EpochHeight: bigint

    A large integer representing the epoch height.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.GasWeight.html b/types/types_primitives.GasWeight.html index 38235cfa8..26887648d 100644 --- a/types/types_primitives.GasWeight.html +++ b/types/types_primitives.GasWeight.html @@ -1,2 +1,2 @@ -GasWeight | near-sdk-js - v1.0.0
    GasWeight: bigint

    The amount of Gas Weight in integers - whole numbers.

    -

    Generated using TypeDoc

    \ No newline at end of file +GasWeight | near-sdk-js - v2.0.0
    GasWeight: bigint

    The amount of Gas Weight in integers - whole numbers.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.Nonce.html b/types/types_primitives.Nonce.html index 053364709..af0ed3e67 100644 --- a/types/types_primitives.Nonce.html +++ b/types/types_primitives.Nonce.html @@ -1,2 +1,2 @@ -Nonce | near-sdk-js - v1.0.0
    Nonce: bigint

    A large integer representing the nonce.

    -

    Generated using TypeDoc

    \ No newline at end of file +Nonce | near-sdk-js - v2.0.0
    Nonce: bigint

    A large integer representing the nonce.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_primitives.StorageUsage.html b/types/types_primitives.StorageUsage.html index af5ed9db1..0d93c0d52 100644 --- a/types/types_primitives.StorageUsage.html +++ b/types/types_primitives.StorageUsage.html @@ -1,2 +1,2 @@ -StorageUsage | near-sdk-js - v1.0.0
    StorageUsage: bigint

    The amount of storage used in yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +StorageUsage | near-sdk-js - v2.0.0
    StorageUsage: bigint

    The amount of storage used in yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_vm_types.IteratorIndex.html b/types/types_vm_types.IteratorIndex.html index deb38ad66..eb31013b0 100644 --- a/types/types_vm_types.IteratorIndex.html +++ b/types/types_vm_types.IteratorIndex.html @@ -1,2 +1,2 @@ -IteratorIndex | near-sdk-js - v1.0.0
    IteratorIndex: bigint

    The index for iterators.

    -

    Generated using TypeDoc

    \ No newline at end of file +IteratorIndex | near-sdk-js - v2.0.0
    IteratorIndex: bigint

    The index for iterators.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/types_vm_types.ReceiptIndex.html b/types/types_vm_types.ReceiptIndex.html index cb3ffc516..b7f4610ce 100644 --- a/types/types_vm_types.ReceiptIndex.html +++ b/types/types_vm_types.ReceiptIndex.html @@ -1,2 +1,2 @@ -ReceiptIndex | near-sdk-js - v1.0.0
    ReceiptIndex: bigint

    The index for NEAR receipts.

    -

    Generated using TypeDoc

    \ No newline at end of file +ReceiptIndex | near-sdk-js - v2.0.0
    ReceiptIndex: bigint

    The index for NEAR receipts.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/utils.Mutable.html b/types/utils.Mutable.html index ed0ae445d..0a59a1c3f 100644 --- a/types/utils.Mutable.html +++ b/types/utils.Mutable.html @@ -1 +1 @@ -Mutable | near-sdk-js - v1.0.0

    Type alias Mutable<T>

    Mutable<T>: {
        -readonly [P in keyof T]: T[P]
    }

    Type Parameters

    • T

    Generated using TypeDoc

    \ No newline at end of file +Mutable | near-sdk-js - v2.0.0

    Type alias Mutable<T>

    Mutable<T>: {
        -readonly [P in keyof T]: T[P]
    }

    Type Parameters

    • T

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/utils.NearAmount.html b/types/utils.NearAmount.html index 614db7ede..ca01e0e40 100644 --- a/types/utils.NearAmount.html +++ b/types/utils.NearAmount.html @@ -1,2 +1,2 @@ -NearAmount | near-sdk-js - v1.0.0

    Type alias NearAmount

    NearAmount: number | bigint

    A number that specifies the amount of NEAR in yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +NearAmount | near-sdk-js - v2.0.0

    Type alias NearAmount

    NearAmount: number | bigint

    A number that specifies the amount of NEAR in yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/utils.PromiseIndex.html b/types/utils.PromiseIndex.html index e663cbec7..c4a7115d6 100644 --- a/types/utils.PromiseIndex.html +++ b/types/utils.PromiseIndex.html @@ -1,2 +1,2 @@ -PromiseIndex | near-sdk-js - v1.0.0

    Type alias PromiseIndex

    PromiseIndex: number | bigint

    A PromiseIndex which represents the ID of a NEAR Promise.

    -

    Generated using TypeDoc

    \ No newline at end of file +PromiseIndex | near-sdk-js - v2.0.0

    Type alias PromiseIndex

    PromiseIndex: number | bigint

    A PromiseIndex which represents the ID of a NEAR Promise.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/types/utils.Register.html b/types/utils.Register.html index 4510bbe26..cba8817d4 100644 --- a/types/utils.Register.html +++ b/types/utils.Register.html @@ -1,2 +1,2 @@ -Register | near-sdk-js - v1.0.0

    Type alias Register

    Register: number | bigint

    A number that specifies the ID of a register in the NEAR WASM virtual machine.

    -

    Generated using TypeDoc

    \ No newline at end of file +Register | near-sdk-js - v2.0.0

    Type alias Register

    Register: number | bigint

    A number that specifies the ID of a register in the NEAR WASM virtual machine.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/types_gas.ONE_TERA_GAS.html b/variables/types_gas.ONE_TERA_GAS.html index 7c4991b3b..f2d1e4a2a 100644 --- a/variables/types_gas.ONE_TERA_GAS.html +++ b/variables/types_gas.ONE_TERA_GAS.html @@ -1,2 +1,2 @@ -ONE_TERA_GAS | near-sdk-js - v1.0.0

    Variable ONE_TERA_GASConst

    ONE_TERA_GAS: Gas = ...

    One TGas - Tera Gas. 10^12 yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +ONE_TERA_GAS | near-sdk-js - v2.0.0

    Variable ONE_TERA_GASConst

    ONE_TERA_GAS: Gas = ...

    One TGas - Tera Gas. 10^12 yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/types_primitives.ONE_NEAR.html b/variables/types_primitives.ONE_NEAR.html index 8befb5cf7..6042783f9 100644 --- a/variables/types_primitives.ONE_NEAR.html +++ b/variables/types_primitives.ONE_NEAR.html @@ -1,2 +1,2 @@ -ONE_NEAR | near-sdk-js - v1.0.0
    ONE_NEAR: Balance = ...

    One NEAR. 1 NEAR = 10^24 yoctoNEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +ONE_NEAR | near-sdk-js - v2.0.0
    ONE_NEAR: Balance = ...

    One NEAR. 1 NEAR = 10^24 yoctoNEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/types_primitives.ONE_YOCTO.html b/variables/types_primitives.ONE_YOCTO.html index 42e68369f..93612b1ea 100644 --- a/variables/types_primitives.ONE_YOCTO.html +++ b/variables/types_primitives.ONE_YOCTO.html @@ -1,2 +1,2 @@ -ONE_YOCTO | near-sdk-js - v1.0.0

    Variable ONE_YOCTOConst

    ONE_YOCTO: Balance = ...

    One yoctoNEAR. 10^-24 NEAR.

    -

    Generated using TypeDoc

    \ No newline at end of file +ONE_YOCTO | near-sdk-js - v2.0.0

    Variable ONE_YOCTOConst

    ONE_YOCTO: Balance = ...

    One yoctoNEAR. 10^-24 NEAR.

    +

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/utils.ERR_INCONSISTENT_STATE.html b/variables/utils.ERR_INCONSISTENT_STATE.html index b4c02ba6d..ec51713d7 100644 --- a/variables/utils.ERR_INCONSISTENT_STATE.html +++ b/variables/utils.ERR_INCONSISTENT_STATE.html @@ -1 +1 @@ -ERR_INCONSISTENT_STATE | near-sdk-js - v1.0.0

    Variable ERR_INCONSISTENT_STATEConst

    ERR_INCONSISTENT_STATE: "The collection is an inconsistent state. Did previous smart contract execution terminate unexpectedly?" = "The collection is an inconsistent state. Did previous smart contract execution terminate unexpectedly?"

    Generated using TypeDoc

    \ No newline at end of file +ERR_INCONSISTENT_STATE | near-sdk-js - v2.0.0

    Variable ERR_INCONSISTENT_STATEConst

    ERR_INCONSISTENT_STATE: "The collection is an inconsistent state. Did previous smart contract execution terminate unexpectedly?" = "The collection is an inconsistent state. Did previous smart contract execution terminate unexpectedly?"

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/utils.ERR_INDEX_OUT_OF_BOUNDS.html b/variables/utils.ERR_INDEX_OUT_OF_BOUNDS.html index 120effe81..9441d19a0 100644 --- a/variables/utils.ERR_INDEX_OUT_OF_BOUNDS.html +++ b/variables/utils.ERR_INDEX_OUT_OF_BOUNDS.html @@ -1 +1 @@ -ERR_INDEX_OUT_OF_BOUNDS | near-sdk-js - v1.0.0

    Variable ERR_INDEX_OUT_OF_BOUNDSConst

    ERR_INDEX_OUT_OF_BOUNDS: "Index out of bounds" = "Index out of bounds"

    Generated using TypeDoc

    \ No newline at end of file +ERR_INDEX_OUT_OF_BOUNDS | near-sdk-js - v2.0.0

    Variable ERR_INDEX_OUT_OF_BOUNDSConst

    ERR_INDEX_OUT_OF_BOUNDS: "Index out of bounds" = "Index out of bounds"

    Generated using TypeDoc

    \ No newline at end of file diff --git a/variables/version.LIB_VERSION.html b/variables/version.LIB_VERSION.html index 2632be547..b07f57c1e 100644 --- a/variables/version.LIB_VERSION.html +++ b/variables/version.LIB_VERSION.html @@ -1 +1 @@ -LIB_VERSION | near-sdk-js - v1.0.0

    Variable LIB_VERSIONConst

    LIB_VERSION: string = ...

    Generated using TypeDoc

    \ No newline at end of file +LIB_VERSION | near-sdk-js - v2.0.0

    Variable LIB_VERSIONConst

    LIB_VERSION: string = ...

    Generated using TypeDoc

    \ No newline at end of file