Shared node infrastructure for top blockchains using JSON-RPC.
Dedicated nodes infrastructure for leading blockchains using JSON-RPC
Test EVM transactions, optimize gas fees and identify security flaws
Unified data from a single point using REST APIs. Execution time of 25ms.
Real-time notifications for events on top blockchains. Response under 100ms.
A set of prepared cryptographic APIs with unified endpoints which save time and effort.
Get access to unified market data using REST APIs from top crypto exchanges.
Crypto APIs focuses on Ethereum Classic API as one of its features. Ethereum Classic is a blockchain, crypto, and community.
Its crypto price is at $9.39, with a market cap of $1.10 billion at the moment of writing. The value token is Ether, the same as Ethereum.
As a blockchain, it is derived from a hard fork of Ethereum.
Initially, the hard fork of Ethereum happened in 2016. It followed the DAO attack and was offered as a solution to the vulnerabilities. In simple words, DAOs were complex smart contracts that ran on Ethereum. The purpose of the DAO contracts was to run VC funds in the name of dApps. Logically, these were incentives for the community that created those applications based on Ethereum ecosystem.
Eventually, there was a loophole in the DAO that made possible the exploitation of hacking of around $50 million dollars. Thus, this is where the “battle of ethics and ideology” started within the community. There were three choices of action that could be done: nothing, soft fork or hard fork. The majority (including founders) agreed on updating the blockchain through a hard fork, which resulted in reversing the attack and gaining back the funds.
However, Ethereum Classic community does believe nothing should’ve been done. Consequently, they stick to the first version. This represents the philosophy of Ethereum code not being mutable. As they say: “Code is Law”.
In addition, there are several features of ETC similar to ETH. For instance:
Finally, Crypto APIs provides Ethereum Classic API endpoints on interacting with this unforked version of Ethereum blockchain.
Crypto APIs Token API allows you to get token balances of addresses, and transfer tokens from one address to another.
For instance:
curl -X POST https://api.cryptoapis.io/v1/bc/eth/rinkeby/tokens/transfer \-H ‘Content-Type: application/json’ \-H ‘X-API-Key: my-api-key’-d ‘{
“fromAddress” : “0x0cb1883c01377f45ee5d7448a32b5ac1709afc11”,
“toAddress” : “0x4ab47e7b0204d6b3bf0e956db14e63142b9b5ab8”,
“contract” : “0xe7d553c3aab5943ec097d60535fd06f1b75db43e”,
“password“: “abc123456” or “privateKey” :
0xeb38783ad75d8081fb9105baee6ac9413c4abd732ef889116714f271cde6aed”,
“gasPrice” : 11500000000,
“gasLimit” : 60000,
“token” : 115,
“nonce”: 179
}’
This POST request allows the transfer from one address to another, using these parameters:
Payment Forwarding is an automatic way to move any received funds to another wallet. It’s mainly used to move funds once received to cold wallets. Moving funds from hot wallets to cold wallets is a common practice in the market, it’s used by all exchanges and wallets. Additionally, Crypto APIs will monitor the wallet/address you have a subscription for. Instantly, once any funds are received, Crypto APIs will move them to the target wallet/address then notify you by sending a call to the URL you have specified.
If you have a Keystore file/account created on Crypto APIs servers you need to provide the following information:
Here is how to create an automated payment forwarding for an address that is not stored on our servers. Firstly, the user should prove the following information:
Note: We suggest confirmations to be set to at least 6.
After executing the forwarding payment, a message goes the specified callback(URL). For instance:
{ “currency“: “ETH”,
“network“: “rinkeby”,
“type“: “PAYMENT_FORWARDING”,
“uuid“: “238c883e-f560-4297-949d-b3f45f01dbee”,
“txHash“:
“0xc8019576c5b8140476d28217db711bb9bc642216071b7186d7abd7a97954cfcb”,
“url” : “http://myaddress.com/paymet_forwarding_hook”,
“status“: “DONE”,
“message“: “Payment forwarding was successful!”
}
In a nutshell, these are a few examples of how endpoints help in integrating the Ethereum API into your website. They provide the backbone into the complete process of building, deploying dApps and much more.