aleksandrzhiliaev / yii2-altcoind
Alticoind module+extension. Supports connection between yii2 and coin daemons (Bitcoind, Litecoind etc..)
Installs: 664
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 4
Forks: 9
Open Issues: 2
Type:yii2-module
Requires
- psychiccat/monero-php: ^1.0
- yiisoft/yii2: ^2.0.0
Requires (Dev)
- codeception/specify: ^0.4.3
- codeception/verify: ^0.3.1
- yiisoft/yii2-codeception: ^2.0.0
README
Yii2 Alticoind module+extension. Supports connection between yii2 and coin daemons (Bitcoind, Litecoind etc..)
You can use only altcoind components in your application to make calls to your bitcoind,litecoind,geth,monero servers or also use module which provides you web interface (show balance, make new transfer, show generated addresses, generate new address, show private keys of your addresses).
Installation
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist aleksandrzhiliaev/yii2-altcoind
or add
"aleksandrzhiliaev/yii2-altcoind": "*"
to the require section of your composer.json
file.
Basic Usage
After installation you need to define your altcoind components in your yii container:
... 'components' => [ 'bitcoin' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Altcoin', 'username' => 'rpc_username', 'password' => 'rpc_password', 'host' => 'rpc_host', 'port' => 'rpc_port', ], 'litecoin' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Altcoin', 'username' => 'rpc_username', 'password' => 'rpc_password', 'host' => 'rpc_host', 'port' => 'rpc_port', ], 'ethereum' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Ethereum', 'host' => 'rpc_host', 'port' => 'rpc_port', ], 'monero' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Monero', 'host' => 'rpc_host', 'port' => 'rpc_port', ], 'ripple' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Ripple', 'urlNode' => 'url', 'address' => 'xrp_address', 'secret' => 'xrp_secret', ], 'zcash' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Altcoin', 'username' => 'zec_account', 'password' => 'zec_password', 'host' => 'zec_host', 'port' => 'zec_port', ], 'bytecoin' => [ 'class' => 'aleksandrzhiliaev\altcoind\components\Bytecoin', 'host' => 'bcn_host', ], ... ] ...
You can install other clients which provide you RPC interface.
Now you can make transfers, generate new addresses and do other stuff like this:
$txid = Yii::$app->bitcoin->send('address', 0.0001); $address = Yii::$app->bitcoin->generateAddress('account_name'); $walletInfo = Yii::$app->bitcoin->getInfo(); $generatedAddresses = Yii::$app->bitcoin->showAddresses('account_name');
If something goes wrong these methods will throw standard ErrorException
.
To use web interface you need to add module in modules
section:
'modules' => [ ... 'altcoind' => [ 'class' => 'aleksandrzhiliaev\altcoind\Module', 'layout' => '@app/views/layouts/admin', 'allowedUsers' => ['admin'], 'wallets' => ['bitcoin', 'litecoin', 'ethereum', 'monero', 'ripple', 'zcash'], 'mainPageCache' => 60 * 1, ], ... ] ...
You need to define user logins, who have rights to view that pages. Also you need to add a list of wallets which will be used in web interface.
Currencies support
Currently this module supports:
- Bitcoin
- Litecoin
- Monero
- Ethereum
- Ripple
- Zcash
- Bytecoin