@zentity/fhevm-contracts 0.3.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/abi/ComplianceRules.json +25 -16
- package/abi/CompliantERC20.json +30 -16
- package/abi/IdentityRegistry.json +496 -119
- package/contracts/compliance/ComplianceRules.sol +40 -189
- package/contracts/core/IdentityRegistry.sol +280 -232
- package/contracts/interfaces/IComplianceRules.sol +30 -0
- package/contracts/interfaces/IIdentityRegistry.sol +133 -159
- package/contracts/proxy/ERC1967Proxy.sol +6 -0
- package/contracts/test/MockFacilitator.sol +40 -0
- package/contracts/tokens/CompliantERC20.sol +28 -242
- package/deployments/hardhat/addresses.json +3 -8
- package/deployments/sepolia/ComplianceRules.json +91 -207
- package/deployments/sepolia/CompliantERC20.json +114 -293
- package/deployments/sepolia/IdentityRegistry.json +498 -742
- package/deployments/sepolia/IdentityRegistry_Implementation.json +1698 -0
- package/deployments/sepolia/IdentityRegistry_Proxy.json +192 -0
- package/deployments/sepolia/addresses.json +5 -6
- package/dist/index.d.ts +175 -9
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +44 -1
- package/package.json +1 -1
- package/typechain-types/@openzeppelin/contracts/access/Ownable.ts +153 -0
- package/typechain-types/@openzeppelin/contracts/access/Ownable2Step.ts +217 -0
- package/typechain-types/@openzeppelin/contracts/access/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/index.ts +11 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC1967.ts +168 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.ts +151 -0
- package/typechain-types/{contracts/tokens/CompliantERC20.sol/IComplianceChecker.ts → @openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable.ts} +12 -17
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/index.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.ts +105 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/proxy/Proxy.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/proxy/beacon/IBeacon.ts +90 -0
- package/typechain-types/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/proxy/index.ts +8 -0
- package/typechain-types/@openzeppelin/contracts/utils/Address.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/Errors.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/Strings.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.ts +10 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.ts +69 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.ts +251 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.ts +186 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/access/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/index.ts +9 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.ts +105 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.ts +196 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.ts +105 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.ts +184 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/cryptography/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts-upgradeable/utils/index.ts +6 -0
- package/typechain-types/@openzeppelin/index.ts +7 -0
- package/typechain-types/contracts/compliance/ComplianceRules.ts +18 -7
- package/typechain-types/contracts/core/IdentityRegistry.ts +493 -233
- package/typechain-types/contracts/index.ts +2 -0
- package/typechain-types/contracts/interfaces/IComplianceRules.ts +290 -0
- package/typechain-types/contracts/interfaces/IIdentityRegistry.ts +269 -341
- package/typechain-types/contracts/interfaces/index.ts +1 -0
- package/typechain-types/contracts/test/MockFacilitator.ts +187 -0
- package/typechain-types/contracts/test/index.ts +4 -0
- package/typechain-types/contracts/tokens/{CompliantERC20.sol/CompliantERC20.ts → CompliantERC20.ts} +19 -8
- package/typechain-types/contracts/tokens/index.ts +1 -2
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable2Step__factory.ts +138 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.ts +96 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.ts +7 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1967__factory.ts +67 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.ts +71 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/IERC1822Proxiable__factory.ts +38 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC1822.sol/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy__factory.ts +144 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils__factory.ts +105 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/ERC1967/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/Proxy__factory.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/IBeacon__factory.ts +35 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/beacon/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/proxy/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.ts +75 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Errors__factory.ts +101 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.ts +90 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.ts +91 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.ts +8 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.ts +118 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable__factory.ts +165 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable__factory.ts +122 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/access/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable__factory.ts +48 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable__factory.ts +153 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/proxy/utils/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable__factory.ts +48 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable__factory.ts +97 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/cryptography/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts-upgradeable/utils/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/index.ts +5 -0
- package/typechain-types/factories/contracts/compliance/ComplianceRules__factory.ts +26 -17
- package/typechain-types/factories/contracts/core/IdentityRegistry__factory.ts +493 -116
- package/typechain-types/factories/contracts/index.ts +1 -0
- package/typechain-types/factories/contracts/interfaces/IComplianceRules__factory.ts +193 -0
- package/typechain-types/factories/contracts/interfaces/IIdentityRegistry__factory.ts +236 -186
- package/typechain-types/factories/contracts/interfaces/index.ts +1 -0
- package/typechain-types/factories/contracts/test/MockFacilitator__factory.ts +194 -0
- package/typechain-types/factories/contracts/test/index.ts +4 -0
- package/typechain-types/factories/contracts/tokens/CompliantERC20__factory.ts +595 -0
- package/typechain-types/factories/contracts/tokens/index.ts +1 -1
- package/typechain-types/factories/index.ts +1 -0
- package/typechain-types/hardhat.d.ts +394 -16
- package/typechain-types/index.ts +48 -4
- package/deployments/hardhat/.chainId +0 -1
- package/typechain-types/contracts/tokens/CompliantERC20.sol/index.ts +0 -5
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/CompliantERC20__factory.ts +0 -581
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/IComplianceChecker__factory.ts +0 -44
- package/typechain-types/factories/contracts/tokens/CompliantERC20.sol/index.ts +0 -5
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type {
|
|
5
|
+
BaseContract,
|
|
6
|
+
BytesLike,
|
|
7
|
+
FunctionFragment,
|
|
8
|
+
Result,
|
|
9
|
+
Interface,
|
|
10
|
+
EventFragment,
|
|
11
|
+
AddressLike,
|
|
12
|
+
ContractRunner,
|
|
13
|
+
ContractMethod,
|
|
14
|
+
Listener,
|
|
15
|
+
} from "ethers";
|
|
16
|
+
import type {
|
|
17
|
+
TypedContractEvent,
|
|
18
|
+
TypedDeferredTopicFilter,
|
|
19
|
+
TypedEventLog,
|
|
20
|
+
TypedLogDescription,
|
|
21
|
+
TypedListener,
|
|
22
|
+
TypedContractMethod,
|
|
23
|
+
} from "../../../common";
|
|
24
|
+
|
|
25
|
+
export interface OwnableInterface extends Interface {
|
|
26
|
+
getFunction(
|
|
27
|
+
nameOrSignature: "owner" | "renounceOwnership" | "transferOwnership"
|
|
28
|
+
): FunctionFragment;
|
|
29
|
+
|
|
30
|
+
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
31
|
+
|
|
32
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
33
|
+
encodeFunctionData(
|
|
34
|
+
functionFragment: "renounceOwnership",
|
|
35
|
+
values?: undefined
|
|
36
|
+
): string;
|
|
37
|
+
encodeFunctionData(
|
|
38
|
+
functionFragment: "transferOwnership",
|
|
39
|
+
values: [AddressLike]
|
|
40
|
+
): string;
|
|
41
|
+
|
|
42
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
43
|
+
decodeFunctionResult(
|
|
44
|
+
functionFragment: "renounceOwnership",
|
|
45
|
+
data: BytesLike
|
|
46
|
+
): Result;
|
|
47
|
+
decodeFunctionResult(
|
|
48
|
+
functionFragment: "transferOwnership",
|
|
49
|
+
data: BytesLike
|
|
50
|
+
): Result;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export namespace OwnershipTransferredEvent {
|
|
54
|
+
export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
55
|
+
export type OutputTuple = [previousOwner: string, newOwner: string];
|
|
56
|
+
export interface OutputObject {
|
|
57
|
+
previousOwner: string;
|
|
58
|
+
newOwner: string;
|
|
59
|
+
}
|
|
60
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
61
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
62
|
+
export type Log = TypedEventLog<Event>;
|
|
63
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export interface Ownable extends BaseContract {
|
|
67
|
+
connect(runner?: ContractRunner | null): Ownable;
|
|
68
|
+
waitForDeployment(): Promise<this>;
|
|
69
|
+
|
|
70
|
+
interface: OwnableInterface;
|
|
71
|
+
|
|
72
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
73
|
+
event: TCEvent,
|
|
74
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
75
|
+
toBlock?: string | number | undefined
|
|
76
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
77
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
78
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
79
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
80
|
+
toBlock?: string | number | undefined
|
|
81
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
82
|
+
|
|
83
|
+
on<TCEvent extends TypedContractEvent>(
|
|
84
|
+
event: TCEvent,
|
|
85
|
+
listener: TypedListener<TCEvent>
|
|
86
|
+
): Promise<this>;
|
|
87
|
+
on<TCEvent extends TypedContractEvent>(
|
|
88
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
89
|
+
listener: TypedListener<TCEvent>
|
|
90
|
+
): Promise<this>;
|
|
91
|
+
|
|
92
|
+
once<TCEvent extends TypedContractEvent>(
|
|
93
|
+
event: TCEvent,
|
|
94
|
+
listener: TypedListener<TCEvent>
|
|
95
|
+
): Promise<this>;
|
|
96
|
+
once<TCEvent extends TypedContractEvent>(
|
|
97
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
98
|
+
listener: TypedListener<TCEvent>
|
|
99
|
+
): Promise<this>;
|
|
100
|
+
|
|
101
|
+
listeners<TCEvent extends TypedContractEvent>(
|
|
102
|
+
event: TCEvent
|
|
103
|
+
): Promise<Array<TypedListener<TCEvent>>>;
|
|
104
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
105
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(
|
|
106
|
+
event?: TCEvent
|
|
107
|
+
): Promise<this>;
|
|
108
|
+
|
|
109
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
110
|
+
|
|
111
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
112
|
+
|
|
113
|
+
transferOwnership: TypedContractMethod<
|
|
114
|
+
[newOwner: AddressLike],
|
|
115
|
+
[void],
|
|
116
|
+
"nonpayable"
|
|
117
|
+
>;
|
|
118
|
+
|
|
119
|
+
getFunction<T extends ContractMethod = ContractMethod>(
|
|
120
|
+
key: string | FunctionFragment
|
|
121
|
+
): T;
|
|
122
|
+
|
|
123
|
+
getFunction(
|
|
124
|
+
nameOrSignature: "owner"
|
|
125
|
+
): TypedContractMethod<[], [string], "view">;
|
|
126
|
+
getFunction(
|
|
127
|
+
nameOrSignature: "renounceOwnership"
|
|
128
|
+
): TypedContractMethod<[], [void], "nonpayable">;
|
|
129
|
+
getFunction(
|
|
130
|
+
nameOrSignature: "transferOwnership"
|
|
131
|
+
): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
132
|
+
|
|
133
|
+
getEvent(
|
|
134
|
+
key: "OwnershipTransferred"
|
|
135
|
+
): TypedContractEvent<
|
|
136
|
+
OwnershipTransferredEvent.InputTuple,
|
|
137
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
138
|
+
OwnershipTransferredEvent.OutputObject
|
|
139
|
+
>;
|
|
140
|
+
|
|
141
|
+
filters: {
|
|
142
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<
|
|
143
|
+
OwnershipTransferredEvent.InputTuple,
|
|
144
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
145
|
+
OwnershipTransferredEvent.OutputObject
|
|
146
|
+
>;
|
|
147
|
+
OwnershipTransferred: TypedContractEvent<
|
|
148
|
+
OwnershipTransferredEvent.InputTuple,
|
|
149
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
150
|
+
OwnershipTransferredEvent.OutputObject
|
|
151
|
+
>;
|
|
152
|
+
};
|
|
153
|
+
}
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type {
|
|
5
|
+
BaseContract,
|
|
6
|
+
BytesLike,
|
|
7
|
+
FunctionFragment,
|
|
8
|
+
Result,
|
|
9
|
+
Interface,
|
|
10
|
+
EventFragment,
|
|
11
|
+
AddressLike,
|
|
12
|
+
ContractRunner,
|
|
13
|
+
ContractMethod,
|
|
14
|
+
Listener,
|
|
15
|
+
} from "ethers";
|
|
16
|
+
import type {
|
|
17
|
+
TypedContractEvent,
|
|
18
|
+
TypedDeferredTopicFilter,
|
|
19
|
+
TypedEventLog,
|
|
20
|
+
TypedLogDescription,
|
|
21
|
+
TypedListener,
|
|
22
|
+
TypedContractMethod,
|
|
23
|
+
} from "../../../common";
|
|
24
|
+
|
|
25
|
+
export interface Ownable2StepInterface extends Interface {
|
|
26
|
+
getFunction(
|
|
27
|
+
nameOrSignature:
|
|
28
|
+
| "acceptOwnership"
|
|
29
|
+
| "owner"
|
|
30
|
+
| "pendingOwner"
|
|
31
|
+
| "renounceOwnership"
|
|
32
|
+
| "transferOwnership"
|
|
33
|
+
): FunctionFragment;
|
|
34
|
+
|
|
35
|
+
getEvent(
|
|
36
|
+
nameOrSignatureOrTopic: "OwnershipTransferStarted" | "OwnershipTransferred"
|
|
37
|
+
): EventFragment;
|
|
38
|
+
|
|
39
|
+
encodeFunctionData(
|
|
40
|
+
functionFragment: "acceptOwnership",
|
|
41
|
+
values?: undefined
|
|
42
|
+
): string;
|
|
43
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
|
44
|
+
encodeFunctionData(
|
|
45
|
+
functionFragment: "pendingOwner",
|
|
46
|
+
values?: undefined
|
|
47
|
+
): string;
|
|
48
|
+
encodeFunctionData(
|
|
49
|
+
functionFragment: "renounceOwnership",
|
|
50
|
+
values?: undefined
|
|
51
|
+
): string;
|
|
52
|
+
encodeFunctionData(
|
|
53
|
+
functionFragment: "transferOwnership",
|
|
54
|
+
values: [AddressLike]
|
|
55
|
+
): string;
|
|
56
|
+
|
|
57
|
+
decodeFunctionResult(
|
|
58
|
+
functionFragment: "acceptOwnership",
|
|
59
|
+
data: BytesLike
|
|
60
|
+
): Result;
|
|
61
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
|
62
|
+
decodeFunctionResult(
|
|
63
|
+
functionFragment: "pendingOwner",
|
|
64
|
+
data: BytesLike
|
|
65
|
+
): Result;
|
|
66
|
+
decodeFunctionResult(
|
|
67
|
+
functionFragment: "renounceOwnership",
|
|
68
|
+
data: BytesLike
|
|
69
|
+
): Result;
|
|
70
|
+
decodeFunctionResult(
|
|
71
|
+
functionFragment: "transferOwnership",
|
|
72
|
+
data: BytesLike
|
|
73
|
+
): Result;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
export namespace OwnershipTransferStartedEvent {
|
|
77
|
+
export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
78
|
+
export type OutputTuple = [previousOwner: string, newOwner: string];
|
|
79
|
+
export interface OutputObject {
|
|
80
|
+
previousOwner: string;
|
|
81
|
+
newOwner: string;
|
|
82
|
+
}
|
|
83
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
84
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
85
|
+
export type Log = TypedEventLog<Event>;
|
|
86
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
export namespace OwnershipTransferredEvent {
|
|
90
|
+
export type InputTuple = [previousOwner: AddressLike, newOwner: AddressLike];
|
|
91
|
+
export type OutputTuple = [previousOwner: string, newOwner: string];
|
|
92
|
+
export interface OutputObject {
|
|
93
|
+
previousOwner: string;
|
|
94
|
+
newOwner: string;
|
|
95
|
+
}
|
|
96
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
97
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
98
|
+
export type Log = TypedEventLog<Event>;
|
|
99
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface Ownable2Step extends BaseContract {
|
|
103
|
+
connect(runner?: ContractRunner | null): Ownable2Step;
|
|
104
|
+
waitForDeployment(): Promise<this>;
|
|
105
|
+
|
|
106
|
+
interface: Ownable2StepInterface;
|
|
107
|
+
|
|
108
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
109
|
+
event: TCEvent,
|
|
110
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
111
|
+
toBlock?: string | number | undefined
|
|
112
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
113
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
114
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
115
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
116
|
+
toBlock?: string | number | undefined
|
|
117
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
118
|
+
|
|
119
|
+
on<TCEvent extends TypedContractEvent>(
|
|
120
|
+
event: TCEvent,
|
|
121
|
+
listener: TypedListener<TCEvent>
|
|
122
|
+
): Promise<this>;
|
|
123
|
+
on<TCEvent extends TypedContractEvent>(
|
|
124
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
125
|
+
listener: TypedListener<TCEvent>
|
|
126
|
+
): Promise<this>;
|
|
127
|
+
|
|
128
|
+
once<TCEvent extends TypedContractEvent>(
|
|
129
|
+
event: TCEvent,
|
|
130
|
+
listener: TypedListener<TCEvent>
|
|
131
|
+
): Promise<this>;
|
|
132
|
+
once<TCEvent extends TypedContractEvent>(
|
|
133
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
134
|
+
listener: TypedListener<TCEvent>
|
|
135
|
+
): Promise<this>;
|
|
136
|
+
|
|
137
|
+
listeners<TCEvent extends TypedContractEvent>(
|
|
138
|
+
event: TCEvent
|
|
139
|
+
): Promise<Array<TypedListener<TCEvent>>>;
|
|
140
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
141
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(
|
|
142
|
+
event?: TCEvent
|
|
143
|
+
): Promise<this>;
|
|
144
|
+
|
|
145
|
+
acceptOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
146
|
+
|
|
147
|
+
owner: TypedContractMethod<[], [string], "view">;
|
|
148
|
+
|
|
149
|
+
pendingOwner: TypedContractMethod<[], [string], "view">;
|
|
150
|
+
|
|
151
|
+
renounceOwnership: TypedContractMethod<[], [void], "nonpayable">;
|
|
152
|
+
|
|
153
|
+
transferOwnership: TypedContractMethod<
|
|
154
|
+
[newOwner: AddressLike],
|
|
155
|
+
[void],
|
|
156
|
+
"nonpayable"
|
|
157
|
+
>;
|
|
158
|
+
|
|
159
|
+
getFunction<T extends ContractMethod = ContractMethod>(
|
|
160
|
+
key: string | FunctionFragment
|
|
161
|
+
): T;
|
|
162
|
+
|
|
163
|
+
getFunction(
|
|
164
|
+
nameOrSignature: "acceptOwnership"
|
|
165
|
+
): TypedContractMethod<[], [void], "nonpayable">;
|
|
166
|
+
getFunction(
|
|
167
|
+
nameOrSignature: "owner"
|
|
168
|
+
): TypedContractMethod<[], [string], "view">;
|
|
169
|
+
getFunction(
|
|
170
|
+
nameOrSignature: "pendingOwner"
|
|
171
|
+
): TypedContractMethod<[], [string], "view">;
|
|
172
|
+
getFunction(
|
|
173
|
+
nameOrSignature: "renounceOwnership"
|
|
174
|
+
): TypedContractMethod<[], [void], "nonpayable">;
|
|
175
|
+
getFunction(
|
|
176
|
+
nameOrSignature: "transferOwnership"
|
|
177
|
+
): TypedContractMethod<[newOwner: AddressLike], [void], "nonpayable">;
|
|
178
|
+
|
|
179
|
+
getEvent(
|
|
180
|
+
key: "OwnershipTransferStarted"
|
|
181
|
+
): TypedContractEvent<
|
|
182
|
+
OwnershipTransferStartedEvent.InputTuple,
|
|
183
|
+
OwnershipTransferStartedEvent.OutputTuple,
|
|
184
|
+
OwnershipTransferStartedEvent.OutputObject
|
|
185
|
+
>;
|
|
186
|
+
getEvent(
|
|
187
|
+
key: "OwnershipTransferred"
|
|
188
|
+
): TypedContractEvent<
|
|
189
|
+
OwnershipTransferredEvent.InputTuple,
|
|
190
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
191
|
+
OwnershipTransferredEvent.OutputObject
|
|
192
|
+
>;
|
|
193
|
+
|
|
194
|
+
filters: {
|
|
195
|
+
"OwnershipTransferStarted(address,address)": TypedContractEvent<
|
|
196
|
+
OwnershipTransferStartedEvent.InputTuple,
|
|
197
|
+
OwnershipTransferStartedEvent.OutputTuple,
|
|
198
|
+
OwnershipTransferStartedEvent.OutputObject
|
|
199
|
+
>;
|
|
200
|
+
OwnershipTransferStarted: TypedContractEvent<
|
|
201
|
+
OwnershipTransferStartedEvent.InputTuple,
|
|
202
|
+
OwnershipTransferStartedEvent.OutputTuple,
|
|
203
|
+
OwnershipTransferStartedEvent.OutputObject
|
|
204
|
+
>;
|
|
205
|
+
|
|
206
|
+
"OwnershipTransferred(address,address)": TypedContractEvent<
|
|
207
|
+
OwnershipTransferredEvent.InputTuple,
|
|
208
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
209
|
+
OwnershipTransferredEvent.OutputObject
|
|
210
|
+
>;
|
|
211
|
+
OwnershipTransferred: TypedContractEvent<
|
|
212
|
+
OwnershipTransferredEvent.InputTuple,
|
|
213
|
+
OwnershipTransferredEvent.OutputTuple,
|
|
214
|
+
OwnershipTransferredEvent.OutputObject
|
|
215
|
+
>;
|
|
216
|
+
};
|
|
217
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type * as access from "./access";
|
|
5
|
+
export type { access };
|
|
6
|
+
import type * as interfaces from "./interfaces";
|
|
7
|
+
export type { interfaces };
|
|
8
|
+
import type * as proxy from "./proxy";
|
|
9
|
+
export type { proxy };
|
|
10
|
+
import type * as utils from "./utils";
|
|
11
|
+
export type { utils };
|
|
@@ -0,0 +1,168 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type {
|
|
5
|
+
BaseContract,
|
|
6
|
+
FunctionFragment,
|
|
7
|
+
Interface,
|
|
8
|
+
EventFragment,
|
|
9
|
+
AddressLike,
|
|
10
|
+
ContractRunner,
|
|
11
|
+
ContractMethod,
|
|
12
|
+
Listener,
|
|
13
|
+
} from "ethers";
|
|
14
|
+
import type {
|
|
15
|
+
TypedContractEvent,
|
|
16
|
+
TypedDeferredTopicFilter,
|
|
17
|
+
TypedEventLog,
|
|
18
|
+
TypedLogDescription,
|
|
19
|
+
TypedListener,
|
|
20
|
+
} from "../../../common";
|
|
21
|
+
|
|
22
|
+
export interface IERC1967Interface extends Interface {
|
|
23
|
+
getEvent(
|
|
24
|
+
nameOrSignatureOrTopic: "AdminChanged" | "BeaconUpgraded" | "Upgraded"
|
|
25
|
+
): EventFragment;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export namespace AdminChangedEvent {
|
|
29
|
+
export type InputTuple = [previousAdmin: AddressLike, newAdmin: AddressLike];
|
|
30
|
+
export type OutputTuple = [previousAdmin: string, newAdmin: string];
|
|
31
|
+
export interface OutputObject {
|
|
32
|
+
previousAdmin: string;
|
|
33
|
+
newAdmin: string;
|
|
34
|
+
}
|
|
35
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
36
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
37
|
+
export type Log = TypedEventLog<Event>;
|
|
38
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export namespace BeaconUpgradedEvent {
|
|
42
|
+
export type InputTuple = [beacon: AddressLike];
|
|
43
|
+
export type OutputTuple = [beacon: string];
|
|
44
|
+
export interface OutputObject {
|
|
45
|
+
beacon: string;
|
|
46
|
+
}
|
|
47
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
48
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
49
|
+
export type Log = TypedEventLog<Event>;
|
|
50
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
export namespace UpgradedEvent {
|
|
54
|
+
export type InputTuple = [implementation: AddressLike];
|
|
55
|
+
export type OutputTuple = [implementation: string];
|
|
56
|
+
export interface OutputObject {
|
|
57
|
+
implementation: string;
|
|
58
|
+
}
|
|
59
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
60
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
61
|
+
export type Log = TypedEventLog<Event>;
|
|
62
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export interface IERC1967 extends BaseContract {
|
|
66
|
+
connect(runner?: ContractRunner | null): IERC1967;
|
|
67
|
+
waitForDeployment(): Promise<this>;
|
|
68
|
+
|
|
69
|
+
interface: IERC1967Interface;
|
|
70
|
+
|
|
71
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
72
|
+
event: TCEvent,
|
|
73
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
74
|
+
toBlock?: string | number | undefined
|
|
75
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
76
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
77
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
78
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
79
|
+
toBlock?: string | number | undefined
|
|
80
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
81
|
+
|
|
82
|
+
on<TCEvent extends TypedContractEvent>(
|
|
83
|
+
event: TCEvent,
|
|
84
|
+
listener: TypedListener<TCEvent>
|
|
85
|
+
): Promise<this>;
|
|
86
|
+
on<TCEvent extends TypedContractEvent>(
|
|
87
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
88
|
+
listener: TypedListener<TCEvent>
|
|
89
|
+
): Promise<this>;
|
|
90
|
+
|
|
91
|
+
once<TCEvent extends TypedContractEvent>(
|
|
92
|
+
event: TCEvent,
|
|
93
|
+
listener: TypedListener<TCEvent>
|
|
94
|
+
): Promise<this>;
|
|
95
|
+
once<TCEvent extends TypedContractEvent>(
|
|
96
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
97
|
+
listener: TypedListener<TCEvent>
|
|
98
|
+
): Promise<this>;
|
|
99
|
+
|
|
100
|
+
listeners<TCEvent extends TypedContractEvent>(
|
|
101
|
+
event: TCEvent
|
|
102
|
+
): Promise<Array<TypedListener<TCEvent>>>;
|
|
103
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
104
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(
|
|
105
|
+
event?: TCEvent
|
|
106
|
+
): Promise<this>;
|
|
107
|
+
|
|
108
|
+
getFunction<T extends ContractMethod = ContractMethod>(
|
|
109
|
+
key: string | FunctionFragment
|
|
110
|
+
): T;
|
|
111
|
+
|
|
112
|
+
getEvent(
|
|
113
|
+
key: "AdminChanged"
|
|
114
|
+
): TypedContractEvent<
|
|
115
|
+
AdminChangedEvent.InputTuple,
|
|
116
|
+
AdminChangedEvent.OutputTuple,
|
|
117
|
+
AdminChangedEvent.OutputObject
|
|
118
|
+
>;
|
|
119
|
+
getEvent(
|
|
120
|
+
key: "BeaconUpgraded"
|
|
121
|
+
): TypedContractEvent<
|
|
122
|
+
BeaconUpgradedEvent.InputTuple,
|
|
123
|
+
BeaconUpgradedEvent.OutputTuple,
|
|
124
|
+
BeaconUpgradedEvent.OutputObject
|
|
125
|
+
>;
|
|
126
|
+
getEvent(
|
|
127
|
+
key: "Upgraded"
|
|
128
|
+
): TypedContractEvent<
|
|
129
|
+
UpgradedEvent.InputTuple,
|
|
130
|
+
UpgradedEvent.OutputTuple,
|
|
131
|
+
UpgradedEvent.OutputObject
|
|
132
|
+
>;
|
|
133
|
+
|
|
134
|
+
filters: {
|
|
135
|
+
"AdminChanged(address,address)": TypedContractEvent<
|
|
136
|
+
AdminChangedEvent.InputTuple,
|
|
137
|
+
AdminChangedEvent.OutputTuple,
|
|
138
|
+
AdminChangedEvent.OutputObject
|
|
139
|
+
>;
|
|
140
|
+
AdminChanged: TypedContractEvent<
|
|
141
|
+
AdminChangedEvent.InputTuple,
|
|
142
|
+
AdminChangedEvent.OutputTuple,
|
|
143
|
+
AdminChangedEvent.OutputObject
|
|
144
|
+
>;
|
|
145
|
+
|
|
146
|
+
"BeaconUpgraded(address)": TypedContractEvent<
|
|
147
|
+
BeaconUpgradedEvent.InputTuple,
|
|
148
|
+
BeaconUpgradedEvent.OutputTuple,
|
|
149
|
+
BeaconUpgradedEvent.OutputObject
|
|
150
|
+
>;
|
|
151
|
+
BeaconUpgraded: TypedContractEvent<
|
|
152
|
+
BeaconUpgradedEvent.InputTuple,
|
|
153
|
+
BeaconUpgradedEvent.OutputTuple,
|
|
154
|
+
BeaconUpgradedEvent.OutputObject
|
|
155
|
+
>;
|
|
156
|
+
|
|
157
|
+
"Upgraded(address)": TypedContractEvent<
|
|
158
|
+
UpgradedEvent.InputTuple,
|
|
159
|
+
UpgradedEvent.OutputTuple,
|
|
160
|
+
UpgradedEvent.OutputObject
|
|
161
|
+
>;
|
|
162
|
+
Upgraded: TypedContractEvent<
|
|
163
|
+
UpgradedEvent.InputTuple,
|
|
164
|
+
UpgradedEvent.OutputTuple,
|
|
165
|
+
UpgradedEvent.OutputObject
|
|
166
|
+
>;
|
|
167
|
+
};
|
|
168
|
+
}
|
|
@@ -0,0 +1,151 @@
|
|
|
1
|
+
/* Autogenerated file. Do not edit manually. */
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import type {
|
|
5
|
+
BaseContract,
|
|
6
|
+
BytesLike,
|
|
7
|
+
FunctionFragment,
|
|
8
|
+
Result,
|
|
9
|
+
Interface,
|
|
10
|
+
EventFragment,
|
|
11
|
+
ContractRunner,
|
|
12
|
+
ContractMethod,
|
|
13
|
+
Listener,
|
|
14
|
+
} from "ethers";
|
|
15
|
+
import type {
|
|
16
|
+
TypedContractEvent,
|
|
17
|
+
TypedDeferredTopicFilter,
|
|
18
|
+
TypedEventLog,
|
|
19
|
+
TypedLogDescription,
|
|
20
|
+
TypedListener,
|
|
21
|
+
TypedContractMethod,
|
|
22
|
+
} from "../../../common";
|
|
23
|
+
|
|
24
|
+
export interface IERC5267Interface extends Interface {
|
|
25
|
+
getFunction(nameOrSignature: "eip712Domain"): FunctionFragment;
|
|
26
|
+
|
|
27
|
+
getEvent(nameOrSignatureOrTopic: "EIP712DomainChanged"): EventFragment;
|
|
28
|
+
|
|
29
|
+
encodeFunctionData(
|
|
30
|
+
functionFragment: "eip712Domain",
|
|
31
|
+
values?: undefined
|
|
32
|
+
): string;
|
|
33
|
+
|
|
34
|
+
decodeFunctionResult(
|
|
35
|
+
functionFragment: "eip712Domain",
|
|
36
|
+
data: BytesLike
|
|
37
|
+
): Result;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export namespace EIP712DomainChangedEvent {
|
|
41
|
+
export type InputTuple = [];
|
|
42
|
+
export type OutputTuple = [];
|
|
43
|
+
export interface OutputObject {}
|
|
44
|
+
export type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
|
45
|
+
export type Filter = TypedDeferredTopicFilter<Event>;
|
|
46
|
+
export type Log = TypedEventLog<Event>;
|
|
47
|
+
export type LogDescription = TypedLogDescription<Event>;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export interface IERC5267 extends BaseContract {
|
|
51
|
+
connect(runner?: ContractRunner | null): IERC5267;
|
|
52
|
+
waitForDeployment(): Promise<this>;
|
|
53
|
+
|
|
54
|
+
interface: IERC5267Interface;
|
|
55
|
+
|
|
56
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
57
|
+
event: TCEvent,
|
|
58
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
59
|
+
toBlock?: string | number | undefined
|
|
60
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
61
|
+
queryFilter<TCEvent extends TypedContractEvent>(
|
|
62
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
63
|
+
fromBlockOrBlockhash?: string | number | undefined,
|
|
64
|
+
toBlock?: string | number | undefined
|
|
65
|
+
): Promise<Array<TypedEventLog<TCEvent>>>;
|
|
66
|
+
|
|
67
|
+
on<TCEvent extends TypedContractEvent>(
|
|
68
|
+
event: TCEvent,
|
|
69
|
+
listener: TypedListener<TCEvent>
|
|
70
|
+
): Promise<this>;
|
|
71
|
+
on<TCEvent extends TypedContractEvent>(
|
|
72
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
73
|
+
listener: TypedListener<TCEvent>
|
|
74
|
+
): Promise<this>;
|
|
75
|
+
|
|
76
|
+
once<TCEvent extends TypedContractEvent>(
|
|
77
|
+
event: TCEvent,
|
|
78
|
+
listener: TypedListener<TCEvent>
|
|
79
|
+
): Promise<this>;
|
|
80
|
+
once<TCEvent extends TypedContractEvent>(
|
|
81
|
+
filter: TypedDeferredTopicFilter<TCEvent>,
|
|
82
|
+
listener: TypedListener<TCEvent>
|
|
83
|
+
): Promise<this>;
|
|
84
|
+
|
|
85
|
+
listeners<TCEvent extends TypedContractEvent>(
|
|
86
|
+
event: TCEvent
|
|
87
|
+
): Promise<Array<TypedListener<TCEvent>>>;
|
|
88
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
|
89
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(
|
|
90
|
+
event?: TCEvent
|
|
91
|
+
): Promise<this>;
|
|
92
|
+
|
|
93
|
+
eip712Domain: TypedContractMethod<
|
|
94
|
+
[],
|
|
95
|
+
[
|
|
96
|
+
[string, string, string, bigint, string, string, bigint[]] & {
|
|
97
|
+
fields: string;
|
|
98
|
+
name: string;
|
|
99
|
+
version: string;
|
|
100
|
+
chainId: bigint;
|
|
101
|
+
verifyingContract: string;
|
|
102
|
+
salt: string;
|
|
103
|
+
extensions: bigint[];
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"view"
|
|
107
|
+
>;
|
|
108
|
+
|
|
109
|
+
getFunction<T extends ContractMethod = ContractMethod>(
|
|
110
|
+
key: string | FunctionFragment
|
|
111
|
+
): T;
|
|
112
|
+
|
|
113
|
+
getFunction(
|
|
114
|
+
nameOrSignature: "eip712Domain"
|
|
115
|
+
): TypedContractMethod<
|
|
116
|
+
[],
|
|
117
|
+
[
|
|
118
|
+
[string, string, string, bigint, string, string, bigint[]] & {
|
|
119
|
+
fields: string;
|
|
120
|
+
name: string;
|
|
121
|
+
version: string;
|
|
122
|
+
chainId: bigint;
|
|
123
|
+
verifyingContract: string;
|
|
124
|
+
salt: string;
|
|
125
|
+
extensions: bigint[];
|
|
126
|
+
}
|
|
127
|
+
],
|
|
128
|
+
"view"
|
|
129
|
+
>;
|
|
130
|
+
|
|
131
|
+
getEvent(
|
|
132
|
+
key: "EIP712DomainChanged"
|
|
133
|
+
): TypedContractEvent<
|
|
134
|
+
EIP712DomainChangedEvent.InputTuple,
|
|
135
|
+
EIP712DomainChangedEvent.OutputTuple,
|
|
136
|
+
EIP712DomainChangedEvent.OutputObject
|
|
137
|
+
>;
|
|
138
|
+
|
|
139
|
+
filters: {
|
|
140
|
+
"EIP712DomainChanged()": TypedContractEvent<
|
|
141
|
+
EIP712DomainChangedEvent.InputTuple,
|
|
142
|
+
EIP712DomainChangedEvent.OutputTuple,
|
|
143
|
+
EIP712DomainChangedEvent.OutputObject
|
|
144
|
+
>;
|
|
145
|
+
EIP712DomainChanged: TypedContractEvent<
|
|
146
|
+
EIP712DomainChangedEvent.InputTuple,
|
|
147
|
+
EIP712DomainChangedEvent.OutputTuple,
|
|
148
|
+
EIP712DomainChangedEvent.OutputObject
|
|
149
|
+
>;
|
|
150
|
+
};
|
|
151
|
+
}
|