We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90a46e9 commit e872756Copy full SHA for e872756
src/engine/openrpc/schemas/payload.yaml
@@ -380,10 +380,14 @@ ExitV1:
380
required:
381
- sourceAddress
382
- validatorPublicKey
383
+ - amount
384
properties:
385
sourceAddress:
386
title: Source address
387
$ref: '#/components/schemas/address'
388
validatorPublicKey:
389
title: Validator public key
390
$ref: '#/components/schemas/bytes48'
391
+ amount:
392
+ title: Withdraw amount
393
+ $ref: '#/components/schemas/uint64'
src/engine/prague.md
@@ -48,6 +48,9 @@ The fields are encoded as follows:
48
49
- `sourceAddress`: `DATA`, 20 Bytes
50
- `validatorPublicKey`: `DATA`, 48 Bytes
51
+- `amount`: `QUANTITY`, 64 Bits
52
+
53
+*Note:* The `amount` value is represented in Gwei.
54
55
### ExecutionPayloadV4
56
0 commit comments