Wormhole · Schema
operations.StandardizedProperties
Cross-ChainBlockchainInteroperabilityDeFiToken TransfersMessagingWeb3
Properties
| Name | Type | Description |
|---|---|---|
| amount | string | |
| appIds | array | |
| fee | string | |
| feeAddress | string | |
| feeChain | object | |
| fromAddress | string | |
| fromChain | object | |
| normalizedDecimals | integer | |
| toAddress | string | |
| toChain | object | |
| tokenAddress | string | |
| tokenChain | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api.wormholescan.io/schemas/operations-standardizedproperties",
"title": "operations.StandardizedProperties",
"type": "object",
"properties": {
"amount": {
"type": "string"
},
"appIds": {
"type": "array",
"items": {
"type": "string"
}
},
"fee": {
"type": "string"
},
"feeAddress": {
"type": "string"
},
"feeChain": {
"$ref": "#/definitions/vaa.ChainID"
},
"fromAddress": {
"type": "string"
},
"fromChain": {
"$ref": "#/definitions/vaa.ChainID"
},
"normalizedDecimals": {
"type": "integer"
},
"toAddress": {
"type": "string"
},
"toChain": {
"$ref": "#/definitions/vaa.ChainID"
},
"tokenAddress": {
"type": "string"
},
"tokenChain": {
"$ref": "#/definitions/vaa.ChainID"
}
}
}