Skip to content

Commit

Permalink
Bc/v2.2.3 (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
thebrianchen authored Nov 17, 2022
1 parent f81df7e commit 6731679
Show file tree
Hide file tree
Showing 218 changed files with 1,053 additions and 1,036 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,14 @@

- Added `TransactNamespace.sendGasOptimizedTransaction()`. Instead of sending a single transaction that might not get mined, this method allows you to send the same transaction multiple times, with different gas prices and gas limits. This should result in lower fees paid.

## 2.2.2
## 2.2.3

### Major Changes

### Minor Changes
- Fixed a typo with the `AlchemySettings.batchRequests` property.

## 2.2.2 (DEPRECATED)

### Major Changes

Expand Down
1 change: 1 addition & 0 deletions docs-md/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ alchemy.ws.on(
The Alchemy SDK also supports a number of Ethers.js objects that streamline the development process:

- [`Utils`](https://docs.ethers.io/v5/api/utils/): Equivalent to `ethers.utils`, this provides a number of common Ethers.js utility methods for developers.
- [`Interface`](https://docs.ethers.io/v5/api/utils/abi/interface/): Found in `Utils.Interface`, this class abstracts the encoding and decoding required to interact with contracts on the Ethereum network.
- [`Contract`](https://docs.ethers.io/v5/api/contract/contract/): An abstraction for smart contract code deployed to the blockchain.
- [`ContractFactory`](https://docs.ethers.io/v5/api/contract/contract-factory/): Allows developers to build a `Contract` object.
- [`Wallet`](https://docs.ethers.io/v5/api/signer/#Wallet): An implementation of `Signer` that can sign transactions and messages using a private key as a standard Externally Owned Account.
Expand Down
14 changes: 7 additions & 7 deletions docs-md/classes/Alchemy.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ different network or API key, create a new instance of [Alchemy](Alchemy.md).

#### Defined in

[src/api/alchemy.ts:55](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L55)
[src/api/alchemy.ts:55](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L55)

## Properties

Expand All @@ -50,7 +50,7 @@ and allows access to the underlying providers.

#### Defined in

[src/api/alchemy.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L41)
[src/api/alchemy.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L41)

___

Expand All @@ -63,7 +63,7 @@ Enhanced APIs.

#### Defined in

[src/api/alchemy.ts:23](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L23)
[src/api/alchemy.ts:23](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L23)

___

Expand All @@ -75,7 +75,7 @@ The `nft` namespace contains methods for Alchemy's NFT API.

#### Defined in

[src/api/alchemy.ts:26](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L26)
[src/api/alchemy.ts:26](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L26)

___

Expand All @@ -88,7 +88,7 @@ as part of the Notify API.

#### Defined in

[src/api/alchemy.ts:47](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L47)
[src/api/alchemy.ts:47](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L47)

___

Expand All @@ -101,7 +101,7 @@ checking on the state of submitted transasctions.

#### Defined in

[src/api/alchemy.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L35)
[src/api/alchemy.ts:35](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L35)

___

Expand All @@ -113,4 +113,4 @@ The `ws` namespace contains methods for using WebSockets and creating subscripti

#### Defined in

[src/api/alchemy.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy.ts#L29)
[src/api/alchemy.ts:29](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy.ts#L29)
18 changes: 9 additions & 9 deletions docs-md/classes/AlchemyConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ exposes the underlying providers for more advanced use cases.

#### Defined in

[src/api/alchemy-config.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L58)
[src/api/alchemy-config.ts:58](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L58)

## Properties

Expand All @@ -51,7 +51,7 @@ The Alchemy API key.

#### Defined in

[src/api/alchemy-config.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L22)
[src/api/alchemy-config.ts:22](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L22)

___

Expand All @@ -63,7 +63,7 @@ The optional Alchemy auth token to use when sending requests with the Notify API

#### Defined in

[src/api/alchemy-config.ts:40](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L40)
[src/api/alchemy-config.ts:40](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L40)

___

Expand All @@ -75,7 +75,7 @@ Setting to enable automatic batching on json-rpc requests. Defaults to false.

#### Defined in

[src/api/alchemy-config.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L31)
[src/api/alchemy-config.ts:31](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L31)

___

Expand All @@ -87,7 +87,7 @@ The maximum number of retries to perform.

#### Defined in

[src/api/alchemy-config.ts:28](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L28)
[src/api/alchemy-config.ts:28](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L28)

___

Expand All @@ -99,7 +99,7 @@ The Network that this SDK is associated with.

#### Defined in

[src/api/alchemy-config.ts:25](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L25)
[src/api/alchemy-config.ts:25](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L25)

___

Expand All @@ -112,7 +112,7 @@ and apiKey.

#### Defined in

[src/api/alchemy-config.ts:37](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L37)
[src/api/alchemy-config.ts:37](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L37)

## Methods

Expand All @@ -136,7 +136,7 @@ other less-common methods.

#### Defined in

[src/api/alchemy-config.ts:100](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L100)
[src/api/alchemy-config.ts:100](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L100)

___

Expand All @@ -161,4 +161,4 @@ other less-common methods.

#### Defined in

[src/api/alchemy-config.ts:122](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-config.ts#L122)
[src/api/alchemy-config.ts:122](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-config.ts#L122)
14 changes: 7 additions & 7 deletions docs-md/classes/AlchemyProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ ___

#### Defined in

[src/api/alchemy-provider.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L41)
[src/api/alchemy-provider.ts:41](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L41)

___

Expand All @@ -411,7 +411,7 @@ ___

#### Defined in

[src/api/alchemy-provider.ts:43](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L43)
[src/api/alchemy-provider.ts:43](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L43)

___

Expand Down Expand Up @@ -463,7 +463,7 @@ ___

#### Defined in

[src/api/alchemy-provider.ts:42](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L42)
[src/api/alchemy-provider.ts:42](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L42)

## Accessors

Expand Down Expand Up @@ -935,7 +935,7 @@ JsonRpcProvider.\_startPending

#### Defined in

[src/api/alchemy-provider.ts:204](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L204)
[src/api/alchemy-provider.ts:204](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L204)

___

Expand Down Expand Up @@ -1135,7 +1135,7 @@ JsonRpcProvider.detectNetwork

#### Defined in

[src/api/alchemy-provider.ts:192](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L192)
[src/api/alchemy-provider.ts:192](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L192)

___

Expand Down Expand Up @@ -1614,7 +1614,7 @@ CommunityResourcable.isCommunityResource

#### Defined in

[src/api/alchemy-provider.ts:214](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L214)
[src/api/alchemy-provider.ts:214](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L214)

___

Expand Down Expand Up @@ -1974,7 +1974,7 @@ JsonRpcProvider.send

#### Defined in

[src/api/alchemy-provider.ts:228](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-provider.ts#L228)
[src/api/alchemy-provider.ts:228](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-provider.ts#L228)

___

Expand Down
28 changes: 14 additions & 14 deletions docs-md/classes/AlchemyWebSocketProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ WebSocketProvider.\_events

#### Defined in

[src/api/alchemy-websocket-provider.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L81)
[src/api/alchemy-websocket-provider.ts:81](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L81)

___

Expand Down Expand Up @@ -503,7 +503,7 @@ ___

#### Defined in

[src/api/alchemy-websocket-provider.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L82)
[src/api/alchemy-websocket-provider.ts:82](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L82)

___

Expand Down Expand Up @@ -940,7 +940,7 @@ order to parse the Alchemy subscription event.

#### Defined in

[src/api/alchemy-websocket-provider.ts:947](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L947)
[src/api/alchemy-websocket-provider.ts:947](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L947)

___

Expand Down Expand Up @@ -969,7 +969,7 @@ order to parse the Alchemy subscription event.

#### Defined in

[src/api/alchemy-websocket-provider.ts:970](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L970)
[src/api/alchemy-websocket-provider.ts:970](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L970)

___

Expand Down Expand Up @@ -999,7 +999,7 @@ order to parse the Alchemy subscription event.

#### Defined in

[src/api/alchemy-websocket-provider.ts:871](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L871)
[src/api/alchemy-websocket-provider.ts:871](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L871)

___

Expand Down Expand Up @@ -1046,7 +1046,7 @@ order to parse the Alchemy subscription event.

#### Defined in

[src/api/alchemy-websocket-provider.ts:911](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L911)
[src/api/alchemy-websocket-provider.ts:911](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L911)

___

Expand Down Expand Up @@ -1261,7 +1261,7 @@ WebSocketProvider.destroy

#### Defined in

[src/api/alchemy-websocket-provider.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L415)
[src/api/alchemy-websocket-provider.ts:415](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L415)

___

Expand Down Expand Up @@ -1733,7 +1733,7 @@ CommunityResourcable.isCommunityResource

#### Defined in

[src/api/alchemy-websocket-provider.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L427)
[src/api/alchemy-websocket-provider.ts:427](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L427)

___

Expand Down Expand Up @@ -1780,7 +1780,7 @@ WebSocketProvider.listenerCount

#### Defined in

[src/api/alchemy-websocket-provider.ts:223](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L223)
[src/api/alchemy-websocket-provider.ts:223](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L223)

___

Expand Down Expand Up @@ -1809,7 +1809,7 @@ WebSocketProvider.listeners

#### Defined in

[src/api/alchemy-websocket-provider.ts:239](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L239)
[src/api/alchemy-websocket-provider.ts:239](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L239)

___

Expand Down Expand Up @@ -1863,7 +1863,7 @@ WebSocketProvider.off

#### Defined in

[src/api/alchemy-websocket-provider.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L191)
[src/api/alchemy-websocket-provider.ts:191](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L191)

___

Expand Down Expand Up @@ -1892,7 +1892,7 @@ WebSocketProvider.on

#### Defined in

[src/api/alchemy-websocket-provider.ts:163](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L163)
[src/api/alchemy-websocket-provider.ts:163](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L163)

___

Expand Down Expand Up @@ -1923,7 +1923,7 @@ WebSocketProvider.once

#### Defined in

[src/api/alchemy-websocket-provider.ts:178](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L178)
[src/api/alchemy-websocket-provider.ts:178](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L178)

___

Expand Down Expand Up @@ -2020,7 +2020,7 @@ WebSocketProvider.removeAllListeners

#### Defined in

[src/api/alchemy-websocket-provider.ts:207](https://github.com/alchemyplatform/alchemy-sdk-js/blob/30d9ef5/src/api/alchemy-websocket-provider.ts#L207)
[src/api/alchemy-websocket-provider.ts:207](https://github.com/alchemyplatform/alchemy-sdk-js/blob/8b1ae5c/src/api/alchemy-websocket-provider.ts#L207)

___

Expand Down
Loading

0 comments on commit 6731679

Please sign in to comment.