@aavegotchi/sdk
TypeScript icon, indicating that this package has built-in type declarations

1.0.0-16a • Public • Published

aavegotchi-sdk 👻📦

Node.js client for Aaveotchi subgraphs and contracts on Polygon mainnet!

NPM Version

Table of content

Features

  • Ready for regular Javacript and browser environments
  • Convienient bundle of official addresses / subgraphs
  • No-frills setup with ethers or web3
  • GraphQL client for querying Aavegotchi subgraphs
  • Full developer-friendly TypeScript support

Install

Add to a Node.js project with npm or yarn

  • Browser demo on Codesandbox
$ npm install @aavegotchi/sdk
# or
$ yarn add @aavegotchi/sdk

Usage

Subgraph Data

import { graphql } from "@aavegotchi/sdk";
const chainId = 137;
const urls = graphql.urls.diamond[chainId];
const client = graphql.client();

const main = () => {
  const userAddress = "0xfffffffffffffffffffffffffffffff";
  const res = await client(`{
    aavegotchis(first: 500, where: {
      owner: ${userAdd}
    }) {
      id
      name
    }
  }`);
  console.log(res);
};

main();

On-Chain Data

Token information of a user.

import {
  AavegotchiFacet__factory,
  getDefaultProvider,
  contracts,
} from "@aavegotchi/sdk";
const chainId = 137;
const diamond = contracts.addresses[chainId];
const provider = getDefaultProvider();
const aavegotchiFacet = AavegotchiFacet__factory.connect(diamond, provider);

const main = () => {
  console.log(aavegotchiFacet);
  const tokensOfOwner = await;
};

main();

Get Help

External

https://docs.aavegotchi.com

https://louper.dev/?address=0x86935F11C86623deC8a25696E1C19a8659CbF95d&network=polygon

https://thegraph.com/explorer/subgraph/aavegotchi/aavegotchi-core-matic?version=current

Readme

Keywords

none

Package Sidebar

Install

npm i @aavegotchi/sdk

Weekly Downloads

7

Version

1.0.0-16a

License

TBD

Unpacked Size

24.3 MB

Total Files

4071

Last publish

Collaborators

  • aavegotchi