Whether you are using digital tokens to power digital payments, loyalty point systems, celebrity tokens or even restricted-ICOs, Tetrium’s RESTful APIs can help you.
Digital tokens are digital assets used to store value or represent physical assets. They are easier and cheaper to create, store and transfer. There is already a clear trend moving towards wide adoption by various industries globally. So why wait? See how Tetrium can help you transform your business:
Build super secure, tamper-proof and zero error tolerance system that safeguards your monetary transactions.
Build immutable system that accurately keeps track of your customers’ points at all time. Easy to audit and no more messy reconciliation of accounts.
If you are a celebrity, an artist, a Youtuber or an influencer of any sorts, you can now reward your fans with your own personal tokens.
Create a community token to transact value among your friends, classmates, colleagues, or any other community members in a zero-to-low cost and convenient way.
Tag a digital token to a physical asset for example, a house, an art collection, a piece of jewelry, an antique or any asset of high value to prove and safeguard its ownership.
Tetrium, as a private blockchain, enables you to easily launch restricted-ICOs. You can completely control the distribution of your coin, and free yourself from dealing with any KYC complications.
When you can have it instantaneously with Tetrium blockchain technology.
You don't need any specific programming language to work with Tetrium. Just simple RESTful APIs will do. Tetrium is completely private and hence, your data are always safe and secure.
Cost per transaction on Tetrium can be as low as USD 0.00002 which is insanely cheaper than most solutions in the market.
Access to your data at all time through our powerful dashboard to gain insights and make better decisions.
See how Tetrium is different from others.
No specific programming language such as “Solidity” is required to run Tetrium. Tetrium runs exclusively on RESTful APIs.
No specific IDE is required to start using Tetrium. Even running on applications like Postman will work.
Tetrium is built on top of the widely-supported Ethereum platform and is powered by the highly-scalable top-notch AWS infrastructures.
The most basic element in Tetrium is a wallet. You can create one with a simple RESTful API call to Tetrium.
POST https://api.tetrium.io/tokenize/wallets
{
"passphrase":"Pass12579"
}
{
"status":"success",
"message":"wallet created",
"walletInformation":{
"mnemonics":"industry fossil shove certain rail hold mix ostrich tongue minor hotel affair",
"walletAddress":"0xc7731ba1b2cfb4e5fdbce6492928a7c7787e211e",
"walletKey":"ece36969cf09e9a4527c37cac6b7597d5b038dc8a5b8ab25f6e4d1a0eb90f31c"
}
}
With a wallet, you can now create a currency. A currency is a “Blockchain smart contract” that can later mint (produce) tokens for wallets to store and transfer.
POST https://api.tetrium.io/tokenize/currencies
{
"currencyName":"SampleCurrency",
"currencySymbol":"SMC",
"currencyDecimals":"2"
}
{
"status":"success",
"message":"create-currency initiated",
"transactionHash":"0x5ff710ede5f75f07002f6b3b4f3298159ae05bf6d6ce81d21af8c111e03f8c51"
}
With a currency, you can now mint (produce) tokens. You, as a creator, can mint as many tokens as you like.
POST https://api.tetrium.io/tokenize/currencies/(currencyAddress)/tokens
{
"amountToMint":"100"
}
{
"status":"success",
"message":"mint-currency-token initiated",
"transactionHash":"0xe8ca509c0ddb137c269951832123a2dc8ccd7ca5b8b706bcf0f58b44d7d159da"
}
Before you can transfer the tokens, you will need to make sure the receiver wallet is a member of your currency. You can add any wallet as a member through a simple API call.
POST https://api.tetrium.io/tokenize/currencies/(currencyAddress)/members
{
"memberWalletAddress":"0x34d86f8b9ece5ad06ef757d1c21c4373026d3345"
}
{
"status":"success",
"message":"add-currency-member initiated",
"transactionHash":"0x5d7529c42ecf539fa2ab825d677030b236dc0d8e9e7de9d51d2150259a5ed020"
}
You are now ready to transfer tokens.
POST https://api.tetrium.io/tokenize/currencies/(currencyAddress)/transfers
{
"destinationWalletAddress":"0x34d86f8b9ece5ad06ef757d1c21c4373026d3345",
"amountToTransfer":"10"
}
{
"status":"success",
"message":"transfer-currency-token initiated",
"transactionHash":"0xf03985ea22f80b4229771cf4d1492645b5b092d795d79581fc8aea83a5654cb1"
}
Every transaction made on Tetrum will be “mined” on Tetrium’s private Blockchain to make it completely tamper-proof. You can always check the “mining status” of any specific transaction through an API call.
GET https://api.tetrium.io/tokenize/check-transaction-status/0x5ff710ede5f75f07002f6b3b4f3298159ae05bf6d6ce81d21af8c111e03f8c51
{
"status":"success",
"message":"transaction status checked",
"transactionStatus":{
"date":"2018-04-15T08:42:04.793Z",
"type":"Create currency",
"txHash":"0x5ff710ede5f75f07002f6b3b4f3298159ae05bf6d6ce81d21af8c111e03f8c51",
"blockNo":110536,
"blockHash":"0x9a1c6146001995f490552b702affce6eecfd8f7bbd8566d0087bbf1ab62c7a13",
"currencyAddress":"0x29341b674091d600c227B137a457b0573515A7A8",
"from":"0xc7731ba1b2cfb4e5fdbce6492928a7c7787e211e",
"currencyTokenName":"SampleCurrency",
"currencyTokenSymbol":"SMC",
"currencyTokenDecimals":"2",
"status":"success"
}
}