/** * @prettier */ import { BaseCoin, BitGoBase, MultisigType } from '@bitgo/sdk-core'; import { BaseCoin as StaticsBaseCoin } from '@bitgo/statics'; import { AbstractEthLikeNewCoins, TransactionBuilder as EthLikeTransactionBuilder } from '@bitgo/abstract-eth'; export declare class Zketh extends AbstractEthLikeNewCoins { protected constructor(bitgo: BitGoBase, staticsCoin?: Readonly); static createInstance(bitgo: BitGoBase, staticsCoin?: Readonly): BaseCoin; protected getTransactionBuilder(): EthLikeTransactionBuilder; /** * Make a query to Zksync explorer for information such as balance, token balance, solidity calls * @param {Object} query key-value pairs of parameters to append after /api * @param {string} apiKey optional API key to use instead of the one from the environment * @returns {Promise} response from Zksync explorer */ recoveryBlockchainExplorerQuery(query: Record, apiKey?: string): Promise>; /** inherited doc */ getDefaultMultisigType(): MultisigType; } //# sourceMappingURL=zketh.d.ts.map