We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5abc991 commit eca5b61Copy full SHA for eca5b61
packages/tx/test/transactionRunner.spec.ts
@@ -15,6 +15,9 @@ const file: string | undefined = argv.file
15
16
const forkNames: ForkName[] = [
17
'Prague',
18
+ 'Cancun',
19
+ 'Shanghai',
20
+ 'Paris',
21
'London+3860',
22
'London',
23
'Berlin',
@@ -31,6 +34,9 @@ const forkNames: ForkName[] = [
31
34
const forkNameMap: ForkNamesMap = {
32
35
Prague: 'prague',
33
36
'London+3860': 'london',
37
+ Cancun: 'cancun',
38
+ Shanghai: 'shanghai',
39
+ Paris: 'paris',
40
London: 'london',
41
Berlin: 'berlin',
42
Istanbul: 'istanbul',
packages/tx/test/types.ts
@@ -1,5 +1,8 @@
1
export type ForkName =
2
| 'Prague'
3
+ | 'Cancun'
4
+ | 'Shanghai'
5
+ | 'Paris'
6
| 'London+3860'
7
| 'London'
8
| 'Berlin'
0 commit comments