Skip to content
This repository has been archived by the owner on Nov 14, 2022. It is now read-only.

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
xboston committed Jul 9, 2019
1 parent c0bf80c commit 672006a
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,27 @@ php -S localhost:8000

open in browser: http://localhost:8000/

![](https://raw.githubusercontent.com/xboston/php-metahash/master/media/browser.png)
![browser](https://raw.githubusercontent.com/xboston/php-metahash/master/media/browser.png)


or http://localhost:8000/wallets.php

![](https://raw.githubusercontent.com/xboston/php-metahash/master/media/wallets.png)
![wallets](https://raw.githubusercontent.com/xboston/php-metahash/master/media/wallets.png)


## Breaking change

- from 0.1.1 to 0.2.0
```diff
-public function fetchHistory(string $address, int $beginTx = 0, int $countTx = self::HISTORY_LIMIT)
+public function fetchHistory(string $address, int $countTx = self::HISTORY_LIMIT, int $beginTx = 0)

-public function sendTx(string $to, string $value, string $fee = '', int $nonce = 1, string $data = '', string $key = '', string $sign = '')
+public function sendTx(string $privateKey, string $to, int $value, string $data = '', int $nonce = 1, int $fee = 0)

-public function makeSign(string $address, string $value, string $nonce, int $fee = 0, string $data = '')
+public function makeSign(string $address, int $value, int $nonce, int $fee = 0, string $data = '')
```

## License

Expand Down

0 comments on commit 672006a

Please sign in to comment.