chainalysis 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: c3559d0827651183fd3adc8bff46df276d1821ee8bf6c16af0be8d7418ad55f5
4
+ data.tar.gz: ea500373a881c4ff215d04f687d0eb0c18aab2e68237facf4576585ce75facb3
5
+ SHA512:
6
+ metadata.gz: da082b2fe769d535bb2967c6e49ad40f70a460fb39378eadf3ec1389707c04e7e67942daee81a12f1d506269dc0936b52aeb356afb86feffdfa00adb6970c7a3
7
+ data.tar.gz: 164c68e2cdea0a703c9887f171c18bcc40c827dbe1eca796faf04820de0e356c919cb9979f4863171cb1c629bd5b69ec547a80dd8b1c07248779ade6fa087b9b
data/.rubocop.yml ADDED
@@ -0,0 +1 @@
1
+ require: rubocop-rspec
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-01-11
4
+
5
+ - Initial release
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2025 Raghav Sood
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,39 @@
1
+ # Chainalysis
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/chainalysis`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ ```bash
14
+ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
15
+ ```
16
+
17
+ If bundler is not being used to manage dependencies, install the gem by executing:
18
+
19
+ ```bash
20
+ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ TODO: Write usage instructions here
26
+
27
+ ## Development
28
+
29
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
+
31
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/chainalysis.
36
+
37
+ ## License
38
+
39
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require 'rubocop/rake_task'
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
data/flake.lock ADDED
@@ -0,0 +1,253 @@
1
+ {
2
+ "nodes": {
3
+ "devenv": {
4
+ "inputs": {
5
+ "flake-compat": "flake-compat",
6
+ "nix": "nix",
7
+ "nixpkgs": "nixpkgs",
8
+ "pre-commit-hooks": "pre-commit-hooks"
9
+ },
10
+ "locked": {
11
+ "lastModified": 1688824367,
12
+ "narHash": "sha256-qHxX0U8K+BvN+P1+ZhPuFMHRL2aCmQxSnXLzzNpTLD0=",
13
+ "owner": "cachix",
14
+ "repo": "devenv",
15
+ "rev": "1e4701fb1f51f8e6fe3b0318fc2b80aed0761914",
16
+ "type": "github"
17
+ },
18
+ "original": {
19
+ "owner": "cachix",
20
+ "repo": "devenv",
21
+ "rev": "1e4701fb1f51f8e6fe3b0318fc2b80aed0761914",
22
+ "type": "github"
23
+ }
24
+ },
25
+ "flake-compat": {
26
+ "flake": false,
27
+ "locked": {
28
+ "lastModified": 1673956053,
29
+ "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
30
+ "owner": "edolstra",
31
+ "repo": "flake-compat",
32
+ "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
33
+ "type": "github"
34
+ },
35
+ "original": {
36
+ "owner": "edolstra",
37
+ "repo": "flake-compat",
38
+ "type": "github"
39
+ }
40
+ },
41
+ "flake-utils": {
42
+ "inputs": {
43
+ "systems": "systems"
44
+ },
45
+ "locked": {
46
+ "lastModified": 1685518550,
47
+ "narHash": "sha256-o2d0KcvaXzTrPRIo0kOLV0/QXHhDQ5DTi+OxcjO8xqY=",
48
+ "owner": "numtide",
49
+ "repo": "flake-utils",
50
+ "rev": "a1720a10a6cfe8234c0e93907ffe81be440f4cef",
51
+ "type": "github"
52
+ },
53
+ "original": {
54
+ "owner": "numtide",
55
+ "repo": "flake-utils",
56
+ "type": "github"
57
+ }
58
+ },
59
+ "gitignore": {
60
+ "inputs": {
61
+ "nixpkgs": [
62
+ "devenv",
63
+ "pre-commit-hooks",
64
+ "nixpkgs"
65
+ ]
66
+ },
67
+ "locked": {
68
+ "lastModified": 1660459072,
69
+ "narHash": "sha256-8DFJjXG8zqoONA1vXtgeKXy68KdJL5UaXR8NtVMUbx8=",
70
+ "owner": "hercules-ci",
71
+ "repo": "gitignore.nix",
72
+ "rev": "a20de23b925fd8264fd7fad6454652e142fd7f73",
73
+ "type": "github"
74
+ },
75
+ "original": {
76
+ "owner": "hercules-ci",
77
+ "repo": "gitignore.nix",
78
+ "type": "github"
79
+ }
80
+ },
81
+ "lowdown-src": {
82
+ "flake": false,
83
+ "locked": {
84
+ "lastModified": 1633514407,
85
+ "narHash": "sha256-Dw32tiMjdK9t3ETl5fzGrutQTzh2rufgZV4A/BbxuD4=",
86
+ "owner": "kristapsdz",
87
+ "repo": "lowdown",
88
+ "rev": "d2c2b44ff6c27b936ec27358a2653caaef8f73b8",
89
+ "type": "github"
90
+ },
91
+ "original": {
92
+ "owner": "kristapsdz",
93
+ "repo": "lowdown",
94
+ "type": "github"
95
+ }
96
+ },
97
+ "nix": {
98
+ "inputs": {
99
+ "lowdown-src": "lowdown-src",
100
+ "nixpkgs": [
101
+ "devenv",
102
+ "nixpkgs"
103
+ ],
104
+ "nixpkgs-regression": "nixpkgs-regression"
105
+ },
106
+ "locked": {
107
+ "lastModified": 1676545802,
108
+ "narHash": "sha256-EK4rZ+Hd5hsvXnzSzk2ikhStJnD63odF7SzsQ8CuSPU=",
109
+ "owner": "domenkozar",
110
+ "repo": "nix",
111
+ "rev": "7c91803598ffbcfe4a55c44ac6d49b2cf07a527f",
112
+ "type": "github"
113
+ },
114
+ "original": {
115
+ "owner": "domenkozar",
116
+ "ref": "relaxed-flakes",
117
+ "repo": "nix",
118
+ "type": "github"
119
+ }
120
+ },
121
+ "nixpkgs": {
122
+ "locked": {
123
+ "lastModified": 1678875422,
124
+ "narHash": "sha256-T3o6NcQPwXjxJMn2shz86Chch4ljXgZn746c2caGxd8=",
125
+ "owner": "NixOS",
126
+ "repo": "nixpkgs",
127
+ "rev": "126f49a01de5b7e35a43fd43f891ecf6d3a51459",
128
+ "type": "github"
129
+ },
130
+ "original": {
131
+ "owner": "NixOS",
132
+ "ref": "nixpkgs-unstable",
133
+ "repo": "nixpkgs",
134
+ "type": "github"
135
+ }
136
+ },
137
+ "nixpkgs-regression": {
138
+ "locked": {
139
+ "lastModified": 1643052045,
140
+ "narHash": "sha256-uGJ0VXIhWKGXxkeNnq4TvV3CIOkUJ3PAoLZ3HMzNVMw=",
141
+ "owner": "NixOS",
142
+ "repo": "nixpkgs",
143
+ "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
144
+ "type": "github"
145
+ },
146
+ "original": {
147
+ "owner": "NixOS",
148
+ "repo": "nixpkgs",
149
+ "rev": "215d4d0fd80ca5163643b03a33fde804a29cc1e2",
150
+ "type": "github"
151
+ }
152
+ },
153
+ "nixpkgs-stable": {
154
+ "locked": {
155
+ "lastModified": 1685801374,
156
+ "narHash": "sha256-otaSUoFEMM+LjBI1XL/xGB5ao6IwnZOXc47qhIgJe8U=",
157
+ "owner": "NixOS",
158
+ "repo": "nixpkgs",
159
+ "rev": "c37ca420157f4abc31e26f436c1145f8951ff373",
160
+ "type": "github"
161
+ },
162
+ "original": {
163
+ "owner": "NixOS",
164
+ "ref": "nixos-23.05",
165
+ "repo": "nixpkgs",
166
+ "type": "github"
167
+ }
168
+ },
169
+ "nixpkgs_2": {
170
+ "locked": {
171
+ "lastModified": 1735821806,
172
+ "narHash": "sha256-cuNapx/uQeCgeuhUhdck3JKbgpsml259sjUQnWM7zW8=",
173
+ "owner": "NixOS",
174
+ "repo": "nixpkgs",
175
+ "rev": "d6973081434f88088e5321f83ebafe9a1167c367",
176
+ "type": "github"
177
+ },
178
+ "original": {
179
+ "owner": "NixOS",
180
+ "ref": "nixpkgs-unstable",
181
+ "repo": "nixpkgs",
182
+ "type": "github"
183
+ }
184
+ },
185
+ "pre-commit-hooks": {
186
+ "inputs": {
187
+ "flake-compat": [
188
+ "devenv",
189
+ "flake-compat"
190
+ ],
191
+ "flake-utils": "flake-utils",
192
+ "gitignore": "gitignore",
193
+ "nixpkgs": [
194
+ "devenv",
195
+ "nixpkgs"
196
+ ],
197
+ "nixpkgs-stable": "nixpkgs-stable"
198
+ },
199
+ "locked": {
200
+ "lastModified": 1688056373,
201
+ "narHash": "sha256-2+SDlNRTKsgo3LBRiMUcoEUb6sDViRNQhzJquZ4koOI=",
202
+ "owner": "cachix",
203
+ "repo": "pre-commit-hooks.nix",
204
+ "rev": "5843cf069272d92b60c3ed9e55b7a8989c01d4c7",
205
+ "type": "github"
206
+ },
207
+ "original": {
208
+ "owner": "cachix",
209
+ "repo": "pre-commit-hooks.nix",
210
+ "type": "github"
211
+ }
212
+ },
213
+ "root": {
214
+ "inputs": {
215
+ "devenv": "devenv",
216
+ "nixpkgs": "nixpkgs_2",
217
+ "systems": "systems_2"
218
+ }
219
+ },
220
+ "systems": {
221
+ "locked": {
222
+ "lastModified": 1681028828,
223
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
224
+ "owner": "nix-systems",
225
+ "repo": "default",
226
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
227
+ "type": "github"
228
+ },
229
+ "original": {
230
+ "owner": "nix-systems",
231
+ "repo": "default",
232
+ "type": "github"
233
+ }
234
+ },
235
+ "systems_2": {
236
+ "locked": {
237
+ "lastModified": 1681028828,
238
+ "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
239
+ "owner": "nix-systems",
240
+ "repo": "default",
241
+ "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
242
+ "type": "github"
243
+ },
244
+ "original": {
245
+ "owner": "nix-systems",
246
+ "repo": "default",
247
+ "type": "github"
248
+ }
249
+ }
250
+ },
251
+ "root": "root",
252
+ "version": 7
253
+ }
data/flake.nix ADDED
@@ -0,0 +1,43 @@
1
+ {
2
+ inputs = {
3
+ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
4
+ systems.url = "github:nix-systems/default";
5
+ devenv.url = "github:cachix/devenv/1e4701fb1f51f8e6fe3b0318fc2b80aed0761914";
6
+ };
7
+
8
+ nixConfig = {
9
+ extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw=";
10
+ extra-substituters = "https://devenv.cachix.org";
11
+ };
12
+
13
+ outputs = { self, nixpkgs, devenv, systems, ... } @ inputs:
14
+ let
15
+ forEachSystem = nixpkgs.lib.genAttrs (import systems);
16
+ in
17
+ {
18
+ devShells = forEachSystem
19
+ (system:
20
+ let
21
+ pkgs = nixpkgs.legacyPackages.${system};
22
+ in
23
+ {
24
+ default = devenv.lib.mkShell {
25
+ inherit inputs pkgs;
26
+ modules = [
27
+ {
28
+ packages = with pkgs; [
29
+ ruby_3_4
30
+
31
+ # Ensure we use openssl 3
32
+ openssl_3
33
+ ];
34
+
35
+ enterShell = ''
36
+ export PATH=$HOME/.gem/ruby/3.4.0/bin:$PATH
37
+ '';
38
+ }
39
+ ];
40
+ };
41
+ });
42
+ };
43
+ }
@@ -0,0 +1,173 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'faraday'
4
+ require 'json'
5
+
6
+ module Chainalysis
7
+ class Error < StandardError; end
8
+ class AuthenticationError < Error; end
9
+ class BadRequestError < Error; end
10
+ class NotFoundError < Error; end
11
+ class RateLimitError < Error; end
12
+ class ApiError < Error; end
13
+
14
+ class Client
15
+ BASE_URL = 'https://api.chainalysis.com/api/kyt'
16
+ ADMIN_URL = 'https://api.chainalysis.com/admin'
17
+ VERSION = '0.1.0'
18
+
19
+ attr_reader :api_key, :adapter
20
+
21
+ def initialize(api_key:, adapter: Faraday.default_adapter, stubs: nil)
22
+ @api_key = api_key
23
+ @adapter = adapter
24
+ @stubs = stubs
25
+ end
26
+
27
+ # Transfer Registration
28
+ def register_transfer(user_id:, network:, asset:, transfer_reference:, direction:, **options)
29
+ post_request(
30
+ "v2/users/#{user_id}/transfers",
31
+ {
32
+ network: network,
33
+ asset: asset,
34
+ transferReference: transfer_reference,
35
+ direction: direction,
36
+ **options
37
+ }
38
+ )
39
+ end
40
+
41
+ # Withdrawal Attempt Registration
42
+ def register_withdrawal_attempt(user_id:, network:, asset:, address:, attempt_identifier:, asset_amount:,
43
+ attempt_timestamp:, **options)
44
+ post_request(
45
+ "v2/users/#{user_id}/withdrawal-attempts",
46
+ {
47
+ network: network,
48
+ asset: asset,
49
+ address: address,
50
+ attemptIdentifier: attempt_identifier,
51
+ assetAmount: asset_amount,
52
+ attemptTimestamp: attempt_timestamp,
53
+ **options
54
+ }
55
+ )
56
+ end
57
+
58
+ # Transfer Endpoints
59
+ def get_transfer(external_id:, format_type: nil)
60
+ params = { format_type: format_type } if format_type
61
+ get_request("v2/transfers/#{external_id}", params)
62
+ end
63
+
64
+ def get_transfer_exposures(external_id:)
65
+ get_request("v2/transfers/#{external_id}/exposures")
66
+ end
67
+
68
+ def get_transfer_alerts(external_id:)
69
+ get_request("v2/transfers/#{external_id}/alerts")
70
+ end
71
+
72
+ def get_transfer_network_identifications(external_id:)
73
+ get_request("v2/transfers/#{external_id}/network-identifications")
74
+ end
75
+
76
+ # Withdrawal Attempt Endpoints
77
+ def get_withdrawal_attempt(external_id:, format_type: nil)
78
+ params = { format_type: format_type } if format_type
79
+ get_request("v2/withdrawal-attempts/#{external_id}", params)
80
+ end
81
+
82
+ def get_withdrawal_attempt_exposures(external_id:)
83
+ get_request("v2/withdrawal-attempts/#{external_id}/exposures")
84
+ end
85
+
86
+ def get_withdrawal_attempt_alerts(external_id:)
87
+ get_request("v2/withdrawal-attempts/#{external_id}/alerts")
88
+ end
89
+
90
+ def get_withdrawal_attempt_high_risk_addresses(external_id:)
91
+ get_request("v2/withdrawal-attempts/#{external_id}/high-risk-addresses")
92
+ end
93
+
94
+ def get_withdrawal_attempt_network_identifications(external_id:)
95
+ get_request("v2/withdrawal-attempts/#{external_id}/network-identifications")
96
+ end
97
+
98
+ # Categories
99
+ def get_categories
100
+ get_request('v2/categories')
101
+ end
102
+
103
+ # Administration
104
+ def get_internal_users
105
+ get_request('organization/users', admin: true)
106
+ end
107
+
108
+ private
109
+
110
+ def client
111
+ @client ||= Faraday.new(url: BASE_URL) do |conn|
112
+ conn.headers['Token'] = api_key
113
+ conn.headers['Accept'] = 'application/json'
114
+ conn.headers['Content-Type'] = 'application/json'
115
+
116
+ conn.adapter adapter, @stubs
117
+ end
118
+ end
119
+
120
+ def admin_client
121
+ @admin_client ||= Faraday.new(url: ADMIN_URL) do |conn|
122
+ conn.headers['Token'] = api_key
123
+ conn.headers['Accept'] = 'application/json'
124
+ conn.headers['Content-Type'] = 'application/json'
125
+
126
+ conn.adapter adapter, @stubs
127
+ end
128
+ end
129
+
130
+ def handle_response(response)
131
+ case response.status
132
+ when 200, 201, 202
133
+ return {} if response.body.empty?
134
+
135
+ JSON.parse(response.body)
136
+ when 400
137
+ raise BadRequestError, error_message(response)
138
+ when 403
139
+ raise AuthenticationError, error_message(response)
140
+ when 404
141
+ raise NotFoundError, error_message(response)
142
+ when 429
143
+ raise RateLimitError, error_message(response)
144
+ else
145
+ raise ApiError, error_message(response)
146
+ end
147
+ end
148
+
149
+ def error_message(response)
150
+ return response.body if response.body.empty?
151
+
152
+ error = JSON.parse(response.body)
153
+ error['message'] || error['error'] || response.body
154
+ rescue JSON::ParserError
155
+ response.body
156
+ end
157
+
158
+ def get_request(url, params = {}, admin: false)
159
+ client = admin ? admin_client : self.client
160
+ response = client.get(url) do |req|
161
+ req.params = params if params
162
+ end
163
+ handle_response(response)
164
+ end
165
+
166
+ def post_request(url, body = {})
167
+ response = client.post(url) do |req|
168
+ req.body = JSON.generate(body) unless body.empty?
169
+ end
170
+ handle_response(response)
171
+ end
172
+ end
173
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Chainalysis
4
+ VERSION = '0.1.0'
5
+ end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative 'chainalysis/version'
4
+
5
+ module Chainalysis
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
@@ -0,0 +1,4 @@
1
+ module Chainalysis
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,87 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chainalysis
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Raghav Sood
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2025-01-11 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: faraday
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.12'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.12'
27
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '2.9'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '2.9'
41
+ description: A Ruby client for the Chainalysis API, allowing you to interact with
42
+ Chainalysis's blockchain analysis tools.
43
+ email:
44
+ - r@raghavsood.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".rubocop.yml"
50
+ - CHANGELOG.md
51
+ - LICENSE.txt
52
+ - README.md
53
+ - Rakefile
54
+ - flake.lock
55
+ - flake.nix
56
+ - lib/chainalysis.rb
57
+ - lib/chainalysis/client.rb
58
+ - lib/chainalysis/version.rb
59
+ - sig/chainalysis.rbs
60
+ homepage: https://github.com/RaghavSood/chainalysis.rb
61
+ licenses:
62
+ - MIT
63
+ metadata:
64
+ allowed_push_host: https://rubygems.org
65
+ homepage_uri: https://github.com/RaghavSood/chainalysis.rb
66
+ source_code_uri: https://github.com/RaghavSood/chainalysis.rb
67
+ changelog_uri: https://github.com/RaghavSood/chainalysis.rb/blob/master/CHANGELOG.md
68
+ post_install_message:
69
+ rdoc_options: []
70
+ require_paths:
71
+ - lib
72
+ required_ruby_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: 3.1.0
77
+ required_rubygems_version: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - ">="
80
+ - !ruby/object:Gem::Version
81
+ version: '0'
82
+ requirements: []
83
+ rubygems_version: 3.5.22
84
+ signing_key:
85
+ specification_version: 4
86
+ summary: Ruby client for the Chainalysis API
87
+ test_files: []