changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "account": {
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "amount_atomic": {
+ "pattern": "^[1-9][0-9]*$",
+ "type": "string"
+ },
+ "broadcast_attempts": {
+ "maximum": 9007199254740991,
+ "minimum": 0,
+ "type": "integer"
+ },
+ "created_at": {
+ "format": "date-time",
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$",
+ "type": "string"
+ },
+ "destination": {
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "epoch": {
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "has_exit": {
+ "type": "boolean"
+ },
+ "lease_expires_at": {
+ "format": "date-time",
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$",
+ "type": "string"
+ },
+ "operation_id": {
+ "format": "uuid",
+ "pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$",
+ "type": "string"
+ },
+ "owner_token": {
+ "pattern": "^[0-9a-f]{64}$",
+ "type": "string"
+ },
+ "phase": {
+ "enum": [
+ "prepare",
+ "resume",
+ "submit",
+ "status",
+ "reconcile",
+ "retry_same",
+ "cancel"
+ ],
+ "type": "string"
+ },
+ "receipt": {
+ "additionalProperties": false,
+ "properties": {
+ "block_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ },
+ "block_number": {
+ "pattern": "^[1-9][0-9]*$",
+ "type": "string"
+ },
+ "status": {
+ "enum": [
+ "success",
+ "reverted"
+ ],
+ "type": "string"
+ },
+ "transaction_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "transaction_hash",
+ "block_number",
+ "block_hash",
+ "status"
+ ],
+ "type": "object"
+ },
+ "replacement": {
+ "additionalProperties": false,
+ "properties": {
+ "block_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ },
+ "block_number": {
+ "pattern": "^(?:0|[1-9][0-9]*)$",
+ "type": "string"
+ },
+ "finalized_head_block_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ },
+ "finalized_head_block_number": {
+ "pattern": "^(?:0|[1-9][0-9]*)$",
+ "type": "string"
+ },
+ "finalized_nonce": {
+ "pattern": "^[1-9][0-9]*$",
+ "type": "string"
+ },
+ "transaction_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "transaction_hash",
+ "block_number",
+ "block_hash",
+ "finalized_head_block_number",
+ "finalized_head_block_hash",
+ "finalized_nonce"
+ ],
+ "type": "object"
+ },
+ "state": {
+ "enum": [
+ "preparing",
+ "signing",
+ "signed",
+ "submitted",
+ "unknown",
+ "confirmed",
+ "reverted",
+ "replaced",
+ "canceled"
+ ],
+ "type": "string"
+ },
+ "transaction": {
+ "additionalProperties": false,
+ "properties": {
+ "chain_id": {
+ "const": 8453,
+ "type": "number"
+ },
+ "data": {
+ "pattern": "^0x(?:[0-9a-fA-F]{2})+$",
+ "type": "string"
+ },
+ "from": {
+ "pattern": "^0x[0-9a-fA-F]{40}$",
+ "type": "string"
+ },
+ "gas": {
+ "pattern": "^[1-9][0-9]*$",
+ "type": "string"
+ },
+ "max_fee_per_gas": {
+ "pattern": "^[1-9][0-9]*$",
+ "type": "string"
+ },
+ "max_priority_fee_per_gas": {
+ "pattern": "^(?:0|[1-9][0-9]*)$",
+ "type": "string"
+ },
+ "nonce": {
+ "pattern": "^(?:0|[1-9][0-9]*)$",
+ "type": "string"
+ },
+ "sign_idempotency_key": {
+ "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
+ "type": "string"
+ },
+ "to": {
+ "const": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
+ "type": "string"
+ },
+ "type": {
+ "const": "eip1559",
+ "type": "string"
+ },
+ "value": {
+ "const": "0",
+ "type": "string"
+ }
+ },
+ "required": [
+ "type",
+ "chain_id",
+ "nonce",
+ "from",
+ "to",
+ "value",
+ "data",
+ "gas",
+ "max_fee_per_gas",
+ "max_priority_fee_per_gas",
+ "sign_idempotency_key"
+ ],
+ "type": "object"
+ },
+ "transaction_hash": {
+ "pattern": "^0x[0-9a-fA-F]{64}$",
+ "type": "string"
+ },
+ "updated_at": {
+ "format": "date-time",
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$",
+ "type": "string"
+ },
+ "user_id": {
+ "pattern": "^[a-zA-Z0-9-]{1,100}$",
+ "type": "string"
+ }
+ },
+ "required": [
+ "phase",
+ "has_exit",
+ "user_id"
+ ],
+ "type": "object"
+}