cronos_explorer 0.2.0 → 0.2.1
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/Gemfile.lock +26 -7
- data/README.md +2 -17
- data/lib/cronos_explorer/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d82222298fb6dfaef493ba06cf14a1dbc991a00883c8990443d02085dba42b74
|
4
|
+
data.tar.gz: e755508aaeaf17ba4275b2ad9eba2700279de544c4f1a7a8351f878447bdabac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4796b3e44104f71718e204e89511e9917f374d7c9cccf4b415da74048d9a739f6d3d179e528086e0e90030a99a6d24585af8f62adb9767d1d77076fdcb953589
|
7
|
+
data.tar.gz: 5e5d71ba6adc021240307ac95b22c77fe3c7d603858052eb360e180753e5727c2ec6bad8162be9c18fae553d02fb45f32b43354a5226a3f1f6ded9cc28e08f3f
|
data/Gemfile.lock
CHANGED
@@ -1,24 +1,43 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cronos_explorer (0.2.
|
5
|
-
faraday (~>
|
4
|
+
cronos_explorer (0.2.1)
|
5
|
+
faraday (~> 1.0)
|
6
6
|
oj (~> 3.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
faraday (
|
12
|
-
faraday-
|
11
|
+
faraday (1.10.0)
|
12
|
+
faraday-em_http (~> 1.0)
|
13
|
+
faraday-em_synchrony (~> 1.0)
|
14
|
+
faraday-excon (~> 1.1)
|
15
|
+
faraday-httpclient (~> 1.0)
|
16
|
+
faraday-multipart (~> 1.0)
|
17
|
+
faraday-net_http (~> 1.0)
|
18
|
+
faraday-net_http_persistent (~> 1.0)
|
19
|
+
faraday-patron (~> 1.0)
|
20
|
+
faraday-rack (~> 1.0)
|
21
|
+
faraday-retry (~> 1.0)
|
13
22
|
ruby2_keywords (>= 0.0.4)
|
14
|
-
faraday-
|
23
|
+
faraday-em_http (1.0.0)
|
24
|
+
faraday-em_synchrony (1.0.0)
|
25
|
+
faraday-excon (1.1.0)
|
26
|
+
faraday-httpclient (1.0.1)
|
27
|
+
faraday-multipart (1.0.3)
|
28
|
+
multipart-post (>= 1.2, < 3)
|
29
|
+
faraday-net_http (1.0.1)
|
30
|
+
faraday-net_http_persistent (1.2.0)
|
31
|
+
faraday-patron (1.0.0)
|
32
|
+
faraday-rack (1.0.0)
|
33
|
+
faraday-retry (1.0.3)
|
15
34
|
minitest (5.15.0)
|
35
|
+
multipart-post (2.1.1)
|
16
36
|
oj (3.13.11)
|
17
37
|
rake (13.0.6)
|
18
38
|
ruby2_keywords (0.0.5)
|
19
39
|
|
20
40
|
PLATFORMS
|
21
|
-
x86_64-darwin-19
|
22
41
|
x86_64-darwin-20
|
23
42
|
|
24
43
|
DEPENDENCIES
|
@@ -28,4 +47,4 @@ DEPENDENCIES
|
|
28
47
|
rake (~> 13.0)
|
29
48
|
|
30
49
|
BUNDLED WITH
|
31
|
-
2.2.
|
50
|
+
2.2.19
|
data/README.md
CHANGED
@@ -28,23 +28,8 @@ Or install it yourself as:
|
|
28
28
|
CronosExplorer.net = 'testnet3' or CronosExplorer.net = 'main' (default)
|
29
29
|
```
|
30
30
|
|
31
|
-
```
|
32
|
-
|
33
|
-
|
34
|
-
CronosExplorer::Contracts.listcontracts
|
35
|
-
|
36
|
-
CronosExplorer::Accounts.eth_get_balance(@address)
|
37
|
-
CronosExplorer::Accounts.balance(@address)
|
38
|
-
CronosExplorer::Accounts.txlist(@address, starttimestamp)
|
39
|
-
CronosExplorer::Accounts.tokenbalance(@contractaddress, @address)
|
40
|
-
|
41
|
-
CronosExplorer::Transactions.gettxinfo(@txhash)
|
42
|
-
CronosExplorer::Transactions.gettxreceiptstatus(@txhash)
|
43
|
-
CronosExplorer::Transactions.getstatus(@txhash)
|
44
|
-
|
45
|
-
CronosExplorer::Tokens.getToken(@contractaddress)
|
46
|
-
|
47
|
-
CronosExplorer::Contracts.listcontracts
|
31
|
+
```test
|
32
|
+
ruby test/*
|
48
33
|
```
|
49
34
|
|
50
35
|
## Development
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cronos_explorer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- dave
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-04-
|
11
|
+
date: 2022-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
19
|
+
version: '1.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
26
|
+
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: oj
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|