radiator 0.4.8 → 0.5.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.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +12 -2
  3. data/Rakefile +8 -0
  4. data/lib/radiator/api.rb +44 -21
  5. data/lib/radiator/ssc/base_steem_smart_contract_rpc.rb +1 -1
  6. data/lib/radiator/ssc/blockchain.rb +1 -1
  7. data/lib/radiator/ssc/contracts.rb +1 -1
  8. data/lib/radiator/ssc/stream.rb +1 -1
  9. data/lib/radiator/transaction.rb +16 -1
  10. data/lib/radiator/version.rb +1 -1
  11. data/lib/radiator.rb +1 -1
  12. data/radiator.gemspec +4 -5
  13. data/test/fixtures/vcr_cassettes/account_by_key_api_all_methods.yml +207 -1
  14. data/test/fixtures/vcr_cassettes/api_all_methods.yml +331 -1
  15. data/test/fixtures/vcr_cassettes/base_per_debt.yml +855 -1
  16. data/test/fixtures/vcr_cassettes/base_per_mvest.yml +651 -1
  17. data/test/fixtures/vcr_cassettes/block_time.yml +733 -1
  18. data/test/fixtures/vcr_cassettes/broadcast_transaction.yml +108 -1
  19. data/test/fixtures/vcr_cassettes/chain_stats_api_all_methods.yml +183 -0
  20. data/test/fixtures/vcr_cassettes/condenser_all_all_methods.yml +166 -1
  21. data/test/fixtures/vcr_cassettes/expiration_initialize.yml +1162 -1
  22. data/test/fixtures/vcr_cassettes/find_account.yml +633 -1
  23. data/test/fixtures/vcr_cassettes/find_block.yml +628 -1
  24. data/test/fixtures/vcr_cassettes/find_comment.yml +1967 -1
  25. data/test/fixtures/vcr_cassettes/follow_api_all_methods.yml +603 -0
  26. data/test/fixtures/vcr_cassettes/followed_by.yml +68 -0
  27. data/test/fixtures/vcr_cassettes/following.yml +68 -0
  28. data/test/fixtures/vcr_cassettes/get_account_count.yml +53 -1
  29. data/test/fixtures/vcr_cassettes/get_account_references.yml +111 -1
  30. data/test/fixtures/vcr_cassettes/get_accounts.yml +62 -1
  31. data/test/fixtures/vcr_cassettes/get_accounts_no_argument.yml +111 -1
  32. data/test/fixtures/vcr_cassettes/get_dynamic_global_properties.yml +59 -1
  33. data/test/fixtures/vcr_cassettes/get_feed_history.yml +191 -1
  34. data/test/fixtures/vcr_cassettes/get_followers.yml +63 -0
  35. data/test/fixtures/vcr_cassettes/get_hardfork_version.yml +53 -1
  36. data/test/fixtures/vcr_cassettes/get_key_references.yml +211 -1
  37. data/test/fixtures/vcr_cassettes/get_market_history.yml +209 -1
  38. data/test/fixtures/vcr_cassettes/get_market_history_buckets.yml +209 -1
  39. data/test/fixtures/vcr_cassettes/get_operations.yml +184 -0
  40. data/test/fixtures/vcr_cassettes/get_order_book.yml +209 -1
  41. data/test/fixtures/vcr_cassettes/get_recent_trades.yml +209 -1
  42. data/test/fixtures/vcr_cassettes/get_stats_for_time.yml +62 -0
  43. data/test/fixtures/vcr_cassettes/get_ticker.yml +105 -1
  44. data/test/fixtures/vcr_cassettes/get_trade_history.yml +209 -1
  45. data/test/fixtures/vcr_cassettes/get_vesting_delegations.yml +105 -1
  46. data/test/fixtures/vcr_cassettes/get_volume.yml +213 -1
  47. data/test/fixtures/vcr_cassettes/get_witness_by_account.yml +53 -1
  48. data/test/fixtures/vcr_cassettes/look_up_witnesses.yml +53 -1
  49. data/test/fixtures/vcr_cassettes/market_history_api_all_methods.yml +1461 -1
  50. data/test/fixtures/vcr_cassettes/network_broadcast_api_all_methods.yml +217 -1
  51. data/test/fixtures/vcr_cassettes/properties.yml +633 -1
  52. data/test/fixtures/vcr_cassettes/recover_transaction.yml +111 -1
  53. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info.yml +90 -3
  54. data/test/fixtures/vcr_cassettes/ssc_blockchain_block_info_invalid.yml +88 -3
  55. data/test/fixtures/vcr_cassettes/ssc_blockchain_latest_block_info.yml +89 -3
  56. data/test/fixtures/vcr_cassettes/ssc_blockchain_transaction_info.yml +82 -3
  57. data/test/fixtures/vcr_cassettes/ssc_contracts_contract.yml +364 -3
  58. data/test/fixtures/vcr_cassettes/ssc_contracts_find.yml +81 -3
  59. data/test/fixtures/vcr_cassettes/ssc_contracts_find_one.yml +87 -3
  60. data/test/fixtures/vcr_cassettes/stream_jsonrpc.yml +2167 -1
  61. data/test/fixtures/vcr_cassettes/tag_api_all_methods.yml +1203 -0
  62. data/test/fixtures/vcr_cassettes/transaction_expiration_initialize_nil.yml +1229 -1
  63. data/test/fixtures/vcr_cassettes/transaction_jsonrpc.yml +2131 -1
  64. data/test/fixtures/vcr_cassettes/unknown_chain_id.yml +1203 -1
  65. data/test/fixtures/vcr_cassettes/valid_chains.yml +1157 -1
  66. data/test/radiator/account_by_key_api_test.rb +2 -1
  67. data/test/radiator/api_test.rb +3 -3
  68. data/test/radiator/chain_stats_api_test.rb +7 -3
  69. data/test/radiator/chain_test.rb +11 -5
  70. data/test/radiator/condenser_api_test.rb +1 -0
  71. data/test/radiator/follow_api_test.rb +8 -5
  72. data/test/radiator/market_history_api_test.rb +12 -11
  73. data/test/radiator/network_broadcast_api_test.rb +8 -3
  74. data/test/radiator/stream_test.rb +13 -5
  75. data/test/radiator/tag_api_test.rb +9 -8
  76. data/test/radiator/transaction_test.rb +4 -3
  77. data/test/test_helper.rb +35 -3
  78. metadata +50 -62
