UNPKG

@devasher/kuru-sdk

Version:

Ethers v6 SDK to interact with Kuru (forked from @kuru-labs/kuru-sdk)

12 lines 610 B
import { ethers } from 'ethers'; import { VaultParams } from '../types'; export declare abstract class VaultParamFetcher { /** * @dev Retrieves the vault parameters from the order book contract. * @param providerOrSigner - The ethers.js provider to interact with the blockchain. * @param orderbookAddress - The address of the order book contract. * @returns A promise that resolves to the vault parameters. */ static getVaultParams(providerOrSigner: ethers.JsonRpcProvider | ethers.Signer, orderbookAddress: string): Promise<VaultParams>; } //# sourceMappingURL=params.d.ts.map