load.network
  • Load Network
  • Quickstart
  • About Load Network
    • Overview
    • Network Releases Nomenclature
    • Load Network Alphanets
    • Key Features
    • ELI5
  • Using Load Network
    • Compatibility & Performance
    • Network configurations
    • Load Network Bundler
    • 0xbabe2: Large Data Uploads
    • Load Network Bundler Gateways
    • Load Network Precompiles
    • LN-Native JSON-RPC Methods
    • load:// Data Protocol
    • Self-Hosted RPC Proxies
      • Rust Proxy
      • JavaScript Proxy
    • Code & Integrations Examples
      • ethers (etherjs)
      • Deploying an ERC20 Token
  • Load Network Cloud Platform
    • Cloud Platform (LNCP)
    • Load S3 Protocol
    • load0 data layer
  • Load Network for evm chains
    • Ledger Archiver (any chain)
    • Ledger Archivers: State Reconstruction
    • DA ExEx (Reth-only)
    • Deploying OP-Stack Rollups
  • Load Network ExEx
    • About ExExes
    • ExEx.rs
    • Load Network ExExes
      • Google BigQuery ETL
      • Borsh Serializer
      • Arweave Data Uploader
      • Load Network DA ExEx
      • Load Network WeaveDrive ExEx
  • Load Network Arweave Data Protocols
    • LN-ExEx Data Protocol
    • Load Network Precompiles Data Protocol
  • DA Integrations
    • LN-EigenDA Proxy Server
    • LN-Dymension: DA client for RollAP
  • load hyperbeam
    • About Load HyperBEAM
Powered by GitBook
On this page
  • The eth_getArweaveStorageProof JSON-RPC method
  • The eth_getWvmTransactionByTag JSON-RPC method
Export as PDF
  1. Using Load Network

LN-Native JSON-RPC Methods

About Load Network Native JSON-RPC methods

The eth_getArweaveStorageProof JSON-RPC method

This JSON-RPC method lets you retrieve the Arweave storage proof for a given Load Network block number

curl -X POST https://alphanet.load.network \
-H "Content-Type: application/json" \
--data '{
 "jsonrpc":"2.0",
 "method":"eth_getArweaveStorageProof",
 "params":["8038800"],
 "id":1
}'

The eth_getWvmTransactionByTag JSON-RPC method

For Load Network L1 tagged transactions, the eth_getWvmTransactionByTag lets you retrieve a transaction hash for a given name-value tag pair.

curl https://alphanet.load.network \
  -X POST \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "eth_getWvmTransactionByTag",
    "params": [{
        "tag": ["name", "value"]
    }]
  }'
PreviousLoad Network PrecompilesNextload:// Data Protocol

Last updated 2 months ago