@arbitrum/sdk
Version:
Typescript library client-side interactions with Arbitrum
14 lines (13 loc) • 374 B
TypeScript
/**
* Errors originating in Arbitrum SDK
*/
export declare class ArbSdkError extends Error {
readonly inner?: Error | undefined;
constructor(message: string, inner?: Error | undefined);
}
/**
* Thrown when a signer does not have a connected provider
*/
export declare class MissingProviderArbSdkError extends ArbSdkError {
constructor(signerName: string);
}