๐ŸฅณTatum Documentation

We released the new Tatum SDK which will make your web3 development flow super fun. Looking for old documentation? Click Here

Welcome to Tatum SDK! ๐Ÿš€

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.

Why Tatum SDK? ๐Ÿ’ก

  1. Super fast development: Start building blockchain applications in no time.

  2. No previous blockchain experience required: Perfect for beginners and experts alike.

  3. One line of code: Perform complex tasks with minimal effort.

Key Features ๐ŸŽ‰

  • 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

Get Started ๐ŸŒŸ

Install the Tatum SDK in your terminal to easily integrate blockchain features into your project:

npm install @tatumio/tatum

Examples ๐Ÿ“š

Here are some quick examples to show you how easy it is to use Tatum SDK:

Perform RPC calls

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();
})()

Monitor activity on a blockchain address

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}`)
})()

Ready to build fantastic blockchain applications? Check out the official documentation for more information and examples!

Happy coding! ๐ŸŽ‰

Join our Web3 Developer Community

Get support with our products, meet other developers, and collaborate. Discord ยท Twitter ยท Github

Last updated

ยฉ Tatum Technology, LLC