We released the new Tatum SDK which will make your web3 development flow super fun.
Looking for old documentation? Click Here
Tatum SDK is here to make your life easier when building blockchain applications! No more complicated setups, no need for previous blockchain experience. We've got you covered.
- Super fast development: Start building blockchain applications in no time.
- No previous blockchain experience required: Perfect for beginners and experts alike.
- One line of code: Perform complex tasks with minimal effort.
- Monitor activity on a blockchain address 🕵️♂️
- Perform RPC calls to various blockchains 📞
- Read information about NFTs such as balances, transactions, or ownerships 🖼️
- Get information about a specific wallet like balances or transaction history 💰
🔑 Don’t have an API key? Unlock all networks, features and monitor error logs & usage.
Create API key for FREE
Install the Tatum SDK in your terminal to easily integrate blockchain features into your project:
{% tabs %} {% tab title="npm" %} {% code overflow="wrap" %}
npm install @tatumio/tatum
{% endcode %} {% endtab %}
{% tab title="yarn" %}
yarn add @tatumio/tatum
{% endtab %}
{% tab title="pnpm" %}
pnpm install @tatumio/tatum
{% endtab %}
{% tab title="bun" %}
bun install @tatumio/tatum
{% endtab %} {% endtabs %}
Here are some quick examples to show you how easy it is to use Tatum SDK:
{% tabs %} {% tab title="TypeScript" %} {% code overflow="wrap" lineNumbers="true" %}
import { TatumSDK, Ethereum, Network } from '@tatumio/tatum'
(async () => {
const tatum = await TatumSDK.init<Ethereum>({network: Network.ETHEREUM})
const latestBlock = await tatum.rpc.blockNumber()
console.log(`Latest block is ${latestBlock.result}`)
tatum.destroy();
})()
{% endcode %} {% endtab %}
{% tab title="JavaScript" %} {% code overflow="wrap" lineNumbers="true" %}
const { TatumSDK, Network } = require('@tatumio/tatum');
(async () => {
const tatum = await TatumSDK.init({ network: Network.ETHEREUM });
const latestBlock = await tatum.rpc.blockNumber();
console.log(`Latest block is ${latestBlock.result}`)
tatum.destroy();
})();
{% endcode %} {% endtab %} {% endtabs %}
{% tabs %} {% tab title="TypeScript" %} {% code overflow="wrap" lineNumbers="true" %}
import { TatumSDK, Ethereum, Network } from '@tatumio/tatum'
(async () => {
const tatum = await TatumSDK.init<Ethereum>({network: Network.ETHEREUM})
const monitoredAddress = '0xF64E82131BE01618487Da5142fc9d289cbb60E9d'
const subscription = await tatum.notification.subscribe.incomingNativeTx({
address: monitoredAddress,
url: 'https://<YOUR_WEBHOOK_URL>' // replace with your handler URL
})
console.log(`Now you are subscribed for all incoming ETH transactions on ${monitoredAddress}`)
})()
{% endcode %} {% endtab %}
{% tab title="JavaScript" %} {% code overflow="wrap" lineNumbers="true" %}
const { TatumSDK, Ethereum, Network } = require('@tatumio/tatum');
(async () => {
const tatum = await TatumSDK.init<Ethereum>({network: Network.ETHEREUM});
const monitoredAddress = '0xF64E82131BE01618487Da5142fc9d289cbb60E9d';
const subscription = await tatum.notification.subscribe.incomingNativeTx({
address: monitoredAddress,
url: 'https://<YOUR_WEBHOOK_URL>' // replace with your handler URL
});
console.log(`Now you are subscribed for all incoming ETH transactions on ${monitoredAddress}`);
})();
{% endcode %} {% endtab %}
{% tab title="curl" %} {% code overflow="wrap" lineNumbers="true" %}
curl -i -X POST \
https://api.tatum.io/v4/subscription?type=mainnet \
-H 'Content-Type: application/json' \
-d '{
"type": "INCOMING_NATIVE_TX",
"attr": {
"address": "0xF64E82131BE01618487Da5142fc9d289cbb60E9d",
"chain": "ETH",
"url": "https://<YOUR_WEBHOOK_URL>"
}
}'
{% endcode %} {% endtab %} {% endtabs %}
Ready to build fantastic blockchain applications? Check out the official documentation for more information and examples!
Happy coding! 🎉
{% hint style="info" %}
Get support with our products, meet other developers, and collaborate.
Discord · Twitter · Github
{% endhint %}