Build an in-Game
Marketplace

Simple code handles all the essentials for an NFT marketplace within your game environment.

Award Players
With Tokens

With Tatum launching tokens is ridiculously easy. You'll be able to launch, distribute and handle all token transactions.

// Install with: npm install @tatumio/tatum
const { TatumSDK, Network } = require("@tatumio/tatum");

(async () => {
  try {
    const tatum = await TatumSDK.init({ network: Network.ETHEREUM_SEPOLIA });
    const result = await tatum.token.createNewFungibleToken({
        name: 'Test Token',
        symbol: 'MY_TKN',
        initialHolder: '0x48fa1676cfd0dfa23a71829c4c6d56874a88fa48', 
        initialSupply: '1000000',
        owner: '0x48fa1676cfd0dfa23a71829c4c6d56874a88fa48',
      })
      
    console.log(result.data);
  } catch (error) {
    console.error("Error fetching token metadata:", error);
  }
})();

tatum.destroy()

See the Pen Untitled by devrel (@tatum-devrel) on CodePen.

Mint Items as NFTs

1, 2, 3 and done. With Tatum, it takes a few simple steps to mint collectible items into NFTs.

An SDK Built for Unreal and Unity

We make building blockchain games simple. You won't ever have to leave your native environment.

npm i @tatumio/tatum

Building Something Big? Let's talk.

Not into forms? Let's talk on Telegram