@@ -0,0 +1,68 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://api.openhive.network/
6
+ body:
7
+ encoding: UTF-8
8
+ string: '{"jsonrpc":"2.0","method":"follow_api.get_following","params":{"account":"inertia","start":null,"type":"blog","limit":100},"id":1}'
9
+ headers:
10
+ Content-Type:
11
+ - application/json
12
+ User-Agent:
13
+ - radiator/0.5.0
14
+ Accept-Encoding:
15
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
16
+ Accept:
17
+ - "*/*"
18
+ Connection:
19
+ - keep-alive
20
+ Keep-Alive:
21
+ - '30'
22
+ response:
23
+ status:
24
+ code: 200
25
+ message: OK
26
+ headers:
27
+ Server:
28
+ - nginx
29
+ Date:
30
+ - Sun, 10 May 2026 21:14:30 GMT
31
+ Content-Type:
32
+ - application/json
33
+ Content-Length:
34
+ - '578'
35
+ Connection:
36
+ - keep-alive
37
+ X-Jussi-Method:
38
+ - get_following
39
+ X-Jussi-Upstream-Method:
40
+ - follow_api.get_following
41
+ X-Jussi-Param-Hash:
42
+ - 78a19291c50f511169564b00e3f2d9f1642a85426077b89bd445c3abe8e0f89c
43
+ Drone-Version:
44
+ - 0.3.0
45
+ X-Request-Id:
46
+ - b61035b6-93a9-469f-a9ec-75c0bb768fe5
47
+ X-Jussi-Cache-Hit:
48
+ - 'false'
49
+ X-Jussi-Backend-Url:
50
+ - http://haproxy:7008
51
+ X-Jussi-Namespace:
52
+ - appbase
53
+ X-Jussi-Api:
54
+ - follow_api
55
+ Access-Control-Allow-Origin:
56
+ - "*"
57
+ Access-Control-Allow-Methods:
58
+ - GET, POST
59
+ Access-Control-Allow-Headers:
60
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
61
+ body:
62
+ encoding: UTF-8
63
+ string: '{"error":{"code":-32002,"data":{"assert_hash":"13750519470524334703","code":10,"extension":{"assertion_expression":"api_itr
64
+ != data._registered_apis.end()"},"message":"Assert Exception","name":"assert_exception","stack":[{"context":{"file":"json_rpc_plugin.cpp","hostname":"","level":"error","line":346,"method":"find_api_method","thread_name":"th_89","timestamp":"2026-05-10T21:14:30"},"data":{"api":"follow_api"},"format":"Could
65
+ not find API ${api}"}]},"message":"Assert Exception:api_itr != data._registered_apis.end():
66
+ Could not find API follow_api"},"id":1,"jsonrpc":"2.0"}'
67
+ recorded_at: Sun, 10 May 2026 21:14:30 GMT
68
+ recorded_with: VCR 6.4.0
@@ -780,4 +780,56 @@ http_interactions:
780
780
  encoding: UTF-8
