PHP code example of vipszx / ant-blockchain

1. Go to this page and download the library: Download vipszx/ant-blockchain 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/ */

    

vipszx / ant-blockchain example snippets


use vipszx\antBlockchain\client;

$client = new client([
            'accessId' => 'accessId',
            'privateKey' => './access.key',
            'bizId' => 'a00e36c5',
            'tenantId' => 'tenantId',
            'gas' => 1000000,
        ]);
       
//存证
$clinet->deposit($orderId, $content, $account, $mykmsKeyId, $gas = null);
 
//异步调用 Solidity 合约
$client->callSolidityContract($orderId, $account, $mykmsKeyId, $contractName, $methodSignature, $inputParamListStr, $outTypes, $gas = null);
        
//查询交易
$this->queryTransaction($hash);

//查询交易回执
$this->queryReceipt($hash);

//查询账户
$client->queryAccount($account);

//解析合约返回值
$content = bin2hex(base64_decode($output));
$client->parseOutput($content, $abi, $type);