PHP code example of iceqi / avata-php
1. Go to this page and download the library: Download iceqi/avata-php library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
iceqi / avata-php example snippets
//新增链账户
$account = new \Iceqi\AvataPhp\Apis\Accounts\Accounts();
$account->name = "xxx";
$account->operation_id = "xxx";
$account =$account->create();
$result = $client->request($account)->result();
// 查询链账户 参数参照官方文档
$client = new \Iceqi\AvataPhp\Client("xxx", "xxx");
$account = new \Iceqi\AvataPhp\Apis\Accounts\Accounts();
$account->limit = 10;
$account = $account->info();
$result = $client->request($account)->result();
//创建 NFT 类别
$client = new \Iceqi\AvataPhp\Client("xxx","xxx");
$classes = new \Iceqi\AvataPhp\Apis\Nft\Classes();
$classes->name = "xxx";
$classes->owner = "xxx";
$classes->operation_id = "xxx";
$classeParam =$classes->create();
$result = $client->request($classeParam)->result();