tezos_client 0.3.6 → 0.3.7

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: b6bd8d14b776cb46615e0993179991c1cc75284e1dc90bf031b4d36b8659067f
4
- data.tar.gz: f6e93d5edbad0a9d567d40576664c039ada67246a9940bd86b37413c64216531
3
+ metadata.gz: 107b7c9bfdb2b39e7e64403c4eba3b194eb74c4bd4d8aaa8106662b075747c5b
4
+ data.tar.gz: 996230c63fdddf6fcfe2bbee5f17274c648e840135051cdab072f6fc1e60461a
5
5
  SHA512:
6
- metadata.gz: 35c5d8b4dbe46cd9bfd18f662bca6718fcc7f143ef0cccf811288827c04ce8e5272f48bbbf4c718ddd5a027bf7f4e9c94d16942ad35e6e161066249edc82ee63
7
- data.tar.gz: 2952d7c0ebdb28af391acf9b9ff0bfe7c634bd3b816aa6cfaf44e2513547a4011c4da08b6fb124375b996ed093c4c71aceadb597ff0334d3b4fd255a26fb4b00
6
+ metadata.gz: 454b18978f1ca4c0d16c0e37d4b895b6feeb30eb2b32fbba44c7a730616e31f399db79446b0ad7a6e2449d619ef65e1bea7e408ae325aac26c321ea43674ddea
7
+ data.tar.gz: 20045387b02cb710b4af834fd4f36d9a99265a4726b69495348fea36f1e483773c92891033949d718003c50f33d7d97ebf03e704f0cad4f60e4fbd06662aa8e1
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- tezos_client (0.3.6)
4
+ tezos_client (0.3.7)
5
5
  activesupport (~> 5.2.0)
6
6
  base58 (~> 0.2.3)
7
7
  bip_mnemonic (~> 0.0.2)
@@ -16,7 +16,8 @@ class TezosClient
16
16
  :block_operation_hashes,
17
17
  :blocks,
18
18
  :balance,
19
- :contract_manager_key
19
+ :contract_manager_key,
20
+ :contract_storage
20
21
 
21
22
  def_delegators :client_interface,
22
23
  :gen_keys,
@@ -25,5 +26,8 @@ class TezosClient
25
26
  :import_secret_key,
26
27
  :known_contracts,
27
28
  :transfer
29
+
30
+ def_delegators :liquidity_interface,
31
+ :get_storage
28
32
  end
29
33
  end
@@ -22,6 +22,10 @@ class TezosClient
22
22
  def contract_manager_key(contract_id)
23
23
  get "#{contract_link(contract_id)}/manager_key"
24
24
  end
25
+
26
+ def contract_storage(contract_id)
27
+ get "#{contract_link(contract_id)}/storage"
28
+ end
25
29
  end
26
30
  end
27
31
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class TezosClient
4
- VERSION = "0.3.6"
4
+ VERSION = "0.3.7"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tezos_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pierre Michard
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-01-21 00:00:00.000000000 Z
11
+ date: 2019-01-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler