├── .github └── workflows │ ├── create-subgraph.yml │ ├── prod-publish-to-npm.yml │ └── push-subgraph.yml ├── .gitignore ├── README.md ├── airstack-modules ├── README.md ├── bin │ └── index.ts ├── graphql │ ├── airstack-dex-schema.graphql.ts │ ├── airstack-domain-name-schema.graphql.ts │ ├── airstack-nft-marketplace-schema.graphql.ts │ ├── airstack-poap-schema.graphql.ts │ └── airstack-social-schema.graphql.ts ├── modules │ └── airstack │ │ ├── common │ │ └── index.ts │ │ ├── domain-name │ │ ├── Readme.md │ │ ├── domain-name.ts │ │ ├── index.ts │ │ └── utils.ts │ │ ├── nft-marketplace │ │ ├── Readme.md │ │ ├── index.ts │ │ ├── nft.ts │ │ └── utils.ts │ │ ├── poap │ │ ├── Readme.md │ │ ├── index.ts │ │ ├── poap.ts │ │ └── utils.ts │ │ └── social │ │ ├── Readme.md │ │ ├── index.ts │ │ ├── social.ts │ │ └── utils.ts ├── package-lock.json ├── package.json ├── src │ ├── constants.ts │ ├── integrate.ts │ ├── mapping.ts │ ├── types.ts │ └── utils.ts ├── tsconfig.json └── yamls │ ├── dex.yaml.ts │ ├── domain-name.yaml.ts │ ├── nft-marketplace.yaml.ts │ ├── poap.yaml.ts │ └── social.yaml.ts ├── blur ├── .gitignore ├── abis │ └── BlurExchange.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── blur-exchange.ts │ └── constants.ts ├── subgraph.yaml ├── tests │ ├── blur-exchange.test.ts │ ├── example.ts │ ├── test-utils.ts │ └── utils.ts └── tsconfig.json ├── ens ├── abis │ ├── BaseRegistrar.json │ ├── EnsRegistry.json │ ├── EthRegistrarController.json │ ├── EthRegistrarControllerOld.json │ ├── PublicResolver.json │ └── ReverseRegistrar.json ├── modules │ └── airstack │ │ ├── common │ │ └── index.ts │ │ └── domain-name │ │ ├── Readme.md │ │ ├── domain-name.ts │ │ ├── index.ts │ │ └── utils.ts ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── ens-registry.ts │ ├── eth-registrar.ts │ ├── resolver.ts │ ├── reverse-registrar.ts │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── common-utils.ts │ ├── ens-registry-utils.ts │ ├── ens-registry.test.ts │ ├── eth-registrar-utils.ts │ ├── eth-registrar.test.ts │ ├── resolver-utils.ts │ └── resolver.test.ts └── tsconfig.json ├── erc-6551-accounts-3xx ├── abis │ └── ERC6551Registry.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── common │ │ └── index.ts │ └── erc-6551-registry.ts ├── subgraph.yaml ├── tests │ ├── erc-6551-registry-utils.ts │ └── erc-6551-registry.test.ts ├── tsconfig.json └── yarn.lock ├── erc-6551-accounts ├── abis │ └── ERC6551Registry.json ├── networks.json ├── package.json ├── schema.graphql ├── src │ ├── common │ │ └── index.ts │ └── erc-6551-registry.ts ├── subgraph.yaml ├── tests │ ├── erc-6551-registry-utils.ts │ └── erc-6551-registry.test.ts ├── tsconfig.json └── yarn.lock ├── farcaster ├── .gitignore ├── abis │ ├── FarcasterNameRegistry.json │ └── TokenIdRegistry.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── mapping.ts │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── mapping-utils.ts │ └── mapping.test.ts └── tsconfig.json ├── farcaster_v2.1 ├── abis │ └── IdRegistry.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ └── id-registry.ts ├── subgraph.yaml ├── tests │ ├── id-registry-utils.ts │ └── id-registry.test.ts └── tsconfig.json ├── farcaster_v2 ├── abis │ └── IdRegistry.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ └── id-registry.ts ├── subgraph.yaml ├── tests │ ├── id-registry-utils.ts │ └── id-registry.test.ts └── tsconfig.json ├── folder.yml ├── lens ├── .gitignore ├── abis │ └── LensHub.json ├── networks.json ├── package.json ├── schema.graphql ├── src │ ├── constants.ts │ └── mappings │ │ ├── index.ts │ │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── lens.test.ts │ ├── sample.ts │ └── utils.ts └── tsconfig.json ├── lens_v2 ├── .gitignore ├── abis │ ├── LensHandle.json │ ├── LensHub.json │ ├── LensPeriphery.json │ └── TokenHandleRegistry.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── constants.ts │ ├── lens-handle.ts │ ├── mappings │ │ ├── index.ts │ │ └── utils.ts │ └── token-handle-registry.ts ├── subgraph.yaml ├── tests │ ├── lens-handle-utils.ts │ ├── lens-handle.test.ts │ ├── lens.test.ts │ ├── sample.ts │ ├── token-handle-registry-utils.ts │ ├── token-handle-registry.test.ts │ └── utils.ts └── tsconfig.json ├── looksrare ├── abis │ ├── ERC20.json │ ├── ERC721.json │ ├── LooksRareExchange.json │ └── Prices │ │ ├── Calculations │ │ ├── Curve.json │ │ └── SushiSwap.json │ │ ├── ChainLink.json │ │ ├── Curve │ │ ├── Factory.json │ │ ├── PoolRegistry.json │ │ └── Registry.json │ │ ├── ERC20.json │ │ ├── SushiSwap │ │ ├── Factory.json │ │ ├── Pair.json │ │ └── Router.json │ │ ├── Uniswap │ │ ├── Factory.json │ │ ├── Pair.json │ │ └── Router.json │ │ └── YearnLens.json ├── networks.json ├── package.json ├── schema.graphql ├── src │ ├── looks-rare-exchange.ts │ └── modules │ │ ├── abi.ts │ │ ├── airstack │ │ ├── constant.ts │ │ ├── datetime.ts │ │ ├── index.ts │ │ └── nft.ts │ │ ├── orders.ts │ │ ├── prices │ │ ├── README.md │ │ ├── calculations │ │ │ ├── CalculationsCurve.ts │ │ │ └── CalculationsSushiswap.ts │ │ ├── common │ │ │ ├── constants.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ ├── config │ │ │ ├── arbitrumOne.ts │ │ │ ├── fantom.ts │ │ │ └── mainnet.ts │ │ ├── index.ts │ │ ├── oracles │ │ │ ├── ChainLinkFeed.ts │ │ │ └── YearnLensOracle.ts │ │ └── routers │ │ │ ├── CurveRouter.ts │ │ │ ├── SushiSwapRouter.ts │ │ │ └── UniswapRouter.ts │ │ └── shared.ts ├── subgraph.yaml ├── tsconfig.json └── yarn.lock ├── poap ├── abis │ ├── Poap.json │ └── XPoap.json ├── config │ ├── chiado.json │ ├── gnosis.json │ ├── goerli.json │ └── mainnet.json ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── schema.graphql.bck ├── src │ └── poap.ts ├── subgraph.template.yaml ├── subgraph.yaml.bck ├── tests │ ├── example.ts │ ├── poap-utils.ts │ └── poap.test.ts └── tsconfig.json ├── quickswap ├── .gitignore ├── README.md ├── abis │ ├── Prices │ │ ├── Calculations │ │ │ ├── Curve.json │ │ │ └── SushiSwap.json │ │ ├── Chainlink.json │ │ ├── Curve │ │ │ ├── Factory.json │ │ │ ├── PoolRegistry.json │ │ │ └── Registry.json │ │ ├── ERC20.json │ │ ├── SushiSwap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ ├── Uniswap │ │ │ ├── Factory.json │ │ │ ├── FeeRouter.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ └── YearnLens.json │ ├── common │ │ ├── ERC20.json │ │ ├── ERC721.json │ │ ├── Placeholder.json │ │ └── Prices │ │ │ ├── Calculations │ │ │ ├── Curve.json │ │ │ └── SushiSwap.json │ │ │ ├── ChainLink.json │ │ │ ├── Curve │ │ │ ├── Factory.json │ │ │ ├── PoolRegistry.json │ │ │ └── Registry.json │ │ │ ├── ERC20.json │ │ │ ├── SushiSwap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ │ ├── Uniswap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ │ └── YearnLens.json │ └── quickswap │ │ ├── ERC20.json │ │ ├── Factory.json │ │ └── Pair.json ├── modules │ ├── airstack │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── dex.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── datetime.ts │ │ │ ├── index.ts │ │ │ ├── maths.ts │ │ │ └── network.ts │ └── prices │ │ ├── README.md │ │ ├── calculations │ │ ├── CalculationsCurve.ts │ │ └── CalculationsSushiswap.ts │ │ ├── common │ │ ├── constants.ts │ │ ├── types.ts │ │ └── utils.ts │ │ ├── config │ │ ├── arbitrum_one.ts │ │ ├── aurora.ts │ │ ├── avalanche.ts │ │ ├── bsc.ts │ │ ├── celo.ts │ │ ├── cronos.ts │ │ ├── fantom.ts │ │ ├── fuse.ts │ │ ├── harmony.ts │ │ ├── heco.ts │ │ ├── mainnet.ts │ │ ├── matic.ts │ │ ├── metis.ts │ │ ├── moonbeam.ts │ │ ├── moonriver.ts │ │ └── oasis.ts │ │ ├── index.ts │ │ ├── oracles │ │ ├── ChainLinkAddresses.js │ │ ├── ChainLinkFeed.ts │ │ ├── YearnLensOracle.ts │ │ ├── oracles.ts │ │ └── scripts │ │ │ └── asset_finder.js │ │ └── routers │ │ ├── CurveRouter.ts │ │ ├── SushiSwapRouter.ts │ │ └── UniswapRouter.ts ├── package-lock.json ├── package.json ├── protocols │ └── quickswap │ │ ├── config │ │ ├── networks │ │ │ └── polygon │ │ │ │ ├── polygon.json │ │ │ │ └── polygon.ts │ │ └── templates │ │ │ └── quickswap.template.yaml │ │ └── src │ │ └── common │ │ └── constants.ts ├── schema.graphql ├── src │ └── mappings │ │ ├── factory.ts │ │ └── pool.ts ├── subgraph.yaml └── tsconfig.json ├── rarible-exchange-v1 ├── .gitignore ├── abis │ ├── ExchangeV1.json │ └── SecondarySaleFees.json ├── modules │ └── airstack │ │ ├── index.ts │ │ ├── nft.ts │ │ └── utils.ts ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── exchange-v-1.ts │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── exchange-v-1-utils.ts │ └── exchange-v-1.test.ts └── tsconfig.json ├── rarible-exchange-v2 ├── .gitignore ├── abis │ ├── ExchangeV2.json │ └── RoyaltiesRegistry.json ├── modules │ └── airstack │ │ ├── index.ts │ │ ├── nft.ts │ │ └── utils.ts ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── exchange-v-2.ts │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── exchange-v-1-utils.ts │ └── exchange-v-1.test.ts └── tsconfig.json ├── seaport-subgraph ├── abis │ └── Seaport.json ├── modules │ └── airstack │ │ ├── index.ts │ │ ├── nft.ts │ │ └── utils.ts ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src │ ├── seaport.ts │ └── utils.ts ├── subgraph.yaml ├── tests │ ├── seaport-utils.ts │ └── seaport.test.ts ├── tsconfig.json └── yarn.lock ├── uniswap-v3 ├── .gitignore ├── README.md ├── abis │ ├── ERC20.json │ ├── ERC20NameBytes.json │ ├── ERC20SymbolBytes.json │ ├── Factory.json │ ├── NonfungiblePositionManager.json │ ├── Prices │ │ ├── Calculations │ │ │ ├── Curve.json │ │ │ └── SushiSwap.json │ │ ├── Chainlink.json │ │ ├── Curve │ │ │ ├── Factory.json │ │ │ ├── PoolRegistry.json │ │ │ └── Registry.json │ │ ├── ERC20.json │ │ ├── SushiSwap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ ├── Uniswap │ │ │ ├── Factory.json │ │ │ ├── FeeRouter.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ └── YearnLens.json │ ├── common │ │ ├── ERC20.json │ │ ├── ERC721.json │ │ ├── Placeholder.json │ │ └── Prices │ │ │ ├── Calculations │ │ │ ├── Curve.json │ │ │ └── SushiSwap.json │ │ │ ├── ChainLink.json │ │ │ ├── Curve │ │ │ ├── Factory.json │ │ │ ├── PoolRegistry.json │ │ │ └── Registry.json │ │ │ ├── ERC20.json │ │ │ ├── SushiSwap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ │ ├── Uniswap │ │ │ ├── Factory.json │ │ │ ├── Pair.json │ │ │ └── Router.json │ │ │ └── YearnLens.json │ └── pool.json ├── configurations │ ├── configurations │ │ ├── README.md │ │ ├── configurations.ts │ │ ├── deploy.ts │ │ └── interface.ts │ ├── configure.template.ts │ └── configure.ts ├── modules │ ├── airstack │ │ ├── common.ts │ │ ├── constants.ts │ │ ├── dex.ts │ │ ├── handler.ts │ │ ├── index.ts │ │ └── utils │ │ │ ├── datetime.ts │ │ │ ├── index.ts │ │ │ ├── maths.ts │ │ │ └── network.ts │ └── prices │ │ ├── README.md │ │ ├── calculations │ │ ├── CalculationsCurve.ts │ │ └── CalculationsSushiswap.ts │ │ ├── common │ │ ├── constants.ts │ │ ├── types.ts │ │ └── utils.ts │ │ ├── config │ │ ├── arbitrum_one.ts │ │ ├── aurora.ts │ │ ├── avalanche.ts │ │ ├── bsc.ts │ │ ├── celo.ts │ │ ├── cronos.ts │ │ ├── fantom.ts │ │ ├── fuse.ts │ │ ├── harmony.ts │ │ ├── heco.ts │ │ ├── mainnet.ts │ │ ├── matic.ts │ │ ├── metis.ts │ │ ├── moonbeam.ts │ │ ├── moonriver.ts │ │ └── oasis.ts │ │ ├── index.ts │ │ ├── oracles │ │ ├── ChainLinkAddresses.js │ │ ├── ChainLinkFeed.ts │ │ ├── YearnLensOracle.ts │ │ ├── oracles.ts │ │ └── scripts │ │ │ └── asset_finder.js │ │ └── routers │ │ ├── CurveRouter.ts │ │ ├── SushiSwapRouter.ts │ │ └── UniswapRouter.ts ├── package-lock.json ├── package.json ├── protocols │ └── uniswap-v3 │ │ ├── config │ │ ├── networks │ │ │ ├── arbitrum │ │ │ │ ├── arbitrum.json │ │ │ │ └── arbitrum.ts │ │ │ ├── ethereum │ │ │ │ ├── ethereum.json │ │ │ │ └── ethereum.ts │ │ │ ├── optimism │ │ │ │ ├── optimism.json │ │ │ │ └── optimism.ts │ │ │ └── polygon │ │ │ │ ├── polygon.json │ │ │ │ └── polygon.ts │ │ └── templates │ │ │ └── uniswap.v3.template.yaml │ │ └── src │ │ └── common │ │ └── constants.ts ├── schema.graphql ├── src │ └── mappings │ │ ├── Factory.ts │ │ └── core.ts ├── subgraph.yaml ├── tsconfig.json └── yarn.lock ├── user-contact-interactions ├── abis │ ├── erc20.json │ └── nft.json ├── networks.json ├── package.json ├── schema.graphql ├── src │ ├── common │ │ ├── constants.ts │ │ └── utils │ │ │ ├── arrays.ts │ │ │ ├── datetime.ts │ │ │ ├── numbers.ts │ │ │ └── strings.ts │ └── nft.ts ├── subgraph.yaml ├── tsconfig.json └── yarn.lock └── wyvern-exchange ├── abis ├── Contract.json └── WyvernExchange.json ├── modules └── airstack │ ├── index.ts │ ├── nft.ts │ └── utils.ts ├── networks.json ├── package-lock.json ├── package.json ├── schema.graphql ├── src ├── abi.ts ├── orders.ts ├── shared.ts ├── utils.ts └── wyvern-exchange.ts ├── subgraph.yaml ├── tests ├── contract-utils.ts ├── contract.test.ts ├── wyvern-exchange-utils.ts └── wyvern-exchange.test.ts ├── tsconfig.json └── yarn.lock /.github/workflows/create-subgraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/.github/workflows/create-subgraph.yml -------------------------------------------------------------------------------- /.github/workflows/prod-publish-to-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/.github/workflows/prod-publish-to-npm.yml -------------------------------------------------------------------------------- /.github/workflows/push-subgraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/.github/workflows/push-subgraph.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/README.md -------------------------------------------------------------------------------- /airstack-modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/README.md -------------------------------------------------------------------------------- /airstack-modules/bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/bin/index.ts -------------------------------------------------------------------------------- /airstack-modules/graphql/airstack-dex-schema.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/graphql/airstack-dex-schema.graphql.ts -------------------------------------------------------------------------------- /airstack-modules/graphql/airstack-domain-name-schema.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/graphql/airstack-domain-name-schema.graphql.ts -------------------------------------------------------------------------------- /airstack-modules/graphql/airstack-nft-marketplace-schema.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/graphql/airstack-nft-marketplace-schema.graphql.ts -------------------------------------------------------------------------------- /airstack-modules/graphql/airstack-poap-schema.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/graphql/airstack-poap-schema.graphql.ts -------------------------------------------------------------------------------- /airstack-modules/graphql/airstack-social-schema.graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/graphql/airstack-social-schema.graphql.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/common/index.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/domain-name/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/domain-name/Readme.md -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/domain-name/domain-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/domain-name/domain-name.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/domain-name/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./domain-name"; -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/domain-name/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/domain-name/utils.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/nft-marketplace/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/nft-marketplace/Readme.md -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/nft-marketplace/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/nft-marketplace/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/nft-marketplace/nft.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/nft-marketplace/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/nft-marketplace/utils.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/poap/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/poap/Readme.md -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/poap/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./poap"; -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/poap/poap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/poap/poap.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/poap/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/poap/utils.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/social/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/social/Readme.md -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/social/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./social"; -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/social/social.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/social/social.ts -------------------------------------------------------------------------------- /airstack-modules/modules/airstack/social/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/modules/airstack/social/utils.ts -------------------------------------------------------------------------------- /airstack-modules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/package-lock.json -------------------------------------------------------------------------------- /airstack-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/package.json -------------------------------------------------------------------------------- /airstack-modules/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/src/constants.ts -------------------------------------------------------------------------------- /airstack-modules/src/integrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/src/integrate.ts -------------------------------------------------------------------------------- /airstack-modules/src/mapping.ts: -------------------------------------------------------------------------------- 1 | export function handle(): void {} 2 | -------------------------------------------------------------------------------- /airstack-modules/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/src/types.ts -------------------------------------------------------------------------------- /airstack-modules/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/src/utils.ts -------------------------------------------------------------------------------- /airstack-modules/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/tsconfig.json -------------------------------------------------------------------------------- /airstack-modules/yamls/dex.yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/yamls/dex.yaml.ts -------------------------------------------------------------------------------- /airstack-modules/yamls/domain-name.yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/yamls/domain-name.yaml.ts -------------------------------------------------------------------------------- /airstack-modules/yamls/nft-marketplace.yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/yamls/nft-marketplace.yaml.ts -------------------------------------------------------------------------------- /airstack-modules/yamls/poap.yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/yamls/poap.yaml.ts -------------------------------------------------------------------------------- /airstack-modules/yamls/social.yaml.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/airstack-modules/yamls/social.yaml.ts -------------------------------------------------------------------------------- /blur/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /blur/abis/BlurExchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/abis/BlurExchange.json -------------------------------------------------------------------------------- /blur/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/networks.json -------------------------------------------------------------------------------- /blur/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/package-lock.json -------------------------------------------------------------------------------- /blur/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/package.json -------------------------------------------------------------------------------- /blur/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/schema.graphql -------------------------------------------------------------------------------- /blur/src/blur-exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/src/blur-exchange.ts -------------------------------------------------------------------------------- /blur/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/src/constants.ts -------------------------------------------------------------------------------- /blur/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/subgraph.yaml -------------------------------------------------------------------------------- /blur/tests/blur-exchange.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/tests/blur-exchange.test.ts -------------------------------------------------------------------------------- /blur/tests/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/tests/example.ts -------------------------------------------------------------------------------- /blur/tests/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/tests/test-utils.ts -------------------------------------------------------------------------------- /blur/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/tests/utils.ts -------------------------------------------------------------------------------- /blur/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/blur/tsconfig.json -------------------------------------------------------------------------------- /ens/abis/BaseRegistrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/BaseRegistrar.json -------------------------------------------------------------------------------- /ens/abis/EnsRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/EnsRegistry.json -------------------------------------------------------------------------------- /ens/abis/EthRegistrarController.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/EthRegistrarController.json -------------------------------------------------------------------------------- /ens/abis/EthRegistrarControllerOld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/EthRegistrarControllerOld.json -------------------------------------------------------------------------------- /ens/abis/PublicResolver.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/PublicResolver.json -------------------------------------------------------------------------------- /ens/abis/ReverseRegistrar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/abis/ReverseRegistrar.json -------------------------------------------------------------------------------- /ens/modules/airstack/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/modules/airstack/common/index.ts -------------------------------------------------------------------------------- /ens/modules/airstack/domain-name/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/modules/airstack/domain-name/Readme.md -------------------------------------------------------------------------------- /ens/modules/airstack/domain-name/domain-name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/modules/airstack/domain-name/domain-name.ts -------------------------------------------------------------------------------- /ens/modules/airstack/domain-name/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./domain-name"; -------------------------------------------------------------------------------- /ens/modules/airstack/domain-name/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/modules/airstack/domain-name/utils.ts -------------------------------------------------------------------------------- /ens/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/networks.json -------------------------------------------------------------------------------- /ens/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/package-lock.json -------------------------------------------------------------------------------- /ens/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/package.json -------------------------------------------------------------------------------- /ens/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/schema.graphql -------------------------------------------------------------------------------- /ens/src/ens-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/src/ens-registry.ts -------------------------------------------------------------------------------- /ens/src/eth-registrar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/src/eth-registrar.ts -------------------------------------------------------------------------------- /ens/src/resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/src/resolver.ts -------------------------------------------------------------------------------- /ens/src/reverse-registrar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/src/reverse-registrar.ts -------------------------------------------------------------------------------- /ens/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/src/utils.ts -------------------------------------------------------------------------------- /ens/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/subgraph.yaml -------------------------------------------------------------------------------- /ens/tests/common-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/common-utils.ts -------------------------------------------------------------------------------- /ens/tests/ens-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/ens-registry-utils.ts -------------------------------------------------------------------------------- /ens/tests/ens-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/ens-registry.test.ts -------------------------------------------------------------------------------- /ens/tests/eth-registrar-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/eth-registrar-utils.ts -------------------------------------------------------------------------------- /ens/tests/eth-registrar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/eth-registrar.test.ts -------------------------------------------------------------------------------- /ens/tests/resolver-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/resolver-utils.ts -------------------------------------------------------------------------------- /ens/tests/resolver.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tests/resolver.test.ts -------------------------------------------------------------------------------- /ens/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/ens/tsconfig.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/abis/ERC6551Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/abis/ERC6551Registry.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/networks.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/package-lock.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/package.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/schema.graphql -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/src/common/index.ts -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/src/erc-6551-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/src/erc-6551-registry.ts -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/subgraph.yaml -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/tests/erc-6551-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/tests/erc-6551-registry-utils.ts -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/tests/erc-6551-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/tests/erc-6551-registry.test.ts -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/tsconfig.json -------------------------------------------------------------------------------- /erc-6551-accounts-3xx/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts-3xx/yarn.lock -------------------------------------------------------------------------------- /erc-6551-accounts/abis/ERC6551Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/abis/ERC6551Registry.json -------------------------------------------------------------------------------- /erc-6551-accounts/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/networks.json -------------------------------------------------------------------------------- /erc-6551-accounts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/package.json -------------------------------------------------------------------------------- /erc-6551-accounts/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/schema.graphql -------------------------------------------------------------------------------- /erc-6551-accounts/src/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/src/common/index.ts -------------------------------------------------------------------------------- /erc-6551-accounts/src/erc-6551-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/src/erc-6551-registry.ts -------------------------------------------------------------------------------- /erc-6551-accounts/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/subgraph.yaml -------------------------------------------------------------------------------- /erc-6551-accounts/tests/erc-6551-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/tests/erc-6551-registry-utils.ts -------------------------------------------------------------------------------- /erc-6551-accounts/tests/erc-6551-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/tests/erc-6551-registry.test.ts -------------------------------------------------------------------------------- /erc-6551-accounts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/tsconfig.json -------------------------------------------------------------------------------- /erc-6551-accounts/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/erc-6551-accounts/yarn.lock -------------------------------------------------------------------------------- /farcaster/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /farcaster/abis/FarcasterNameRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/abis/FarcasterNameRegistry.json -------------------------------------------------------------------------------- /farcaster/abis/TokenIdRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/abis/TokenIdRegistry.json -------------------------------------------------------------------------------- /farcaster/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/networks.json -------------------------------------------------------------------------------- /farcaster/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/package-lock.json -------------------------------------------------------------------------------- /farcaster/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/package.json -------------------------------------------------------------------------------- /farcaster/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/schema.graphql -------------------------------------------------------------------------------- /farcaster/src/mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/src/mapping.ts -------------------------------------------------------------------------------- /farcaster/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/src/utils.ts -------------------------------------------------------------------------------- /farcaster/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/subgraph.yaml -------------------------------------------------------------------------------- /farcaster/tests/mapping-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/tests/mapping-utils.ts -------------------------------------------------------------------------------- /farcaster/tests/mapping.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/tests/mapping.test.ts -------------------------------------------------------------------------------- /farcaster/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster/tsconfig.json -------------------------------------------------------------------------------- /farcaster_v2.1/abis/IdRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/abis/IdRegistry.json -------------------------------------------------------------------------------- /farcaster_v2.1/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/networks.json -------------------------------------------------------------------------------- /farcaster_v2.1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/package-lock.json -------------------------------------------------------------------------------- /farcaster_v2.1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/package.json -------------------------------------------------------------------------------- /farcaster_v2.1/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/schema.graphql -------------------------------------------------------------------------------- /farcaster_v2.1/src/id-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/src/id-registry.ts -------------------------------------------------------------------------------- /farcaster_v2.1/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/subgraph.yaml -------------------------------------------------------------------------------- /farcaster_v2.1/tests/id-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/tests/id-registry-utils.ts -------------------------------------------------------------------------------- /farcaster_v2.1/tests/id-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/tests/id-registry.test.ts -------------------------------------------------------------------------------- /farcaster_v2.1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2.1/tsconfig.json -------------------------------------------------------------------------------- /farcaster_v2/abis/IdRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/abis/IdRegistry.json -------------------------------------------------------------------------------- /farcaster_v2/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/networks.json -------------------------------------------------------------------------------- /farcaster_v2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/package-lock.json -------------------------------------------------------------------------------- /farcaster_v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/package.json -------------------------------------------------------------------------------- /farcaster_v2/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/schema.graphql -------------------------------------------------------------------------------- /farcaster_v2/src/id-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/src/id-registry.ts -------------------------------------------------------------------------------- /farcaster_v2/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/subgraph.yaml -------------------------------------------------------------------------------- /farcaster_v2/tests/id-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/tests/id-registry-utils.ts -------------------------------------------------------------------------------- /farcaster_v2/tests/id-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/tests/id-registry.test.ts -------------------------------------------------------------------------------- /farcaster_v2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/farcaster_v2/tsconfig.json -------------------------------------------------------------------------------- /folder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/folder.yml -------------------------------------------------------------------------------- /lens/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /lens/abis/LensHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/abis/LensHub.json -------------------------------------------------------------------------------- /lens/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/networks.json -------------------------------------------------------------------------------- /lens/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/package.json -------------------------------------------------------------------------------- /lens/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/schema.graphql -------------------------------------------------------------------------------- /lens/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/src/constants.ts -------------------------------------------------------------------------------- /lens/src/mappings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/src/mappings/index.ts -------------------------------------------------------------------------------- /lens/src/mappings/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/src/mappings/utils.ts -------------------------------------------------------------------------------- /lens/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/subgraph.yaml -------------------------------------------------------------------------------- /lens/tests/lens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/tests/lens.test.ts -------------------------------------------------------------------------------- /lens/tests/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/tests/sample.ts -------------------------------------------------------------------------------- /lens/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/tests/utils.ts -------------------------------------------------------------------------------- /lens/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens/tsconfig.json -------------------------------------------------------------------------------- /lens_v2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /lens_v2/abis/LensHandle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/abis/LensHandle.json -------------------------------------------------------------------------------- /lens_v2/abis/LensHub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/abis/LensHub.json -------------------------------------------------------------------------------- /lens_v2/abis/LensPeriphery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/abis/LensPeriphery.json -------------------------------------------------------------------------------- /lens_v2/abis/TokenHandleRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/abis/TokenHandleRegistry.json -------------------------------------------------------------------------------- /lens_v2/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/networks.json -------------------------------------------------------------------------------- /lens_v2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/package-lock.json -------------------------------------------------------------------------------- /lens_v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/package.json -------------------------------------------------------------------------------- /lens_v2/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/schema.graphql -------------------------------------------------------------------------------- /lens_v2/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/src/constants.ts -------------------------------------------------------------------------------- /lens_v2/src/lens-handle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/src/lens-handle.ts -------------------------------------------------------------------------------- /lens_v2/src/mappings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/src/mappings/index.ts -------------------------------------------------------------------------------- /lens_v2/src/mappings/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/src/mappings/utils.ts -------------------------------------------------------------------------------- /lens_v2/src/token-handle-registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/src/token-handle-registry.ts -------------------------------------------------------------------------------- /lens_v2/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/subgraph.yaml -------------------------------------------------------------------------------- /lens_v2/tests/lens-handle-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/lens-handle-utils.ts -------------------------------------------------------------------------------- /lens_v2/tests/lens-handle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/lens-handle.test.ts -------------------------------------------------------------------------------- /lens_v2/tests/lens.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/lens.test.ts -------------------------------------------------------------------------------- /lens_v2/tests/sample.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/sample.ts -------------------------------------------------------------------------------- /lens_v2/tests/token-handle-registry-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/token-handle-registry-utils.ts -------------------------------------------------------------------------------- /lens_v2/tests/token-handle-registry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/token-handle-registry.test.ts -------------------------------------------------------------------------------- /lens_v2/tests/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tests/utils.ts -------------------------------------------------------------------------------- /lens_v2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/lens_v2/tsconfig.json -------------------------------------------------------------------------------- /looksrare/abis/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/ERC20.json -------------------------------------------------------------------------------- /looksrare/abis/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/ERC721.json -------------------------------------------------------------------------------- /looksrare/abis/LooksRareExchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/LooksRareExchange.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Calculations/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Calculations/Curve.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Calculations/SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Calculations/SushiSwap.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/ChainLink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/ChainLink.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Curve/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Curve/Factory.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Curve/PoolRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Curve/PoolRegistry.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Curve/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Curve/Registry.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/ERC20.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/SushiSwap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/SushiSwap/Factory.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/SushiSwap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/SushiSwap/Pair.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/SushiSwap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/SushiSwap/Router.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Uniswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Uniswap/Factory.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Uniswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Uniswap/Pair.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/Uniswap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/Uniswap/Router.json -------------------------------------------------------------------------------- /looksrare/abis/Prices/YearnLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/abis/Prices/YearnLens.json -------------------------------------------------------------------------------- /looksrare/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/networks.json -------------------------------------------------------------------------------- /looksrare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/package.json -------------------------------------------------------------------------------- /looksrare/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/schema.graphql -------------------------------------------------------------------------------- /looksrare/src/looks-rare-exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/looks-rare-exchange.ts -------------------------------------------------------------------------------- /looksrare/src/modules/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/abi.ts -------------------------------------------------------------------------------- /looksrare/src/modules/airstack/constant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/airstack/constant.ts -------------------------------------------------------------------------------- /looksrare/src/modules/airstack/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/airstack/datetime.ts -------------------------------------------------------------------------------- /looksrare/src/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; 2 | -------------------------------------------------------------------------------- /looksrare/src/modules/airstack/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/airstack/nft.ts -------------------------------------------------------------------------------- /looksrare/src/modules/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/orders.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/README.md -------------------------------------------------------------------------------- /looksrare/src/modules/prices/calculations/CalculationsCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/calculations/CalculationsCurve.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/calculations/CalculationsSushiswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/calculations/CalculationsSushiswap.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/common/constants.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/common/types.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/common/utils.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/config/arbitrumOne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/config/arbitrumOne.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/config/fantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/config/fantom.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/config/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/config/mainnet.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/index.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/oracles/ChainLinkFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/oracles/ChainLinkFeed.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/oracles/YearnLensOracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/oracles/YearnLensOracle.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/routers/CurveRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/routers/CurveRouter.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/routers/SushiSwapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/routers/SushiSwapRouter.ts -------------------------------------------------------------------------------- /looksrare/src/modules/prices/routers/UniswapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/prices/routers/UniswapRouter.ts -------------------------------------------------------------------------------- /looksrare/src/modules/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/src/modules/shared.ts -------------------------------------------------------------------------------- /looksrare/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/subgraph.yaml -------------------------------------------------------------------------------- /looksrare/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/tsconfig.json -------------------------------------------------------------------------------- /looksrare/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/looksrare/yarn.lock -------------------------------------------------------------------------------- /poap/abis/Poap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/abis/Poap.json -------------------------------------------------------------------------------- /poap/abis/XPoap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/abis/XPoap.json -------------------------------------------------------------------------------- /poap/config/chiado.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/config/chiado.json -------------------------------------------------------------------------------- /poap/config/gnosis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/config/gnosis.json -------------------------------------------------------------------------------- /poap/config/goerli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/config/goerli.json -------------------------------------------------------------------------------- /poap/config/mainnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/config/mainnet.json -------------------------------------------------------------------------------- /poap/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/networks.json -------------------------------------------------------------------------------- /poap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/package-lock.json -------------------------------------------------------------------------------- /poap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/package.json -------------------------------------------------------------------------------- /poap/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/schema.graphql -------------------------------------------------------------------------------- /poap/schema.graphql.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/schema.graphql.bck -------------------------------------------------------------------------------- /poap/src/poap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/src/poap.ts -------------------------------------------------------------------------------- /poap/subgraph.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/subgraph.template.yaml -------------------------------------------------------------------------------- /poap/subgraph.yaml.bck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/subgraph.yaml.bck -------------------------------------------------------------------------------- /poap/tests/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/tests/example.ts -------------------------------------------------------------------------------- /poap/tests/poap-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/tests/poap-utils.ts -------------------------------------------------------------------------------- /poap/tests/poap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/tests/poap.test.ts -------------------------------------------------------------------------------- /poap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/poap/tsconfig.json -------------------------------------------------------------------------------- /quickswap/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | generated 4 | -------------------------------------------------------------------------------- /quickswap/README.md: -------------------------------------------------------------------------------- 1 | Uniswap 2 | -------------------------------------------------------------------------------- /quickswap/abis/Prices/Calculations/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Calculations/Curve.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Calculations/SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Calculations/SushiSwap.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Chainlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Chainlink.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Curve/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Curve/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Curve/PoolRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Curve/PoolRegistry.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Curve/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Curve/Registry.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/ERC20.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/SushiSwap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/SushiSwap/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/SushiSwap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/SushiSwap/Pair.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/SushiSwap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/SushiSwap/Router.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Uniswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Uniswap/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Uniswap/FeeRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Uniswap/FeeRouter.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Uniswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Uniswap/Pair.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/Uniswap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/Uniswap/Router.json -------------------------------------------------------------------------------- /quickswap/abis/Prices/YearnLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/Prices/YearnLens.json -------------------------------------------------------------------------------- /quickswap/abis/common/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/ERC20.json -------------------------------------------------------------------------------- /quickswap/abis/common/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/ERC721.json -------------------------------------------------------------------------------- /quickswap/abis/common/Placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Placeholder.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Calculations/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Calculations/Curve.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Calculations/SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Calculations/SushiSwap.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/ChainLink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/ChainLink.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Curve/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Curve/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Curve/PoolRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Curve/PoolRegistry.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Curve/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Curve/Registry.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/ERC20.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/SushiSwap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/SushiSwap/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/SushiSwap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/SushiSwap/Pair.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/SushiSwap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/SushiSwap/Router.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Uniswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Uniswap/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Uniswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Uniswap/Pair.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/Uniswap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/Uniswap/Router.json -------------------------------------------------------------------------------- /quickswap/abis/common/Prices/YearnLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/common/Prices/YearnLens.json -------------------------------------------------------------------------------- /quickswap/abis/quickswap/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/quickswap/ERC20.json -------------------------------------------------------------------------------- /quickswap/abis/quickswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/quickswap/Factory.json -------------------------------------------------------------------------------- /quickswap/abis/quickswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/abis/quickswap/Pair.json -------------------------------------------------------------------------------- /quickswap/modules/airstack/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/common.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/constants.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/dex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/dex.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/handler.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dex"; 2 | -------------------------------------------------------------------------------- /quickswap/modules/airstack/utils/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/utils/datetime.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/utils/index.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/utils/maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/utils/maths.ts -------------------------------------------------------------------------------- /quickswap/modules/airstack/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/airstack/utils/network.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/README.md -------------------------------------------------------------------------------- /quickswap/modules/prices/calculations/CalculationsCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/calculations/CalculationsCurve.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/calculations/CalculationsSushiswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/calculations/CalculationsSushiswap.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/common/constants.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/common/types.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/common/utils.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/arbitrum_one.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/arbitrum_one.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/aurora.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/aurora.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/avalanche.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/avalanche.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/bsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/bsc.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/celo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/celo.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/cronos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/cronos.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/fantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/fantom.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/fuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/fuse.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/harmony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/harmony.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/heco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/heco.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/mainnet.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/matic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/matic.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/metis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/metis.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/moonbeam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/moonbeam.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/moonriver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/moonriver.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/config/oasis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/config/oasis.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/index.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/oracles/ChainLinkAddresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/oracles/ChainLinkAddresses.js -------------------------------------------------------------------------------- /quickswap/modules/prices/oracles/ChainLinkFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/oracles/ChainLinkFeed.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/oracles/YearnLensOracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/oracles/YearnLensOracle.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/oracles/oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/oracles/oracles.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/oracles/scripts/asset_finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/oracles/scripts/asset_finder.js -------------------------------------------------------------------------------- /quickswap/modules/prices/routers/CurveRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/routers/CurveRouter.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/routers/SushiSwapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/routers/SushiSwapRouter.ts -------------------------------------------------------------------------------- /quickswap/modules/prices/routers/UniswapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/modules/prices/routers/UniswapRouter.ts -------------------------------------------------------------------------------- /quickswap/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/package-lock.json -------------------------------------------------------------------------------- /quickswap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/package.json -------------------------------------------------------------------------------- /quickswap/protocols/quickswap/config/networks/polygon/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/protocols/quickswap/config/networks/polygon/polygon.json -------------------------------------------------------------------------------- /quickswap/protocols/quickswap/config/networks/polygon/polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/protocols/quickswap/config/networks/polygon/polygon.ts -------------------------------------------------------------------------------- /quickswap/protocols/quickswap/config/templates/quickswap.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/protocols/quickswap/config/templates/quickswap.template.yaml -------------------------------------------------------------------------------- /quickswap/protocols/quickswap/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/protocols/quickswap/src/common/constants.ts -------------------------------------------------------------------------------- /quickswap/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/schema.graphql -------------------------------------------------------------------------------- /quickswap/src/mappings/factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/src/mappings/factory.ts -------------------------------------------------------------------------------- /quickswap/src/mappings/pool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/src/mappings/pool.ts -------------------------------------------------------------------------------- /quickswap/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/subgraph.yaml -------------------------------------------------------------------------------- /quickswap/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/quickswap/tsconfig.json -------------------------------------------------------------------------------- /rarible-exchange-v1/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /rarible-exchange-v1/abis/ExchangeV1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/abis/ExchangeV1.json -------------------------------------------------------------------------------- /rarible-exchange-v1/abis/SecondarySaleFees.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/abis/SecondarySaleFees.json -------------------------------------------------------------------------------- /rarible-exchange-v1/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; -------------------------------------------------------------------------------- /rarible-exchange-v1/modules/airstack/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/modules/airstack/nft.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/modules/airstack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/modules/airstack/utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/networks.json -------------------------------------------------------------------------------- /rarible-exchange-v1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/package-lock.json -------------------------------------------------------------------------------- /rarible-exchange-v1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/package.json -------------------------------------------------------------------------------- /rarible-exchange-v1/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/schema.graphql -------------------------------------------------------------------------------- /rarible-exchange-v1/src/exchange-v-1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/src/exchange-v-1.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/src/utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/subgraph.yaml -------------------------------------------------------------------------------- /rarible-exchange-v1/tests/exchange-v-1-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/tests/exchange-v-1-utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/tests/exchange-v-1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/tests/exchange-v-1.test.ts -------------------------------------------------------------------------------- /rarible-exchange-v1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v1/tsconfig.json -------------------------------------------------------------------------------- /rarible-exchange-v2/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /rarible-exchange-v2/abis/ExchangeV2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/abis/ExchangeV2.json -------------------------------------------------------------------------------- /rarible-exchange-v2/abis/RoyaltiesRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/abis/RoyaltiesRegistry.json -------------------------------------------------------------------------------- /rarible-exchange-v2/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; -------------------------------------------------------------------------------- /rarible-exchange-v2/modules/airstack/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/modules/airstack/nft.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/modules/airstack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/modules/airstack/utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/networks.json -------------------------------------------------------------------------------- /rarible-exchange-v2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/package-lock.json -------------------------------------------------------------------------------- /rarible-exchange-v2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/package.json -------------------------------------------------------------------------------- /rarible-exchange-v2/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/schema.graphql -------------------------------------------------------------------------------- /rarible-exchange-v2/src/exchange-v-2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/src/exchange-v-2.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/src/utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/subgraph.yaml -------------------------------------------------------------------------------- /rarible-exchange-v2/tests/exchange-v-1-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/tests/exchange-v-1-utils.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/tests/exchange-v-1.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/tests/exchange-v-1.test.ts -------------------------------------------------------------------------------- /rarible-exchange-v2/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/rarible-exchange-v2/tsconfig.json -------------------------------------------------------------------------------- /seaport-subgraph/abis/Seaport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/abis/Seaport.json -------------------------------------------------------------------------------- /seaport-subgraph/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; -------------------------------------------------------------------------------- /seaport-subgraph/modules/airstack/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/modules/airstack/nft.ts -------------------------------------------------------------------------------- /seaport-subgraph/modules/airstack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/modules/airstack/utils.ts -------------------------------------------------------------------------------- /seaport-subgraph/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/networks.json -------------------------------------------------------------------------------- /seaport-subgraph/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/package-lock.json -------------------------------------------------------------------------------- /seaport-subgraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/package.json -------------------------------------------------------------------------------- /seaport-subgraph/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/schema.graphql -------------------------------------------------------------------------------- /seaport-subgraph/src/seaport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/src/seaport.ts -------------------------------------------------------------------------------- /seaport-subgraph/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/src/utils.ts -------------------------------------------------------------------------------- /seaport-subgraph/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/subgraph.yaml -------------------------------------------------------------------------------- /seaport-subgraph/tests/seaport-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/tests/seaport-utils.ts -------------------------------------------------------------------------------- /seaport-subgraph/tests/seaport.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/tests/seaport.test.ts -------------------------------------------------------------------------------- /seaport-subgraph/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/tsconfig.json -------------------------------------------------------------------------------- /seaport-subgraph/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/seaport-subgraph/yarn.lock -------------------------------------------------------------------------------- /uniswap-v3/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | generated 4 | -------------------------------------------------------------------------------- /uniswap-v3/README.md: -------------------------------------------------------------------------------- 1 | Uniswap v3 2 | -------------------------------------------------------------------------------- /uniswap-v3/abis/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/ERC20.json -------------------------------------------------------------------------------- /uniswap-v3/abis/ERC20NameBytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/ERC20NameBytes.json -------------------------------------------------------------------------------- /uniswap-v3/abis/ERC20SymbolBytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/ERC20SymbolBytes.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/NonfungiblePositionManager.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/NonfungiblePositionManager.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Calculations/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Calculations/Curve.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Calculations/SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Calculations/SushiSwap.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Chainlink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Chainlink.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Curve/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Curve/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Curve/PoolRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Curve/PoolRegistry.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Curve/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Curve/Registry.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/ERC20.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/SushiSwap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/SushiSwap/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/SushiSwap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/SushiSwap/Pair.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/SushiSwap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/SushiSwap/Router.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Uniswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Uniswap/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Uniswap/FeeRouter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Uniswap/FeeRouter.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Uniswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Uniswap/Pair.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/Uniswap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/Uniswap/Router.json -------------------------------------------------------------------------------- /uniswap-v3/abis/Prices/YearnLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/Prices/YearnLens.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/ERC20.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/ERC721.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/ERC721.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Placeholder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Placeholder.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Calculations/Curve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Calculations/Curve.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Calculations/SushiSwap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Calculations/SushiSwap.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/ChainLink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/ChainLink.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Curve/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Curve/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Curve/PoolRegistry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Curve/PoolRegistry.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Curve/Registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Curve/Registry.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/ERC20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/ERC20.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/SushiSwap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/SushiSwap/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/SushiSwap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/SushiSwap/Pair.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/SushiSwap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/SushiSwap/Router.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Uniswap/Factory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Uniswap/Factory.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Uniswap/Pair.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Uniswap/Pair.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/Uniswap/Router.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/Uniswap/Router.json -------------------------------------------------------------------------------- /uniswap-v3/abis/common/Prices/YearnLens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/common/Prices/YearnLens.json -------------------------------------------------------------------------------- /uniswap-v3/abis/pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/abis/pool.json -------------------------------------------------------------------------------- /uniswap-v3/configurations/configurations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configurations/README.md -------------------------------------------------------------------------------- /uniswap-v3/configurations/configurations/configurations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configurations/configurations.ts -------------------------------------------------------------------------------- /uniswap-v3/configurations/configurations/deploy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configurations/deploy.ts -------------------------------------------------------------------------------- /uniswap-v3/configurations/configurations/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configurations/interface.ts -------------------------------------------------------------------------------- /uniswap-v3/configurations/configure.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configure.template.ts -------------------------------------------------------------------------------- /uniswap-v3/configurations/configure.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/configurations/configure.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/common.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/constants.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/dex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/dex.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/handler.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./dex"; 2 | -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/utils/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/utils/datetime.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/utils/index.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/utils/maths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/utils/maths.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/airstack/utils/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/airstack/utils/network.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/README.md -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/calculations/CalculationsCurve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/calculations/CalculationsCurve.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/calculations/CalculationsSushiswap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/calculations/CalculationsSushiswap.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/common/constants.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/common/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/common/types.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/common/utils.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/arbitrum_one.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/arbitrum_one.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/aurora.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/aurora.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/avalanche.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/avalanche.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/bsc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/bsc.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/celo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/celo.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/cronos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/cronos.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/fantom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/fantom.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/fuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/fuse.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/harmony.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/harmony.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/heco.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/heco.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/mainnet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/mainnet.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/matic.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/matic.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/metis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/metis.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/moonbeam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/moonbeam.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/moonriver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/moonriver.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/config/oasis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/config/oasis.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/index.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/oracles/ChainLinkAddresses.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/oracles/ChainLinkAddresses.js -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/oracles/ChainLinkFeed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/oracles/ChainLinkFeed.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/oracles/YearnLensOracle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/oracles/YearnLensOracle.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/oracles/oracles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/oracles/oracles.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/oracles/scripts/asset_finder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/oracles/scripts/asset_finder.js -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/routers/CurveRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/routers/CurveRouter.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/routers/SushiSwapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/routers/SushiSwapRouter.ts -------------------------------------------------------------------------------- /uniswap-v3/modules/prices/routers/UniswapRouter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/modules/prices/routers/UniswapRouter.ts -------------------------------------------------------------------------------- /uniswap-v3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/package-lock.json -------------------------------------------------------------------------------- /uniswap-v3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/package.json -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/arbitrum/arbitrum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/arbitrum/arbitrum.json -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/arbitrum/arbitrum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/arbitrum/arbitrum.ts -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/ethereum/ethereum.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/ethereum/ethereum.json -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/ethereum/ethereum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/ethereum/ethereum.ts -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/optimism/optimism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/optimism/optimism.json -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/optimism/optimism.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/optimism/optimism.ts -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/polygon/polygon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/polygon/polygon.json -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/networks/polygon/polygon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/networks/polygon/polygon.ts -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/config/templates/uniswap.v3.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/config/templates/uniswap.v3.template.yaml -------------------------------------------------------------------------------- /uniswap-v3/protocols/uniswap-v3/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/protocols/uniswap-v3/src/common/constants.ts -------------------------------------------------------------------------------- /uniswap-v3/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/schema.graphql -------------------------------------------------------------------------------- /uniswap-v3/src/mappings/Factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/src/mappings/Factory.ts -------------------------------------------------------------------------------- /uniswap-v3/src/mappings/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/src/mappings/core.ts -------------------------------------------------------------------------------- /uniswap-v3/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/subgraph.yaml -------------------------------------------------------------------------------- /uniswap-v3/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/tsconfig.json -------------------------------------------------------------------------------- /uniswap-v3/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/uniswap-v3/yarn.lock -------------------------------------------------------------------------------- /user-contact-interactions/abis/erc20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/abis/erc20.json -------------------------------------------------------------------------------- /user-contact-interactions/abis/nft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/abis/nft.json -------------------------------------------------------------------------------- /user-contact-interactions/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/networks.json -------------------------------------------------------------------------------- /user-contact-interactions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/package.json -------------------------------------------------------------------------------- /user-contact-interactions/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/schema.graphql -------------------------------------------------------------------------------- /user-contact-interactions/src/common/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/common/constants.ts -------------------------------------------------------------------------------- /user-contact-interactions/src/common/utils/arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/common/utils/arrays.ts -------------------------------------------------------------------------------- /user-contact-interactions/src/common/utils/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/common/utils/datetime.ts -------------------------------------------------------------------------------- /user-contact-interactions/src/common/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/common/utils/numbers.ts -------------------------------------------------------------------------------- /user-contact-interactions/src/common/utils/strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/common/utils/strings.ts -------------------------------------------------------------------------------- /user-contact-interactions/src/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/src/nft.ts -------------------------------------------------------------------------------- /user-contact-interactions/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/subgraph.yaml -------------------------------------------------------------------------------- /user-contact-interactions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/tsconfig.json -------------------------------------------------------------------------------- /user-contact-interactions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/user-contact-interactions/yarn.lock -------------------------------------------------------------------------------- /wyvern-exchange/abis/Contract.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/abis/Contract.json -------------------------------------------------------------------------------- /wyvern-exchange/abis/WyvernExchange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/abis/WyvernExchange.json -------------------------------------------------------------------------------- /wyvern-exchange/modules/airstack/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./nft"; -------------------------------------------------------------------------------- /wyvern-exchange/modules/airstack/nft.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/modules/airstack/nft.ts -------------------------------------------------------------------------------- /wyvern-exchange/modules/airstack/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/modules/airstack/utils.ts -------------------------------------------------------------------------------- /wyvern-exchange/networks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/networks.json -------------------------------------------------------------------------------- /wyvern-exchange/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/package-lock.json -------------------------------------------------------------------------------- /wyvern-exchange/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/package.json -------------------------------------------------------------------------------- /wyvern-exchange/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/schema.graphql -------------------------------------------------------------------------------- /wyvern-exchange/src/abi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/src/abi.ts -------------------------------------------------------------------------------- /wyvern-exchange/src/orders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/src/orders.ts -------------------------------------------------------------------------------- /wyvern-exchange/src/shared.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/src/shared.ts -------------------------------------------------------------------------------- /wyvern-exchange/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/src/utils.ts -------------------------------------------------------------------------------- /wyvern-exchange/src/wyvern-exchange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/src/wyvern-exchange.ts -------------------------------------------------------------------------------- /wyvern-exchange/subgraph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/subgraph.yaml -------------------------------------------------------------------------------- /wyvern-exchange/tests/contract-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/tests/contract-utils.ts -------------------------------------------------------------------------------- /wyvern-exchange/tests/contract.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/tests/contract.test.ts -------------------------------------------------------------------------------- /wyvern-exchange/tests/wyvern-exchange-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/tests/wyvern-exchange-utils.ts -------------------------------------------------------------------------------- /wyvern-exchange/tests/wyvern-exchange.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/tests/wyvern-exchange.test.ts -------------------------------------------------------------------------------- /wyvern-exchange/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/tsconfig.json -------------------------------------------------------------------------------- /wyvern-exchange/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Airstack-xyz/Subgraphs/HEAD/wyvern-exchange/yarn.lock --------------------------------------------------------------------------------