781
781
  string: '{"jsonrpc":"2.0","result":1445383,"id":17}'
782
782
  recorded_at: Sun, 08 Nov 2020 06:00:45 GMT
783
- recorded_with: VCR 6.0.0
783
+ - request:
784
+ method: post
785
+ uri: https://api.steemitdev.com/
786
+ body:
787
+ encoding: UTF-8
788
+ string: '{"jsonrpc":"2.0","id":51,"method":"condenser_api.get_account_count","params":[]}'
789
+ headers:
790
+ Content-Type:
791
+ - application/json; charset=utf-8
792
+ User-Agent:
793
+ - steem-ruby/0.9.8
794
+ Accept-Encoding:
795
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
796
+ Accept:
797
+ - "*/*"
798
+ Host:
799
+ - api.steemit.com
800
+ Content-Length:
801
+ - '79'
802
+ response:
803
+ status:
804
+ code: 200
805
+ message: OK
806
+ headers:
807
+ Date:
808
+ - Sat, 30 Jul 2022 23:22:30 GMT
809
+ Content-Type:
810
+ - application/json
811
+ Content-Length:
812
+ - '42'
813
+ Connection:
814
+ - keep-alive
815
+ Server:
816
+ - nginx
817
+ X-Jussi-Request-Id:
818
+ - '000074952100069211'
819
+ X-Amzn-Trace-Id:
820
+ - Root=1-62e5bd36-4f08a4671f6dd8d7468cecf7
821
+ Access-Control-Allow-Origin:
822
+ - "*"
823
+ Access-Control-Allow-Methods:
824
+ - GET, POST, OPTIONS
825
+ Access-Control-Allow-Headers:
826
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
827
+ Strict-Transport-Security:
828
+ - max-age=31557600; includeSubDomains; preload
829
+ Content-Security-Policy:
830
+ - upgrade-insecure-requests
831
+ body:
832
+ encoding: UTF-8
833
+ string: '{"jsonrpc":"2.0","result":3459458,"id":51}'
834
+ recorded_at: Sat, 30 Jul 2022 23:22:30 GMT
835
+ recorded_with: VCR 6.1.0
@@ -770,4 +770,114 @@ http_interactions:
770
770
  Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":891,"method":"get_account_references","hostname":"","timestamp":"2020-11-08T06:00:40"},"format":"false:
771
771
  condenser_api::get_account_references --- Needs to be refactored for Steem.","data":{}}]}},"id":13}'
772
772
  recorded_at: Sun, 08 Nov 2020 06:00:40 GMT
