cardano_wallet 0.3.17 → 0.3.18
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/Rakefile +1 -3
- data/cardano_wallet.gemspec +1 -0
- data/lib/cardano_wallet/byron.rb +12 -1
- data/lib/cardano_wallet/shelley.rb +12 -1
- data/lib/cardano_wallet/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c7ce08240e2c7224eba31a8a6aa0b7f928630a858be44aaad315a55c959c93b
|
4
|
+
data.tar.gz: 50d698826b6104abba2f5f9aaaa938df83c647497880c181a87737e634431863
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 87ae856018a68b179f880aebb094adb6de48cdd20e612fab3dd683d1ab5bfb557aeac4582f5151d6febcf3829dd86cc52766abab310485f27923c919f6f1bbf5
|
7
|
+
data.tar.gz: 990e4bfb52027df1a8a92d63b4521a4ae3cdebda992825271c4a014e4a1e53cdd0fa379e38fe3f11b1e6e85f7e4ddcbe41f983d5512f1f730dfe2154c9fe0fd8
|
data/Rakefile
CHANGED
data/cardano_wallet.gemspec
CHANGED
@@ -19,6 +19,7 @@ Gem::Specification.new do |spec|
|
|
19
19
|
spec.metadata['homepage_uri'] = spec.homepage
|
20
20
|
spec.metadata['source_code_uri'] = spec.homepage
|
21
21
|
spec.metadata['changelog_uri'] = spec.homepage
|
22
|
+
spec.metadata['rubygems_mfa_required'] = 'true'
|
22
23
|
|
23
24
|
# Specify which files should be added to the gem when it is released.
|
24
25
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
data/lib/cardano_wallet/byron.rb
CHANGED
@@ -233,7 +233,7 @@ module CardanoWallet
|
|
233
233
|
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/signByronTransaction
|
234
234
|
# @param wid [String] source wallet id
|
235
235
|
# @param passphrase [String] wallet's passphrase
|
236
|
-
# @param
|
236
|
+
# @param transaction [String] CBOR transaction data
|
237
237
|
def sign(wid, passphrase, transaction)
|
238
238
|
payload = {
|
239
239
|
'passphrase' => passphrase,
|
@@ -245,6 +245,17 @@ module CardanoWallet
|
|
245
245
|
headers: { 'Content-Type' => 'application/json' })
|
246
246
|
end
|
247
247
|
|
248
|
+
# Submit transaction
|
249
|
+
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/submitByronTransaction
|
250
|
+
# @param wid [String] source wallet id
|
251
|
+
# @param transaction [String] CBOR transaction data
|
252
|
+
def submit(wid, transaction)
|
253
|
+
payload = { 'transaction' => transaction }
|
254
|
+
self.class.post("/byron-wallets/#{wid}/transactions-submit",
|
255
|
+
body: payload.to_json,
|
256
|
+
headers: { 'Content-Type' => 'application/json' })
|
257
|
+
end
|
258
|
+
|
248
259
|
# Get tx by id
|
249
260
|
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/getByronTransaction
|
250
261
|
def get(wid, tx_id)
|
@@ -314,7 +314,7 @@ module CardanoWallet
|
|
314
314
|
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/signTransaction
|
315
315
|
# @param wid [String] source wallet id
|
316
316
|
# @param passphrase [String] wallet's passphrase
|
317
|
-
# @param
|
317
|
+
# @param transaction [String] CBOR transaction data
|
318
318
|
def sign(wid, passphrase, transaction)
|
319
319
|
payload = {
|
320
320
|
'passphrase' => passphrase,
|
@@ -326,6 +326,17 @@ module CardanoWallet
|
|
326
326
|
headers: { 'Content-Type' => 'application/json' })
|
327
327
|
end
|
328
328
|
|
329
|
+
# Submit transaction
|
330
|
+
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/submitTransaction
|
331
|
+
# @param wid [String] source wallet id
|
332
|
+
# @param transaction [String] CBOR transaction data
|
333
|
+
def submit(wid, transaction)
|
334
|
+
payload = { 'transaction' => transaction }
|
335
|
+
self.class.post("/wallets/#{wid}/transactions-submit",
|
336
|
+
body: payload.to_json,
|
337
|
+
headers: { 'Content-Type' => 'application/json' })
|
338
|
+
end
|
339
|
+
|
329
340
|
# Get tx by id
|
330
341
|
# @see https://input-output-hk.github.io/cardano-wallet/api/edge/#operation/getTransaction
|
331
342
|
def get(wid, tx_id)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cardano_wallet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.18
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Piotr Stachyra
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: httparty
|
@@ -149,6 +149,7 @@ metadata:
|
|
149
149
|
homepage_uri: https://github.com/piotr-iohk/cardano-wallet-rb
|
150
150
|
source_code_uri: https://github.com/piotr-iohk/cardano-wallet-rb
|
151
151
|
changelog_uri: https://github.com/piotr-iohk/cardano-wallet-rb
|
152
|
+
rubygems_mfa_required: 'true'
|
152
153
|
post_install_message:
|
153
154
|
rdoc_options: []
|
154
155
|
require_paths:
|
@@ -164,7 +165,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
165
|
- !ruby/object:Gem::Version
|
165
166
|
version: '0'
|
166
167
|
requirements: []
|
167
|
-
rubygems_version: 3.2.
|
168
|
+
rubygems_version: 3.2.32
|
168
169
|
signing_key:
|
169
170
|
specification_version: 4
|
170
171
|
summary: Ruby wrapper over cardano-wallet.
|