Skip to content

useAccountBaseAddressesFromApi

Hook for getting base addresses from API (such as Manager and Proxy addresses).

Import

import { useAccountBaseAddressesFromApi } from '@abstract-money/react'

Usage

index.tsx
import { useAccountBaseAddressesFromApi } from '@abstract-money/react'
import { stringToAccountId } from '@abstract-money/core'
 
function App() {
  const accountBaseAddressesFromApiQuery = useAccountBaseAddressesFromApi({
    accountId: stringToAccountId('pion-1'),
    chainName: 'pion'
  })
}

Parameters

accountId

AccountId | undefined

Account Id to be used to fetch the query.

chainName

string | undefined

Name of the chain to be used to fetch the query.

extra

{
    apiUrl?: string | undefined;
    accountId?: AccountId | undefined;
    cosmWasmClient?: CosmWasmClient | undefined;
} | undefined

Extra options to override decorated parameters.

query

QueryOptions | undefined

QueryOptions to use.