Avalanche · Schema

TransactionMethodType

The contract call type. NATIVE_TRANSFER indicates a transfer of the native token without any smart-contract interaction. CONTRACT_CALL indicates a smart-contract interaction. CONTRACT_CREATION indicates a smart-contract creation.

BlockchainWeb3AvalancheNFTDeFiCross-Chain
View JSON Schema on GitHub

JSON Schema

TransactionMethodType.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/TransactionMethodType.json",
  "title": "TransactionMethodType",
  "type": "string",
  "description": "The contract call type. NATIVE_TRANSFER indicates a transfer of the native token without any smart-contract interaction. CONTRACT_CALL indicates a smart-contract interaction. CONTRACT_CREATION indicates a smart-contract creation.",
  "enum": [
    "NATIVE_TRANSFER",
    "CONTRACT_CALL",
    "CONTRACT_CREATION"
  ]
}