solana_rpc_ruby 1.1.1 → 1.2.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/LICENSE +20 -674
- data/README.md +14 -9
- data/lib/solana_rpc_ruby/api_client.rb +22 -12
- data/lib/solana_rpc_ruby/api_error.rb +13 -2
- data/lib/solana_rpc_ruby/methods_wrapper.rb +303 -109
- data/lib/solana_rpc_ruby/version.rb +1 -1
- data/lib/solana_rpc_ruby/websocket_client.rb +0 -18
- data/lib/solana_rpc_ruby/websocket_methods_wrapper.rb +82 -31
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 445e4852f291cb7e6d417e3a3277905c7c2935ed40ec9cdca3e1d5f2f599f8ab
|
4
|
+
data.tar.gz: 36f27011567ebd56e0f0b86db2fa93c04e66c55351d0307a014b432a3988f8e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9be80c9efcff01f3324cee479e4262cafd9ca8cc43dfc7d19e6bf537f336428a5bacf124b4d920955c364638fd355e9bdbe33bf425bc458a2d37025bbfbb794e
|
7
|
+
data.tar.gz: 86e7db1d6cdf6b2a5b208b7b5b8fdae6766fbeb5e919ff8dfd23c845c9c8d5105827f4609d10ad01581f0049a1dfbd1c9e9ded0937f621ad7912856837397da2
|
data/CHANGELOG.md
CHANGED
@@ -11,3 +11,25 @@
|
|
11
11
|
## 1.1.1
|
12
12
|
* Fix SolanaRpcRuby::ApiError occurring when websocket program runs for too long
|
13
13
|
(#<SolanaRpcRuby::ApiError: NoMethodError undefined method ping)
|
14
|
+
|
15
|
+
## 1.1.2
|
16
|
+
* Unify LICENSE it's now MIT everywhere.
|
17
|
+
* Add Ruby 3.0 to CI run.
|
18
|
+
* Add new badges.
|
19
|
+
* Handle new errors (Errno::ECONNREFUSED, SocketError)
|
20
|
+
* Code maintenance and cleanup.
|
21
|
+
|
22
|
+
## 1.1.3
|
23
|
+
* Increase open_timeout and read_timeout.
|
24
|
+
* New specs.
|
25
|
+
|
26
|
+
## 1.1.4
|
27
|
+
* Removes deprecated constant
|
28
|
+
|
29
|
+
## 1.2.0
|
30
|
+
* Fix handling commitment param in methods
|
31
|
+
* Add RPC and websocket methods added by solana core to RPC recently
|
32
|
+
* Add new params to methods added by solana core
|
33
|
+
* Add warns to deprecated methods
|
34
|
+
* Update docs
|
35
|
+
* Small fixes
|