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

v0.2.0

Compare
Choose a tag to compare
@xboston xboston released this 09 Jul 00:17
· 45 commits to master since this release

Breaking change

  • from v0.1.1 to v0.2.0
-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 = '')