773
- recorded_with: VCR 6.0.0
773
+ - request:
774
+ method: post
775
+ uri: https://api.steemitdev.com/
776
+ body:
777
+ encoding: UTF-8
778
+ string: '{"jsonrpc":"2.0","id":59,"method":"condenser_api.get_account_references","params":[["2.2.27007"]]}'
779
+ headers:
780
+ Content-Type:
781
+ - application/json; charset=utf-8
782
+ User-Agent:
783
+ - steem-ruby/0.9.8
784
+ Accept-Encoding:
785
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
786
+ Accept:
787
+ - "*/*"
788
+ Host:
789
+ - api.steemit.com
790
+ Content-Length:
791
+ - '83'
792
+ response:
793
+ status:
794
+ code: 200
795
+ message: OK
796
+ headers:
797
+ Date:
798
+ - Sat, 30 Jul 2022 23:22:35 GMT
799
+ Content-Type:
800
+ - application/json
801
+ Content-Length:
802
+ - '499'
803
+ Connection:
804
+ - keep-alive
805
+ Server:
806
+ - nginx
807
+ X-Jussi-Request-Id:
808
+ - '000897788287307088'
809
+ X-Amzn-Trace-Id:
810
+ - Root=1-62e5bd3b-5e432e967905d5d70c8b18b2
811
+ Access-Control-Allow-Origin:
812
+ - "*"
813
+ Access-Control-Allow-Methods:
814
+ - GET, POST, OPTIONS
815
+ Access-Control-Allow-Headers:
816
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
817
+ Strict-Transport-Security:
818
+ - max-age=31557600; includeSubDomains; preload
819
+ Content-Security-Policy:
820
+ - upgrade-insecure-requests
821
+ body:
822
+ encoding: UTF-8
823
+ string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:false:
824
+ condenser_api::get_account_references --- Needs to be refactored for Steem.","data":{"code":10,"name":"assert_exception","message":"Assert
825
+ Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":891,"method":"get_account_references","hostname":"","timestamp":"2022-07-30T23:22:35"},"format":"false:
826
+ condenser_api::get_account_references --- Needs to be refactored for Steem.","data":{}}]}},"id":59}'
827
+ recorded_at: Sat, 30 Jul 2022 23:22:35 GMT
828
+ - request:
829
+ method: post
830
+ uri: https://api.steemitdev.com/
831
+ body:
832
+ encoding: UTF-8
833
+ string: '{"jsonrpc":"2.0","id":103,"method":"condenser_api.get_account_references","params":[["2.2.27007"]]}'
834
+ headers:
835
+ Content-Type:
836
+ - application/json; charset=utf-8
837
+ User-Agent:
838
+ - steem-ruby/0.9.8
839
+ Accept-Encoding:
840
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
841
+ Accept:
842
+ - "*/*"
843
+ Host:
844
+ - api.steemitdev.com
845
+ Content-Length:
846
+ - '88'
847
+ response:
848
+ status:
849
+ code: 200
850
+ message: OK
851
+ headers:
852
+ Date:
853
+ - Sat, 30 Jul 2022 23:28:48 GMT
854
+ Content-Type:
855
+ - application/json
856
+ Content-Length:
857
+ - '500'
858
+ Connection:
859
+ - keep-alive
860
+ Server:
861
+ - nginx
862
+ X-Jussi-Request-Id:
863
+ - '000540908407744564'
864
+ X-Amzn-Trace-Id:
865
+ - Root=1-62e5beb0-689496e0704d871e6f127bbb
866
+ Access-Control-Allow-Origin:
867
+ - "*"
868
+ Access-Control-Allow-Methods:
869
+ - GET, POST, OPTIONS
870
+ Access-Control-Allow-Headers:
871
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
872
+ Strict-Transport-Security:
873
+ - max-age=31557600; includeSubDomains; preload
874
+ Content-Security-Policy:
875
+ - upgrade-insecure-requests
876
+ body:
877
+ encoding: UTF-8
878
+ string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:false:
879
+ condenser_api::get_account_references --- Needs to be refactored for Steem.","data":{"code":10,"name":"assert_exception","message":"Assert
880
+ Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":891,"method":"get_account_references","hostname":"","timestamp":"2022-07-30T23:28:48"},"format":"false:
881
+ condenser_api::get_account_references --- Needs to be refactored for Steem.","data":{}}]}},"id":103}'
882
+ recorded_at: Sat, 30 Jul 2022 23:28:48 GMT
883
+ recorded_with: VCR 6.1.0
@@ -915,4 +915,65 @@ http_interactions:
915
915
  VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"114414073419582","to_withdraw":"114414073419582","withdraw_routes":0,"curation_rewards":4641427,"posting_rewards":23182130,"proxied_vsf_votes":["29584575143530",0,0,0],"witnesses_voted_for":30,"last_post":"2020-10-30T00:54:15","last_root_post":"2020-10-06T17:09:33","last_vote_time":"2020-11-05T17:31:42","post_bandwidth":13323,"pending_claimed_accounts":6,"vesting_balance":"0.000
