@owlprotocol/contracts-account-abstraction
Version:
ERC4337 Account Abstraction support for deploying relevant smart contracts and interacting with UserOps.
55 lines (54 loc) • 1.68 kB
TypeScript
export declare const helloWorld: {
readonly inputs: readonly [];
readonly name: "helloWorld";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "pure";
readonly type: "function";
};
export declare const functions: readonly [{
readonly inputs: readonly [];
readonly name: "helloWorld";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "pure";
readonly type: "function";
}];
export declare const events: readonly [];
export declare const errors: readonly [];
export declare const abi: readonly [{
readonly inputs: readonly [];
readonly name: "helloWorld";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "pure";
readonly type: "function";
}];
export declare const bytecode: `0x${string}`;
export declare const deployedBytecode: `0x${string}`;
export declare const implementation: `0x${string}`;
export declare const MyContract: {
abi: readonly [{
readonly inputs: readonly [];
readonly name: "helloWorld";
readonly outputs: readonly [{
readonly internalType: "string";
readonly name: "";
readonly type: "string";
}];
readonly stateMutability: "pure";
readonly type: "function";
}];
bytecode: `0x${string}`;
deployedBytecode: `0x${string}`;
implementation: `0x${string}`;
};