Skip to content

atimark/arbitrum-docs

 
 

Repository files navigation

Examples:

Get a transaction by hash from the full node HTTP API:

curl http://x:api-key@127.0.0.1:14037/tx/\ 4674eb87021d9e07ff68cfaaaddfb010d799246b8f89941c58b8673386ce294f

Get a raw transaction by hash from the full node RPC API:

curl http://x:api-key@127.0.0.1:14037
-X POST
--data '{
"method": "getrawtransaction",
"params": [ "4674eb87021d9e07ff68cfaaaddfb010d799246b8f89941c58b8673386ce294f"]
}'

Get a transaction by hash from the "primary" wallet HTTP API:

curl http://x:api-key@127.0.0.1:14039/wallet/primary/tx/\ 4674eb87021d9e07ff68cfaaaddfb010d799246b8f89941c58b8673386ce294f

Get a transaction by hash from the wallet RPC API:

curl http://x:api-key@127.0.0.1:14039
-X POST
--data '{
"method": "gettransaction",
"params": [ "4674eb87021d9e07ff68cfaaaddfb010d799246b8f89941c58b8673386ce294f" ]
}'

About

Arbitrum Docs! Content + Webapp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • MDX 85.4%
  • JavaScript 8.7%
  • TypeScript 4.4%
  • SCSS 1.0%
  • CSS 0.4%
  • Less 0.1%