clarion-app / multichain
PHP package for communicating with MultiChain RPC server
Installs: 51
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/clarion-app/multichain
This package is auto-updated.
Last update: 2025-10-06 17:21:13 UTC
README
PHP package for communicating with MultiChain node
- Install
composer require clarion-app/multichain
- Publish config file
php artisan vendor:publish --provider="ClarionApp\MultiChain\MultiChainProvider" --tag=config
- To use:
use ClarionApp\MultiChain\Facades\MultiChain;
print_r(MultiChain::getinfo());
print_r(MultiChain::liststreams());
// Create a stream call 'mystream', make it an open stream (true)
MultiChain::create("stream", "mystream", true);