Meaning of this in php

+1 vote
What does the following code doing?

$client = MultichainClient("http://<chainurl>:8000", 'multichainrpc', '79pgKQusiH3VDVpyzsM6e3kRz6gWNctAwgJvymG3iiuz', 3);
$address = $client->setDebug(true)->getNewAddress();
asked Dec 12, 2016 by anonymous

1 Answer

0 votes

We didn't develop the PHP MultiChain client so can't be sure. But it looks like it opens a connection to the MultiChain node API and sends a getnewaddress request.

answered Dec 12, 2016 by MultiChain
...