cardano-up 0.1.4 → 0.1.5
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/lib/cardano-up/launcher.rb +27 -16
- data/lib/cardano-up/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97b0c3e82b8f3c963327000c3baf309a9844c69de0d93e4f2c32405e5f21ded3
|
4
|
+
data.tar.gz: cd87f4af35c07c65ea108f5b6f9418dd8a56633d8cbb145cf1e9855a027bae51
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7fd6b704ef5ee77a7398415452f03dbf8c3a5b44fd68ea19c42c26fa9b09ad318e3f66489c745da663ef7e626ad038d16a57a34d94fa218717ef89da972626be
|
7
|
+
data.tar.gz: ab22622009628fdfea1a7c326a49d98d7e9d9f8c95d5a5e9cd3e376f1e920fab794e56a6ff9d452a37cc3052c77c544f646cdb405e276cdb0661013beb408af4
|
data/lib/cardano-up/launcher.rb
CHANGED
@@ -113,23 +113,34 @@ module CardanoUp
|
|
113
113
|
}
|
114
114
|
}
|
115
115
|
CardanoUp::Session.create_or_update(session_name, service_details)
|
116
|
-
if CardanoUp::Utils.win?
|
117
|
-
# Turn off p2p for Windows
|
118
|
-
# TODO: remove after https://github.com/input-output-hk/ouroboros-network/issues/3968 released
|
119
|
-
config_win = CardanoUp::Utils.from_json("#{config_dir}/config.json")
|
120
|
-
config_win[:EnableP2P] = false
|
121
|
-
CardanoUp::Utils.to_json("#{config_dir}/config.json", config_win)
|
122
|
-
topology = {
|
123
|
-
Producers: [
|
124
|
-
{
|
125
|
-
addr: "#{env}-node.world.dev.cardano.org",
|
126
|
-
port: 30_002,
|
127
|
-
valency: 2
|
128
|
-
}
|
129
|
-
]
|
130
|
-
}
|
131
|
-
CardanoUp::Utils.to_json("#{config_dir}/topology.json", topology)
|
132
116
|
|
117
|
+
# Turn off p2p in config.json and topology.json
|
118
|
+
config_json = CardanoUp::Utils.from_json("#{config_dir}/config.json")
|
119
|
+
config_json[:EnableP2P] = false
|
120
|
+
CardanoUp::Utils.to_json("#{config_dir}/config.json", config_json)
|
121
|
+
addr = env == 'mainnet' ? 'relays-new.cardano-mainnet.iohk.io' : "#{env}-node.world.dev.cardano.org"
|
122
|
+
port = case env
|
123
|
+
when 'mainnet'
|
124
|
+
3001
|
125
|
+
when 'preprod'
|
126
|
+
30_000
|
127
|
+
when 'preview'
|
128
|
+
30_002
|
129
|
+
else
|
130
|
+
30_000
|
131
|
+
end
|
132
|
+
topology_json = {
|
133
|
+
Producers: [
|
134
|
+
{
|
135
|
+
addr: addr,
|
136
|
+
port: port,
|
137
|
+
valency: 2
|
138
|
+
}
|
139
|
+
]
|
140
|
+
}
|
141
|
+
CardanoUp::Utils.to_json("#{config_dir}/topology.json", topology_json)
|
142
|
+
|
143
|
+
if CardanoUp::Utils.win?
|
133
144
|
# create cardano-node.bat file
|
134
145
|
File.write("#{bin_dir}/cardano-node.bat", node_cmd)
|
135
146
|
install_node = "nssm install #{node_service} #{bin_dir}/cardano-node.bat"
|
data/lib/cardano-up/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cardano-up
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Stachyra
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: docopt
|