cardano_wallet 0.3.17 → 0.3.18

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: 45b919d141b81daa489e6f718a8b61054f2b189d6fe541488d10171144b0217b
4
- data.tar.gz: 5987eeea91e123379a648fc44a6feed0a87223987a2b1a4989f36c8975e26a1d
3
+ metadata.gz: 8c7ce08240e2c7224eba31a8a6aa0b7f928630a858be44aaad315a55c959c93b
4
+ data.tar.gz: 50d698826b6104abba2f5f9aaaa938df83c647497880c181a87737e634431863
5
5
  SHA512:
6
- metadata.gz: 0dd7b9d3f29876effa91026ca884a8d955d44dfceda38ee9210fbbab583ba89002e288e6b656fecd74c983b6e6a76c56710d5b8911a76249f6ad9755805d6f82
7
- data.tar.gz: e1eb83d8e47a102d99942f8f7d9c37b399430a3bc908acbbf6c6c4dd9a0d1ccdde2a0060b935cb79c8ccd8191dba42bab81bdeae6b0bfc95e008e951823f9df2
6
+ metadata.gz: 87ae856018a68b179f880aebb094adb6de48cdd20e612fab3dd683d1ab5bfb557aeac4582f5151d6febcf3829dd86cc52766abab310485f27923c919f6f1bbf5
7
+ data.tar.gz: 990e4bfb52027df1a8a92d63b4521a4ae3cdebda992825271c4a014e4a1e53cdd0fa379e38fe3f11b1e6e85f7e4ddcbe41f983d5512f1f730dfe2154c9fe0fd8
data/Rakefile CHANGED
@@ -12,9 +12,7 @@ task default: :spec
12
12
  def wget(url, file = nil)
13
13
  file ||= File.basename(url)
14
14
  resp = HTTParty.get(url)
15
- File.open(file, 'wb') do |f|
16
- f.write(resp.body)
17
- end
15
+ File.binwrite(file, resp.body)
18
16
  puts "#{url} -> #{resp.code}"
19
17
  end
20
18
 
@@ -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.
@@ -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 passphrase [String] CBOR transaction data
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 passphrase [String] CBOR transaction data
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)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CardanoWallet
4
- VERSION = '0.3.17'
4
+ VERSION = '0.3.18'
5
5
  end
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.17
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: 2021-11-08 00:00:00.000000000 Z
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.22
168
+ rubygems_version: 3.2.32
168
169
  signing_key:
169
170
  specification_version: 4
170
171
  summary: Ruby wrapper over cardano-wallet.