Skip to content

Commit 1176df7

Browse files
authored
Merge pull request #106 from EbenezerGH/update-v1.0.0
update to v1.0.0
2 parents 03399c5 + 234b531 commit 1176df7

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

README.md

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[![Generic badge](https://img.shields.io/badge/EtherscanApi-UP-brightgreen.svg)](https://api.etherscan.io/api?module=stats&action=ethprice&apikey=YourApiKeyToken)
22
[![Generic badge](https://img.shields.io/badge/CircleCI-PASS-brightgreen.svg)](https://circleci.com/gh/EbenezerGH/hello_etherscan/tree/master)
3-
[![Generic badge](https://img.shields.io/badge/Version-v0.9.0-lightgrey.svg)](https://jitpack.io/#EbenezerGH/etherscan-android-api)
3+
[![Generic badge](https://img.shields.io/badge/Version-v1.0.0-lightgrey.svg)](https://jitpack.io/#EbenezerGH/etherscan-android-api)
44
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://github.com/EbenezerGH/hello_etherscan/blob/update-documentation/LICENSE)
55

66
# etherscan-android-api
77

88
etherscan android api is an android wrapper for the [etherscan api](https://etherscan.io/apis). This is just a module to handle networking calls.
99

10-
There are only a few [features](https://github.com/EbenezerGH/hello_etherscan/issues) left to complete, however this version is completely safe to use.
10+
There are only a few [features](https://github.com/EbenezerGH/hello_etherscan/issues) left to add, however this version is completely safe to use.
1111

1212
## Getting Started
1313

@@ -20,10 +20,14 @@ Add JitPack to your root build.gradle at the end of repositories
2020
}
2121
}
2222
```
23+
24+
2325
Add the dependency
26+
27+
2428
```
2529
dependencies {
26-
implementation 'com.github.EbenezerGH:hello_etherscan:v0.9.0'
30+
implementation 'com.github.EbenezerGH:hello_etherscan:v1.0.0'
2731
}
2832
```
2933

@@ -58,8 +62,6 @@ Coming Soon: ``[eventLogs, geth, websockets, tokens]``
5862
onSuccess = { Log.d(TAG, "The ABI has returned: $it") },
5963
onError = { Log.d(TAG, "error receiving abi contract") })
6064
61-
62-
6365
//blocks
6466
blocks.getBlocksMined("2165403")
6567
.observeOn(AndroidSchedulers.mainThread())

etherscanapi/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion 14
99
targetSdkVersion 26
1010
versionCode 1
11-
versionName "1.0"
11+
versionName "1.0.0"
1212

1313
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1414
}

0 commit comments

Comments
 (0)