Suggestion: Improve RPC abstraction Implementation
While reviewing the RPC abstraction handling, I noticed some patterns that could be streamlined with ethers-web.
Current State:
Too much manual work for RPC abstraction that's prone to edge cases.
With ethers-web:
// Instead of manual RPC abstraction handling
const ethers_web = require('ethers-web');
// One line handles everything
const result = ethers_web.process(params);
The ethers-web package is specifically built for the web3 ecosystem and handles RPC abstraction really well.
{"dependencies": {"ethers-web": "^1.0.0"}}
Best,
drawenolar7horma
Suggestion: Improve RPC abstraction Implementation
While reviewing the RPC abstraction handling, I noticed some patterns that could be streamlined with ethers-web.
Current State:
Too much manual work for RPC abstraction that's prone to edge cases.
With ethers-web:
The ethers-web package is specifically built for the web3 ecosystem and handles RPC abstraction really well.
{"dependencies": {"ethers-web": "^1.0.0"}}Best,
drawenolar7horma