viem 0.0.0-main.20240408T211022 → 0.0.0-main.20240408T211304
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/CHANGELOG.md +8 -0
- package/_cjs/errors/version.js +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/errors/version.d.ts +1 -1
- package/_types/op-stack/actions/getTimeToNextGame.d.ts +1 -1
- package/_types/op-stack/actions/getTimeToNextL2Output.d.ts +1 -1
- package/_types/op-stack/actions/getTimeToProve.d.ts +1 -1
- package/_types/op-stack/actions/waitForNextGame.d.ts +1 -1
- package/_types/op-stack/actions/waitForNextL2Output.d.ts +1 -1
- package/errors/version.ts +1 -1
- package/op-stack/actions/getTimeToNextGame.ts +1 -1
- package/op-stack/actions/getTimeToNextL2Output.ts +1 -1
- package/op-stack/actions/getTimeToProve.ts +1 -1
- package/op-stack/actions/waitForNextGame.ts +1 -1
- package/op-stack/actions/waitForNextL2Output.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# viem
|
2
2
|
|
3
|
+
## 2.9.14
|
4
|
+
|
5
|
+
### Patch Changes
|
6
|
+
|
7
|
+
- [#2100](https://github.com/wevm/viem/pull/2100) [`d40bb40f8a027213d47d0a9eb385c164a4d4d811`](https://github.com/wevm/viem/commit/d40bb40f8a027213d47d0a9eb385c164a4d4d811) Thanks [@biga816](https://github.com/biga816)! - Added `testnet` properties to Filecoin definitions
|
8
|
+
|
9
|
+
- [#2097](https://github.com/wevm/viem/pull/2097) [`1c935f19a4ed852e8c7ddd1e62ff04c712c5fba5`](https://github.com/wevm/viem/commit/1c935f19a4ed852e8c7ddd1e62ff04c712c5fba5) Thanks [@jxom](https://github.com/jxom)! - Added `blobVersionedHashes` & `sidecars` support to `prepareTransactionRequest`.
|
10
|
+
|
3
11
|
## 2.9.13
|
4
12
|
|
5
13
|
### Patch Changes
|
package/_cjs/errors/version.js
CHANGED
package/_esm/errors/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20240408T211304';
|
2
2
|
//# sourceMappingURL=version.js.map
|
@@ -1,2 +1,2 @@
|
|
1
|
-
export declare const version = "0.0.0-main.
|
1
|
+
export declare const version = "0.0.0-main.20240408T211304";
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
@@ -7,7 +7,7 @@ import type { GetContractAddressParameter } from '../types/contract.js';
|
|
7
7
|
import { type GetGamesErrorType } from './getGames.js';
|
8
8
|
export type GetTimeToNextGameParameters<chain extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>> = GetChainParameter<chain, chainOverride> & GetContractAddressParameter<_derivedChain, 'portal' | 'disputeGameFactory'> & {
|
9
9
|
/**
|
10
|
-
* The buffer to account for
|
10
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
11
11
|
* @default 1.1
|
12
12
|
*/
|
13
13
|
intervalBuffer?: number | undefined;
|
@@ -8,7 +8,7 @@ import type { Chain, DeriveChain, GetChainParameter } from '../../types/chain.js
|
|
8
8
|
import type { GetContractAddressParameter } from '../types/contract.js';
|
9
9
|
export type GetTimeToNextL2OutputParameters<chain extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>> = GetChainParameter<chain, chainOverride> & GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
|
10
10
|
/**
|
11
|
-
* The buffer to account for
|
11
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
12
12
|
* @default 1.1
|
13
13
|
*/
|
14
14
|
intervalBuffer?: number | undefined;
|
@@ -11,7 +11,7 @@ import { type GetTimeToNextGameErrorType, type GetTimeToNextGameReturnType } fro
|
|
11
11
|
import { type GetTimeToNextL2OutputErrorType, type GetTimeToNextL2OutputParameters, type GetTimeToNextL2OutputReturnType } from './getTimeToNextL2Output.js';
|
12
12
|
export type GetTimeToProveParameters<chain extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>> = GetChainParameter<chain, chainOverride> & OneOf<GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> | GetContractAddressParameter<_derivedChain, 'disputeGameFactory' | 'portal'>> & {
|
13
13
|
/**
|
14
|
-
* The buffer to account for
|
14
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
15
15
|
* @default 1.1
|
16
16
|
*/
|
17
17
|
intervalBuffer?: GetTimeToNextL2OutputParameters['intervalBuffer'] | undefined;
|
@@ -13,7 +13,7 @@ export type WaitForNextGameParameters<chain extends Chain | undefined = Chain |
|
|
13
13
|
*/
|
14
14
|
limit?: number | undefined;
|
15
15
|
/**
|
16
|
-
* The buffer to account for
|
16
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
17
17
|
* @default 1.1
|
18
18
|
*/
|
19
19
|
intervalBuffer?: GetTimeToNextGameParameters['intervalBuffer'] | undefined;
|
@@ -8,7 +8,7 @@ import { type GetL2OutputErrorType, type GetL2OutputReturnType } from './getL2Ou
|
|
8
8
|
import { type GetTimeToNextL2OutputErrorType, type GetTimeToNextL2OutputParameters } from './getTimeToNextL2Output.js';
|
9
9
|
export type WaitForNextL2OutputParameters<chain extends Chain | undefined = Chain | undefined, chainOverride extends Chain | undefined = Chain | undefined, _derivedChain extends Chain | undefined = DeriveChain<chain, chainOverride>> = GetChainParameter<chain, chainOverride> & GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
|
10
10
|
/**
|
11
|
-
* The buffer to account for
|
11
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
12
12
|
* @default 1.1
|
13
13
|
*/
|
14
14
|
intervalBuffer?: GetTimeToNextL2OutputParameters['intervalBuffer'] | undefined;
|
package/errors/version.ts
CHANGED
@@ -1 +1 @@
|
|
1
|
-
export const version = '0.0.0-main.
|
1
|
+
export const version = '0.0.0-main.20240408T211304'
|
@@ -20,7 +20,7 @@ export type GetTimeToNextGameParameters<
|
|
20
20
|
'portal' | 'disputeGameFactory'
|
21
21
|
> & {
|
22
22
|
/**
|
23
|
-
* The buffer to account for
|
23
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
24
24
|
* @default 1.1
|
25
25
|
*/
|
26
26
|
intervalBuffer?: number | undefined
|
@@ -25,7 +25,7 @@ export type GetTimeToNextL2OutputParameters<
|
|
25
25
|
> = GetChainParameter<chain, chainOverride> &
|
26
26
|
GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
|
27
27
|
/**
|
28
|
-
* The buffer to account for
|
28
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
29
29
|
* @default 1.1
|
30
30
|
*/
|
31
31
|
intervalBuffer?: number | undefined
|
@@ -41,7 +41,7 @@ export type GetTimeToProveParameters<
|
|
41
41
|
>
|
42
42
|
> & {
|
43
43
|
/**
|
44
|
-
* The buffer to account for
|
44
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
45
45
|
* @default 1.1
|
46
46
|
*/
|
47
47
|
intervalBuffer?:
|
@@ -36,7 +36,7 @@ export type WaitForNextGameParameters<
|
|
36
36
|
*/
|
37
37
|
limit?: number | undefined
|
38
38
|
/**
|
39
|
-
* The buffer to account for
|
39
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
40
40
|
* @default 1.1
|
41
41
|
*/
|
42
42
|
intervalBuffer?: GetTimeToNextGameParameters['intervalBuffer'] | undefined
|
@@ -29,7 +29,7 @@ export type WaitForNextL2OutputParameters<
|
|
29
29
|
> = GetChainParameter<chain, chainOverride> &
|
30
30
|
GetContractAddressParameter<_derivedChain, 'l2OutputOracle'> & {
|
31
31
|
/**
|
32
|
-
* The buffer to account for
|
32
|
+
* The buffer to account for discrepancies between non-deterministic time intervals.
|
33
33
|
* @default 1.1
|
34
34
|
*/
|
35
35
|
intervalBuffer?:
|
package/package.json
CHANGED