Skip to content

Latest commit

 

History

History
250 lines (193 loc) · 5.75 KB

global.md

File metadata and controls

250 lines (193 loc) · 5.75 KB
description layout
Learn how to recommend mints that are trending among all Base users.
title description tableOfContents outline pagination
visible
true
visible
true
visible
true
visible
visible
true

🔵 All Base Users

In this guide, you will learn how to use Airstack to recommend all trending tokens that are minted by all Base users within a given time frame.

{% embed url="https://drive.google.com/file/d/1mk1UJTj8thobJbJxwCNhoGpTfa2cXw-_/view?usp=sharing" %} Trending Mints Among All Base Users {% endembed %}

Pre-requisites

  • An Airstack account
  • Basic knowledge of GraphQL

Get Started

JavaScript/TypeScript/Python

If you are using JavaScript/TypeScript or Python, Install the Airstack SDK:

{% tabs %} {% tab title="npm" %} React

npm install @airstack/airstack-react

Node

npm install @airstack/node

{% endtab %}

{% tab title="yarn" %} React

yarn add @airstack/airstack-react

Node

yarn add @airstack/node

{% endtab %}

{% tab title="pnpm" %} React

pnpm install @airstack/airstack-react

Node

pnpm install @airstack/node

{% endtab %}

{% tab title="pip" %}

pip install airstack

{% endtab %} {% endtabs %}

Then, add the following snippets to your code:

{% tabs %} {% tab title="React" %}

import { init, useQuery } from "@airstack/airstack-react";

init("YOUR_AIRSTACK_API_KEY");

const query = `YOUR_QUERY`; // Replace with GraphQL Query

const Component = () => {
  const { data, loading, error } = useQuery(query);

  if (data) {
    return <p>Data: {JSON.stringify(data)}</p>;
  }

  if (loading) {
    return <p>Loading...</p>;
  }

  if (error) {
    return <p>Error: {error.message}</p>;
  }
};

{% endtab %}

{% tab title="Node" %}

import { init, fetchQuery } from "@airstack/node";

init("YOUR_AIRSTACK_API_KEY");

const query = `YOUR_QUERY`; // Replace with GraphQL Query

const { data, error } = await fetchQuery(query);

console.log("data:", data);
console.log("error:", error);

{% endtab %}

{% tab title="Python" %}

import asyncio
from airstack.execute_query import AirstackClient

api_client = AirstackClient(api_key="YOUR_AIRSTACK_API_KEY")

query = """YOUR_QUERY""" # Replace with GraphQL Query

async def main():
    execute_query_client = api_client.create_execute_query_object(
        query=query)

    query_response = await execute_query_client.execute_query()
    print(query_response.data)

asyncio.run(main())

{% endtab %} {% endtabs %}

Other Programming Languages

To access the Airstack APIs in other languages, you can use https://api.airstack.xyz/gql as your GraphQL endpoint.

Fetch Trending Mints Globally

First, define the following parameters to fetch the trending mints data:

NameValueDescription
timeFrameone_hour | two_hours | eight_hours | one_day | two_days | seven_daysOnly fetch trending mints within the chosen time frame, e.g. one_hour will fetch trending mints for the last 1 hour.
criteriaunique_wallets | total_mintsThis will calculate and sort the tokens based on the chosen criteria:
- unique_wallets: Calculate the number of unique wallets minting the trending tokens
- total_mints: Calculate the number of times minting occurred on the trending token

Once you have the parameters prepared, simply use the query below and add the parameters as variables:

Try Demo

{% embed url="https://app.airstack.xyz/query/qdabcIltWy" %} Show me all trending mints globally in the last hour and sort by the number of unique wallets {% endembed %}

Code

{% tabs %} {% tab title="Query" %}

query MyQuery(
  $timeFrame: TimeFrame!,
  $criteria: TrendingMintsCriteria!
) {
  TrendingMints(
    input: {
      timeFrame: $timeFrame,
      audience: all,
      blockchain: base,
      criteria: $criteria
    }
  ) {
    TrendingMint {
      address
      erc1155TokenID
      criteriaCount
      timeFrom
      timeTo
      token {
        name
        symbol
        type
      }
    }
  }
}

{% endtab %}

{% tab title="Variables" %}

{
  "timeFrame": "one_hour",
  "criteria": "unique_wallets"
}

{% endtab %}

{% tab title="Response" %}

{
  "data": {
    "TrendingMints": {
      "TrendingMint": [
        {
          "address": "0x83b16258221bfa260ca4f1ef31567241242fec7a",
          "erc1155TokenID": "1",
          "criteriaCount": 51,
          "timeFrom": "2024-03-07T11:39:00Z",
          "timeTo": "2024-03-07T12:37:00Z",
          "token": {
            "name": "Rainbow Cats",
            "symbol": "",
            "type": "ERC1155"
          }
        },
        // Other trending mints
      ]
    }
  }
}

{% endtab %} {% endtabs %}

🎉 🥳 Congratulations you've just fetched all the trending tokens minted among all Base users and integrate it into your application!

Developer Support

If you have any questions or need help regarding integrating or building trending mints into your application, please join our Airstack's Telegram group.

More Resources