bip44-extended 0.2.20 → 0.2.21

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5a6ea939610141ee2f4667a22ab2c76eaaaaf0e1cff85d5082d76f56f18cd80
4
- data.tar.gz: ca3b5d17329f02f2b7678f26610e55d5c5c6bde73bed52107c3115182b466078
3
+ metadata.gz: 025222e6e51754426e58a86daa3179f07f32c7986429a7dabbbf2fd3dbf3bb56
4
+ data.tar.gz: 7060610e334b1441e9457fc07576e6e2e2fd5ebeecee70b52354141eba0dfbc2
5
5
  SHA512:
6
- metadata.gz: 538fa11cd2223fe3cdd0966819ccb0f9f85e5d65d6d9b8d86b6e10893781230d19907543700ce975f5cf4dcd91fc5d2b20ef494c762ec6e59d0ab3068aaf2cdf
7
- data.tar.gz: a2b7d183802f76f0e5cb0caedc337fafeef4bca1282e0ed156c8a8e7942e574224ecbfb2e5fd243beb616d2f0fca1fe3343001527a27ea07ca63fa2b1499b0d6
6
+ metadata.gz: 9fc0d4d819f25a09301b4ac0d753ccb9810ea20aa2d8ca8439c34f11ad7012ee359f9531a36c2f1369357921b82180fba00e8d6562651369e2e0d6cb26f1c446
7
+ data.tar.gz: 481ab978bcbdc789a493d8507074ba63117e1bc96c3b8a1f6ce10c375ae6a5c399c2b057c7da5da3026bc7dccb0fd2601235799b4950e61e735b9c94ec3d23e6
Binary file
@@ -1,3 +1,3 @@
1
1
  module Bip44
2
- VERSION = "0.2.20"
2
+ VERSION = "0.2.21"
3
3
  end
@@ -8,6 +8,9 @@ module Bip44
8
8
  class Wallet
9
9
  include Bip44::Bitcoin
10
10
  include Bip44::Ethereum
11
+ include Bip44::BitcoinCash
12
+ include Bip44::Litecoin
13
+ include Bip44::Zcoin
11
14
 
12
15
  def self.from_seed(seed, path)
13
16
  master = MoneyTree::Master.new(seed_hex: seed) # 3. 种子用于使用 HMAC-SHA512 生成根私钥(参见 BIP32)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bip44-extended
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.20
4
+ version: 0.2.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - wuminzhe, nikharR
@@ -175,6 +175,7 @@ files:
175
175
  - Rakefile
176
176
  - bin/console
177
177
  - bin/setup
178
+ - bip44-extended-0.2.20.gem
178
179
  - bip44.gemspec
179
180
  - lib/bip44.rb
180
181
  - lib/bip44/bitcoin.rb