omisego 0.11.0 → 0.12.0

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
  SHA1:
3
- metadata.gz: 2e412321f89fdea170297609ad78394e545fb6cd
4
- data.tar.gz: b88bee3f72a6a7908248af51fdc7c2158f8d5968
3
+ metadata.gz: eafb5f2c0b3e507ea7b9aa3675680ee463ebd0c8
4
+ data.tar.gz: ea58112e49815ae59d9f3d662ecf66a066e16030
5
5
  SHA512:
6
- metadata.gz: 8854f32fb7f1f1d1ea34c78b932e17829eb8b92d26da2aec3bd386c722214ec2cc29310812e2d5afd71f6e046f0fdeb86d7925bb1a1eb368d76a5abf79cb44c7
7
- data.tar.gz: 9d7c270203b2e0e403ca1668022f8c2937a6fd88c581f44365006a9cd6fa4b8a2cb643d095535603c0c0f7a4f5489224d9dafac06143ab465ebca53dd56f7a2a
6
+ metadata.gz: 8cbc20bbda02d54785ee599541d399e167d99c38f30d5d246b54a5f47b66a21547ea138cece0165d4eed028c3f3be803918e42bfa1d5fd3d0bd90f68bf6c3486
7
+ data.tar.gz: c6ec802a82a4b0ebaa62453b0fdbdbe48b0be1127b495961604febc53da2c892cf6426a8f19b8c471c5a42bc3e59f9544b0fcc23f40b97d9ce9763c739aaf86d
data/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  OmiseGO is a Ruby SDK meant to communicate with an OmiseGO eWallet setup.
8
8
 
