dev3-sdk
Version:
SDK for interacting with the 0xDev3 platform.
15 lines (14 loc) • 598 B
TypeScript
import { ContractDeployAction } from '../actions/ContractDeployAction';
import { DeployableContract, ScreenConfig } from '../types';
export declare class ContractManifest {
private readonly defaultEthAmount;
deployableContract: DeployableContract;
constructor(deployableContract: DeployableContract);
buildDeployment(alias: string, constructorParams: any[], config?: {
ethAmount?: string;
arbitraryData?: Map<string, object>;
screenConfig?: ScreenConfig;
callerAddress?: string;
redirectUrl?: string;
}): Promise<ContractDeployAction>;
}