rubic-sdk
Version:
Simplify dApp creation
11 lines (10 loc) • 338 B
TypeScript
import { RubicSdkError } from "..";
/**
* Thrown, when current gas price is higher, than max gas price on cross-chain contract
* in target network.
*/
export declare class UpdatedRatesError extends RubicSdkError {
readonly oldAmount: string;
readonly newAmount: string;
constructor(oldAmount: string, newAmount: string);
}