1.0.0-16a • Published 2 years ago

@aavegotchi/sdk v1.0.0-16a

Weekly downloads
-
License
TBD
Repository
github
Last release
2 years ago

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

1.0.0-16a

2 years ago

1.0.0-15a

2 years ago

1.0.0-13a

2 years ago

1.0.0-14a

2 years ago

1.0.0-15a-1

2 years ago

1.0.0-12a

2 years ago

1.0.0-11a

2 years ago

1.0.0-10a

2 years ago

1.0.0-9a

3 years ago

1.0.0-8a

3 years ago

1.0.0-7a

3 years ago

1.0.0-6a

3 years ago

1.0.0-5a

3 years ago

1.0.0-4a

3 years ago

1.0.0-3a

3 years ago

1.0.0-2a

3 years ago

1.0.0-1a

3 years ago