WeaveVM-Native JSON-RPC Methods
About WeaveVM-Native JSON-RPC methods
The eth_getArweaveStorageProof
JSON-RPC method
eth_getArweaveStorageProof
JSON-RPC methodThis JSON-RPC method lets you retrieve the Arweave storage proof for a given WeaveVM block number
curl -X POST https://testnet-rpc.wvm.dev \
-H "Content-Type: application/json" \
--data '{
"jsonrpc":"2.0",
"method":"eth_getArweaveStorageProof",
"params":["8038800"],
"id":1
}'
The eth_getWvmTransactionByTag
JSON-RPC method
eth_getWvmTransactionByTag
JSON-RPC methodFor WeaveVM tagged transactions, the eth_getWvmTransactionByTag
lets you retrieve a transaction hash for a given name-value tag pair.
curl https://testnet-rpc.wvm.dev \
-X POST \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "eth_getWvmTransactionByTag",
"params": [{
"tag": ["name", "value"]
}]
}'
Last updated