Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/docs/rnk-rpc-methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ hide_title: true

This page provides an overview of the RPC methods specific to the Reactive Network's Geth version, essential for interacting with nodes and ReactVMs within the Reactive Network (RNK). These methods enable transaction retrieval, log access, callback information, etc. Below, you will find a detailed description of each method, including its parameters, cURLs, and responses.

:::tip[Ethereum RPC Methods]
Reactive Network is fully compatible with [standard Geth RPC methods](https://geth.ethereum.org/docs/interacting-with-geth/rpc). This page covers additional Reactive-specific methods.
:::

## rnk_getTransactionByHash

Returns the details of a transaction for the specified ReactVM ID and transaction hash.
Expand Down
13 changes: 11 additions & 2 deletions src/components/origins-destinations.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const MainnetChainTable = () => {
chain: 'HyperEVM',
chainId: 999,
link: 'https://hyperevmscan.io/',
callbackAddress: '0x9299472a6399fd1027ebf067571eb3e3d7837fc4',
callbackAddress: '0x9299472A6399Fd1027ebF067571Eb3e3D7837FC4',
rpcUrl: 'https://chainlist.org/chain/999',
origin: true,
destination: true
Expand All @@ -74,6 +74,15 @@ const MainnetChainTable = () => {
origin: true,
destination: true
},
{
chain: 'Plasma',
chainId: 9745,
link: 'https://plasmascan.to/',
callbackAddress: '0x9299472A6399Fd1027ebF067571Eb3e3D7837FC4',
rpcUrl: 'https://chainlist.org/chain/9745',
origin: true,
destination: true
},
{
chain: 'Reactive Mainnet',
chainId: 1597,
Expand All @@ -87,7 +96,7 @@ const MainnetChainTable = () => {
chain: 'Sonic',
chainId: 146,
link: 'https://sonicscan.org/',
callbackAddress: '0x9299472a6399fd1027ebf067571eb3e3d7837fc4',
callbackAddress: '0x9299472A6399Fd1027ebF067571Eb3e3D7837FC4',
rpcUrl: 'https://chainlist.org/chain/146',
origin: true,
destination: true
Expand Down
Loading