@solana/rpc-api 2.0.0-rc.0 → 2.0.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
|
|
7
7
|
[code-style-prettier-image]: https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square
|
|
8
8
|
[code-style-prettier-url]: https://github.com/prettier/prettier
|
|
9
|
-
[npm-downloads-image]: https://img.shields.io/npm/dm/@solana/rpc-api/
|
|
10
|
-
[npm-image]: https://img.shields.io/npm/v/@solana/rpc-api/
|
|
11
|
-
[npm-url]: https://www.npmjs.com/package/@solana/rpc-api/v/
|
|
9
|
+
[npm-downloads-image]: https://img.shields.io/npm/dm/@solana/rpc-api/rc.svg?style=flat
|
|
10
|
+
[npm-image]: https://img.shields.io/npm/v/@solana/rpc-api/rc.svg?style=flat
|
|
11
|
+
[npm-url]: https://www.npmjs.com/package/@solana/rpc-api/v/rc
|
|
12
12
|
[semantic-release-image]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
|
|
13
13
|
[semantic-release-url]: https://github.com/semantic-release/semantic-release
|
|
14
14
|
|
|
15
15
|
# @solana/rpc-api
|
|
16
16
|
|
|
17
|
-
This package contains types that describe the [methods](https://solana.com/docs/rpc/http) of the Solana JSON RPC API, and utilities for creating a `RpcApi` implementation with sensible defaults. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK [`@solana/web3.js@
|
|
17
|
+
This package contains types that describe the [methods](https://solana.com/docs/rpc/http) of the Solana JSON RPC API, and utilities for creating a `RpcApi` implementation with sensible defaults. It can be used standalone, but it is also exported as part of the Solana JavaScript SDK [`@solana/web3.js@rc`](https://github.com/solana-labs/solana-web3.js/tree/master/packages/library).
|
|
18
18
|
|
|
19
19
|
Each RPC method is described in terms of a TypeScript interface of the following form:
|
|
20
20
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solana/rpc-api",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.1",
|
|
4
4
|
"description": "Defines all default Solana RPC methods as types",
|
|
5
5
|
"exports": {
|
|
6
6
|
"browser": {
|
|
@@ -46,17 +46,17 @@
|
|
|
46
46
|
"maintained node versions"
|
|
47
47
|
],
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@solana/
|
|
50
|
-
"@solana/codecs-
|
|
51
|
-
"@solana/
|
|
52
|
-
"@solana/errors": "2.0.0-rc.
|
|
53
|
-
"@solana/keys": "2.0.0-rc.
|
|
54
|
-
"@solana/rpc-parsed-types": "2.0.0-rc.
|
|
55
|
-
"@solana/rpc-spec": "2.0.0-rc.
|
|
56
|
-
"@solana/rpc-transformers": "2.0.0-rc.
|
|
57
|
-
"@solana/rpc-types": "2.0.0-rc.
|
|
58
|
-
"@solana/transaction-messages": "2.0.0-rc.
|
|
59
|
-
"@solana/transactions": "2.0.0-rc.
|
|
49
|
+
"@solana/codecs-core": "2.0.0-rc.1",
|
|
50
|
+
"@solana/codecs-strings": "2.0.0-rc.1",
|
|
51
|
+
"@solana/addresses": "2.0.0-rc.1",
|
|
52
|
+
"@solana/errors": "2.0.0-rc.1",
|
|
53
|
+
"@solana/keys": "2.0.0-rc.1",
|
|
54
|
+
"@solana/rpc-parsed-types": "2.0.0-rc.1",
|
|
55
|
+
"@solana/rpc-spec": "2.0.0-rc.1",
|
|
56
|
+
"@solana/rpc-transformers": "2.0.0-rc.1",
|
|
57
|
+
"@solana/rpc-types": "2.0.0-rc.1",
|
|
58
|
+
"@solana/transaction-messages": "2.0.0-rc.1",
|
|
59
|
+
"@solana/transactions": "2.0.0-rc.1"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
62
|
"typescript": ">=5"
|