You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/schemas/transaction.yaml
+31-13Lines changed: 31 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,19 @@
1
-
Transaction7702Unsigned:
1
+
Transaction7702Signed:
2
2
type: object
3
3
title: EIP-7702 transaction.
4
4
required:
5
5
- type
6
6
- nonce
7
+
- to
7
8
- gas
8
9
- value
9
10
- input
10
-
- maxFeePerGas
11
11
- maxPriorityFeePerGas
12
-
- gasPrice
13
-
- chainId
12
+
- maxFeePerGas
13
+
- maxFeePerBlobGas
14
14
- accessList
15
+
- blobVersionedHashes
16
+
- chainId
15
17
- authorization list
16
18
properties:
17
19
type:
@@ -45,9 +47,9 @@ Transaction7702Unsigned:
45
47
title: max fee per gas
46
48
description: The maximum total fee per gas the sender is willing to pay (includes the network / base fee and miner / priority fee) in wei
47
49
$ref: '#/components/schemas/uint'
48
-
gasPrice:
49
-
title: gas price
50
-
description: The effective gas price paid by the sender in wei. For transactions not yet included in a block, this value should be set equal to the max fee per gas. This field is DEPRECATED, please transition to using effectiveGasPrice in the receipt object going forward.
50
+
maxFeePerBlobGas:
51
+
title: max fee per blob gas
52
+
description: The maximum total fee per gas the sender is willing to pay for blob gasin wei
51
53
$ref: '#/components/schemas/uint'
52
54
accessList:
53
55
title: accessList
@@ -57,12 +59,28 @@ Transaction7702Unsigned:
57
59
title: chainId
58
60
description: Chain ID that this transaction is valid on.
59
61
$ref: '#/components/schemas/uint'
60
-
authorization list:
61
-
title: authorization list
62
-
description: List of authorizations associated with the transaction.
63
-
type: array
64
-
items:
65
-
$ref: '#/components/schemas/AuthorizationList'
62
+
authorizationList:
63
+
type: object
64
+
title: Authorizations List
65
+
chainId:
66
+
title: chainId
67
+
description: Chain ID that this transaction is valid on.
68
+
$ref: '#/components/schemas/uint'
69
+
nonce:
70
+
title: nonce
71
+
$ref: '#/components/schemas/uint64'
72
+
address:
73
+
$ref: '#/components/schemas/address'
74
+
yParity:
75
+
title: yParity
76
+
description: The parity (0 for even, 1 for odd) of the y-value of the secp256k1 signature.
0 commit comments