|
3482 | 3482 | "l1_gas_consumed": { |
3483 | 3483 | "title": "L1 gas consumed", |
3484 | 3484 | "description": "The Ethereum gas consumption of the transaction, charged for L1->L2 messages and, depending on the block's DA_MODE, state diffs", |
3485 | | - "$ref": "#/components/schemas/FELT" |
| 3485 | + "$ref": "#/components/schemas/u64" |
3486 | 3486 | }, |
3487 | 3487 | "l1_gas_price": { |
3488 | 3488 | "title": "L1 gas price", |
3489 | 3489 | "description": "The gas price (in wei or fri, depending on the tx version) that was used in the cost estimation", |
3490 | | - "$ref": "#/components/schemas/FELT" |
| 3490 | + "$ref": "#/components/schemas/u128" |
3491 | 3491 | }, |
3492 | 3492 | "l2_gas_consumed": { |
3493 | 3493 | "title": "L2 gas consumed", |
3494 | 3494 | "description": "The L2 gas consumption of the transaction", |
3495 | | - "$ref": "#/components/schemas/FELT" |
| 3495 | + "$ref": "#/components/schemas/u64" |
3496 | 3496 | }, |
3497 | 3497 | "l2_gas_price": { |
3498 | 3498 | "title": "L2 gas price", |
3499 | 3499 | "description": "The L2 gas price (in wei or fri, depending on the tx version) that was used in the cost estimation", |
3500 | | - "$ref": "#/components/schemas/FELT" |
| 3500 | + "$ref": "#/components/schemas/u128" |
3501 | 3501 | }, |
3502 | 3502 | "l1_data_gas_consumed": { |
3503 | 3503 | "title": "L1 data gas consumed", |
3504 | 3504 | "description": "The Ethereum data gas consumption of the transaction", |
3505 | | - "$ref": "#/components/schemas/FELT" |
| 3505 | + "$ref": "#/components/schemas/u64" |
3506 | 3506 | }, |
3507 | 3507 | "l1_data_gas_price": { |
3508 | 3508 | "title": "L1 data gas price", |
3509 | 3509 | "description": "The data gas price (in wei or fri, depending on the tx version) that was used in the cost estimation", |
3510 | | - "$ref": "#/components/schemas/FELT" |
| 3510 | + "$ref": "#/components/schemas/u128" |
3511 | 3511 | }, |
3512 | 3512 | "overall_fee": { |
3513 | 3513 | "title": "Overall fee", |
3514 | | - "description": "The estimated fee for the transaction (in wei or fri, depending on the tx version), equals to gas_consumed*gas_price + data_gas_consumed*data_gas_price", |
3515 | | - "$ref": "#/components/schemas/FELT" |
| 3514 | + "description": "The estimated fee for the transaction (in wei or fri, depending on the tx version), equals to l1_gas_consumed*l1_gas_price + l1_data_gas_consumed*l1_data_gas_price + l2_gas_consumed*l2_gas_price", |
| 3515 | + "$ref": "#/components/schemas/u128" |
3516 | 3516 | }, |
3517 | 3517 | "unit": { |
3518 | 3518 | "title": "Fee unit", |
|
0 commit comments