This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
Releases: xboston/metahash-php
Releases · xboston/metahash-php
v0.2.3
v0.2.2
v0.2.1
v0.2.0
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 = '')