Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 79f8bf8

Browse filesBrowse files
committed
Update documentation
2 parents 2eb4085 + da8c678 commit 79f8bf8
Copy full SHA for 79f8bf8

File tree

Expand file treeCollapse file tree

3 files changed

+29
-16
lines changed
Filter options
Expand file treeCollapse file tree

3 files changed

+29
-16
lines changed

‎CHANGELOG.md

Copy file name to clipboardExpand all lines: CHANGELOG.md
+13Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.3.2] - 2021-10-14
8+
### Changed
9+
- update documentation links
10+
- update LICENSE
11+
12+
## [1.3.0] - 2021-10-12
13+
### Changed
14+
- update Blocks API
15+
16+
## [1.2.0] - 2021-10-05
17+
### Changed
18+
- update Contracts API
19+
720
## [1.1.0] - 2021-09-28
821
### Added
922
- CHANGELOG.md

‎LICENSE

Copy file name to clipboardExpand all lines: LICENSE
+2-3Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2018 oraculus.io
4-
Copyright (c) 2018 Maslakou Ihar
3+
Copyright (c) 2018-2021 Maslakou Ihar
54

65
Permission is hereby granted, free of charge, to any person obtaining a copy
76
of this software and associated documentation files (the "Software"), to deal
@@ -19,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1918
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2019
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2120
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22-
THE SOFTWARE.
21+
THE SOFTWARE.

‎README.md

Copy file name to clipboardExpand all lines: README.md
+14-13Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,42 @@
11
# EtherScan PHP API
2+
23
PHP wrapper for the EtherScan API
34

4-
[Official API Documentation](https://etherscan.io/apis)
5+
[![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
6+
7+
[Official API Documentation](https://docs.etherscan.io)
58

69
[Create API Key (optional)](https://etherscan.io/myapikey)
710

8-
Requirements
9-
------------
11+
## Requirements
12+
1013
The minimum requirement by EtherScan API is that your Web server supports PHP 5.6.
1114

12-
Installation
13-
------------
15+
## Installation
16+
1417
To install EtherScan PHP API package you can run command:
1518

1619
```
1720
composer require maslakoff/php-etherscan-api:dev-master
1821
```
1922

20-
Usage
21-
-----
23+
## Usage
24+
2225
Mainnet
2326

2427
```php
2528
$client = new \Etherscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V');
2629
$client->api('account')->balance('0x43406D1baAE11a950DE734DAE4079A3C9Eb48DAf');
2730
```
2831

29-
3032
## For testnet usage
3133

3234
Supported:
3335

34-
* goerli
35-
* ropsten
36-
* kovan
37-
* rinkeby
38-
36+
- goerli
37+
- ropsten
38+
- kovan
39+
- rinkeby
3940

4041
```php
4142
$client = new \Etherscan\Client('Y3U3GMFC8P545CFWRU4TET8MY1K79YDZ3V', EtherscanAPIConf::TESTNET_RINKEBY);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.