Skip to content

Commit

Permalink
test:fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jfschwarz committed Aug 27, 2024
1 parent 1774561 commit 9edf03c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const _abi = [
] as const;

const _bytecode =
"0x608060405234801561001057600080fd5b506040516101fa3803806101fa833981810160405281019061003291906100a2565b50506101ad565b600082601f83011261004a57600080fd5b815161005d61005882610127565b6100f6565b9150808252602083016020830185838301111561007957600080fd5b610084838284610161565b50505092915050565b60008151905061009c81610196565b92915050565b600080604083850312156100b557600080fd5b60006100c38582860161008d565b925050602083015167ffffffffffffffff8111156100e057600080fd5b6100ec85828601610039565b9150509250929050565b6000604051905081810181811067ffffffffffffffff8211171561011d5761011c610194565b5b8060405250919050565b600067ffffffffffffffff82111561014257610141610194565b5b601f19601f8301169050602081019050919050565b6000819050919050565b60005b8381101561017f578082015181840152602081019050610164565b8381111561018e576000848401525b50505050565bfe5b61019f81610157565b81146101aa57600080fd5b50565b603f806101bb6000396000f3fe6080604052600080fdfea26469706673582212200ccd02b2235c9677aa904c1ddf3d6665b0fe8043aeac41f435eb43be8e02433f64736f6c63430007030033";
"0x608060405234801561001057600080fd5b506040516101fa3803806101fa833981810160405281019061003291906100a2565b50506101ad565b600082601f83011261004a57600080fd5b815161005d61005882610127565b6100f6565b9150808252602083016020830185838301111561007957600080fd5b610084838284610161565b50505092915050565b60008151905061009c81610196565b92915050565b600080604083850312156100b557600080fd5b60006100c38582860161008d565b925050602083015167ffffffffffffffff8111156100e057600080fd5b6100ec85828601610039565b9150509250929050565b6000604051905081810181811067ffffffffffffffff8211171561011d5761011c610194565b5b8060405250919050565b600067ffffffffffffffff82111561014257610141610194565b5b601f19601f8301169050602081019050919050565b6000819050919050565b60005b8381101561017f578082015181840152602081019050610164565b8381111561018e576000848401525b50505050565bfe5b61019f81610157565b81146101aa57600080fd5b50565b603f806101bb6000396000f3fe6080604052600080fdfea26469706673582212208b294033b3d5e207d9a7385fdbb4440d4377107817846ee1405d70c474bf484f64736f6c63430007030033";

type EdgeCasesConstructorParams =
| [signer?: Signer]
Expand Down
14 changes: 0 additions & 14 deletions packages/target-ethers-v5-test/types/v0.8.9/NameClashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,30 +171,16 @@ export interface NameClashes extends BaseContract {
then(overrides?: CallOverrides): Promise<[string]>;
};

attach(overrides?: CallOverrides): Promise<string>;

filters(overrides?: CallOverrides): Promise<string>;

getAddress(overrides?: CallOverrides): Promise<string>;

getDeployedCode(overrides?: CallOverrides): Promise<string>;

getFunction(overrides?: CallOverrides): Promise<string>;

listeners(overrides?: CallOverrides): Promise<string>;

off(overrides?: CallOverrides): Promise<string>;

on(overrides?: CallOverrides): Promise<string>;

once(overrides?: CallOverrides): Promise<string>;

runner(overrides?: CallOverrides): Promise<string>;

target(overrides?: CallOverrides): Promise<string>;

then(overrides?: CallOverrides): Promise<string>;

callStatic: {
attach(overrides?: CallOverrides): Promise<string>;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ export interface NAME12mangling extends BaseContract {
event?: TCEvent
): Promise<this>;

provider: TypedContractMethod<[], [boolean], "view">;

works: TypedContractMethod<[], [boolean], "view">;

getFunction<T extends ContractMethod = ContractMethod>(
Expand Down
22 changes: 3 additions & 19 deletions packages/target-ethers-v6-test/types/v0.8.9/NameClashes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,27 +135,11 @@ export interface NameClashes extends BaseContract {

attach: TypedContractMethod<[], [string], "view">;

filters: TypedContractMethod<[], [string], "view">;
deployed: TypedContractMethod<[], [string], "view">;

getAddress: TypedContractMethod<[], [string], "view">;
provider: TypedContractMethod<[], [string], "view">;

getDeployedCode: TypedContractMethod<[], [string], "view">;

getFunction: TypedContractMethod<[], [string], "view">;

listeners: TypedContractMethod<[], [string], "view">;

off: TypedContractMethod<[], [string], "view">;

on: TypedContractMethod<[], [string], "view">;

once: TypedContractMethod<[], [string], "view">;

runner: TypedContractMethod<[], [string], "view">;

target: TypedContractMethod<[], [string], "view">;

then: TypedContractMethod<[], [string], "view">;
signer: TypedContractMethod<[], [string], "view">;

getFunction<T extends ContractMethod = ContractMethod>(
key: string | FunctionFragment
Expand Down

0 comments on commit 9edf03c

Please sign in to comment.