Still a rather uninteresting PHP implementation of OST Kit Alpha. This time updated for API v1.1. API v1.0 will work with this but the ledger & balance calls will not work. The OST_BASE_URL
call will have to be updated to reflect the new API version. API v0 info is at the bottom of the page.
Currently supports the full OSTKit v1.1 API.
Again, the usage is fairly straight forward:
require "path/to/config.php"; // this is where I keep my OST_API_KEY, OST_API_SECRET, OST_BASE_URL, and other stuff.
require "path/to/Curl.php"; // uses https://github.com/php-mod/curl/blob/master/src/Curl/Curl.php for curl requests! get it!
require "path/to/OST.class.php"; // or autoload it. whatever. i'm not your mum.
//create a user
$name = 'This was easy';
$create_user = OST::create_user($name);
//list some transactions
$transactions = 'transactionID1,transactionID2,transactionID3';
$list_options = ['id' => $transactions]; //see below for more about list options
$list_transactions = OST::list_transactions($list_options);
When calling the list methods, each one has its own set of options. You can view these options in the comments above the methods themselves. It is important to know you only need to provide the arguments you need. For example you want to list the first 50 actions that are user_to_user
:
$list_options = ['limit' => 50, 'kind' => 'user_to_user'];
$list_actions = OST::list_actions($list_options);
If you provide no $list_options
then it will return the default list (10 entries, sorted by creation date in descending order).
All calls return an associative array, like so:
/*
Array
(
[success] => 1
[data] => Array
(
[result_type] => user
[user] => Array
(
[id] => 56be7062-93a6-40b7-b97c-2802f96a10ed
[addresses] => Array
(
[0] => Array
(
[0] => 1337
[1] => 0xc4eD67D4Eb02190ff4dbC32985D14c4Ff4CAe41D
)
)
[name] => This was easy
[airdropped_tokens] => 0
[token_balance] => 0
)
)
)
*/
UPDATE 23 MAY 2018: Devs have apparently addressed the latency/timeout issues described below.
There are a few issues I have come across:
"Fixed" 27 May 2018 (removed the name filter from docs)list_users
when you provide the optional filtername
it is apparently ignored and returns the list as if the filter was not passed.list_users
v1.1 - probably unintentional, but the documentation for the list users endpoint now includes aname
optional filter (which still doesn't work).list_actions
has some unexpected (read: not intuitive to me) behaviour when requesting a list that passes the optional filter ofarbitrary_commission=true
- this will also return user to company, and company to user actions. I'd say this is unexpected because U2C or C2U actions do not have a commission attribute - and even if they do but are simply not visible to us, they should most definitely be set tofalse
. Furthermore, the API description states in the descriptionuser_to_user actions where the commission is set during creation or provided at execution
.Fixed 23 May 2018list_transactions
seems to stop returning transactions after you setlimit
to roughly 80 or above. For example, setting the limit to 80 works fine. Setting it to 81 and it fails without error (returns null). I don't know if this is an issue with my server or the API.Fixed 23 May 2018list_transfers
when called with no options, doesn't return anything. Not even an error. Again I am unsure if this is an issue with my server or the API. I mean... in fairness, it's probably the API.
A rather uninteresting PHP implementation of OST Kit Alpha.
Currently supports the full OSTKit v0 API:
- Create user
- Edit user
- List users
- Airdrop users
- Airdrop status
- Create transaction type
- Edit a transaction type
- List transaction types
- Execute a transaction type
- Get status of an executed transaction (or multiple transactions at once)
UPDATE 19 May 2018: Validation may have changed for various endpoints.
Pretty straightforward usage:
require_once "path/to/OSTv0.class.php"; // or autoload it. whatever. i'm not your mum.
$name = 'Foo Bar';
$user_uuid = \OST\OSTv0::create_user($name);
// to check a single tx status, ensure you pass the single uuid as a single element array like:
// $txs = ['a62fb7fe-ded8-4ecb-8489-4cb4c7d981ac'];
$txs = ['a62fb7fe-ded8-4ecb-8489-4cb4c7d981ac','1131d672-8859-42c6-99f0-2002dcaa2f6b'];
$tx_status = OST::tx_status($txs);
Don't forget to add in your API key, API secret, and base URL into your project. I defined them as a constant in a config file in my project.