XYOracleNetwork/clients

View on GitHub
packages/automation-witness-server/src/Account/getAccount.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { AccountInstance } from '@xyo-network/account'

import { getWallet } from './getWallet.js'

export const getAccount = async (path?: string): Promise<AccountInstance> => {
  return await getWallet(path)
}