mixin_bot 0.7.1 → 0.7.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8c1313d5bfb3552add5f8e54e5427695755dbc6a13b72c9aca7b43379d85b6d3
4
- data.tar.gz: 57029bdfe6ef1af87e81a20a9c063e0955927c5be235e29154b5c6cf88d56fd7
3
+ metadata.gz: 23af5863a68c97bd37e6705a5b5f7adc1b3c099bb8e79c4277da68a49ded3d0c
4
+ data.tar.gz: 4655c5fc41b38484c1290d0112bb6df40a2bb9ae523a1f0918b283b956576f8f
5
5
  SHA512:
6
- metadata.gz: 3e8fe5f71267fde3c18ac2b2e8bd45736c7a6efd61bb3f0459d59526149b96fa923db7b913ab76eb507605c738e9b271afb19d57442692c13b7163010332aa9e
7
- data.tar.gz: 733748278679ba56508454da2ecc452d695235a879cef2a400738cff40c4e44e60025ed5468f51cd30af4277f0f420cca75e70f3f4ca0ad09cb3711c465ee907
6
+ metadata.gz: f3bfea134e43216a0220b662466cbcece9efa6e8df7743489327d9f12f5d2d80282621ad929b2c6e20f0614b7a823125b1dd0bdca0d560fdb2336cfa16a6ea2c
7
+ data.tar.gz: 0d02653b4863e23235e35363e78e1b3bcea95c51d9aacdf543d2660d9c6e814f1b26661ac11049360cee5c786fbcf6bfd33efc83108979b5eb6b37b84dc70727
@@ -100,7 +100,7 @@ module MixinBot
100
100
  path = '/payments'
101
101
  payload = {
102
102
  asset_id: kwargs[:asset_id],
103
- amount: kwargs[:amount].to_s,
103
+ amount: format('%.8f', kwargs[:amount].to_d.to_r),
104
104
  trace_id: kwargs[:trace_id] || SecureRandom.uuid,
105
105
  memo: kwargs[:memo],
106
106
  opponent_multisig: {
@@ -160,12 +160,12 @@ module MixinBot
160
160
 
161
161
  raise 'access_token required!' if access_token.nil? && !senders.include?(client_id)
162
162
 
163
- amount = amount.to_f.round(8)
163
+ amount = amount.to_d.round(8)
164
164
  input_amount = utxos.map(
165
165
  &lambda { |utxo|
166
- utxo['amount'].to_f
166
+ utxo['amount'].to_d
167
167
  }
168
- ).sum.round(8)
168
+ ).sum
169
169
 
170
170
  if input_amount < amount
171
171
  raise format(
@@ -199,7 +199,7 @@ module MixinBot
199
199
  output1 = build_output(
200
200
  receivers: senders,
201
201
  index: 1,
202
- amount: (input_amount - amount),
202
+ amount: input_amount - amount,
203
203
  threshold: senders_threshold,
204
204
  hint: hint
205
205
  )
@@ -223,7 +223,7 @@ module MixinBot
223
223
  def build_output(receivers:, index:, amount:, threshold:, hint: nil)
224
224
  _output = create_output receivers: receivers, index: index, hint: hint
225
225
  {
226
- amount: format('%.8f', amount.to_f),
226
+ amount: format('%.8f', amount.to_d.to_r),
227
227
  script: build_threshold_script(threshold),
228
228
  mask: _output['mask'],
229
229
  keys: _output['keys']
@@ -10,7 +10,7 @@ module MixinBot
10
10
  asset_id = options[:asset_id]
11
11
  receivers = options[:receivers]
12
12
  threshold = options[:threshold]
13
- amount = options[:amount].to_f
13
+ amount = options[:amount].to_d
14
14
  memo = options[:memo]
15
15
  trace_id = options[:trace_id] || SecureRandom.uuid
16
16
  encrypted_pin = options[:encrypted_pin] || encrypt_pin(pin)
@@ -23,7 +23,7 @@ module MixinBot
23
23
  threshold: threshold
24
24
  },
25
25
  pin: encrypted_pin,
26
- amount: format('%.8f', amount),
26
+ amount: format('%.8f', amount.to_r),
27
27
  trace_id: trace_id,
28
28
  memo: memo
29
29
  }
@@ -40,7 +40,7 @@ module MixinBot
40
40
 
41
41
  asset_id = options[:asset_id]
42
42
  opponent_key = options[:opponent_key]
43
- amount = options[:amount].to_f
43
+ amount = options[:amount].to_d
44
44
  memo = options[:memo]
45
45
  trace_id = options[:trace_id] || SecureRandom.uuid
46
46
  encrypted_pin = options[:encrypted_pin] || encrypt_pin(pin)
@@ -50,7 +50,7 @@ module MixinBot
50
50
  asset_id: asset_id,
51
51
  opponent_key: opponent_key,
52
52
  pin: encrypted_pin,
53
- amount: format('%.8f', amount),
53
+ amount: format('%.8f', amount.to_r),
54
54
  trace_id: trace_id,
55
55
  memo: memo
56
56
  }
@@ -9,7 +9,7 @@ module MixinBot
9
9
 
10
10
  asset_id = options[:asset_id]
11
11
  opponent_id = options[:opponent_id]
12
- amount = options[:amount].to_f
12
+ amount = options[:amount].to_d
13
13
  memo = options[:memo]
14
14
  trace_id = options[:trace_id] || SecureRandom.uuid
15
15
  encrypted_pin = options[:encrypted_pin] || encrypt_pin(pin)
@@ -19,7 +19,7 @@ module MixinBot
19
19
  asset_id: asset_id,
20
20
  opponent_id: opponent_id,
21
21
  pin: encrypted_pin,
22
- amount: format('%.8f', amount),
22
+ amount: format('%.8f', amount.to_r),
23
23
  trace_id: trace_id,
24
24
  memo: memo
25
25
  }
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MixinBot
4
- VERSION = '0.7.1'
4
+ VERSION = '0.7.5'
5
5
  end
data/lib/mixin_bot.rb CHANGED
@@ -4,6 +4,8 @@
4
4
  require 'English'
5
5
  require 'active_support/core_ext/hash'
6
6
  require 'base64'
7
+ require 'bigdecimal'
8
+ require 'bigdecimal/util'
7
9
  require 'digest'
8
10
  require 'faye/websocket'
9
11
  require 'http'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mixin_bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - an-lee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-11-18 00:00:00.000000000 Z
11
+ date: 2021-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport