Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Добавление операций записи в блокчейн #28

Open
wants to merge 26 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
f598447
Update ChainOperations.php
jackvote Oct 17, 2020
588ae0f
Update ChainOperationsGolos.php
jackvote Oct 17, 2020
7b2352a
Create BroadcastTest.php
jackvote Oct 17, 2020
db433a0
Update GetTransactionHex.php
jackvote Oct 17, 2020
a4f1cbb
Update README.md
jackvote Oct 17, 2020
30d63e8
Update HttpJsonRpcConnectorAbstract.php
jackvote Oct 17, 2020
dfae582
Update WSConnectorAbstract.php
jackvote Oct 17, 2020
9ace80d
Update WitnessUpdate.php
jackvote Oct 17, 2020
0107323
Update ChainOperations.php
jackvote Oct 17, 2020
719b58d
Update ChainOperationsGolos.php
jackvote Oct 17, 2020
42bcb08
Update BroadcastTest.php
jackvote Oct 21, 2020
c6bb512
Merge pull request #1 from t3ran13/master
jackvote Oct 22, 2020
f17b873
Update and rename Tests/BroadcastTest.php to examples/Broadcast/MoreT…
jackvote Oct 22, 2020
b832ce6
Update MoreTest.php
jackvote Oct 22, 2020
55fa51b
Update README.md
jackvote Oct 23, 2020
0bbae67
Update OperationSerializer.php
jackvote Oct 23, 2020
25c1ef1
Update MoreTest.php
jackvote Oct 26, 2020
749efa3
Update ChainOperations.php
jackvote Oct 26, 2020
b6fc303
Update ChainOperationsGolos.php
jackvote Oct 26, 2020
b072896
Update OperationSerializer.php
jackvote Oct 26, 2020
cb4ba66
Merge pull request #2 from t3ran13/master
jackvote Oct 29, 2020
53885c8
Update ChainOperations.php
jackvote Nov 2, 2020
11d630f
Update ChainOperationsGolos.php
jackvote Nov 2, 2020
ff0bde4
Update OperationSerializer.php
jackvote Nov 2, 2020
9fdc2c0
Update OperationSerializer.php
jackvote Nov 2, 2020
485caf0
Update ChainOperations.php
jackvote Nov 2, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Connectors/Http/HttpJsonRpcConnectorAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class HttpJsonRpcConnectorAbstract implements ConnectorInterface


/**
* current node url, for example 'https://api.golos.io'
* current node url, for example 'https://golos.lexa.host'
*
* if you set several nodes urls, if with first node will be trouble
* it will connect after $maxNumberOfTriesToCallApi tries to next node
Expand Down Expand Up @@ -339,4 +339,4 @@ public function makeUrlFromArray($data)

return $url;
}
}
}
4 changes: 2 additions & 2 deletions Connectors/WebSocket/WSConnectorAbstract.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ abstract class WSConnectorAbstract implements ConnectorInterface
protected static $nodeURL;

/**
* current node url, for example 'wss://ws.golos.io'
* current node url, for example 'wss://golos.lexa.host/ws'
*
* @var string
*/
Expand Down Expand Up @@ -309,4 +309,4 @@ public function doRequest($apiName, array $data, $answerFormat = self::ANSWER_FO

return $answer;
}
}
}
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,11 @@ namespace GrapheneNodeClient\Tools\ChainOperations
- comment // steem or golos
- content // only viz
- witness_update
- transfer_to_vesting
- withdraw_vesting
- claim
- transfer_to_tip
- transfer_from_tip

