viem 2.0.0-beta.13 → 2.0.0-beta.14
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.
- package/_cjs/clients/transports/custom.js +14 -8
- package/_cjs/clients/transports/custom.js.map +1 -1
- package/_cjs/errors/version.js +1 -1
- package/_esm/clients/transports/custom.js +14 -8
- package/_esm/clients/transports/custom.js.map +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/clients/transports/custom.d.ts +2 -0
- package/_types/clients/transports/custom.d.ts.map +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/clients/transports/custom.ts +11 -3
- package/errors/version.ts +1 -1
- package/package.json +1 -1
@@ -1,17 +1,23 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.custom = void 0;
|
4
|
+
const index_js_1 = require("../../index.js");
|
4
5
|
const createTransport_js_1 = require("./createTransport.js");
|
5
6
|
function custom(provider, config = {}) {
|
6
7
|
const { key = 'custom', name = 'Custom Provider', retryDelay } = config;
|
7
|
-
return ({ retryCount: defaultRetryCount }) =>
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
8
|
+
return ({ retryCount: defaultRetryCount, timeout: timeout_ }) => {
|
9
|
+
const timeout = timeout_ ?? config.timeout ?? 10000;
|
10
|
+
return (0, createTransport_js_1.createTransport)({
|
11
|
+
key,
|
12
|
+
name,
|
13
|
+
request: (...args) => (0, index_js_1.withTimeout)(() => provider.request.bind(provider)(...args), {
|
14
|
+
timeout,
|
15
|
+
}),
|
16
|
+
retryCount: config.retryCount ?? defaultRetryCount,
|
17
|
+
retryDelay,
|
18
|
+
type: 'custom',
|
19
|
+
});
|
20
|
+
};
|
15
21
|
}
|
16
22
|
exports.custom = custom;
|
17
23
|
//# sourceMappingURL=custom.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"custom.js","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":";;;AACA,6DAK6B;
|
1
|
+
{"version":3,"file":"custom.js","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":";;;AACA,6CAA4C;AAC5C,6DAK6B;AA4B7B,SAAgB,MAAM,CACpB,QAAmB,EACnB,SAAgC,EAAE;IAElC,MAAM,EAAE,GAAG,GAAG,QAAQ,EAAE,IAAI,GAAG,iBAAiB,EAAE,UAAU,EAAE,GAAG,MAAM,CAAA;IACvE,OAAO,CAAC,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC9D,MAAM,OAAO,GAAG,QAAQ,IAAI,MAAM,CAAC,OAAO,IAAI,KAAM,CAAA;QACpD,OAAO,IAAA,oCAAe,EAAC;YACrB,GAAG;YACH,IAAI;YACJ,OAAO,EAAE,CAAC,GAAG,IAAI,EAAE,EAAE,CACnB,IAAA,sBAAW,EAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE;gBAC1D,OAAO;aACR,CAAC;YACJ,UAAU,EAAE,MAAM,CAAC,UAAU,IAAI,iBAAiB;YAClD,UAAU;YACV,IAAI,EAAE,QAAQ;SACf,CAAC,CAAA;IACJ,CAAC,CAAA;AACH,CAAC;AAnBD,wBAmBC"}
|
package/_cjs/errors/version.js
CHANGED
@@ -1,16 +1,22 @@
|
|
1
|
+
import { withTimeout } from '../../index.js';
|
1
2
|
import { createTransport, } from './createTransport.js';
|
2
3
|
/**
|
3
4
|
* @description Creates a custom transport given an EIP-1193 compliant `request` attribute.
|
4
5
|
*/
|
5
6
|
export function custom(provider, config = {}) {
|
6
7
|
const { key = 'custom', name = 'Custom Provider', retryDelay } = config;
|
7
|
-
return ({ retryCount: defaultRetryCount }) =>
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
8
|
+
return ({ retryCount: defaultRetryCount, timeout: timeout_ }) => {
|
9
|
+
const timeout = timeout_ ?? config.timeout ?? 10000;
|
10
|
+
return createTransport({
|
11
|
+
key,
|
12
|
+
name,
|
13
|
+
request: (...args) => withTimeout(() => provider.request.bind(provider)(...args), {
|
14
|
+
timeout,
|
15
|
+
}),
|
16
|
+
retryCount: config.retryCount ?? defaultRetryCount,
|
17
|
+
retryDelay,
|
18
|
+
type: 'custom',
|
19
|
+
});
|
20
|
+
};
|
15
21
|
}
|
16
22
|
//# sourceMappingURL=custom.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"custom.js","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,eAAe,GAChB,MAAM,sBAAsB,CAAA;
|
1
|
+
{"version":3,"file":"custom.js","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAA;AAC5C,OAAO,EAIL,eAAe,GAChB,MAAM,sBAAsB,CAAA;AAyB7B;;GAEG;AACH,MAAM,UAAU,MAAM,CACpB,QAAmB,EACnB,SAAgC,EAAE;IAElC,MAAM,EAAE,GAAG,GAAG,QAAQ,EAAE,IAAI,GAAG,iBAAiB,EAAE,UAAU,EAAE,GAAG,MAAM,CAAA;IACvE,OAAO,CAAC,EAAE,UAAU,EAAE,iBAAiB,EAAE,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE;QAC9D,MAAM,OAAO,GAAG,QAAQ,IAAI,MAAM,CAAC,OAAO,IAAI,KAAM,CAAA;QACpD,OAAO,eAAe,CAAC;YACrB,GAAG;YACH,IAAI;YACJ,OAAO,EAAE,CAAC,GAAG,IAAI,EAAE,EAAE,CACnB,WAAW,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAAC,EAAE;gBAC1D,OAAO;aACR,CAAC;YACJ,UAAU,EAAE,MAAM,CAAC,UAAU,IAAI,iBAAiB;YAClD,UAAU;YACV,IAAI,EAAE,QAAQ;SACf,CAAC,CAAA;IACJ,CAAC,CAAA;AACH,CAAC"}
|
package/_esm/errors/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '2.0.0-beta.
|
1
|
+
export const version = '2.0.0-beta.13';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -12,6 +12,8 @@ export type CustomTransportConfig = {
|
|
12
12
|
retryCount?: TransportConfig['retryCount'];
|
13
13
|
/** The base delay (in ms) between retries. */
|
14
14
|
retryDelay?: TransportConfig['retryDelay'];
|
15
|
+
/** The timeout (in ms) for the request. Default: 10_000 */
|
16
|
+
timeout?: TransportConfig['timeout'];
|
15
17
|
};
|
16
18
|
export type CustomTransport = Transport<'custom', {}, EthereumProvider['request']>;
|
17
19
|
export type CustomTransportErrorType = CreateTransportErrorType | ErrorType;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"custom.d.ts","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;
|
1
|
+
{"version":3,"file":"custom.d.ts","sourceRoot":"","sources":["../../../clients/transports/custom.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,uBAAuB,CAAA;AAEtD,OAAO,EACL,KAAK,wBAAwB,EAC7B,KAAK,SAAS,EACd,KAAK,eAAe,EAErB,MAAM,sBAAsB,CAAA;AAE7B,KAAK,gBAAgB,GAAG;IAAE,OAAO,CAAC,GAAG,IAAI,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CAAA;CAAE,CAAA;AAE/D,MAAM,MAAM,qBAAqB,GAAG;IAClC,gCAAgC;IAChC,GAAG,CAAC,EAAE,eAAe,CAAC,KAAK,CAAC,CAAA;IAC5B,iCAAiC;IACjC,IAAI,CAAC,EAAE,eAAe,CAAC,MAAM,CAAC,CAAA;IAC9B,wCAAwC;IACxC,UAAU,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAA;IAC1C,8CAA8C;IAC9C,UAAU,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAA;IAC1C,2DAA2D;IAC3D,OAAO,CAAC,EAAE,eAAe,CAAC,SAAS,CAAC,CAAA;CACrC,CAAA;AAED,MAAM,MAAM,eAAe,GAAG,SAAS,CACrC,QAAQ,EACR,EAAE,EACF,gBAAgB,CAAC,SAAS,CAAC,CAC5B,CAAA;AAED,MAAM,MAAM,wBAAwB,GAAG,wBAAwB,GAAG,SAAS,CAAA;AAE3E;;GAEG;AACH,wBAAgB,MAAM,CAAC,SAAS,SAAS,gBAAgB,EACvD,QAAQ,EAAE,SAAS,EACnB,MAAM,GAAE,qBAA0B,GACjC,eAAe,CAgBjB"}
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const version = "2.0.0-beta.
|
1
|
+
export declare const version = "2.0.0-beta.13";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import type { ErrorType } from '../../errors/utils.js'
|
2
|
+
import { withTimeout } from '../../index.js'
|
2
3
|
import {
|
3
4
|
type CreateTransportErrorType,
|
4
5
|
type Transport,
|
@@ -17,6 +18,8 @@ export type CustomTransportConfig = {
|
|
17
18
|
retryCount?: TransportConfig['retryCount']
|
18
19
|
/** The base delay (in ms) between retries. */
|
19
20
|
retryDelay?: TransportConfig['retryDelay']
|
21
|
+
/** The timeout (in ms) for the request. Default: 10_000 */
|
22
|
+
timeout?: TransportConfig['timeout']
|
20
23
|
}
|
21
24
|
|
22
25
|
export type CustomTransport = Transport<
|
@@ -35,13 +38,18 @@ export function custom<TProvider extends EthereumProvider>(
|
|
35
38
|
config: CustomTransportConfig = {},
|
36
39
|
): CustomTransport {
|
37
40
|
const { key = 'custom', name = 'Custom Provider', retryDelay } = config
|
38
|
-
return ({ retryCount: defaultRetryCount }) =>
|
39
|
-
|
41
|
+
return ({ retryCount: defaultRetryCount, timeout: timeout_ }) => {
|
42
|
+
const timeout = timeout_ ?? config.timeout ?? 10_000
|
43
|
+
return createTransport({
|
40
44
|
key,
|
41
45
|
name,
|
42
|
-
request:
|
46
|
+
request: (...args) =>
|
47
|
+
withTimeout(() => provider.request.bind(provider)(...args), {
|
48
|
+
timeout,
|
49
|
+
}),
|
43
50
|
retryCount: config.retryCount ?? defaultRetryCount,
|
44
51
|
retryDelay,
|
45
52
|
type: 'custom',
|
46
53
|
})
|
54
|
+
}
|
47
55
|
}
|
package/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '2.0.0-beta.
|
1
|
+
export const version = '2.0.0-beta.14'
|