-
Notifications
You must be signed in to change notification settings - Fork 907
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update the README for @solana/rpc-spec
#2995
Update the README for @solana/rpc-spec
#2995
Conversation
|
This stack of pull requests is managed by Graphite. Learn more about stacking. Join @steveluscher and the rest of your teammates on Graphite |
packages/rpc-spec/README.md
Outdated
```ts | ||
const rpc = | ||
// Step 1 - Create an `Rpc` instance. This may be stateful. | ||
createSolanaRpc({ url: mainnet('https://api.mainnet-beta.solana.com') }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this is now:
createSolanaRpc({ url: mainnet('https://api.mainnet-beta.solana.com') }); | |
createSolanaRpc(mainnet('https://api.mainnet-beta.solana.com')); |
60c960d
to
0f571d6
Compare
Merge activity
|
0f571d6
to
1285419
Compare
1285419
to
6905d25
Compare
Because there has been no activity on this PR for 14 days since it was merged, it has been automatically locked. Please open a new issue if it requires a follow up. |
Addresses solana-labs/web3.js-issue-conveyer#10.