safe-apps-sdk
Version:
SDK developed to integrate third-party apps with Safe app.
18 lines (17 loc) • 423 B
TypeScript
import { TXs } from './txs';
import { Eth } from './eth';
import { Safe } from './safe';
import { Wallet } from './wallet';
export type Opts = {
allowedDomains?: RegExp[];
debug?: boolean;
};
declare class SafeAppsSDK {
private readonly communicator;
readonly eth: Eth;
readonly txs: TXs;
readonly safe: Safe;
readonly wallet: Wallet;
constructor(opts?: Opts);
}
export default SafeAppsSDK;