@taquito/rpc 17.2.0-beta-RC.0 → 17.3.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@ export declare class RpcClientCache implements RpcClientInterface {
19
19
  * @param rpcClient rpcClient responsible of the interaction with Tezos network through an rpc node
20
20
  * @param ttl number representing the time to live (default 1000 milliseconds)
21
21
  *
22
- * @example new RpcClientCache(new RpcClient('https://mainnet.api.tez.ie/'))
22
+ * @example new RpcClientCache(new RpcClient('https://mainnet.ecadinfra.com/'))
23
23
  */
24
24
  constructor(rpcClient: RpcClientInterface, ttl?: number);
25
25
  getAllCachedData(): CachedDataInterface;
@@ -26,7 +26,7 @@ export declare class RpcClient implements RpcClientInterface {
26
26
  * @param httpBackend Http backend that issue http request.
27
27
  * You can override it by providing your own if you which to hook in the request/response
28
28
  *
29
- * @example new RpcClient('https://mainnet.api.tez.ie/', 'main') this will use https://mainnet.api.tez.ie//chains/main
29
+ * @example new RpcClient('https://mainnet.ecadinfra.com/', 'main') this will use https://mainnet.ecadinfra.com//chains/main
30
30
  */
31
31
  constructor(url: string, chain?: string, httpBackend?: HttpBackend);
32
32
  protected createURL(path: string): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taquito/rpc",
3
- "version": "17.2.0-beta-RC.0",
3
+ "version": "17.3.0-beta.1",
4
4
  "description": "Provides low level methods, and types to invoke RPC calls from a Nomadic Tezos RPC node",
5
5
  "keywords": [
6
6
  "tezos",
@@ -67,9 +67,9 @@
67
67
  ]
68
68
  },
69
69
  "dependencies": {
70
- "@taquito/core": "^17.2.0-beta-RC.0",
71
- "@taquito/http-utils": "^17.2.0-beta-RC.0",
72
- "@taquito/utils": "^17.2.0-beta-RC.0",
70
+ "@taquito/core": "^17.3.0-beta.1",
71
+ "@taquito/http-utils": "^17.3.0-beta.1",
72
+ "@taquito/utils": "^17.3.0-beta.1",
73
73
  "bignumber.js": "^9.1.0"
74
74
  },
75
75
  "devDependencies": {
@@ -100,5 +100,5 @@
100
100
  "ts-toolbelt": "^9.6.0",
101
101
  "typescript": "~4.1.5"
102
102
  },
103
- "gitHead": "14abfbab9dc46c1370a6c2e4483c2585b0f76d88"
103
+ "gitHead": "b471b145edb25137c41da73cfa456986a8d3acc2"
104
104
  }