README.md
This commit is contained in:
parent
d1c5ae15d0
commit
07c394787d
79
README.md
79
README.md
@ -49,20 +49,6 @@ $web3->clientVersion(function ($err, $version) {
|
||||
});
|
||||
```
|
||||
|
||||
### batch
|
||||
```
|
||||
$web3->batch(true);
|
||||
$web3->clientVersion();
|
||||
$web3->hash('0x1234');
|
||||
$web3->execute(function ($err, $data) {
|
||||
if ($err !== null) {
|
||||
// do something
|
||||
return;
|
||||
}
|
||||
// do something
|
||||
})
|
||||
```
|
||||
|
||||
### Eth
|
||||
```
|
||||
use Web3\Web3;
|
||||
@ -79,6 +65,71 @@ use Web3\Eth;
|
||||
$eth = new Eth('http://localhost:8545');
|
||||
```
|
||||
|
||||
### Net
|
||||
```
|
||||
use Web3\Web3;
|
||||
|
||||
$web3 = new Web3('http://localhost:8545');
|
||||
$net = $web3->net;
|
||||
```
|
||||
|
||||
Or
|
||||
|
||||
```
|
||||
use Web3\Net;
|
||||
|
||||
$net = new Net('http://localhost:8545');
|
||||
```
|
||||
|
||||
### Batch
|
||||
|
||||
web3
|
||||
|
||||
```
|
||||
$web3->batch(true);
|
||||
$web3->clientVersion();
|
||||
$web3->hash('0x1234');
|
||||
$web3->execute(function ($err, $data) {
|
||||
if ($err !== null) {
|
||||
// do something
|
||||
return;
|
||||
}
|
||||
// do something
|
||||
});
|
||||
```
|
||||
|
||||
eth
|
||||
|
||||
```
|
||||
$eth->batch(true);
|
||||
$eth->protocolVersion();
|
||||
$eth->syncing();
|
||||
|
||||
$eth->provider->execute(function ($err, $data) {
|
||||
if ($err !== null) {
|
||||
// do something
|
||||
return;
|
||||
}
|
||||
// do something
|
||||
});
|
||||
```
|
||||
|
||||
net
|
||||
|
||||
```
|
||||
$net->batch(true);
|
||||
$net->version();
|
||||
$net->listening();
|
||||
|
||||
$net->provider->execute(function ($err, $data) {
|
||||
if ($err !== null) {
|
||||
// do something
|
||||
return;
|
||||
}
|
||||
// do something
|
||||
});
|
||||
```
|
||||
|
||||
# API
|
||||
|
||||
Todo.
|
||||
|
Loading…
Reference in New Issue
Block a user