916
916
  STEEM","reputation":"228558359905202","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":["abit","adsactly-witness","aggroed","anyx","arcange","ausbitbank","beerbot","bue","coingecko","cryptopassion","drakos","emrebeyler","enginewitty","gridcoin.science","gulfwaves.net","ihashfury","lux-witness","pcste","r0nd0n","satren","someguy123","sp-group-witness","steemcreative","steempress","swisswitness","techcoderx","thecryptodrive","thekitchenfairy","travelfeed","whiterosecoffee"],"tags_usage":[],"guest_bloggers":[]}],"id":25}'
917
917
  recorded_at: Sun, 08 Nov 2020 06:00:46 GMT
918
- recorded_with: VCR 6.0.0
918
+ - request:
919
+ method: post
920
+ uri: https://api.steemitdev.com/
921
+ body:
922
+ encoding: UTF-8
923
+ string: '{"jsonrpc":"2.0","id":57,"method":"condenser_api.get_accounts","params":[["inertia"]]}'
924
+ headers:
925
+ Content-Type:
926
+ - application/json; charset=utf-8
927
+ User-Agent:
928
+ - steem-ruby/0.9.8
929
+ Accept-Encoding:
930
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
931
+ Accept:
932
+ - "*/*"
933
+ Host:
934
+ - api.steemit.com
935
+ Content-Length:
936
+ - '75'
937
+ response:
938
+ status:
939
+ code: 200
940
+ message: OK
941
+ headers:
942
+ Date:
943
+ - Sat, 30 Jul 2022 23:22:34 GMT
944
+ Content-Type:
945
+ - application/json
946
+ Transfer-Encoding:
947
+ - chunked
948
+ Connection:
949
+ - keep-alive
950
+ Server:
951
+ - nginx
952
+ X-Jussi-Request-Id:
953
+ - '000713118987050727'
954
+ X-Amzn-Trace-Id:
955
+ - Root=1-62e5bd3a-2dad989a37cb4023208a11a0
956
+ Access-Control-Allow-Origin:
957
+ - "*"
958
+ Access-Control-Allow-Methods:
959
+ - GET, POST, OPTIONS
960
+ Access-Control-Allow-Headers:
961
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
962
+ Strict-Transport-Security:
963
+ - max-age=31557600; includeSubDomains; preload
964
+ Content-Security-Policy:
965
+ - upgrade-insecure-requests
966
+ body:
967
+ encoding: ASCII-8BIT
968
+ string: '{"jsonrpc":"2.0","result":[{"id":19155,"name":"inertia","owner":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM6qpwgqwzaF8E1GsKh28E8HVRzbBdewcimKzLmn1Rjgq7SQoNUa",1]]},"active":{"weight_threshold":1,"account_auths":[],"key_auths":[["STM5ZDoNyBdQbsv44ySnAfNPX8NonL8w8wd97H2r9EGXVhsWN76SP",1]]},"posting":{"weight_threshold":1,"account_auths":[["busy.app",1],["smartsteem",1],["steempeak.app",1],["vimm.app",1]],"key_auths":[["STM5kMzqqFgErmdJvzHBfVyLCsLpGCVkAopdUDL7xcms3PB3VEaF6",1]]},"memo_key":"STM7S7hpaNdDAYM7vqXHQgW5qg5mVKChcAYAdQQfJnfF1rCUG5zQm","json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/i.imgur.com\/LbTz5yg.jpg\",\"cover_image\":\"https:\/\/i.imgur.com\/0ccC6UH.png\",\"name\":\"inertia
969
+ \u24b6\u00b3\",\"about\":\"I can see the fnords.\",\"location\":\"California\",\"website\":\"https:\/\/steemit.com\/@inertia\/profile\",\"dtube_pub\":\"jTizao5TdzSQKi4t9dGgeSE9FZTT5VuxoY14yXLy49tt\"}}","posting_json_metadata":"{\"profile\":{\"profile_image\":\"https:\/\/i.imgur.com\/LbTz5yg.jpg\",\"cover_image\":\"https:\/\/cdn.steemitimages.com\/DQmaj2jQoJKLAb8jcNB2ZzmqVfq9j2qnVppud1u6f7De5Rb\/hive-talent.png\",\"name\":\"inertia
970
+ \u24b6\u00b3\",\"about\":\"I can see the fnords.\",\"location\":\"California\",\"website\":\"https:\/\/hiveonboard.com?ref=inertia\",\"dtube_pub\":\"jTizao5TdzSQKi4t9dGgeSE9FZTT5VuxoY14yXLy49tt\",\"version\":2,\"switchHive\":\"true\"}}","proxy":"","last_owner_update":"2019-04-03T21:49:18","last_account_update":"2021-04-26T17:36:42","created":"2016-07-13T06:44:33","mined":false,"recovery_account":"steempeak","last_account_recovery":"2016-07-21T05:49:33","reset_account":"null","comment_count":0,"lifetime_vote_count":0,"post_count":5016,"can_vote":true,"voting_manabar":{"current_mana":"289685842766","last_update_time":1659220767},"downvote_manabar":{"current_mana":"514810174456","last_update_time":1659220767},"voting_power":1406,"balance":"22.332
971
+ STEEM","savings_balance":"0.000 STEEM","sbd_balance":"0.020 SBD","sbd_seconds":"0","sbd_seconds_last_update":"2021-10-30T07:50:06","sbd_last_interest_payment":"2021-10-30T07:50:06","savings_sbd_balance":"0.000
972
+ SBD","savings_sbd_seconds":"0","savings_sbd_seconds_last_update":"2019-11-02T14:29:45","savings_sbd_last_interest_payment":"2019-11-02T14:29:45","savings_withdraw_requests":0,"reward_sbd_balance":"0.000
973
+ SBD","reward_steem_balance":"0.000 STEEM","reward_vesting_balance":"56167.465221
974
+ VESTS","reward_vesting_steem":"30.722 STEEM","vesting_shares":"117295.640891
975
+ VESTS","delegated_vesting_shares":"93867.151911 VESTS","received_vesting_shares":"2035812.208844
976
+ VESTS","vesting_withdraw_rate":"0.000000 VESTS","next_vesting_withdrawal":"1969-12-31T23:59:59","withdrawn":"165754634150","to_withdraw":"165754634150","withdraw_routes":0,"curation_rewards":4795639,"posting_rewards":23205272,"proxied_vsf_votes":["838060826799",0,0,0],"witnesses_voted_for":30,"last_post":"2021-08-20T15:56:33","last_root_post":"2021-08-20T15:56:33","last_vote_time":"2022-07-30T22:39:27","post_bandwidth":13323,"pending_claimed_accounts":6,"vesting_balance":"0.000
977
+ STEEM","reputation":"227525885010794","transfer_history":[],"market_history":[],"post_history":[],"vote_history":[],"other_history":[],"witness_votes":["abit","adsactly-witness","aggroed","anyx","arcange","ausbitbank","beerbot","bue","coingecko","cryptopassion","drakos","emrebeyler","enginewitty","gridcoin.science","gulfwaves.net","ihashfury","lux-witness","pcste","r0nd0n","satren","someguy123","sp-group-witness","steemcreative","steempress","swisswitness","techcoderx","thecryptodrive","thekitchenfairy","travelfeed","whiterosecoffee"],"tags_usage":[],"guest_bloggers":[]}],"id":57}'
978
+ recorded_at: Sat, 30 Jul 2022 23:22:34 GMT
979
+ recorded_with: VCR 6.1.0
@@ -770,4 +770,114 @@ http_interactions:
770
770
  Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2020-11-08T06:00:36"},"format":"args.size()
