1.1.1 β€’ Published 2 months ago

@openpool/openpool-sdk v1.1.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 months ago

OpenPool Onchain Reporting SDK

The OpenPool Reporting SDK is a Typescript SDK for retrieving detailed onchain reporting data.

Processing and navigating blockchain transaction data is time-consuming, while creating accurate on-chain reporting demands precision and financial know-how. OpenPool's SDK allows you to build bespoke financial dashboards and internal reporting to support business operations and customer demands. The OpenPool SDK is powered by the OpenPool API and requires an API Key, which you can get by signing up for a Free account on the OpenPool Developer Portal.

The OpenPool SDK currently supports the following chains:

  • Ethereum
  • Polygon
  • Base
  • Optimism
  • Arbitrum
  • Gnosis
  • Avalanche
  • BNB

🌟 Features

  • πŸ“ˆ Detailed Wallet Balances & Performance: Retrieve the real-time and historical enriched balances and performance (with unrealized + realized P&L) data of a given wallet or contract’s tokens (ERC-20’s), NFTs, and DeFi staked positions.
  • πŸ“’ Flexible Wallet Accounting History: Query an enriched human-readable transaction history with accounting data for a given wallet or contract. For these requests, a custom cost-method and base-currency can be provided.
  • 🏷️ Customizable Address Labels: Create, update and manage custom smart contract names for counterparty addresses your wallet interacts with.
  • πŸ“‡ Detailed Metadata: Retrieve metadata for Smart Contracts, Assets, Blockchains, Protocols and Tokens.
  • πŸ”’ Typescript: Written in Typescript with full type-safety
  • βž• ...and more!

πŸ“š Table of Contents

🏁 Getting Started

In order to make requests with the OpenPool SDK you will need to first sign up for an API Key on the OpenPool Dev Portal (it’s Free to sign up).

Installation

npm install @openpool/openpool-sdk

πŸ› οΈ Usage

Initialization

Once you install the SDK, you can initialize it like so:

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);

Making requests

Every address that you will want to retrieve data for will need to be registered first. Once registered, an address will have an is_loaded field that will update upon the completion of its transactions being processed.

πŸ’‘ How to register an address

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);

const registerAddress = async (address: string) => {
  try {
    const requestBody = {address}
    const response = await openpool.registerWallet(requestBody);
    return response
  }
  catch(e){
    // Handle Error
  }
  finally {
    // Do something...
  }
}

const registerWalletResponse = await registerAddress('0x123abc')

πŸ’‘ How to look up the registration status of an address

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);

const lookupTheRegistrationStatusOfAnAddress = async (address: string) => {
  try {
    const requestBody = {address}
    const response = await openpool.getWalletRegistrations(requestBody);
    const registrationStatusResults = response.results
    const registrationStatus = response.results[0].is_loaded
    return registrationStatus
  }
  catch(e){
    // Handle Error
  }
  finally {
    // Do something...
  }
}

const walletRegistrationStatus = await lookupTheRegistrationStatusOfAnAddress('0x123abc')

Examples

Fetching the token balance and performance in USD of a given address

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);

const getTokenBalancesForAnAddress = async (address: string) => {
  try {
    const params = { wallet: address }
    const tokenBalanceResponse = await openpool.getTokenBalances(params);
    return tokenBalanceResponse.result;
  }
  catch(e){
    // Handle Error
  }
  finally {
    // Do something...
  }
}

Fetching the enriched transactions data for a set of addresses

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);

const getTransactionsForAddress = async (address: string) => {
  try {
    const params = { wallet: address }
    const transactionsResponse = await openpool.getTransactions(params);
    return transactionsResponse.result;
  }
  catch(e) {
    // Handle Error
  }
  finally {
    // Do something...
  }
}

const transactions = await getTransactionsForAddress("0x123abc, 0x456cdef, 0x789ghi")

Getting the total unrealized P&L of a given address

import { OpenPool } from '@openpool/openpool-sdk';

const config = {
  apiKey: 'whatILearnedInBoatingSchoolIs', // Replace with your OpenPool API key.
};

const openpool = new OpenPool(config);
    const params = { wallet: address }

