wallet_validator 0.4.4 → 0.4.7

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 62df34f52cd15408080c248728737ddb9cd091b87e812b987332f6e74d10f32f
4
- data.tar.gz: c68015b87a9982cd45a67bd7283861dffb6a1904fb5377a07b9cbb643dc46d88
3
+ metadata.gz: f854c60e8703772e7e248615c1f290c0d4356b9024dbe645695e027e0101915e
4
+ data.tar.gz: 2382026f098d2d534cf36ffd4fe110fc133d11c11c771ad5edc6c99720efd183
5
5
  SHA512:
6
- metadata.gz: d57a6dfb2572802af15eb7769fe66b2109460d62af177b41b9e5d3564b47d4cdb4c877b728b1a04fcf36a8d79b94902aaff9b1c48973896ee8556514790c2734
7
- data.tar.gz: 4cdb5f619afa1a1db0ff9ebc5bf65946890e3890e026dbc4eb94199954e7cc69461788bf6eef3a56e6eade759ba88dcb44b2a8668051f5bc4bdee7b7126dc21d
6
+ metadata.gz: b839547995be6c2671565ec1fcfa761923706dbeef1fbbac1ea270613ea042bbc7f3f5b62d2b3d25f352e6588339ab04a3069986c174c0e4a64308a8edd7f251
7
+ data.tar.gz: fbe3247a34542d9a95043ecd44fab06d8f1f688df2d88776a641e88248780b1fbbc30aae130d1e83098a054c80a4fa64d58be6881c01d22797dc4917c8f575f6
data/Gemfile CHANGED
@@ -5,6 +5,6 @@ gemspec
5
5
 
6
6
  gem "rake", "~> 12.0"
7
7
  gem "rspec", "~> 3.0"
8
- gem "digest-sha3"
8
+ gem 'keccak', '~> 1.2'
9
9
  gem "base58"
10
10
  gem "cbor"
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- wallet_validator (0.4.3)
4
+ wallet_validator (0.4.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -9,7 +9,7 @@ GEM
9
9
  base58 (0.2.3)
10
10
  cbor (0.5.9.6)
11
11
  diff-lcs (1.4.4)
12
- digest-sha3 (1.1.0)
12
+ keccak (1.2.2)
13
13
  rake (12.3.3)
14
14
  rspec (3.10.0)
15
15
  rspec-core (~> 3.10.0)
@@ -31,7 +31,7 @@ PLATFORMS
31
31
  DEPENDENCIES
32
32
  base58
33
33
  cbor
34
- digest-sha3
34
+ keccak (~> 1.2)
35
35
  rake (~> 12.0)
36
36
  rspec (~> 3.0)
37
37
  wallet_validator!
@@ -0,0 +1,5 @@
1
+
2
+ module WalletValidator
3
+ class Bsc < Eth
4
+ end
5
+ end
@@ -1,4 +1,4 @@
1
- require "digest"
1
+ require "digest/sha3"
2
2
 
3
3
  module WalletValidator
4
4
  class Eth
@@ -51,4 +51,4 @@ module WalletValidator
51
51
  end
52
52
  end
53
53
  end
54
- end
54
+ end
@@ -1,3 +1,3 @@
1
1
  module WalletValidator
2
- VERSION = "0.4.4"
2
+ VERSION = "0.4.7"
3
3
  end
@@ -11,6 +11,7 @@ require "wallet_validator/version"
11
11
  require "wallet_validator/btc"
12
12
  require "wallet_validator/eos"
13
13
  require "wallet_validator/eth"
14
+ require "wallet_validator/bsc"
14
15
  require "wallet_validator/xrp"
15
16
  require "wallet_validator/doge"
16
17
  require "wallet_validator/ltc"
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.4.4
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nic
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-25 00:00:00.000000000 Z
11
+ date: 2022-05-06 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Write a longer description or delete this line.
14
14
  email:
@@ -34,6 +34,7 @@ files:
34
34
  - lib/wallet_validator/bch.rb
35
35
  - lib/wallet_validator/bchsv.rb
36
36
  - lib/wallet_validator/bnb.rb
37
+ - lib/wallet_validator/bsc.rb
37
38
  - lib/wallet_validator/btc.rb
38
39
  - lib/wallet_validator/config.rb
39
40
  - lib/wallet_validator/crypto/base32.rb