771
771
  == 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":12}'
772
772
  recorded_at: Sun, 08 Nov 2020 06:00:36 GMT
773
- recorded_with: VCR 6.0.0
773
+ - request:
774
+ method: post
775
+ uri: https://api.steemitdev.com/
776
+ body:
777
+ encoding: UTF-8
778
+ string: '{"jsonrpc":"2.0","id":56,"method":"condenser_api.get_accounts","params":[]}'
779
+ headers:
780
+ Content-Type:
781
+ - application/json; charset=utf-8
782
+ User-Agent:
783
+ - steem-ruby/0.9.8
784
+ Accept-Encoding:
785
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
786
+ Accept:
787
+ - "*/*"
788
+ Host:
789
+ - api.steemit.com
790
+ Content-Length:
791
+ - '96'
792
+ response:
793
+ status:
794
+ code: 200
795
+ message: OK
796
+ headers:
797
+ Date:
798
+ - Sat, 30 Jul 2022 23:22:34 GMT
799
+ Content-Type:
800
+ - application/json
801
+ Content-Length:
802
+ - '429'
803
+ Connection:
804
+ - keep-alive
805
+ Server:
806
+ - nginx
807
+ X-Jussi-Request-Id:
808
+ - '000225152893877383'
809
+ X-Amzn-Trace-Id:
810
+ - Root=1-62e5bd3a-3037d75423d286e371b6de02
811
+ Access-Control-Allow-Origin:
812
+ - "*"
813
+ Access-Control-Allow-Methods:
814
+ - GET, POST, OPTIONS
815
+ Access-Control-Allow-Headers:
816
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
817
+ Strict-Transport-Security:
818
+ - max-age=31557600; includeSubDomains; preload
819
+ Content-Security-Policy:
820
+ - upgrade-insecure-requests
821
+ body:
822
+ encoding: UTF-8
823
+ string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
824
+ == 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
825
+ Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2022-07-30T23:22:34"},"format":"args.size()
826
+ == 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":56}'
827
+ recorded_at: Sat, 30 Jul 2022 23:22:34 GMT
828
+ - request:
829
+ method: post
830
+ uri: https://api.steemitdev.com/
831
+ body:
832
+ encoding: UTF-8
833
+ string: '{"jsonrpc":"2.0","id":111,"method":"condenser_api.get_accounts","params":[]}'
834
+ headers:
835
+ Content-Type:
836
+ - application/json; charset=utf-8
837
+ User-Agent:
838
+ - steem-ruby/0.9.8
839
+ Accept-Encoding:
840
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
841
+ Accept:
842
+ - "*/*"
843
+ Host:
844
+ - api.steemitdev.com
845
+ Content-Length:
846
+ - '97'
847
+ response:
848
+ status:
849
+ code: 200
850
+ message: OK
851
+ headers:
852
+ Date:
853
+ - Sat, 30 Jul 2022 23:28:52 GMT
854
+ Content-Type:
855
+ - application/json
856
+ Content-Length:
857
+ - '430'
858
+ Connection:
859
+ - keep-alive
860
+ Server:
861
+ - nginx
862
+ X-Jussi-Request-Id:
863
+ - '000542979580802050'
864
+ X-Amzn-Trace-Id:
865
+ - Root=1-62e5beb4-1b0a8d80743b5b0028b3398c
866
+ Access-Control-Allow-Origin:
867
+ - "*"
868
+ Access-Control-Allow-Methods:
869
+ - GET, POST, OPTIONS
870
+ Access-Control-Allow-Headers:
871
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
872
+ Strict-Transport-Security:
873
+ - max-age=31557600; includeSubDomains; preload
874
+ Content-Security-Policy:
875
+ - upgrade-insecure-requests
876
+ body:
877
+ encoding: UTF-8
878
+ string: '{"jsonrpc":"2.0","error":{"code":-32003,"message":"Assert Exception:args.size()
879
+ == 1: Expected #s argument(s), was 0","data":{"code":10,"name":"assert_exception","message":"Assert
880
+ Exception","stack":[{"context":{"level":"error","file":"condenser_api.cpp","line":854,"method":"get_accounts","hostname":"","timestamp":"2022-07-30T23:28:52"},"format":"args.size()
881
+ == 1: Expected #s argument(s), was ${n}","data":{"n":0}}]}},"id":111}'
882
+ recorded_at: Sat, 30 Jul 2022 23:28:53 GMT
883
+ recorded_with: VCR 6.1.0
@@ -890,4 +890,62 @@ http_interactions:
890
890
  VESTS","pending_rewarded_vesting_steem":"350801.918 STEEM","sbd_interest_rate":0,"sbd_print_rate":2300,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":48660014,"recent_slots_filled":"340282366841710300949110269803864522751","participation_count":126,"last_irreversible_block_num":48415989,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":14658128,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2020-11-08T06:43:39","last_budget_time":"2020-11-08T05:43:39","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"14.828