const getTotalUnrealizedPnl = async (address: string) => {
  try {
    const params = { wallet: address }
    const transactionsResponse = await openpool.getTotalUnrealizedPnl(params);
    return transactionsResponse.value;
  }
  catch(e) {
    // Handle Error
  }
  finally {
    // Do something...
  }
}

const unrealizedPnl = await getTotalUnrealizedPnl('0x123abc')

πŸ“– API Reference

Table of Contents

  1. Label SDK Methods
  2. Balances SDK Methods
  3. Smart Contracts & Event Tags SDK Methods
  4. Metadata SDK Methods
  5. Accounting SDK Methods
  6. Wallet Registrations SDK Methods
  7. Transactions SDK Methods
  8. Transfers SDK Methods
  9. Total P&L SDK Methods

Label SDK Methods

getAllLabels(query?: { page?: number })

Description

Get a list of all of your custom labels.

  • OpenPool API Endpoint: GET:/label/custom/

Parameters

NameTypeDescriptionOptional
queryobjectPagination queryYes

createLabel(data: AddressLabel)

Description

Create a custom label for a specific 0x address.

  • OpenPool API Endpoint: POST:/label/custom/

Parameters

NameTypeDescriptionOptional
dataAddressLabelLabel informationNo

getLabel(labelId: string)

Description

Get a specific custom label by its ID.

  • OpenPool API Endpoint: GET:/label/custom/

Parameters

NameTypeDescriptionOptional
labelIdstringID of the labelNo

updateLabel(labelId: string, data: AddressLabel)

Description

Update a custom label.

  • OpenPool API Endpoint: PUT:/label/custom/{id}/

Parameters

NameTypeDescriptionOptional
labelIdstringID of the labelNo
dataAddressLabelNew label informationNo

partialUpdateLabel(labelId: string, data: PatchedAddressLabel)

Description

Partially update a custom label.

  • OpenPool API Endpoint: PATCH:/label/custom/{id}/

Parameters

NameTypeDescriptionOptional
labelIdstringID of the labelNo
dataPatchedAddressLabelFields to updateNo

deleteLabel(labelId: string)

Description

Delete a custom label.

  • OpenPool API Endpoint: DELETE:/label/custom/{id}/

Parameters

NameTypeDescriptionOptional
labelIdstringID of the labelNo

Balances SDK Methods

getTokenBalances(params: WalletBalanceQuery)

Description

Get token balances and performance.

  • OpenPool API Endpoint: GET:/wallet/balance/

Parameters

NameTypeDescriptionOptional
paramsWalletBalanceQueryQuery parametersNo

getDeFiBalances(params: WalletDeFiBalanceQuery)

Description

Get DeFi balances and performance.

  • OpenPool API Endpoint: GET:/wallet/defi_balance/

Parameters

NameTypeDescriptionOptional
paramsWalletDeFiBalanceQueryQuery parametersNo

getNFTBalances(params: WalletNftBalanceQuery)

Description

Get NFT balances and performance.

  • OpenPool API Endpoint: GET:/wallet/nft_balance/

Parameters

NameTypeDescriptionOptional
paramsWalletNftBalanceQueryQuery parametersNo

getPortfolioSummary(params: WalletPortfolioQuery)

Description

Get overall summary of balances and performance for tokens and DeFi positions.

  • OpenPool API Endpoint: GET:/wallet/portfolio_summary/

Parameters

NameTypeDescriptionOptional
paramsWalletPortfolioQueryQuery parametersNo

getPortfolioBalances(params: WalletPortfolioQuery)

Description

Get overall list of portfolio balances and performance for tokens and DeFi positions.

  • OpenPool API Endpoint: GET:/wallet/portfolio/

Parameters

NameTypeDescriptionOptional
paramsWalletPortfolioQueryQuery parametersNo

Smart Contract & Event Tags SDK Methods (Requires DeFi Attribution - Smart Contract & Event Tags Plan)

getSmartContracts(params: ContractQuery)

Description

Access 50K smart contract tags for DeFi protocol identification and attribution

  • OpenPool API Endpoint: GET:/metadata/contract/

Parameters

NameTypeDescriptionOptional
paramsContractQueryQuery parametersYes

