ethereum_bip44 0.2.2 → 0.2.3
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/README.md +1 -1
- data/ethereum_bip44.gemspec +1 -1
- data/lib/ethereum_bip44.rb +2 -0
- data/lib/ethereum_bip44/bitcoin.rb +8 -0
- data/lib/ethereum_bip44/ethereum.rb +18 -0
- data/lib/ethereum_bip44/version.rb +1 -1
- data/lib/ethereum_bip44/wallet.rb +2 -20
- metadata +4 -8
- data/.idea/.rakeTasks +0 -7
- data/.idea/ethereum_bip44.iml +0 -19
- data/.idea/misc.xml +0 -4
- data/.idea/modules.xml +0 -8
- data/.idea/vcs.xml +0 -6
- data/.idea/workspace.xml +0 -524
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2b60a4214cc32d88a68239ff6c88dab20d4e41ad
|
4
|
+
data.tar.gz: a99b22183bd64ef45de6155ec68dffb3a6539b5c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a11d05f96813cb13c7ff36ddf2beaa32cfca1ec23a23d1132d79b799863c823ccbabbdd40513ef748d74732ca1cc1e8c4614b8535fbec39cd3746d659f5aa4c1
|
7
|
+
data.tar.gz: d24929a3e68b0ce5c16cb5d79a65e9b710652dae5e2eb7cf6a8d7f84765d0ef7103753b1fbe0a0c6ea475d0820cea934f0078c96e15010b0d5d8fa76115c2171
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
A ruby library to generate Ethereum addresses from a hierarchical deterministic wallet according to the [BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) standard.
|
4
4
|
|
5
|
-
Internally it uses [money-tree](https://github.com/GemHQ/money-tree) for the deterministic private and public keys which allows to use many additional features like deriving
|
5
|
+
Internally it uses [money-tree](https://github.com/GemHQ/money-tree) for the deterministic private and public keys which allows to use many additional features like deriving address from mnemonic backups (BIP32).
|
6
6
|
|
7
7
|
Compatible with most hd wallet client like: imToken,MetaMask,Jaxx,MyEtherWallet,TREZOR,Exodus...
|
8
8
|
|
data/ethereum_bip44.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
|
12
12
|
spec.summary = "A ruby library to generate Ethereum addresses from a hierarchical deterministic wallet according to the BIP44 standard."
|
13
13
|
spec.description = "A ruby library to generate Ethereum addresses from a hierarchical deterministic wallet according to the BIP44 standard."
|
14
|
-
spec.homepage = "https://github.com/wuminzhe/
|
14
|
+
spec.homepage = "https://github.com/wuminzhe/ethereum_bip44.rb"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
17
17
|
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
data/lib/ethereum_bip44.rb
CHANGED
@@ -0,0 +1,18 @@
|
|
1
|
+
module EthereumBip44
|
2
|
+
module Ethereum
|
3
|
+
def get_ethereum_address(index)
|
4
|
+
node = @wallet_node.node_for_path("M/0/#{index}")
|
5
|
+
|
6
|
+
# from bitcoin public key to ethereum public key
|
7
|
+
group = ECDSA::Group::Secp256k1
|
8
|
+
public_key = ECDSA::Format::PointOctetString.decode(node.public_key.to_bytes, group) # a point
|
9
|
+
ethereum_public = public_key.x.to_s(16) + public_key.y.to_s(16)
|
10
|
+
|
11
|
+
# from ethereum public key to ethereum address
|
12
|
+
bytes = EthereumBip44::Utils.hex_to_bin(ethereum_public)
|
13
|
+
address_bytes = Digest::SHA3.new(256).digest(bytes)[-20..-1]
|
14
|
+
address = EthereumBip44::Utils.bin_to_hex(address_bytes)
|
15
|
+
EthereumBip44::Utils.prefix_hex(address)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -6,6 +6,8 @@ module EthereumBip44
|
|
6
6
|
# "0" # 0 - public, 1 = private
|
7
7
|
# "0" # index
|
8
8
|
class Wallet
|
9
|
+
include EthereumBip44::Bitcoin
|
10
|
+
include EthereumBip44::Ethereum
|
9
11
|
|
10
12
|
def self.from_seed(seed, path)
|
11
13
|
master = MoneyTree::Master.new(seed_hex: seed) # 3. 种子用于使用 HMAC-SHA512 生成根私钥(参见 BIP32)
|
@@ -31,26 +33,6 @@ module EthereumBip44
|
|
31
33
|
@wallet_node.to_bip32(:private)
|
32
34
|
end
|
33
35
|
|
34
|
-
def get_bitcoin_address(index)
|
35
|
-
node = @wallet_node.node_for_path("M/0/#{index}")
|
36
|
-
node.to_address
|
37
|
-
end
|
38
|
-
|
39
|
-
def get_ethereum_address(index)
|
40
|
-
node = @wallet_node.node_for_path("M/0/#{index}")
|
41
|
-
|
42
|
-
# from bitcoin public key to ethereum public key
|
43
|
-
group = ECDSA::Group::Secp256k1
|
44
|
-
public_key = ECDSA::Format::PointOctetString.decode(node.public_key.to_bytes, group) # a point
|
45
|
-
ethereum_public = public_key.x.to_s(16) + public_key.y.to_s(16)
|
46
|
-
|
47
|
-
# from ethereum public key to ethereum address
|
48
|
-
bytes = EthereumBip44::Utils.hex_to_bin(ethereum_public)
|
49
|
-
address_bytes = Digest::SHA3.new(256).digest(bytes)[-20..-1]
|
50
|
-
address = EthereumBip44::Utils.bin_to_hex(address_bytes)
|
51
|
-
EthereumBip44::Utils.prefix_hex(address)
|
52
|
-
end
|
53
|
-
|
54
36
|
private
|
55
37
|
|
56
38
|
def initialize(wallet_node)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ethereum_bip44
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- wuminzhe
|
@@ -132,12 +132,6 @@ extra_rdoc_files: []
|
|
132
132
|
files:
|
133
133
|
- ".DS_Store"
|
134
134
|
- ".gitignore"
|
135
|
-
- ".idea/.rakeTasks"
|
136
|
-
- ".idea/ethereum_bip44.iml"
|
137
|
-
- ".idea/misc.xml"
|
138
|
-
- ".idea/modules.xml"
|
139
|
-
- ".idea/vcs.xml"
|
140
|
-
- ".idea/workspace.xml"
|
141
135
|
- ".travis.yml"
|
142
136
|
- CODE_OF_CONDUCT.md
|
143
137
|
- Gemfile
|
@@ -148,10 +142,12 @@ files:
|
|
148
142
|
- bin/setup
|
149
143
|
- ethereum_bip44.gemspec
|
150
144
|
- lib/ethereum_bip44.rb
|
145
|
+
- lib/ethereum_bip44/bitcoin.rb
|
146
|
+
- lib/ethereum_bip44/ethereum.rb
|
151
147
|
- lib/ethereum_bip44/utils.rb
|
152
148
|
- lib/ethereum_bip44/version.rb
|
153
149
|
- lib/ethereum_bip44/wallet.rb
|
154
|
-
homepage: https://github.com/wuminzhe/
|
150
|
+
homepage: https://github.com/wuminzhe/ethereum_bip44.rb
|
155
151
|
licenses:
|
156
152
|
- MIT
|
157
153
|
metadata: {}
|
data/.idea/.rakeTasks
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<Settings><!--This file was automatically generated by Ruby plugin.
|
3
|
-
You are allowed to:
|
4
|
-
1. Remove rake task
|
5
|
-
2. Add existing rake tasks
|
6
|
-
To add existing rake tasks automatically delete this file and reload the project.
|
7
|
-
--><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build ethereum_bip44-0.1.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install ethereum_bip44-0.1.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install ethereum_bip44-0.1.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v0.1.0 and build and push ethereum_bip44-0.1.0.gem to Rubygems" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run tests" fullCmd="test" taksId="test" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
|
data/.idea/ethereum_bip44.iml
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<module type="RUBY_MODULE" version="4">
|
3
|
-
<component name="ModuleRunConfigurationManager">
|
4
|
-
<shared />
|
5
|
-
</component>
|
6
|
-
<component name="NewModuleRootManager">
|
7
|
-
<content url="file://$MODULE_DIR$" />
|
8
|
-
<orderEntry type="jdk" jdkName="RVM: ruby-2.4.1" jdkType="RUBY_SDK" />
|
9
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
-
<orderEntry type="library" scope="PROVIDED" name="btcruby (v1.7, RVM: ruby-2.4.1) [gem]" level="application" />
|
11
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v1.15.1, RVM: ruby-2.4.1) [gem]" level="application" />
|
12
|
-
<orderEntry type="library" scope="PROVIDED" name="digest-sha3 (v1.1.0, RVM: ruby-2.4.1) [gem]" level="application" />
|
13
|
-
<orderEntry type="library" scope="PROVIDED" name="ecdsa (v1.2.0, RVM: ruby-2.4.1) [gem]" level="application" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="ffi (v1.9.18, RVM: ruby-2.4.1) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.10.3, RVM: ruby-2.4.1) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.4.1) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="rlp (v0.7.3, RVM: ruby-2.4.1) [gem]" level="application" />
|
18
|
-
</component>
|
19
|
-
</module>
|
data/.idea/misc.xml
DELETED
data/.idea/modules.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ProjectModuleManager">
|
4
|
-
<modules>
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/ethereum_bip44.iml" filepath="$PROJECT_DIR$/.idea/ethereum_bip44.iml" />
|
6
|
-
</modules>
|
7
|
-
</component>
|
8
|
-
</project>
|
data/.idea/vcs.xml
DELETED
data/.idea/workspace.xml
DELETED
@@ -1,524 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<project version="4">
|
3
|
-
<component name="ChangeListManager">
|
4
|
-
<list default="true" id="6adfe41e-75d6-4c9f-94a7-6cf45e8f0229" name="Default" comment="">
|
5
|
-
<change type="MODIFICATION" beforePath="$PROJECT_DIR$/.idea/workspace.xml" afterPath="$PROJECT_DIR$/.idea/workspace.xml" />
|
6
|
-
</list>
|
7
|
-
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
8
|
-
<option name="TRACKING_ENABLED" value="true" />
|
9
|
-
<option name="SHOW_DIALOG" value="false" />
|
10
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
11
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
12
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
13
|
-
</component>
|
14
|
-
<component name="CoverageDataManager">
|
15
|
-
<SUITE FILE_PATH="coverage/ethereum_bip44@test_it_can_create_a_new_wallet_from_private_seed__ethereum_bip44.coverage" NAME="test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44 Coverage Results" MODIFIED="1509688495888" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="ethereum_bip44" />
|
16
|
-
<SUITE FILE_PATH="coverage/ethereum_bip44@test_it_can_generate_same_address_from_different_way__ethereum_bip44.coverage" NAME="test_it_can_generate_same_address_from_different_way: ethereum_bip44 Coverage Results" MODIFIED="1509688457054" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="ethereum_bip44" />
|
17
|
-
<SUITE FILE_PATH="coverage/ethereum_bip44@test_it_can_create_a_new_wallet_from_public_seed__ethereum_bip44.coverage" NAME="test_it_can_create_a_new_wallet_from_public_seed: ethereum_bip44 Coverage Results" MODIFIED="1509687021066" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="ethereum_bip44" />
|
18
|
-
<SUITE FILE_PATH="coverage/ethereum_bip44@Run_test__ethereum_bip44_test___ethereum_bip44.coverage" NAME="Run test 'ethereum_bip44_test': ethereum_bip44 Coverage Results" MODIFIED="1509687553195" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="ethereum_bip44" />
|
19
|
-
<SUITE FILE_PATH="coverage/ethereum_bip44@test_it_can_create_a_new_wallet__ethereum_bip44.coverage" NAME="test_it_can_create_a_new_wallet: ethereum_bip44 Coverage Results" MODIFIED="1509687010786" SOURCE_PROVIDER="com.intellij.coverage.DefaultCoverageFileProvider" RUNNER="rcov" COVERAGE_BY_TEST_ENABLED="true" COVERAGE_TRACING_ENABLED="false" WORKING_DIRECTORY="$PROJECT_DIR$" MODULE_NAME="ethereum_bip44" />
|
20
|
-
</component>
|
21
|
-
<component name="FileEditorManager">
|
22
|
-
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
23
|
-
<file leaf-file-name="ethereum_bip44.rb" pinned="false" current-in-tab="false">
|
24
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44.rb">
|
25
|
-
<provider selected="true" editor-type-id="text-editor">
|
26
|
-
<state relative-caret-position="1064">
|
27
|
-
<caret line="56" column="6" lean-forward="false" selection-start-line="56" selection-start-column="6" selection-end-line="56" selection-end-column="6" />
|
28
|
-
<folding />
|
29
|
-
</state>
|
30
|
-
</provider>
|
31
|
-
</entry>
|
32
|
-
</file>
|
33
|
-
<file leaf-file-name="utils.rb" pinned="false" current-in-tab="false">
|
34
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/utils.rb">
|
35
|
-
<provider selected="true" editor-type-id="text-editor">
|
36
|
-
<state relative-caret-position="19">
|
37
|
-
<caret line="1" column="14" lean-forward="false" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="14" />
|
38
|
-
<folding />
|
39
|
-
</state>
|
40
|
-
</provider>
|
41
|
-
</entry>
|
42
|
-
</file>
|
43
|
-
<file leaf-file-name="version.rb" pinned="false" current-in-tab="false">
|
44
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/version.rb">
|
45
|
-
<provider selected="true" editor-type-id="text-editor">
|
46
|
-
<state relative-caret-position="0">
|
47
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
48
|
-
<folding />
|
49
|
-
</state>
|
50
|
-
</provider>
|
51
|
-
</entry>
|
52
|
-
</file>
|
53
|
-
<file leaf-file-name="ethereum_bip44.gemspec" pinned="false" current-in-tab="false">
|
54
|
-
<entry file="file://$PROJECT_DIR$/ethereum_bip44.gemspec">
|
55
|
-
<provider selected="true" editor-type-id="text-editor">
|
56
|
-
<state relative-caret-position="399">
|
57
|
-
<caret line="21" column="30" lean-forward="false" selection-start-line="21" selection-start-column="30" selection-end-line="21" selection-end-column="30" />
|
58
|
-
<folding />
|
59
|
-
</state>
|
60
|
-
</provider>
|
61
|
-
</entry>
|
62
|
-
</file>
|
63
|
-
<file leaf-file-name="ethereum_bip44_test.rb" pinned="false" current-in-tab="true">
|
64
|
-
<entry file="file://$PROJECT_DIR$/test/ethereum_bip44_test.rb">
|
65
|
-
<provider selected="true" editor-type-id="text-editor">
|
66
|
-
<state relative-caret-position="266">
|
67
|
-
<caret line="14" column="5" lean-forward="false" selection-start-line="14" selection-start-column="5" selection-end-line="14" selection-end-column="5" />
|
68
|
-
<folding />
|
69
|
-
</state>
|
70
|
-
</provider>
|
71
|
-
</entry>
|
72
|
-
</file>
|
73
|
-
</leaf>
|
74
|
-
</component>
|
75
|
-
<component name="FileTemplateManagerImpl">
|
76
|
-
<option name="RECENT_TEMPLATES">
|
77
|
-
<list>
|
78
|
-
<option value="Ruby Class Template" />
|
79
|
-
</list>
|
80
|
-
</option>
|
81
|
-
</component>
|
82
|
-
<component name="Git.Settings">
|
83
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
|
84
|
-
</component>
|
85
|
-
<component name="IdeDocumentHistory">
|
86
|
-
<option name="CHANGED_PATHS">
|
87
|
-
<list>
|
88
|
-
<option value="$PROJECT_DIR$/lib/ethereum_bip44/utils.rb" />
|
89
|
-
<option value="$PROJECT_DIR$/lib/ethereum_bip44.rb" />
|
90
|
-
<option value="$PROJECT_DIR$/test/ethereum_bip44_test.rb" />
|
91
|
-
<option value="$PROJECT_DIR$/ethereum_bip44.gemspec" />
|
92
|
-
<option value="$PROJECT_DIR$/README.md" />
|
93
|
-
</list>
|
94
|
-
</option>
|
95
|
-
</component>
|
96
|
-
<component name="JsBuildToolGruntFileManager" detection-done="true" sorting="DEFINITION_ORDER" />
|
97
|
-
<component name="JsBuildToolPackageJson" detection-done="true" sorting="DEFINITION_ORDER" />
|
98
|
-
<component name="JsGulpfileManager">
|
99
|
-
<detection-done>true</detection-done>
|
100
|
-
<sorting>DEFINITION_ORDER</sorting>
|
101
|
-
</component>
|
102
|
-
<component name="ProjectFrameBounds" extendedState="6">
|
103
|
-
<option name="y" value="23" />
|
104
|
-
<option name="width" value="1680" />
|
105
|
-
<option name="height" value="1023" />
|
106
|
-
</component>
|
107
|
-
<component name="ProjectLevelVcsManager" settingsEditedManually="true" />
|
108
|
-
<component name="ProjectView">
|
109
|
-
<navigator currentView="ProjectPane" proportions="" version="1">
|
110
|
-
<flattenPackages />
|
111
|
-
<showMembers />
|
112
|
-
<showModules />
|
113
|
-
<showLibraryContents />
|
114
|
-
<hideEmptyPackages />
|
115
|
-
<abbreviatePackageNames />
|
116
|
-
<autoscrollToSource />
|
117
|
-
<autoscrollFromSource />
|
118
|
-
<sortByType />
|
119
|
-
<manualOrder />
|
120
|
-
<foldersAlwaysOnTop value="true" />
|
121
|
-
</navigator>
|
122
|
-
<panes>
|
123
|
-
<pane id="Scratches" />
|
124
|
-
<pane id="ProjectPane">
|
125
|
-
<subPane>
|
126
|
-
<expand>
|
127
|
-
<path>
|
128
|
-
<item name="ethereum_bip44" type="b2602c69:ProjectViewProjectNode" />
|
129
|
-
<item name="ethereum_bip44" type="462c0819:PsiDirectoryNode" />
|
130
|
-
</path>
|
131
|
-
<path>
|
132
|
-
<item name="ethereum_bip44" type="b2602c69:ProjectViewProjectNode" />
|
133
|
-
<item name="ethereum_bip44" type="462c0819:PsiDirectoryNode" />
|
134
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
135
|
-
</path>
|
136
|
-
<path>
|
137
|
-
<item name="ethereum_bip44" type="b2602c69:ProjectViewProjectNode" />
|
138
|
-
<item name="ethereum_bip44" type="462c0819:PsiDirectoryNode" />
|
139
|
-
<item name="lib" type="462c0819:PsiDirectoryNode" />
|
140
|
-
<item name="ethereum_bip44" type="462c0819:PsiDirectoryNode" />
|
141
|
-
</path>
|
142
|
-
<path>
|
143
|
-
<item name="ethereum_bip44" type="b2602c69:ProjectViewProjectNode" />
|
144
|
-
<item name="ethereum_bip44" type="462c0819:PsiDirectoryNode" />
|
145
|
-
<item name="test" type="462c0819:PsiDirectoryNode" />
|
146
|
-
</path>
|
147
|
-
</expand>
|
148
|
-
<select />
|
149
|
-
</subPane>
|
150
|
-
</pane>
|
151
|
-
<pane id="Scope" />
|
152
|
-
</panes>
|
153
|
-
</component>
|
154
|
-
<component name="PropertiesComponent">
|
155
|
-
<property name="nodejs_interpreter_path" value="/usr/local/bin/node" />
|
156
|
-
<property name="WebServerToolWindowFactoryState" value="false" />
|
157
|
-
</component>
|
158
|
-
<component name="RunDashboard">
|
159
|
-
<option name="ruleStates">
|
160
|
-
<list>
|
161
|
-
<RuleState>
|
162
|
-
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
163
|
-
</RuleState>
|
164
|
-
<RuleState>
|
165
|
-
<option name="name" value="StatusDashboardGroupingRule" />
|
166
|
-
</RuleState>
|
167
|
-
</list>
|
168
|
-
</option>
|
169
|
-
</component>
|
170
|
-
<component name="RunManager" selected="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44">
|
171
|
-
<configuration name="Run test 'ethereum_bip44_test': ethereum_bip44" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
172
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
173
|
-
<module name="ethereum_bip44" />
|
174
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
|
175
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
176
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
177
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
178
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
179
|
-
<envs>
|
180
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
181
|
-
</envs>
|
182
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
183
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
184
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
185
|
-
<COVERAGE_PATTERN ENABLED="true">
|
186
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
187
|
-
</COVERAGE_PATTERN>
|
188
|
-
</EXTENSION>
|
189
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
190
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/ethereum_bip44_test.rb" />
|
191
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
192
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="" />
|
193
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_SCRIPT" />
|
194
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
195
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
196
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
197
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
198
|
-
</configuration>
|
199
|
-
<configuration name="test_it_can_create_a_new_wallet: ethereum_bip44" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
200
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
201
|
-
<module name="ethereum_bip44" />
|
202
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
|
203
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
204
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
205
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
206
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
207
|
-
<envs>
|
208
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
209
|
-
</envs>
|
210
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
211
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
212
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
213
|
-
<COVERAGE_PATTERN ENABLED="true">
|
214
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
215
|
-
</COVERAGE_PATTERN>
|
216
|
-
</EXTENSION>
|
217
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
218
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/ethereum_bip44_test.rb" />
|
219
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
220
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_it_can_create_a_new_wallet" />
|
221
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
222
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
223
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
224
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
225
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
226
|
-
</configuration>
|
227
|
-
<configuration name="test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
228
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
229
|
-
<module name="ethereum_bip44" />
|
230
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
|
231
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
232
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
233
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
234
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
235
|
-
<envs>
|
236
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
237
|
-
</envs>
|
238
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
239
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
240
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
241
|
-
<COVERAGE_PATTERN ENABLED="true">
|
242
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
243
|
-
</COVERAGE_PATTERN>
|
244
|
-
</EXTENSION>
|
245
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
246
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/ethereum_bip44_test.rb" />
|
247
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
248
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_it_can_create_a_new_wallet_from_private_seed" />
|
249
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
250
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
251
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
252
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
253
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
254
|
-
</configuration>
|
255
|
-
<configuration name="test_it_can_create_a_new_wallet_from_public_seed: ethereum_bip44" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
256
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
257
|
-
<module name="ethereum_bip44" />
|
258
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
|
259
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
260
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
261
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
262
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
263
|
-
<envs>
|
264
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
265
|
-
</envs>
|
266
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
267
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
268
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
269
|
-
<COVERAGE_PATTERN ENABLED="true">
|
270
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
271
|
-
</COVERAGE_PATTERN>
|
272
|
-
</EXTENSION>
|
273
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
274
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/ethereum_bip44_test.rb" />
|
275
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
276
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_it_can_create_a_new_wallet_from_public_seed" />
|
277
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
278
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
279
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
280
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
281
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
282
|
-
</configuration>
|
283
|
-
<configuration name="test_it_can_generate_same_address_from_different_way: ethereum_bip44" type="TestUnitRunConfigurationType" factoryName="Test::Unit/Shoulda/Minitest" temporary="true">
|
284
|
-
<predefined_log_file id="RUBY_TESTUNIT" enabled="true" />
|
285
|
-
<module name="ethereum_bip44" />
|
286
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUBY_ARGS" VALUE="-e $stdout.sync=true;$stderr.sync=true;load($0=ARGV.shift) -Ilib:test" />
|
287
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="WORK DIR" VALUE="$MODULE_DIR$" />
|
288
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SHOULD_USE_SDK" VALUE="false" />
|
289
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ALTERN_SDK_NAME" VALUE="" />
|
290
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="myPassParentEnvs" VALUE="true" />
|
291
|
-
<envs>
|
292
|
-
<env name="JRUBY_OPTS" value="-X+O" />
|
293
|
-
</envs>
|
294
|
-
<EXTENSION ID="BundlerRunConfigurationExtension" bundleExecEnabled="true" />
|
295
|
-
<EXTENSION ID="JRubyRunConfigurationExtension" NailgunExecEnabled="false" />
|
296
|
-
<EXTENSION ID="RubyCoverageRunConfigurationExtension" enabled="false" sample_coverage="true" track_test_folders="true" runner="rcov">
|
297
|
-
<COVERAGE_PATTERN ENABLED="true">
|
298
|
-
<PATTERN REGEXPS="/.rvm/" INCLUDED="false" />
|
299
|
-
</COVERAGE_PATTERN>
|
300
|
-
</EXTENSION>
|
301
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TESTS_FOLDER_PATH" VALUE="" />
|
302
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_SCRIPT_PATH" VALUE="$MODULE_DIR$/test/ethereum_bip44_test.rb" />
|
303
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_FILE_MASK" VALUE="" />
|
304
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_METHOD_NAME" VALUE="test_it_can_generate_same_address_from_different_way" />
|
305
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="TEST_TEST_TYPE" VALUE="TEST_METHOD" />
|
306
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="DRB" VALUE="false" />
|
307
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="ZEUS" VALUE="false" />
|
308
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="SPRING" VALUE="false" />
|
309
|
-
<RTEST_RUN_CONFIG_SETTINGS_ID NAME="RUNNER_OPTIONS" VALUE="" />
|
310
|
-
</configuration>
|
311
|
-
<list size="5">
|
312
|
-
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.Run test 'ethereum_bip44_test': ethereum_bip44" />
|
313
|
-
<item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet: ethereum_bip44" />
|
314
|
-
<item index="2" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet_from_public_seed: ethereum_bip44" />
|
315
|
-
<item index="3" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44" />
|
316
|
-
<item index="4" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_generate_same_address_from_different_way: ethereum_bip44" />
|
317
|
-
</list>
|
318
|
-
<recent_temporary>
|
319
|
-
<list size="5">
|
320
|
-
<item index="0" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44" />
|
321
|
-
<item index="1" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_generate_same_address_from_different_way: ethereum_bip44" />
|
322
|
-
<item index="2" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.Run test 'ethereum_bip44_test': ethereum_bip44" />
|
323
|
-
<item index="3" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet_from_public_seed: ethereum_bip44" />
|
324
|
-
<item index="4" class="java.lang.String" itemvalue="Test::Unit/Shoulda/Minitest.test_it_can_create_a_new_wallet: ethereum_bip44" />
|
325
|
-
</list>
|
326
|
-
</recent_temporary>
|
327
|
-
</component>
|
328
|
-
<component name="ShelveChangesManager" show_recycled="false">
|
329
|
-
<option name="remove_strategy" value="false" />
|
330
|
-
</component>
|
331
|
-
<component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" />
|
332
|
-
<component name="TaskManager">
|
333
|
-
<task active="true" id="Default" summary="Default task">
|
334
|
-
<changelist id="6adfe41e-75d6-4c9f-94a7-6cf45e8f0229" name="Default" comment="" />
|
335
|
-
<created>1509628188086</created>
|
336
|
-
<option name="number" value="Default" />
|
337
|
-
<option name="presentableId" value="Default" />
|
338
|
-
<updated>1509628188086</updated>
|
339
|
-
<workItem from="1509628189826" duration="8852000" />
|
340
|
-
<workItem from="1509870563290" duration="595000" />
|
341
|
-
</task>
|
342
|
-
<servers />
|
343
|
-
</component>
|
344
|
-
<component name="TestHistory">
|
345
|
-
<history-entry file="Run_test_'ethereum_bip44_test'__ethereum_bip44 - 2017.11.02 at 22h 36m 06s.xml">
|
346
|
-
<configuration name="Run test 'ethereum_bip44_test': ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
347
|
-
</history-entry>
|
348
|
-
<history-entry file="Run_test_'ethereum_bip44_test'__ethereum_bip44 - 2017.11.02 at 22h 36m 19s.xml">
|
349
|
-
<configuration name="Run test 'ethereum_bip44_test': ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
350
|
-
</history-entry>
|
351
|
-
<history-entry file="Run_test_'ethereum_bip44_test'__ethereum_bip44 - 2017.11.02 at 22h 36m 26s.xml">
|
352
|
-
<configuration name="Run test 'ethereum_bip44_test': ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
353
|
-
</history-entry>
|
354
|
-
<history-entry file="Run_test_'ethereum_bip44_test'__ethereum_bip44 - 2017.11.03 at 13h 39m 13s.xml">
|
355
|
-
<configuration name="Run test 'ethereum_bip44_test': ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
356
|
-
</history-entry>
|
357
|
-
<history-entry file="test_it_can_create_a_new_wallet__ethereum_bip44 - 2017.11.03 at 13h 30m 11s.xml">
|
358
|
-
<configuration name="test_it_can_create_a_new_wallet: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
359
|
-
</history-entry>
|
360
|
-
<history-entry file="test_it_can_create_a_new_wallet_from_private_seed__ethereum_bip44 - 2017.11.03 at 13h 34m 35s.xml">
|
361
|
-
<configuration name="test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
362
|
-
</history-entry>
|
363
|
-
<history-entry file="test_it_can_create_a_new_wallet_from_private_seed__ethereum_bip44 - 2017.11.03 at 13h 54m 56s.xml">
|
364
|
-
<configuration name="test_it_can_create_a_new_wallet_from_private_seed: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
365
|
-
</history-entry>
|
366
|
-
<history-entry file="test_it_can_create_a_new_wallet_from_public_seed__ethereum_bip44 - 2017.11.03 at 13h 30m 21s.xml">
|
367
|
-
<configuration name="test_it_can_create_a_new_wallet_from_public_seed: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
368
|
-
</history-entry>
|
369
|
-
<history-entry file="test_it_can_generate_same_address_from_different_way__ethereum_bip44 - 2017.11.03 at 13h 52m 22s.xml">
|
370
|
-
<configuration name="test_it_can_generate_same_address_from_different_way: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
371
|
-
</history-entry>
|
372
|
-
<history-entry file="test_it_can_generate_same_address_from_different_way__ethereum_bip44 - 2017.11.03 at 13h 54m 17s.xml">
|
373
|
-
<configuration name="test_it_can_generate_same_address_from_different_way: ethereum_bip44" configurationId="TestUnitRunConfigurationType" />
|
374
|
-
</history-entry>
|
375
|
-
</component>
|
376
|
-
<component name="TimeTrackingManager">
|
377
|
-
<option name="totallyTimeSpent" value="9447000" />
|
378
|
-
</component>
|
379
|
-
<component name="ToolWindowManager">
|
380
|
-
<frame x="0" y="23" width="1680" height="1023" extended-state="6" />
|
381
|
-
<layout>
|
382
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25305623" sideWeight="0.5" order="0" side_tool="false" content_ui="combo" />
|
383
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
384
|
-
<window_info id="Cargo" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
385
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="true" content_ui="tabs" />
|
386
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
387
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3297414" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
388
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
389
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
390
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3297414" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
391
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
392
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="2" side_tool="true" content_ui="tabs" />
|
393
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
394
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
395
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
396
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
397
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="combo" />
|
398
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
399
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
400
|
-
</layout>
|
401
|
-
<layout-to-restore>
|
402
|
-
<window_info id="TODO" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="9" side_tool="false" content_ui="tabs" />
|
403
|
-
<window_info id="Cargo" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="false" content_ui="tabs" />
|
404
|
-
<window_info id="Cvs" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="7" side_tool="false" content_ui="tabs" />
|
405
|
-
<window_info id="Message" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
406
|
-
<window_info id="Commander" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
407
|
-
<window_info id="Event Log" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="true" content_ui="tabs" />
|
408
|
-
<window_info id="Inspection" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="8" side_tool="false" content_ui="tabs" />
|
409
|
-
<window_info id="Run" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.3297414" sideWeight="0.5" order="5" side_tool="false" content_ui="tabs" />
|
410
|
-
<window_info id="Version Control" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
411
|
-
<window_info id="Terminal" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.3297414" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
412
|
-
<window_info id="Project" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="true" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="1" side_tool="false" content_ui="combo" />
|
413
|
-
<window_info id="Hierarchy" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="4" side_tool="false" content_ui="combo" />
|
414
|
-
<window_info id="Database" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="1" side_tool="false" content_ui="tabs" />
|
415
|
-
<window_info id="Find" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="4" side_tool="false" content_ui="tabs" />
|
416
|
-
<window_info id="Structure" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="2" side_tool="false" content_ui="tabs" />
|
417
|
-
<window_info id="Ant Build" active="false" anchor="right" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.25" sideWeight="0.5" order="3" side_tool="false" content_ui="tabs" />
|
418
|
-
<window_info id="Debug" active="false" anchor="bottom" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.4" sideWeight="0.5" order="6" side_tool="false" content_ui="tabs" />
|
419
|
-
<window_info id="Favorites" active="false" anchor="left" auto_hide="false" internal_type="DOCKED" type="DOCKED" visible="false" show_stripe_button="true" weight="0.33" sideWeight="0.5" order="0" side_tool="true" content_ui="tabs" />
|
420
|
-
</layout-to-restore>
|
421
|
-
</component>
|
422
|
-
<component name="TypeScriptGeneratedFilesManager">
|
423
|
-
<option name="version" value="1" />
|
424
|
-
</component>
|
425
|
-
<component name="VcsContentAnnotationSettings">
|
426
|
-
<option name="myLimit" value="2678400000" />
|
427
|
-
</component>
|
428
|
-
<component name="XDebuggerManager">
|
429
|
-
<breakpoint-manager />
|
430
|
-
<watches-manager />
|
431
|
-
</component>
|
432
|
-
<component name="editorHistoryManager">
|
433
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44.rb">
|
434
|
-
<provider selected="true" editor-type-id="text-editor">
|
435
|
-
<state relative-caret-position="1064">
|
436
|
-
<caret line="56" column="6" lean-forward="false" selection-start-line="56" selection-start-column="6" selection-end-line="56" selection-end-column="6" />
|
437
|
-
<folding />
|
438
|
-
</state>
|
439
|
-
</provider>
|
440
|
-
</entry>
|
441
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/utils.rb">
|
442
|
-
<provider selected="true" editor-type-id="text-editor">
|
443
|
-
<state relative-caret-position="19">
|
444
|
-
<caret line="1" column="14" lean-forward="false" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="14" />
|
445
|
-
<folding />
|
446
|
-
</state>
|
447
|
-
</provider>
|
448
|
-
</entry>
|
449
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/version.rb">
|
450
|
-
<provider selected="true" editor-type-id="text-editor">
|
451
|
-
<state relative-caret-position="0">
|
452
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
453
|
-
<folding />
|
454
|
-
</state>
|
455
|
-
</provider>
|
456
|
-
</entry>
|
457
|
-
<entry file="file://$PROJECT_DIR$/ethereum_bip44.gemspec">
|
458
|
-
<provider selected="true" editor-type-id="text-editor">
|
459
|
-
<state relative-caret-position="399">
|
460
|
-
<caret line="21" column="30" lean-forward="true" selection-start-line="21" selection-start-column="30" selection-end-line="21" selection-end-column="30" />
|
461
|
-
<folding />
|
462
|
-
</state>
|
463
|
-
</provider>
|
464
|
-
</entry>
|
465
|
-
<entry file="file://$PROJECT_DIR$/test/ethereum_bip44_test.rb">
|
466
|
-
<provider selected="true" editor-type-id="text-editor">
|
467
|
-
<state relative-caret-position="266">
|
468
|
-
<caret line="14" column="5" lean-forward="true" selection-start-line="14" selection-start-column="5" selection-end-line="14" selection-end-column="5" />
|
469
|
-
<folding />
|
470
|
-
</state>
|
471
|
-
</provider>
|
472
|
-
</entry>
|
473
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/version.rb">
|
474
|
-
<provider selected="true" editor-type-id="text-editor">
|
475
|
-
<state relative-caret-position="0">
|
476
|
-
<caret line="0" column="0" lean-forward="false" selection-start-line="0" selection-start-column="0" selection-end-line="3" selection-end-column="0" />
|
477
|
-
<folding />
|
478
|
-
</state>
|
479
|
-
</provider>
|
480
|
-
</entry>
|
481
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44/utils.rb">
|
482
|
-
<provider selected="true" editor-type-id="text-editor">
|
483
|
-
<state relative-caret-position="19">
|
484
|
-
<caret line="1" column="14" lean-forward="false" selection-start-line="1" selection-start-column="9" selection-end-line="1" selection-end-column="14" />
|
485
|
-
<folding />
|
486
|
-
</state>
|
487
|
-
</provider>
|
488
|
-
</entry>
|
489
|
-
<entry file="file://$PROJECT_DIR$/lib/ethereum_bip44.rb">
|
490
|
-
<provider selected="true" editor-type-id="text-editor">
|
491
|
-
<state relative-caret-position="1064">
|
492
|
-
<caret line="56" column="6" lean-forward="false" selection-start-line="56" selection-start-column="6" selection-end-line="56" selection-end-column="6" />
|
493
|
-
<folding />
|
494
|
-
</state>
|
495
|
-
</provider>
|
496
|
-
</entry>
|
497
|
-
<entry file="file://$PROJECT_DIR$/ethereum_bip44.gemspec">
|
498
|
-
<provider selected="true" editor-type-id="text-editor">
|
499
|
-
<state relative-caret-position="399">
|
500
|
-
<caret line="21" column="30" lean-forward="false" selection-start-line="21" selection-start-column="30" selection-end-line="21" selection-end-column="30" />
|
501
|
-
<folding />
|
502
|
-
</state>
|
503
|
-
</provider>
|
504
|
-
</entry>
|
505
|
-
<entry file="file://$PROJECT_DIR$/README.md">
|
506
|
-
<provider selected="true" editor-type-id="split-provider[text-editor;markdown-preview-editor]">
|
507
|
-
<state split_layout="FIRST">
|
508
|
-
<first_editor relative-caret-position="171">
|
509
|
-
<caret line="9" column="0" lean-forward="true" selection-start-line="9" selection-start-column="0" selection-end-line="9" selection-end-column="0" />
|
510
|
-
</first_editor>
|
511
|
-
<second_editor />
|
512
|
-
</state>
|
513
|
-
</provider>
|
514
|
-
</entry>
|
515
|
-
<entry file="file://$PROJECT_DIR$/test/ethereum_bip44_test.rb">
|
516
|
-
<provider selected="true" editor-type-id="text-editor">
|
517
|
-
<state relative-caret-position="266">
|
518
|
-
<caret line="14" column="5" lean-forward="false" selection-start-line="14" selection-start-column="5" selection-end-line="14" selection-end-column="5" />
|
519
|
-
<folding />
|
520
|
-
</state>
|
521
|
-
</provider>
|
522
|
-
</entry>
|
523
|
-
</component>
|
524
|
-
</project>
|