891
891
  SBD","downvote_pool_percent":2500}}'
892
892
  recorded_at: Sun, 08 Nov 2020 06:00:43 GMT
893
- recorded_with: VCR 6.0.0
893
+ - request:
894
+ method: post
895
+ uri: https://api.steemitdev.com/
896
+ body:
897
+ encoding: UTF-8
898
+ string: '{"jsonrpc":"2.0","id":106,"method":"condenser_api.get_dynamic_global_properties","params":[]}'
899
+ headers:
900
+ Content-Type:
901
+ - application/json; charset=utf-8
902
+ User-Agent:
903
+ - steem-ruby/0.9.8
904
+ Accept-Encoding:
905
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
906
+ Accept:
907
+ - "*/*"
908
+ Host:
909
+ - api.steemitdev.com
910
+ Content-Length:
911
+ - '80'
912
+ response:
913
+ status:
914
+ code: 200
915
+ message: OK
916
+ headers:
917
+ Date:
918
+ - Sat, 30 Jul 2022 23:28:49 GMT
919
+ Content-Type:
920
+ - application/json
921
+ Transfer-Encoding:
922
+ - chunked
923
+ Connection:
924
+ - keep-alive
925
+ Server:
926
+ - nginx
927
+ X-Jussi-Request-Id:
928
+ - '000824161165216897'
929
+ X-Amzn-Trace-Id:
930
+ - Root=1-62e5beb1-77cf29ae442822553d8ddb9a
931
+ Access-Control-Allow-Origin:
932
+ - "*"
933
+ Access-Control-Allow-Methods:
934
+ - GET, POST, OPTIONS
935
+ Access-Control-Allow-Headers:
936
+ - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range
937
+ Strict-Transport-Security:
938
+ - max-age=31557600; includeSubDomains; preload
939
+ Content-Security-Policy:
940
+ - upgrade-insecure-requests
941
+ body:
942
+ encoding: ASCII-8BIT
943
+ string: '{"jsonrpc":"2.0","result":{"head_block_number":66379828,"head_block_id":"03f4e0342521746494a3b7bebcba185bf15e8343","time":"2022-07-30T23:28:48","current_witness":"steem-agora","total_pow":514415,"num_pow_witnesses":172,"virtual_supply":"457008178.160
944
+ STEEM","current_supply":"411307361.373 STEEM","confidential_supply":"0.000
945
+ STEEM","init_sbd_supply":"0.000 SBD","current_sbd_supply":"11491347.302 SBD","confidential_sbd_supply":"0.000
946
+ SBD","total_vesting_fund_steem":"157102910.021 STEEM","total_vesting_shares":"283918139943.616774
947
+ VESTS","total_reward_fund_steem":"0.000 STEEM","total_reward_shares2":"0","pending_rewarded_vesting_shares":"1185721245.317807
948
+ VESTS","pending_rewarded_vesting_steem":"627486.228 STEEM","sbd_interest_rate":0,"sbd_print_rate":0,"maximum_block_size":65536,"required_actions_partition_percent":0,"current_aslot":66796176,"recent_slots_filled":"340282366920899777837146939298177613823","participation_count":127,"last_irreversible_block_num":66379811,"vote_power_reserve_rate":10,"delegation_return_period":432000,"reverse_auction_seconds":300,"available_account_subsidies":19822621,"sbd_stop_percent":1000,"sbd_start_percent":900,"next_maintenance_time":"2022-07-31T00:15:30","last_budget_time":"2022-07-30T23:15:30","content_reward_percent":6500,"vesting_reward_percent":1500,"sps_fund_percent":1000,"sps_interval_ledger":"20.405
949
+ SBD","downvote_pool_percent":2500},"id":106}'
950
+ recorded_at: Sat, 30 Jul 2022 23:28:49 GMT
951
+ recorded_with: VCR 6.1.0