```php
<?php
Expand Down Expand Up @@ -320,7 +325,7 @@ class GolosWSConnector extends WSConnectorAbstract
*
* @var string|array
*/
protected $nodeURL = ['wss://ws.golos.io', 'wss://api.golos.cf'];
protected $nodeURL = ['wss://api.golos.blckchnd.com/ws', 'wss://golos.lexa.host/ws', 'wss://golos.solox.world/ws'];
}


Expand Down Expand Up @@ -549,4 +554,4 @@ You need to install PhpUnit in your system (https://phpunit.de/manual/3.7/en/ins
cd Tests
phpunit CommandsTest.php
phpunit CommandsTest.php --filter=testGetBlock // test only one command
```
```
8 changes: 7 additions & 1 deletion Tools/ChainOperations/ChainOperations.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ class ChainOperations
const OPERATION_CUSTOM_JSON = 'custom_json';
const OPERATION_CUSTOM = 'custom';//only for VIZ
const OPERATION_WITNESS_UPDATE = 'witness_update';
const OPERATION_WITNESS_UPDATE = 'donate';
const OPERATION_TRANSFER_TO_VESTING = 'transfer_to_vesting'; // GOLOS/?/?
const OPERATION_WITHDRAW_VESTING = 'withdraw_vesting'; // GOLOS/?/?
const OPERATION_CLAIM = 'claim'; // GOLOS
const OPERATION_TRANSFER_TO_TIP = 'transfer_to_tip'; // GOLOS
const OPERATION_TRANSFER_FROM_TIP = 'transfer_from_tip'; // GOLOS

/** @var array */
protected static $opMap = [];
Expand Down Expand Up @@ -57,4 +63,4 @@ public static function getOperationId($chainName, $operationName)

return self::$opMap[$chainName][$operationName];
}
}
}
38 changes: 37 additions & 1 deletion Tools/ChainOperations/ChainOperationsGolos.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ class ChainOperationsGolos
ChainOperations::OPERATION_TRANSFER => 2,
ChainOperations::OPERATION_CUSTOM_JSON => 18,
ChainOperations::OPERATION_WITNESS_UPDATE => 11,
ChainOperations::OPERATION_TRANSFER_TO_VESTING => 3,
ChainOperations::OPERATION_WITHDRAW_VESTING => 4,
ChainOperations::OPERATION_CLAIM => 53,
ChainOperations::OPERATION_TRANSFER_TO_TIP => 55,
ChainOperations::OPERATION_TRANSFER_FROM_TIP => 56,

];

const FIELDS_TYPES = [
Expand Down Expand Up @@ -64,6 +70,36 @@ class ChainOperationsGolos
'account_creation_fee' => OperationSerializer::TYPE_ASSET,
'maximum_block_size' => OperationSerializer::TYPE_INT32,
'sbd_interest_rate' => OperationSerializer::TYPE_INT16
],
ChainOperations::OPERATION_TRANSFER_TO_VESTING => [
'from' => OperationSerializer::TYPE_STRING,
'to' => OperationSerializer::TYPE_STRING,
'amount' => OperationSerializer::TYPE_ASSET
],
ChainOperations::OPERATION_WITHDRAW_VESTING => [
'account' => OperationSerializer::TYPE_STRING,
'vesting_shares' => OperationSerializer::TYPE_ASSET
],
ChainOperations::OPERATION_CLAIM => [
'from' => OperationSerializer::TYPE_STRING,
'to' => OperationSerializer::TYPE_STRING,
'amount' => OperationSerializer::TYPE_ASSET,
'to_vesting' => OperationSerializer::TYPE_BOOL,
'extensions' => OperationSerializer::TYPE_SET_EXTENSIONS
],
ChainOperations::OPERATION_TRANSFER_TO_TIP => [
'from' => OperationSerializer::TYPE_STRING,
'to' => OperationSerializer::TYPE_STRING,
'amount' => OperationSerializer::TYPE_ASSET,
'memo' => OperationSerializer::TYPE_STRING,
'extensions' => OperationSerializer::TYPE_SET_EXTENSIONS
],
ChainOperations::OPERATION_TRANSFER_FROM_TIP => [
'from' => OperationSerializer::TYPE_STRING,
'to' => OperationSerializer::TYPE_STRING,
'amount' => OperationSerializer::TYPE_ASSET,
'memo' => OperationSerializer::TYPE_STRING,
'extensions' => OperationSerializer::TYPE_SET_EXTENSIONS
]
];
}
}
Loading