1. Go to this page and download the library: Download exinone/laravel-mixin-sdk 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/ */
// then you can
MixinSDK::user()->readProfile();
// or
MixinSDK::use('myConfig-A')->user()->readProfile();
// use setConfig method to save config
MixinSDK::setConfig('myConfig-A',$config0);
MixinSDK::setConfig('myConfig-B',$config1);
// then you can
MixinSDK::use('myConfig-A')->user()->readProfile();
//-------
// Or more simple way, using the 'use' method , chained with other methods
MixinSDK::use('myConfig-A',$config)->user()->readProfile();
// then you can
MixinSDK::use('myConfig-A')->user()->readProfile();
try {
// If the transfer fails here, an error will be thrown.
MixinSDK::wallet()->transfer($asset_id, $opponent_id, $pin, $amount, $memo);
} catch (MixinNetworkRequestException $e) {
// Here errCode and errMessage are the same as MixinNetwork, refer to the following link.
$errCode = $e->getCode();
$errMessage = $e->getMessage();
...
} catch (\Throwable $e) {
...
}
$iterator = [time()];
// if use it by MixinSDK::pin()->updatePin($oldPin,$pin),
// $iterator need have two element (count($iterator) == 2)
MixinSDK::wallet()->setIterator($iterator)->transfer($asset_id, $opponent_id, $pin, $amount, $memo);
// By default, microtime(true) * 100000 is used as iterator