9
- For more details about the web API being wrapped by this SDK, take a look at the [OpenAPI Specification](https://ewallet.demo.omisego.io/api/docs.ui). You are free to use that web API directly if you prefer, this SDK is only provided as a convenient way to make those HTTP calls and return Ruby objects as responses.
9
+ For more details about the web API being wrapped by this SDK, take a look at the [OpenAPI Specification](https://ewallet.demo.omisego.io/api/admin/docs.ui). You are free to use that web API directly if you prefer, this SDK is only provided as a convenient way to make those HTTP calls and return Ruby objects as responses.
10
10
 
11
11
  ## Installation
12
12
 
@@ -104,14 +104,38 @@ All the calls below will communicate with the OmiseGO wallet specified in the `b
104
104
  __The method `#error?` can be used on any model to check if it's an error or a valid result.__
105
105
 
106
106
 
107
+ ### Using the API directly
108
+
109
+ Almost all the calls presented in the [API documentation](https://ewallet.demo.omisego.io/api/admin/docs.ui) can be accessed from this Ruby SDK as a provider. A lof ot the endpoints are, however, not fully supported yet. If you wish to use an endpoint not supported by the SDK, you can do the following:
110
+
111
+ ```ruby
112
+ client = Client.new # Will use global configuration
113
+
114
+ response = client.request.send({
115
+ "account.get_wallets",
116
+ {
117
+ id: "acc_123"
118
+ }, # body
119
+ })
120
+ ```
121
+
122
+ `response` will contain the full payload returned from the server, where the `data` field contains the actual response data.
123
+
107
124
  ### Understanding Idempotency
108
125
 
109
126
  Some of the calls in the web API (and in the methods below) contain a parameter called `idempotency_token`.
110
127
 
111
128
  ### Understanding wallet types
112
129
 
130
+ Not all wallets are created equals. We have 3 different types of wallets:
131
+
132
+ - `primary`: Only one primary wallet per account or user is allowed. This is the default used if you don't want to deal with wallets.
133
+ - `secondary`: An additional wallet that can be created if you need to keep separate balances.
134
+ - `burn`: A special type of wallets where value goes and never comes back. If you want to get rid of tokens (remove them from circulation), send them to a `burn` wallet. Accounts get one created by default, and more can be created if needed.
135
+
113
136
  ### Understanding Metadata and Encrypted Metadata
114
137
 
138
+ `metadata` and `encrypted_metadata` are fields you can use to store any kind of data. Formatted as dictionnaries (json/map/hash), they are stored in the database with the referenced record. `encrypted_metadata` will be encrypted and not readable directly from a dump of the DB without the key, while `metadata` are stored in clear (and will potentially be searchable later).
115
139
 
116
140
  ### All available methods
117
141
 
@@ -316,7 +340,7 @@ Returns either:
316
340
  - An `OmiseGO::List` of `OmiseGO::Wallet` instances (containing the 2 wallets involved in the transaction)
317
341
  - An `OmiseGO::Error` instance
318
342
 
319
- ### Listing transactions
343
+ ### Managing transactions
320
344
 
321
345
  #### Params
322
346
 
@@ -411,6 +435,76 @@ transaction = OmiseGO::Transaction.all(
411
435
 
412
436
  Since those transactions are already scoped down to the given user, it is NOT POSSIBLE to specify both `from` AND `to` in the `search_terms`. Doing so will result in the API ignoring both of those fields for the search.
413
437
 
438
+ #### Creating transactions
439
+
440
+ Transactions can be created with the `OmiseGO::Transaction.create()` method (which will call the `/transaction.create` endpoint).
441
+
442
+ Two types of transactions can be made, depending if you intend to exchange tokens or if it's a simple transfer between two addresses.
443
+
444
+ ##### Defining the sender and receiver
445
+
446
+ There are different ways to define who is supposed to send/receive the tokens. The server expects at least one of these sets of parameters to find the sender:
447
+
448
+ - `from_provider_user_id`: Will find the user and takes his primary address as the sending address.
449
+ - `from_provider_user_id` + `from_address`: Will find the user and ensures the given `from_address` belongs to him.
450
+ - `from_account_id`: Will find the account and takes its primary address as the sending address.
451
+ - `from_account_id` + `from_address`: Will find the account and ensures the given `from_address` belongs to that account.
452
+ - `from_address`: Will simply set the sending address (and get the owner of that address for reference).
453
+
454
+ The parameters are the same for the other side, simply swap `from` with `to`.
455
+
456
+ - `to_provider_user_id`
457
+ - `to_provider_user_id` + `to_address`
458
+ - `to_account_id`
459
+ - `to_account_id` + `to_address`
460
+ - `to_address`
461
+
462
+ ##### Simple Transfer
463
+
464
+ In addition to the previous parameters, a simple transfer requires to pass:
465
+
466
+ - `token_id`
467
+ - `amount`
468
+
469
+ ```
470
+ transaction = OmiseGO::Transaction.create({
471
+ from_address: "abcd111111111111",
472
+ to_address: "abcd111111111112",
473
+ token_id: "tok_OMG_01ccmny8yne44b188287d44498",
474
+ amount: 100
475
+ })
476
+ ```
477
+
478
+ Returns either:
479
+ - An `OmiseGO::Transaction` instance
480
+ - An `OmiseGO::Error` instance
481
+
482
+ ##### Exchange Transfer
483
+
484
+ Exchange transfers are a bit more complicated. In addition to defining the sender/receiver, you will also need to give it a `from_token_id`/`to_token_id` pair, a `from_amount` OR a `to_amount` and either an `exchange_account_id` OR an `exchange_wallet_address`.
485
+
486
+ - `from_token_id`: The ID of the sending token.
487
+ - `to_token_id`: The ID of the receive token.
488
+ - `from_amount`: The amount of tokens (`from_token_id`) to send
489
+ - `to_amount`: The amount of tokens (`to_token_id`) to receive
490
+ - `exchange_account_id`: The ID of the account that will be used as an intermediary to exchange funds. The primary wallet of that account needs to have funds in the token identified by `to_token_id`, unless `exchange_wallet_address` is specified.
491
+ - `exchange_wallet_address`: The ID of the wallet that will be used as an intermediary to exchange funds. That wallet needs to have funds in the token identified by `to_token_id`.
492
+
493
+ ```
494
+ OmiseGO::Transaction.create({
495
+ from_address: "abcd111111111111",
496
+ to_address: "abcd111111111112",
497
+ from_token_id: "tok_BTC_01chckv8eh2nq1zwkyfkh2pe40",
498
+ to_token_id: "tok_ETH_01chckv8h6v355xgh629w4r27c",
499
+ from_amount: 1,
500
+ exchange_account_id: "acc_01chckv67se4eddn11nyz7y3ma"
501
+ })
502
+ ```
503
+
504
+ Returns either:
505
+ - An `OmiseGO::Transaction` instance
506
+ - An `OmiseGO::Error` instance
507
+
414
508
  ### Getting settings
415
509
 
416
510
  #### All
@@ -1,7 +1,14 @@
1
1
  module OmiseGO
2
2
  class Transaction < Base
3
- attributes :id, :idempotency_token, :from, :to, :exchange,
4
- :metadata, :encrypted_metadata, :status, :created_at
3
+ attributes :id,
4
+ :idempotency_token,
5
+ :from,
6
+ :to,
7
+ :exchange,
8
+ :metadata,
9
+ :encrypted_metadata,
10
+ :status,
11
+ :created_at
5
12
 
6
13
  class << self
7
14
  def all(params: {}, client: nil)
@@ -25,17 +32,43 @@ module OmiseGO
25
32
 
26
33
  request(client).send('user.get_transactions', body, params: params).data
27
34
  end
28
- end
29
35
 
30
- def create(from_address:, to_address:, token_id:, amount:, metadata: {}, encrypted_metadata: {})
31
- request(client).send('transfer', {
32
- from_address: from_address,
33
- to_address: to_address,
34
- token_id: token_id,
35
- amount: amount,
36
- metadata: metadata,
37
- encrypted_metadata: encrypted_metadata
38
- }, params: params).data
36
+ def create(from_account_id: nil,
37
+ from_provider_user_id: nil,
38
+ from_address: nil,
39
+ to_account_id: nil,
40
+ to_provider_user_id: nil,
41
+ to_address: nil,
42
+ from_token_id: nil,
43
+ to_token_id: nil,
44
+ token_id: nil,
45
+ from_amount: nil,
46
+ to_amount: nil,
47
+ amount: nil,
48
+ exchange_account_id: nil,
49
+ exchange_wallet_address: nil,
50
+ metadata: {},
51
+ encrypted_metadata: {},
52
+ idempotency_token:,
53
+ client: nil)
54
+ request(client).send('transaction.create', from_account_id: from_account_id,
55
+ from_provider_user_id: from_provider_user_id,
56
+ from_address: from_address,
57
+ to_account_id: to_account_id,
58
+ to_provider_user_id: to_provider_user_id,
59
+ to_address: to_address,
60
+ from_token_id: from_token_id,
61
+ to_token_id: to_token_id,
62
+ token_id: token_id,
63
+ from_amount: from_amount,
64
+ to_amount: to_amount,
65
+ amount: amount,
66
+ exchange_account_id: exchange_account_id,
67
+ exchange_wallet_address: exchange_wallet_address,
68
+ metadata: metadata,
69
+ encrypted_metadata: encrypted_metadata,
70
+ idempotency_token: idempotency_token).data
71
+ end
39
72
  end
40
73
 
41
74
  def from
@@ -1,3 +1,3 @@
1
1
  module OmiseGO
2
- VERSION = '0.11.0'.freeze
2
+ VERSION = '0.12.0'.freeze
3
3
  end
@@ -9,34 +9,40 @@ module OmiseGO
9
9
  request(client).send('user.get_wallets', provider_user_id: provider_user_id).data
10
10
  end
11
11
 
12
+ def all_for_account(account_id:, client: nil)
13
+ request(client).send('account.get_wallets', id: account_id).data
14
+ end
15
+
12
16
  def credit(provider_user_id:, token_id:, amount:, metadata: {}, user_address: nil,
13
17
  encrypted_metadata: {}, idempotency_token:, account_id:, account_address: nil,
14
18
  client: nil)
15
- request(client)
16
- .send('user.credit_wallet', provider_user_id: provider_user_id,
17
- user_address: user_address,
18
- token_id: token_id,
19
- amount: amount,
20
- metadata: metadata,
21
- encrypted_metadata: encrypted_metadata,
22
- account_id: account_id,
23
- account_address: account_address,
24
- idempotency_token: idempotency_token).data
19
+ params = { to_provider_user_id: provider_user_id,
20
+ to_address: user_address,
21
+ from_account_id: account_id,
22
+ from_address: account_address,
23
+ token_id: token_id,
24
+ amount: amount,
25
+ metadata: metadata,
26
+ encrypted_metadata: encrypted_metadata,
27
+ account_address: account_address,
28
+ idempotency_token: idempotency_token }
29
+ request(client).send('transaction.create', params).data
25
30
  end
26
31
 
27
32
  def debit(provider_user_id:, user_address: nil, token_id:, amount:, metadata: {},
28
33
  encrypted_metadata: {}, idempotency_token:, account_id:, account_address: nil,
29
34
  client: nil)
30
- request(client)
31
- .send('user.debit_wallet', provider_user_id: provider_user_id,
32
- user_address: user_address,
33
- token_id: token_id,
34
- amount: amount,
35
- metadata: metadata,
36
- encrypted_metadata: encrypted_metadata,
37
- account_id: account_id,
38
- account_address: account_address,
39
- idempotency_token: idempotency_token).data
35
+ params = { from_provider_user_id: provider_user_id,
36
+ from_address: user_address,
37
+ to_account_id: account_id,
38
+ to_address: account_address,
39
+ token_id: token_id,
40
+ amount: amount,
41
+ metadata: metadata,
42
+ encrypted_metadata: encrypted_metadata,
43
+ account_address: account_address,
44
+ idempotency_token: idempotency_token }
45
+ request(client).send('transaction.create', params).data
40
46
  end
41
47
  end
42
48
 
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.11.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thibault
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-06-20 00:00:00.000000000 Z
11
+ date: 2018-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday