forked from EverexIO/Ethplorer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,27 @@ | ||
# ethplorer | ||
# Ethplorer | ||
Ethereum tokens (based on EIP20 standard) and transactions viewer | ||
|
||
Mainnet and testnet are supported. | ||
|
||
[Online version at Ethplorer.io](https://ethplorer.io) | ||
|
||
# Instalation | ||
|
||
Clone repository into separate webserver's directory. | ||
``` | ||
cd /var/www | ||
mkdir ethplorer | ||
git clone https://github.com/amilabs/ethplorer.git cp-tools | ||
``` | ||
|
||
Make sure your web server supports .htaccess and mod_rewrite. | ||
|
||
# Configure RPC | ||
|
||
Copy cfg/config.tools.sample.php to cfg/config.tools.php and specify RPC addresses. | ||
|
||
Use composer to install dependencies. | ||
``` | ||
php composer.phar install | ||
``` | ||
|