An open API service indexing awesome lists of open source software.

https://github.com/starcoinorg/starcoin-php

starcoin php sdk
https://github.com/starcoinorg/starcoin-php

Last synced: 8 months ago
JSON representation

starcoin php sdk

Awesome Lists containing this project

README

          

# starcoin-php
starcoin php sdk

# How to use

## composer
```shell
composer require starcoin/starcoin
```

# Examples

## query stc balance

```php
$myAddressHash = "0x0000000000000000000000000000000";
$starcoin = new StarcoinClient("https://main-seed.starcoin.org/");
$balance = $starcoin->getBalanceOfStc()
echo $balance;
```

## transfer

```php
$starcoin = new StarcoinClient("https://main-seed.starcoin.org/");
```