wallet_validator 0.5.1 → 0.5.2
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/Gemfile +4 -1
- data/Gemfile.lock +1 -1
- data/lib/wallet_validator/btc.rb +1 -1
- data/lib/wallet_validator/version.rb +1 -1
- data/lib/wallet_validator.rb +2 -0
- 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: 15295c17204bba0e2e00ea90fb8383beb071fe9ea42a7afb53b06db96d81f507
|
4
|
+
data.tar.gz: 8215fb0f6f22f2babd028e1f3ffda1d489940a3d9d6e384b4d1fc747eeb38238
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b922b54aa43e2e9d9a15d3dac510b7859e195df9f6b0e63c56ccb39082288d4297c4f33fcf692a966341f40a1b40b02821075c5952826e8b3977f7e6896c795b
|
7
|
+
data.tar.gz: a68502a493da92660eac4e83eae4ccaf16ad64ed5b2dc315a48119a60038c57dfd2daf8d6a08b7788b44abb1ea28c867fe1fd2e9d0206938a272226027a4f423
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/lib/wallet_validator/btc.rb
CHANGED
data/lib/wallet_validator.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require "cbor"
|
2
2
|
require 'zlib'
|
3
|
+
# require 'pry'
|
3
4
|
|
4
5
|
require "wallet_validator/config"
|
5
6
|
|
@@ -24,6 +25,7 @@ require "wallet_validator/sol"
|
|
24
25
|
require "wallet_validator/xem"
|
25
26
|
require "wallet_validator/sda"
|
26
27
|
require "wallet_validator/matic"
|
28
|
+
require "wallet_validator/bchsv"
|
27
29
|
|
28
30
|
module WalletValidator
|
29
31
|
class UnknownCurrency < StandardError; end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wallet_validator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.5.
|
4
|
+
version: 0.5.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nic
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-07-26 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Write a longer description or delete this line.
|
14
14
|
email:
|
@@ -60,7 +60,7 @@ metadata:
|
|
60
60
|
homepage_uri: https://github.com
|
61
61
|
source_code_uri: https://github.com
|
62
62
|
changelog_uri: https://github.com
|
63
|
-
post_install_message:
|
63
|
+
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|
66
66
|
- lib
|
@@ -75,8 +75,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.1
|
79
|
-
signing_key:
|
78
|
+
rubygems_version: 3.0.3.1
|
79
|
+
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Write a short summary, because RubyGems requires one.
|
82
82
|
test_files: []
|