omisego 0.9.5 → 0.9.6
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 +5 -2
- data/lib/omisego/minted_token.rb +1 -1
- data/lib/omisego/transaction.rb +12 -3
- data/lib/omisego/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 58a79d3edf64ff7f78028295c19be90ae21f4440
|
4
|
+
data.tar.gz: 628059f5a58ed7b65c03faaf1714ab3bf2012b1d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbaffccc7a396a541dd97da164a0fb4dda3d4ef5bf0dd8f179e583870383b4ad64541634f5ec28bb53558c9b4f4d37e1f34b156a01ee8a13c7c437184e643c65
|
7
|
+
data.tar.gz: '00784428f43744812ae6a6e3b90d63599288c5822a898dd2102da82de4b78632dd9116e1b67a287e8293a0039f6c1adcb7bcdda1ab962dccd700853dc680bf86'
|
data/README.md
CHANGED
@@ -326,8 +326,10 @@ transaction = OmiseGO::Transaction.all(params: {
|
|
326
326
|
Get the list of transactions for a specific provider user ID from the eWallet API.
|
327
327
|
|
328
328
|
```
|
329
|
-
transaction = OmiseGO::Transaction.
|
330
|
-
|
329
|
+
transaction = OmiseGO::Transaction.all(
|
330
|
+
params: {
|
331
|
+
provider_user_id: "some_uuid"
|
332
|
+
}
|
331
333
|
)
|
332
334
|
```
|
333
335
|
|
@@ -339,6 +341,7 @@ Parameters can be specified in the following way:
|
|
339
341
|
|
340
342
|
```
|
341
343
|
transaction = OmiseGO::Transaction.all(params: {
|
344
|
+
provider_user_id: "some_uuid",
|
342
345
|
page: 1,
|
343
346
|
per_page: 10,
|
344
347
|
sort_by: 'created_at',
|
data/lib/omisego/minted_token.rb
CHANGED
data/lib/omisego/transaction.rb
CHANGED
@@ -1,11 +1,20 @@
|
|
1
1
|
module OmiseGO
|
2
2
|
class Transaction < Base
|
3
|
-
attributes :id, :idempotency_token, :
|
4
|
-
:metadata, :
|
3
|
+
attributes :id, :idempotency_token, :from, :to, :exchange,
|
4
|
+
:metadata, :encrypted_metadata, :status, :created_at
|
5
5
|
|
6
6
|
class << self
|
7
7
|
def all(params: {}, client: nil)
|
8
|
-
|
8
|
+
if params[:provider_user_id]
|
9
|
+
all_for_user(
|
10
|
+
provider_user_id: params[:provider_user_id],
|
11
|
+
address: params[:address],
|
12
|
+
params: params,
|
13
|
+
client: client
|
14
|
+
)
|
15
|
+
else
|
16
|
+
request(client).send('transaction.all', {}, params: params).data
|
17
|
+
end
|
9
18
|
end
|
10
19
|
|
11
20
|
def all_for_user(provider_user_id:, address: nil, params: {}, client: nil)
|
data/lib/omisego/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omisego
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thibault
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-03-
|
11
|
+
date: 2018-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|