addedInput schema / properties / signedTx / properties
Added value: +{
+ "raw_data": {
+ "additionalProperties": {},
+ "description": "Raw transaction body produced by TronWeb (`raw_data`).",
+ "properties": {
+ "contract": {
+ "description": "At least one TRON contract entry; shape varies by contract type.",
+ "items": {},
+ "minItems": 1,
+ "type": "array"
+ },
+ "expiration": {
+ "description": "Tx expiration (Unix epoch ms).",
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ },
+ "ref_block_bytes": {
+ "description": "Reference block bytes (hex).",
+ "type": "string"
+ },
+ "ref_block_hash": {
+ "description": "Reference block hash (hex).",
+ "type": "string"
+ },
+ "timestamp": {
+ "description": "Tx timestamp (Unix epoch ms).",
+ "exclusiveMinimum": 0,
+ "maximum": 9007199254740991,
+ "type": "integer"
+ }
+ },
+ "required": [
+ "contract",
+ "ref_block_bytes",
+ "ref_block_hash",
+ "expiration",
+ "timestamp"
+ ],
+ "type": "object"
+ },
+ "raw_data_hex": {
+ "description": "Hex-encoded `raw_data` body.",
+ "pattern": "^[0-9a-fA-F]+$",
+ "type": "string"
+ },
+ "signature": {
+ "description": "Wallet signatures over `raw_data_hex`; usually a single hex string (130 chars for 65-byte secp256k1).",
+ "items": {
+ "minLength": 1,
+ "pattern": "^[0-9a-fA-F]+$",
+ "type": "string"
+ },
+ "minItems": 1,
+ "type": "array"
+ },
+ "txID": {
+ "description": "Transaction hash (64 hex chars, lowercase, no `0x` prefix).",
+ "maxLength": 64,
+ "minLength": 64,
+ "pattern": "^[0-9a-fA-F]+$",
+ "type": "string"
+ },
+ "visible": {
+ "description": "Whether addresses inside `raw_data.contract` are base58 (`true`) vs hex (`false`).",
+ "type": "boolean"
+ }
+}