getFunctionNameByTxHash(params: FunctionNameByTxHashQuery)

Description

Retrieve metadata about function names for a given transaction.

  • OpenPool API Endpoint: GET:/metadata/function_name/chain/tx_hash

Parameters

NameTypeDescriptionOptional
paramsFunctionNameByTxHashQueryPath parametersYes

getFunctionNames(params: FunctionNameQuery)

Description

Retrieve a list of smart contract function names and metadata

  • OpenPool API Endpoint: GET:/metadata/function_name/

Parameters

NameTypeDescriptionOptional
paramsFunctionNameQueryQuery parametersYes

Metadata SDK Methods

getAssets(params: AssetQuery)

Description

Retrieve metadata about assets.

  • OpenPool API Endpoint: GET:/metadata/asset/

Parameters

NameTypeDescriptionOptional
paramsAssetQueryQuery parametersYes

getBlockchains(params: BlockchainQuery)

Description

Retrieve metadata about blockchains.

  • OpenPool API Endpoint: GET:/metadata/blockchain/

Parameters

NameTypeDescriptionOptional
paramsBlockchainQueryQuery parametersYes

getProtocols(params: ProtocolQuery)

Description

Retrieve metadata about protocols.

  • OpenPool API Endpoint: GET:/metadata/protocol/

Parameters

NameTypeDescriptionOptional
paramsProtocolQueryQuery parametersYes

getTokens(params: TokenQuery)

Description

Retrieve metadata about tokens.

  • OpenPool API Endpoint: GET:/metadata/token/

Parameters

NameTypeDescriptionOptional
paramsTokenQueryQuery parametersYes

Accounting SDK Methods

getAccountingHistory(params: WalletAccountingHistoryQuery)

Description

Fetches wallet accounting history based on the given query and request parameters.

  • OpenPool API Endpoint: GET:/wallet/accounting_history/

Parameters

NameTypeDescriptionOptional
paramsWalletAccountingHistoryQueryQuery parameters for the requestNo

Wallet Registrations SDK Methods

getWalletRegistrations(params: WalletManageListQuery)

Description

Query this endpoint to get a list of all the wallet addresses you have registered with OpenPool.

  • OpenPool API Endpoint: GET:/wallet/manage/

Parameters

NameTypeDescriptionOptional
paramsWalletManageListQueryQuery parameters for the requestYes

registerWallet(data: Address)

Description

Register a new address with OpenPool.

  • OpenPool API Endpoint: POST:/wallet/manage/

Parameters

NameTypeDescriptionOptional
dataAddressThe address to be registeredNo

Transactions SDK Methods

getTransactions(query: WalletTransactionListQuery)

Description

Use this method to get a list of all the transactions for the wallets you have registered with OpenPool.

  • OpenPool API Endpoint: GET:/wallet/transaction/

Parameters

NameTypeDescriptionOptional
queryWalletTransactionListQueryQuery parameters for the requestNo

Transfers SDK Methods

getTransfers(query: WalletTransferListQuery)

Description

Get a list of all transfers (cashflows) related to the registered wallets.

  • OpenPool API Endpoint: GET:/wallet/transfer/

Parameters

NameTypeDescriptionOptional
queryWalletTransferListQueryQuery parameters for the requestNo

Total P&L SDK Methods

getTotalUnrealizedPnl(query: WalletBalanceQuery)

Description

Get the overall unrealized tokens PnL for an address, in the currency specified.

  • OpenPool API Endpoint: GET:/wallet/balance/

Parameters

NameTypeDescriptionOptional
queryWalletBalanceQueryQuery parameters for the requestNo

getTotalRealizedPnl(query: WalletBalanceQuery)

Description

Get the overall realized tokens PnL for an address, in the currency specified and using your chosen accounting method.

  • OpenPool API Endpoint: GET:/wallet/balance/

Parameters

NameTypeDescriptionOptional
queryWalletBalanceQueryQuery parameters for the requestNo

1.1.1

2 months ago

1.1.0

7 months ago

1.0.3

7 months ago

1.0.2

8 months ago

1.0.1

8 months ago

1.0.0

8 months ago