github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/blockchain/rsk.go (about) 1 package blockchain 2 3 // Handles specific issues with the RSK EVM chain: https://developers.rsk.co/rsk/node/architecture/json-rpc/ 4 5 // RSKMultinodeClient represents a multi-node, EVM compatible client for the RSK network 6 type RSKMultinodeClient struct { 7 *EthereumMultinodeClient 8 } 9 10 // RSKClient represents a single node, EVM compatible client for the RSK network 11 type RSKClient struct { 12 *EthereumClient 13 }