@zkp2p/contracts-v2 0.0.9 → 0.0.10
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/_cjs/abis/baseStaging/AcrossBridgeHook.js +155 -100
- package/_cjs/abis/baseStaging/AcrossBridgeHook.json +155 -100
- package/_cjs/abis/baseStaging/ChainlinkOracleAdapter.js +52 -0
- package/_cjs/abis/baseStaging/ChainlinkOracleAdapter.json +50 -0
- package/_cjs/abis/baseStaging/DepositRateManagerController.js +257 -0
- package/_cjs/abis/baseStaging/DepositRateManagerController.json +255 -0
- package/_cjs/abis/baseStaging/DepositRateManagerHookV1.js +149 -0
- package/_cjs/abis/baseStaging/DepositRateManagerHookV1.json +147 -0
- package/_cjs/abis/baseStaging/DepositRateManagerRegistryV1.js +486 -0
- package/_cjs/abis/baseStaging/DepositRateManagerRegistryV1.json +484 -0
- package/_cjs/abis/baseStaging/ManualRateManagerRegistry.js +486 -0
- package/_cjs/abis/baseStaging/ManualRateManagerRegistry.json +484 -0
- package/_cjs/abis/baseStaging/OracleRateManagerRegistry.js +569 -0
- package/_cjs/abis/baseStaging/OracleRateManagerRegistry.json +567 -0
- package/_cjs/abis/baseStaging/Orchestrator.js +84 -46
- package/_cjs/abis/baseStaging/Orchestrator.json +84 -46
- package/_cjs/abis/baseStaging/ProtocolViewer.js +116 -0
- package/_cjs/abis/baseStaging/ProtocolViewer.json +116 -0
- package/_cjs/abis/baseStaging/UnifiedPaymentVerifier.js +32 -0
- package/_cjs/abis/baseStaging/UnifiedPaymentVerifier.json +32 -0
- package/_cjs/abis/baseStaging/index.js +6 -1
- package/_cjs/abis/baseStaging.cjs +6 -1
- package/_cjs/abis/baseStaging.mjs +6 -1
- package/_cjs/addresses/base.js +1 -1
- package/_cjs/addresses/base.json +1 -1
- package/_cjs/addresses/baseSepolia.js +1 -1
- package/_cjs/addresses/baseSepolia.json +1 -1
- package/_cjs/addresses/baseStaging.js +16 -11
- package/_cjs/addresses/baseStaging.json +16 -11
- package/_cjs/addresses/index.json +1 -1
- package/_cjs/constants/index.json +1 -1
- package/_cjs/paymentMethods/base.js +1 -1
- package/_cjs/paymentMethods/base.json +1 -1
- package/_cjs/paymentMethods/baseSepolia.js +1 -1
- package/_cjs/paymentMethods/baseSepolia.json +1 -1
- package/_cjs/paymentMethods/baseStaging.js +1 -1
- package/_cjs/paymentMethods/baseStaging.json +1 -1
- package/_cjs/paymentMethods/index.json +1 -1
- package/_cjs/types/contracts/DepositRateManagerController.sol/DepositRateManagerController.js +368 -0
- package/_cjs/types/contracts/DepositRateManagerController.sol/IPausable.js +81 -0
- package/_cjs/types/contracts/DepositRateManagerController.sol/index.js +5 -0
- package/_cjs/types/contracts/Orchestrator.js +133 -70
- package/_cjs/types/contracts/ProtocolViewer.js +227 -3
- package/_cjs/types/contracts/external/Interfaces/IAcrossSpokePool.js +44 -117
- package/_cjs/types/contracts/hooks/AcrossBridgeHook.js +145 -41
- package/_cjs/types/contracts/hooks/DepositRateManagerHookV1.js +256 -0
- package/_cjs/types/contracts/hooks/index.js +1 -0
- package/_cjs/types/contracts/index.js +4 -0
- package/_cjs/types/contracts/interfaces/IBaseRateManagerRegistry.js +534 -0
- package/_cjs/types/contracts/interfaces/IChainlinkAggregatorV3.js +132 -0
- package/_cjs/types/contracts/interfaces/IDepositRateManagerController.js +369 -0
- package/_cjs/types/contracts/interfaces/IDepositRateManagerHook.js +130 -0
- package/_cjs/types/contracts/interfaces/IDepositRateManagerRegistryV1.js +696 -0
- package/_cjs/types/contracts/interfaces/IManualRateManagerRegistry.js +695 -0
- package/_cjs/types/contracts/interfaces/IOracleAdapter.js +154 -0
- package/_cjs/types/contracts/interfaces/IOracleRateManagerRegistry.js +797 -0
- package/_cjs/types/contracts/interfaces/IOrchestrator.js +50 -22
- package/_cjs/types/contracts/interfaces/IPostIntentHook.js +36 -32
- package/_cjs/types/contracts/interfaces/IProtocolViewer.js +75 -1
- package/_cjs/types/contracts/interfaces/index.js +7 -1
- package/_cjs/types/contracts/oracles/ChainlinkOracleAdapter.js +154 -0
- package/_cjs/types/contracts/oracles/index.js +4 -0
- package/_cjs/types/contracts/registries/BaseRateManagerRegistry.js +534 -0
- package/_cjs/types/contracts/registries/DepositRateManagerRegistryV1.js +695 -0
- package/_cjs/types/contracts/registries/ManualRateManagerRegistry.js +695 -0
- package/_cjs/types/contracts/registries/OracleRateManagerRegistry.js +797 -0
- package/_cjs/types/contracts/registries/index.js +3 -1
- package/_cjs/types/contracts/unifiedVerifier/BaseUnifiedPaymentVerifier.js +58 -0
- package/_cjs/types/contracts/unifiedVerifier/UnifiedPaymentVerifier.js +58 -0
- package/_esm/abis/baseStaging/AcrossBridgeHook.js +155 -100
- package/_esm/abis/baseStaging/AcrossBridgeHook.json +155 -100
- package/_esm/abis/baseStaging/ChainlinkOracleAdapter.js +51 -0
- package/_esm/abis/baseStaging/ChainlinkOracleAdapter.json +50 -0
- package/_esm/abis/baseStaging/DepositRateManagerController.js +256 -0
- package/_esm/abis/baseStaging/DepositRateManagerController.json +255 -0
- package/_esm/abis/baseStaging/DepositRateManagerHookV1.js +148 -0
- package/_esm/abis/baseStaging/DepositRateManagerHookV1.json +147 -0
- package/_esm/abis/baseStaging/DepositRateManagerRegistryV1.js +485 -0
- package/_esm/abis/baseStaging/DepositRateManagerRegistryV1.json +484 -0
- package/_esm/abis/baseStaging/ManualRateManagerRegistry.js +485 -0
- package/_esm/abis/baseStaging/ManualRateManagerRegistry.json +484 -0
- package/_esm/abis/baseStaging/OracleRateManagerRegistry.js +568 -0
- package/_esm/abis/baseStaging/OracleRateManagerRegistry.json +567 -0
- package/_esm/abis/baseStaging/Orchestrator.js +84 -46
- package/_esm/abis/baseStaging/Orchestrator.json +84 -46
- package/_esm/abis/baseStaging/ProtocolViewer.js +116 -0
- package/_esm/abis/baseStaging/ProtocolViewer.json +116 -0
- package/_esm/abis/baseStaging/UnifiedPaymentVerifier.js +32 -0
- package/_esm/abis/baseStaging/UnifiedPaymentVerifier.json +32 -0
- package/_esm/abis/baseStaging/index.js +6 -1
- package/_esm/abis/baseStaging.cjs +6 -1
- package/_esm/abis/baseStaging.mjs +6 -1
- package/_esm/addresses/base.js +1 -1
- package/_esm/addresses/base.json +1 -1
- package/_esm/addresses/baseSepolia.js +1 -1
- package/_esm/addresses/baseSepolia.json +1 -1
- package/_esm/addresses/baseStaging.js +16 -11
- package/_esm/addresses/baseStaging.json +16 -11
- package/_esm/addresses/index.json +1 -1
- package/_esm/constants/index.json +1 -1
- package/_esm/paymentMethods/base.js +1 -1
- package/_esm/paymentMethods/base.json +1 -1
- package/_esm/paymentMethods/baseSepolia.js +1 -1
- package/_esm/paymentMethods/baseSepolia.json +1 -1
- package/_esm/paymentMethods/baseStaging.js +1 -1
- package/_esm/paymentMethods/baseStaging.json +1 -1
- package/_esm/paymentMethods/index.json +1 -1
- package/_esm/types/contracts/DepositRateManagerController.sol/DepositRateManagerController.js +368 -0
- package/_esm/types/contracts/DepositRateManagerController.sol/IPausable.js +81 -0
- package/_esm/types/contracts/DepositRateManagerController.sol/index.js +5 -0
- package/_esm/types/contracts/Orchestrator.js +133 -70
- package/_esm/types/contracts/ProtocolViewer.js +227 -3
- package/_esm/types/contracts/external/Interfaces/IAcrossSpokePool.js +44 -117
- package/_esm/types/contracts/hooks/AcrossBridgeHook.js +145 -41
- package/_esm/types/contracts/hooks/DepositRateManagerHookV1.js +256 -0
- package/_esm/types/contracts/hooks/index.js +1 -0
- package/_esm/types/contracts/index.js +4 -0
- package/_esm/types/contracts/interfaces/IBaseRateManagerRegistry.js +534 -0
- package/_esm/types/contracts/interfaces/IChainlinkAggregatorV3.js +132 -0
- package/_esm/types/contracts/interfaces/IDepositRateManagerController.js +369 -0
- package/_esm/types/contracts/interfaces/IDepositRateManagerHook.js +130 -0
- package/_esm/types/contracts/interfaces/IDepositRateManagerRegistryV1.js +696 -0
- package/_esm/types/contracts/interfaces/IManualRateManagerRegistry.js +695 -0
- package/_esm/types/contracts/interfaces/IOracleAdapter.js +154 -0
- package/_esm/types/contracts/interfaces/IOracleRateManagerRegistry.js +797 -0
- package/_esm/types/contracts/interfaces/IOrchestrator.js +50 -22
- package/_esm/types/contracts/interfaces/IPostIntentHook.js +36 -32
- package/_esm/types/contracts/interfaces/IProtocolViewer.js +75 -1
- package/_esm/types/contracts/interfaces/index.js +7 -1
- package/_esm/types/contracts/oracles/ChainlinkOracleAdapter.js +154 -0
- package/_esm/types/contracts/oracles/index.js +4 -0
- package/_esm/types/contracts/registries/BaseRateManagerRegistry.js +534 -0
- package/_esm/types/contracts/registries/DepositRateManagerRegistryV1.js +695 -0
- package/_esm/types/contracts/registries/ManualRateManagerRegistry.js +695 -0
- package/_esm/types/contracts/registries/OracleRateManagerRegistry.js +797 -0
- package/_esm/types/contracts/registries/index.js +3 -1
- package/_esm/types/contracts/unifiedVerifier/BaseUnifiedPaymentVerifier.js +58 -0
- package/_esm/types/contracts/unifiedVerifier/UnifiedPaymentVerifier.js +58 -0
- package/_types/abis/baseStaging.d.ts +6 -1
- package/abis/baseStaging/AcrossBridgeHook.json +155 -100
- package/abis/baseStaging/ChainlinkOracleAdapter.json +50 -0
- package/abis/baseStaging/DepositRateManagerController.json +255 -0
- package/abis/baseStaging/DepositRateManagerHookV1.json +147 -0
- package/abis/baseStaging/DepositRateManagerRegistryV1.json +484 -0
- package/abis/baseStaging/ManualRateManagerRegistry.json +484 -0
- package/abis/baseStaging/OracleRateManagerRegistry.json +567 -0
- package/abis/baseStaging/Orchestrator.json +84 -46
- package/abis/baseStaging/ProtocolViewer.json +116 -0
- package/abis/baseStaging/UnifiedPaymentVerifier.json +32 -0
- package/abis/baseStaging/index.ts +6 -1
- package/abis/baseStaging.cjs +6 -1
- package/abis/baseStaging.d.ts +6 -1
- package/abis/baseStaging.mjs +6 -1
- package/addresses/base.json +1 -1
- package/addresses/baseSepolia.json +1 -1
- package/addresses/baseStaging.json +16 -11
- package/addresses/index.json +1 -1
- package/constants/index.json +1 -1
- package/package.json +1 -1
- package/paymentMethods/base.json +1 -1
- package/paymentMethods/baseSepolia.json +1 -1
- package/paymentMethods/baseStaging.json +1 -1
- package/paymentMethods/index.json +1 -1
- package/types/contracts/DepositRateManagerController.sol/DepositRateManagerController.ts +368 -0
- package/types/contracts/DepositRateManagerController.sol/IPausable.ts +81 -0
- package/types/contracts/DepositRateManagerController.sol/index.ts +5 -0
- package/types/contracts/Orchestrator.ts +133 -70
- package/types/contracts/ProtocolViewer.ts +227 -3
- package/types/contracts/external/Interfaces/IAcrossSpokePool.ts +44 -117
- package/types/contracts/hooks/AcrossBridgeHook.ts +145 -41
- package/types/contracts/hooks/DepositRateManagerHookV1.ts +256 -0
- package/types/contracts/hooks/index.ts +1 -0
- package/types/contracts/index.ts +4 -0
- package/types/contracts/interfaces/IBaseRateManagerRegistry.ts +534 -0
- package/types/contracts/interfaces/IChainlinkAggregatorV3.ts +132 -0
- package/types/contracts/interfaces/IDepositRateManagerController.ts +369 -0
- package/types/contracts/interfaces/IDepositRateManagerHook.ts +130 -0
- package/types/contracts/interfaces/IDepositRateManagerRegistryV1.ts +696 -0
- package/types/contracts/interfaces/IManualRateManagerRegistry.ts +695 -0
- package/types/contracts/interfaces/IOracleAdapter.ts +154 -0
- package/types/contracts/interfaces/IOracleRateManagerRegistry.ts +797 -0
- package/types/contracts/interfaces/IOrchestrator.ts +50 -22
- package/types/contracts/interfaces/IPostIntentHook.ts +36 -32
- package/types/contracts/interfaces/IProtocolViewer.ts +75 -1
- package/types/contracts/interfaces/index.ts +7 -1
- package/types/contracts/oracles/ChainlinkOracleAdapter.ts +154 -0
- package/types/contracts/oracles/index.ts +4 -0
- package/types/contracts/registries/BaseRateManagerRegistry.ts +534 -0
- package/types/contracts/registries/DepositRateManagerRegistryV1.ts +695 -0
- package/types/contracts/registries/ManualRateManagerRegistry.ts +695 -0
- package/types/contracts/registries/OracleRateManagerRegistry.ts +797 -0
- package/types/contracts/registries/index.ts +3 -1
- package/types/contracts/unifiedVerifier/BaseUnifiedPaymentVerifier.ts +58 -0
- package/types/contracts/unifiedVerifier/UnifiedPaymentVerifier.ts +58 -0
- package/_cjs/abis/baseStaging/PostIntentHookRegistry.js +0 -183
- package/_cjs/abis/baseStaging/PostIntentHookRegistry.json +0 -181
- package/_esm/abis/baseStaging/PostIntentHookRegistry.js +0 -182
- package/_esm/abis/baseStaging/PostIntentHookRegistry.json +0 -181
- package/abis/baseStaging/PostIntentHookRegistry.json +0 -181
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
/* Autogenerated file. Do not edit manually. */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
|
+
export type { BaseRateManagerRegistry } from "./BaseRateManagerRegistry";
|
|
4
5
|
export type { EscrowRegistry } from "./EscrowRegistry";
|
|
6
|
+
export type { ManualRateManagerRegistry } from "./ManualRateManagerRegistry";
|
|
5
7
|
export type { NullifierRegistry } from "./NullifierRegistry";
|
|
8
|
+
export type { OracleRateManagerRegistry } from "./OracleRateManagerRegistry";
|
|
6
9
|
export type { PaymentVerifierRegistry } from "./PaymentVerifierRegistry";
|
|
7
|
-
export type { PostIntentHookRegistry } from "./PostIntentHookRegistry";
|
|
8
10
|
export type { RelayerRegistry } from "./RelayerRegistry";
|
|
@@ -40,6 +40,7 @@ export interface BaseUnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
40
40
|
"removePaymentMethod(bytes32)": FunctionFragment;
|
|
41
41
|
"renounceOwnership()": FunctionFragment;
|
|
42
42
|
"setAttestationVerifier(address)": FunctionFragment;
|
|
43
|
+
"setOrchestrator(address)": FunctionFragment;
|
|
43
44
|
"transferOwnership(address)": FunctionFragment;
|
|
44
45
|
};
|
|
45
46
|
|
|
@@ -56,6 +57,7 @@ export interface BaseUnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
56
57
|
| "removePaymentMethod"
|
|
57
58
|
| "renounceOwnership"
|
|
58
59
|
| "setAttestationVerifier"
|
|
60
|
+
| "setOrchestrator"
|
|
59
61
|
| "transferOwnership"
|
|
60
62
|
): FunctionFragment;
|
|
61
63
|
|
|
@@ -100,6 +102,10 @@ export interface BaseUnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
100
102
|
functionFragment: "setAttestationVerifier",
|
|
101
103
|
values: [PromiseOrValue<string>]
|
|
102
104
|
): string;
|
|
105
|
+
encodeFunctionData(
|
|
106
|
+
functionFragment: "setOrchestrator",
|
|
107
|
+
values: [PromiseOrValue<string>]
|
|
108
|
+
): string;
|
|
103
109
|
encodeFunctionData(
|
|
104
110
|
functionFragment: "transferOwnership",
|
|
105
111
|
values: [PromiseOrValue<string>]
|
|
@@ -146,6 +152,10 @@ export interface BaseUnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
146
152
|
functionFragment: "setAttestationVerifier",
|
|
147
153
|
data: BytesLike
|
|
148
154
|
): Result;
|
|
155
|
+
decodeFunctionResult(
|
|
156
|
+
functionFragment: "setOrchestrator",
|
|
157
|
+
data: BytesLike
|
|
158
|
+
): Result;
|
|
149
159
|
decodeFunctionResult(
|
|
150
160
|
functionFragment: "transferOwnership",
|
|
151
161
|
data: BytesLike
|
|
@@ -153,12 +163,14 @@ export interface BaseUnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
153
163
|
|
|
154
164
|
events: {
|
|
155
165
|
"AttestationVerifierUpdated(address,address)": EventFragment;
|
|
166
|
+
"OrchestratorUpdated(address,address)": EventFragment;
|
|
156
167
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
157
168
|
"PaymentMethodAdded(bytes32)": EventFragment;
|
|
158
169
|
"PaymentMethodRemoved(bytes32)": EventFragment;
|
|
159
170
|
};
|
|
160
171
|
|
|
161
172
|
getEvent(nameOrSignatureOrTopic: "AttestationVerifierUpdated"): EventFragment;
|
|
173
|
+
getEvent(nameOrSignatureOrTopic: "OrchestratorUpdated"): EventFragment;
|
|
162
174
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
163
175
|
getEvent(nameOrSignatureOrTopic: "PaymentMethodAdded"): EventFragment;
|
|
164
176
|
getEvent(nameOrSignatureOrTopic: "PaymentMethodRemoved"): EventFragment;
|
|
@@ -176,6 +188,18 @@ export type AttestationVerifierUpdatedEvent = TypedEvent<
|
|
|
176
188
|
export type AttestationVerifierUpdatedEventFilter =
|
|
177
189
|
TypedEventFilter<AttestationVerifierUpdatedEvent>;
|
|
178
190
|
|
|
191
|
+
export interface OrchestratorUpdatedEventObject {
|
|
192
|
+
oldOrchestrator: string;
|
|
193
|
+
newOrchestrator: string;
|
|
194
|
+
}
|
|
195
|
+
export type OrchestratorUpdatedEvent = TypedEvent<
|
|
196
|
+
[string, string],
|
|
197
|
+
OrchestratorUpdatedEventObject
|
|
198
|
+
>;
|
|
199
|
+
|
|
200
|
+
export type OrchestratorUpdatedEventFilter =
|
|
201
|
+
TypedEventFilter<OrchestratorUpdatedEvent>;
|
|
202
|
+
|
|
179
203
|
export interface OwnershipTransferredEventObject {
|
|
180
204
|
previousOwner: string;
|
|
181
205
|
newOwner: string;
|
|
@@ -276,6 +300,11 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
276
300
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
277
301
|
): Promise<ContractTransaction>;
|
|
278
302
|
|
|
303
|
+
setOrchestrator(
|
|
304
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
305
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
306
|
+
): Promise<ContractTransaction>;
|
|
307
|
+
|
|
279
308
|
transferOwnership(
|
|
280
309
|
newOwner: PromiseOrValue<string>,
|
|
281
310
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -321,6 +350,11 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
321
350
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
322
351
|
): Promise<ContractTransaction>;
|
|
323
352
|
|
|
353
|
+
setOrchestrator(
|
|
354
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
355
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
356
|
+
): Promise<ContractTransaction>;
|
|
357
|
+
|
|
324
358
|
transferOwnership(
|
|
325
359
|
newOwner: PromiseOrValue<string>,
|
|
326
360
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -364,6 +398,11 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
364
398
|
overrides?: CallOverrides
|
|
365
399
|
): Promise<void>;
|
|
366
400
|
|
|
401
|
+
setOrchestrator(
|
|
402
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
403
|
+
overrides?: CallOverrides
|
|
404
|
+
): Promise<void>;
|
|
405
|
+
|
|
367
406
|
transferOwnership(
|
|
368
407
|
newOwner: PromiseOrValue<string>,
|
|
369
408
|
overrides?: CallOverrides
|
|
@@ -380,6 +419,15 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
380
419
|
newVerifier?: PromiseOrValue<string> | null
|
|
381
420
|
): AttestationVerifierUpdatedEventFilter;
|
|
382
421
|
|
|
422
|
+
"OrchestratorUpdated(address,address)"(
|
|
423
|
+
oldOrchestrator?: PromiseOrValue<string> | null,
|
|
424
|
+
newOrchestrator?: PromiseOrValue<string> | null
|
|
425
|
+
): OrchestratorUpdatedEventFilter;
|
|
426
|
+
OrchestratorUpdated(
|
|
427
|
+
oldOrchestrator?: PromiseOrValue<string> | null,
|
|
428
|
+
newOrchestrator?: PromiseOrValue<string> | null
|
|
429
|
+
): OrchestratorUpdatedEventFilter;
|
|
430
|
+
|
|
383
431
|
"OwnershipTransferred(address,address)"(
|
|
384
432
|
previousOwner?: PromiseOrValue<string> | null,
|
|
385
433
|
newOwner?: PromiseOrValue<string> | null
|
|
@@ -444,6 +492,11 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
444
492
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
445
493
|
): Promise<BigNumber>;
|
|
446
494
|
|
|
495
|
+
setOrchestrator(
|
|
496
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
497
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
498
|
+
): Promise<BigNumber>;
|
|
499
|
+
|
|
447
500
|
transferOwnership(
|
|
448
501
|
newOwner: PromiseOrValue<string>,
|
|
449
502
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -492,6 +545,11 @@ export interface BaseUnifiedPaymentVerifier extends BaseContract {
|
|
|
492
545
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
493
546
|
): Promise<PopulatedTransaction>;
|
|
494
547
|
|
|
548
|
+
setOrchestrator(
|
|
549
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
550
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
551
|
+
): Promise<PopulatedTransaction>;
|
|
552
|
+
|
|
495
553
|
transferOwnership(
|
|
496
554
|
newOwner: PromiseOrValue<string>,
|
|
497
555
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -67,6 +67,7 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
67
67
|
"removePaymentMethod(bytes32)": FunctionFragment;
|
|
68
68
|
"renounceOwnership()": FunctionFragment;
|
|
69
69
|
"setAttestationVerifier(address)": FunctionFragment;
|
|
70
|
+
"setOrchestrator(address)": FunctionFragment;
|
|
70
71
|
"transferOwnership(address)": FunctionFragment;
|
|
71
72
|
"verifyPayment((bytes32,bytes,bytes))": FunctionFragment;
|
|
72
73
|
};
|
|
@@ -85,6 +86,7 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
85
86
|
| "removePaymentMethod"
|
|
86
87
|
| "renounceOwnership"
|
|
87
88
|
| "setAttestationVerifier"
|
|
89
|
+
| "setOrchestrator"
|
|
88
90
|
| "transferOwnership"
|
|
89
91
|
| "verifyPayment"
|
|
90
92
|
): FunctionFragment;
|
|
@@ -134,6 +136,10 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
134
136
|
functionFragment: "setAttestationVerifier",
|
|
135
137
|
values: [PromiseOrValue<string>]
|
|
136
138
|
): string;
|
|
139
|
+
encodeFunctionData(
|
|
140
|
+
functionFragment: "setOrchestrator",
|
|
141
|
+
values: [PromiseOrValue<string>]
|
|
142
|
+
): string;
|
|
137
143
|
encodeFunctionData(
|
|
138
144
|
functionFragment: "transferOwnership",
|
|
139
145
|
values: [PromiseOrValue<string>]
|
|
@@ -188,6 +194,10 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
188
194
|
functionFragment: "setAttestationVerifier",
|
|
189
195
|
data: BytesLike
|
|
190
196
|
): Result;
|
|
197
|
+
decodeFunctionResult(
|
|
198
|
+
functionFragment: "setOrchestrator",
|
|
199
|
+
data: BytesLike
|
|
200
|
+
): Result;
|
|
191
201
|
decodeFunctionResult(
|
|
192
202
|
functionFragment: "transferOwnership",
|
|
193
203
|
data: BytesLike
|
|
@@ -199,6 +209,7 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
199
209
|
|
|
200
210
|
events: {
|
|
201
211
|
"AttestationVerifierUpdated(address,address)": EventFragment;
|
|
212
|
+
"OrchestratorUpdated(address,address)": EventFragment;
|
|
202
213
|
"OwnershipTransferred(address,address)": EventFragment;
|
|
203
214
|
"PaymentMethodAdded(bytes32)": EventFragment;
|
|
204
215
|
"PaymentMethodRemoved(bytes32)": EventFragment;
|
|
@@ -206,6 +217,7 @@ export interface UnifiedPaymentVerifierInterface extends utils.Interface {
|
|
|
206
217
|
};
|
|
207
218
|
|
|
208
219
|
getEvent(nameOrSignatureOrTopic: "AttestationVerifierUpdated"): EventFragment;
|
|
220
|
+
getEvent(nameOrSignatureOrTopic: "OrchestratorUpdated"): EventFragment;
|
|
209
221
|
getEvent(nameOrSignatureOrTopic: "OwnershipTransferred"): EventFragment;
|
|
210
222
|
getEvent(nameOrSignatureOrTopic: "PaymentMethodAdded"): EventFragment;
|
|
211
223
|
getEvent(nameOrSignatureOrTopic: "PaymentMethodRemoved"): EventFragment;
|
|
@@ -224,6 +236,18 @@ export type AttestationVerifierUpdatedEvent = TypedEvent<
|
|
|
224
236
|
export type AttestationVerifierUpdatedEventFilter =
|
|
225
237
|
TypedEventFilter<AttestationVerifierUpdatedEvent>;
|
|
226
238
|
|
|
239
|
+
export interface OrchestratorUpdatedEventObject {
|
|
240
|
+
oldOrchestrator: string;
|
|
241
|
+
newOrchestrator: string;
|
|
242
|
+
}
|
|
243
|
+
export type OrchestratorUpdatedEvent = TypedEvent<
|
|
244
|
+
[string, string],
|
|
245
|
+
OrchestratorUpdatedEventObject
|
|
246
|
+
>;
|
|
247
|
+
|
|
248
|
+
export type OrchestratorUpdatedEventFilter =
|
|
249
|
+
TypedEventFilter<OrchestratorUpdatedEvent>;
|
|
250
|
+
|
|
227
251
|
export interface OwnershipTransferredEventObject {
|
|
228
252
|
previousOwner: string;
|
|
229
253
|
newOwner: string;
|
|
@@ -342,6 +366,11 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
342
366
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
343
367
|
): Promise<ContractTransaction>;
|
|
344
368
|
|
|
369
|
+
setOrchestrator(
|
|
370
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
371
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
372
|
+
): Promise<ContractTransaction>;
|
|
373
|
+
|
|
345
374
|
transferOwnership(
|
|
346
375
|
newOwner: PromiseOrValue<string>,
|
|
347
376
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -394,6 +423,11 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
394
423
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
395
424
|
): Promise<ContractTransaction>;
|
|
396
425
|
|
|
426
|
+
setOrchestrator(
|
|
427
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
428
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
429
|
+
): Promise<ContractTransaction>;
|
|
430
|
+
|
|
397
431
|
transferOwnership(
|
|
398
432
|
newOwner: PromiseOrValue<string>,
|
|
399
433
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -444,6 +478,11 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
444
478
|
overrides?: CallOverrides
|
|
445
479
|
): Promise<void>;
|
|
446
480
|
|
|
481
|
+
setOrchestrator(
|
|
482
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
483
|
+
overrides?: CallOverrides
|
|
484
|
+
): Promise<void>;
|
|
485
|
+
|
|
447
486
|
transferOwnership(
|
|
448
487
|
newOwner: PromiseOrValue<string>,
|
|
449
488
|
overrides?: CallOverrides
|
|
@@ -465,6 +504,15 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
465
504
|
newVerifier?: PromiseOrValue<string> | null
|
|
466
505
|
): AttestationVerifierUpdatedEventFilter;
|
|
467
506
|
|
|
507
|
+
"OrchestratorUpdated(address,address)"(
|
|
508
|
+
oldOrchestrator?: PromiseOrValue<string> | null,
|
|
509
|
+
newOrchestrator?: PromiseOrValue<string> | null
|
|
510
|
+
): OrchestratorUpdatedEventFilter;
|
|
511
|
+
OrchestratorUpdated(
|
|
512
|
+
oldOrchestrator?: PromiseOrValue<string> | null,
|
|
513
|
+
newOrchestrator?: PromiseOrValue<string> | null
|
|
514
|
+
): OrchestratorUpdatedEventFilter;
|
|
515
|
+
|
|
468
516
|
"OwnershipTransferred(address,address)"(
|
|
469
517
|
previousOwner?: PromiseOrValue<string> | null,
|
|
470
518
|
newOwner?: PromiseOrValue<string> | null
|
|
@@ -550,6 +598,11 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
550
598
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
551
599
|
): Promise<BigNumber>;
|
|
552
600
|
|
|
601
|
+
setOrchestrator(
|
|
602
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
603
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
604
|
+
): Promise<BigNumber>;
|
|
605
|
+
|
|
553
606
|
transferOwnership(
|
|
554
607
|
newOwner: PromiseOrValue<string>,
|
|
555
608
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -605,6 +658,11 @@ export interface UnifiedPaymentVerifier extends BaseContract {
|
|
|
605
658
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
606
659
|
): Promise<PopulatedTransaction>;
|
|
607
660
|
|
|
661
|
+
setOrchestrator(
|
|
662
|
+
_newOrchestrator: PromiseOrValue<string>,
|
|
663
|
+
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
664
|
+
): Promise<PopulatedTransaction>;
|
|
665
|
+
|
|
608
666
|
transferOwnership(
|
|
609
667
|
newOwner: PromiseOrValue<string>,
|
|
610
668
|
overrides?: Overrides & { from?: PromiseOrValue<string> }
|
|
@@ -1,183 +0,0 @@
|
|
|
1
|
-
const data = [
|
|
2
|
-
{
|
|
3
|
-
"inputs": [],
|
|
4
|
-
"stateMutability": "nonpayable",
|
|
5
|
-
"type": "constructor"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"anonymous": false,
|
|
9
|
-
"inputs": [
|
|
10
|
-
{
|
|
11
|
-
"indexed": true,
|
|
12
|
-
"internalType": "address",
|
|
13
|
-
"name": "previousOwner",
|
|
14
|
-
"type": "address"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"indexed": true,
|
|
18
|
-
"internalType": "address",
|
|
19
|
-
"name": "newOwner",
|
|
20
|
-
"type": "address"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"name": "OwnershipTransferred",
|
|
24
|
-
"type": "event"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"anonymous": false,
|
|
28
|
-
"inputs": [
|
|
29
|
-
{
|
|
30
|
-
"indexed": true,
|
|
31
|
-
"internalType": "address",
|
|
32
|
-
"name": "hook",
|
|
33
|
-
"type": "address"
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
"name": "PostIntentHookAdded",
|
|
37
|
-
"type": "event"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"anonymous": false,
|
|
41
|
-
"inputs": [
|
|
42
|
-
{
|
|
43
|
-
"indexed": true,
|
|
44
|
-
"internalType": "address",
|
|
45
|
-
"name": "hook",
|
|
46
|
-
"type": "address"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"name": "PostIntentHookRemoved",
|
|
50
|
-
"type": "event"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"inputs": [
|
|
54
|
-
{
|
|
55
|
-
"internalType": "address",
|
|
56
|
-
"name": "_hook",
|
|
57
|
-
"type": "address"
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"name": "addPostIntentHook",
|
|
61
|
-
"outputs": [],
|
|
62
|
-
"stateMutability": "nonpayable",
|
|
63
|
-
"type": "function"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"inputs": [],
|
|
67
|
-
"name": "getWhitelistedHooks",
|
|
68
|
-
"outputs": [
|
|
69
|
-
{
|
|
70
|
-
"internalType": "address[]",
|
|
71
|
-
"name": "",
|
|
72
|
-
"type": "address[]"
|
|
73
|
-
}
|
|
74
|
-
],
|
|
75
|
-
"stateMutability": "view",
|
|
76
|
-
"type": "function"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"inputs": [
|
|
80
|
-
{
|
|
81
|
-
"internalType": "uint256",
|
|
82
|
-
"name": "",
|
|
83
|
-
"type": "uint256"
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
"name": "hooks",
|
|
87
|
-
"outputs": [
|
|
88
|
-
{
|
|
89
|
-
"internalType": "address",
|
|
90
|
-
"name": "",
|
|
91
|
-
"type": "address"
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"stateMutability": "view",
|
|
95
|
-
"type": "function"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"inputs": [
|
|
99
|
-
{
|
|
100
|
-
"internalType": "address",
|
|
101
|
-
"name": "_hook",
|
|
102
|
-
"type": "address"
|
|
103
|
-
}
|
|
104
|
-
],
|
|
105
|
-
"name": "isWhitelistedHook",
|
|
106
|
-
"outputs": [
|
|
107
|
-
{
|
|
108
|
-
"internalType": "bool",
|
|
109
|
-
"name": "",
|
|
110
|
-
"type": "bool"
|
|
111
|
-
}
|
|
112
|
-
],
|
|
113
|
-
"stateMutability": "view",
|
|
114
|
-
"type": "function"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"inputs": [],
|
|
118
|
-
"name": "owner",
|
|
119
|
-
"outputs": [
|
|
120
|
-
{
|
|
121
|
-
"internalType": "address",
|
|
122
|
-
"name": "",
|
|
123
|
-
"type": "address"
|
|
124
|
-
}
|
|
125
|
-
],
|
|
126
|
-
"stateMutability": "view",
|
|
127
|
-
"type": "function"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"inputs": [
|
|
131
|
-
{
|
|
132
|
-
"internalType": "address",
|
|
133
|
-
"name": "_hook",
|
|
134
|
-
"type": "address"
|
|
135
|
-
}
|
|
136
|
-
],
|
|
137
|
-
"name": "removePostIntentHook",
|
|
138
|
-
"outputs": [],
|
|
139
|
-
"stateMutability": "nonpayable",
|
|
140
|
-
"type": "function"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"inputs": [],
|
|
144
|
-
"name": "renounceOwnership",
|
|
145
|
-
"outputs": [],
|
|
146
|
-
"stateMutability": "nonpayable",
|
|
147
|
-
"type": "function"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"inputs": [
|
|
151
|
-
{
|
|
152
|
-
"internalType": "address",
|
|
153
|
-
"name": "newOwner",
|
|
154
|
-
"type": "address"
|
|
155
|
-
}
|
|
156
|
-
],
|
|
157
|
-
"name": "transferOwnership",
|
|
158
|
-
"outputs": [],
|
|
159
|
-
"stateMutability": "nonpayable",
|
|
160
|
-
"type": "function"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"inputs": [
|
|
164
|
-
{
|
|
165
|
-
"internalType": "address",
|
|
166
|
-
"name": "",
|
|
167
|
-
"type": "address"
|
|
168
|
-
}
|
|
169
|
-
],
|
|
170
|
-
"name": "whitelistedHooks",
|
|
171
|
-
"outputs": [
|
|
172
|
-
{
|
|
173
|
-
"internalType": "bool",
|
|
174
|
-
"name": "",
|
|
175
|
-
"type": "bool"
|
|
176
|
-
}
|
|
177
|
-
],
|
|
178
|
-
"stateMutability": "view",
|
|
179
|
-
"type": "function"
|
|
180
|
-
}
|
|
181
|
-
];
|
|
182
|
-
module.exports = data;
|
|
183
|
-
module.exports.default = data;
|
|
@@ -1,181 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"inputs": [],
|
|
4
|
-
"stateMutability": "nonpayable",
|
|
5
|
-
"type": "constructor"
|
|
6
|
-
},
|
|
7
|
-
{
|
|
8
|
-
"anonymous": false,
|
|
9
|
-
"inputs": [
|
|
10
|
-
{
|
|
11
|
-
"indexed": true,
|
|
12
|
-
"internalType": "address",
|
|
13
|
-
"name": "previousOwner",
|
|
14
|
-
"type": "address"
|
|
15
|
-
},
|
|
16
|
-
{
|
|
17
|
-
"indexed": true,
|
|
18
|
-
"internalType": "address",
|
|
19
|
-
"name": "newOwner",
|
|
20
|
-
"type": "address"
|
|
21
|
-
}
|
|
22
|
-
],
|
|
23
|
-
"name": "OwnershipTransferred",
|
|
24
|
-
"type": "event"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"anonymous": false,
|
|
28
|
-
"inputs": [
|
|
29
|
-
{
|
|
30
|
-
"indexed": true,
|
|
31
|
-
"internalType": "address",
|
|
32
|
-
"name": "hook",
|
|
33
|
-
"type": "address"
|
|
34
|
-
}
|
|
35
|
-
],
|
|
36
|
-
"name": "PostIntentHookAdded",
|
|
37
|
-
"type": "event"
|
|
38
|
-
},
|
|
39
|
-
{
|
|
40
|
-
"anonymous": false,
|
|
41
|
-
"inputs": [
|
|
42
|
-
{
|
|
43
|
-
"indexed": true,
|
|
44
|
-
"internalType": "address",
|
|
45
|
-
"name": "hook",
|
|
46
|
-
"type": "address"
|
|
47
|
-
}
|
|
48
|
-
],
|
|
49
|
-
"name": "PostIntentHookRemoved",
|
|
50
|
-
"type": "event"
|
|
51
|
-
},
|
|
52
|
-
{
|
|
53
|
-
"inputs": [
|
|
54
|
-
{
|
|
55
|
-
"internalType": "address",
|
|
56
|
-
"name": "_hook",
|
|
57
|
-
"type": "address"
|
|
58
|
-
}
|
|
59
|
-
],
|
|
60
|
-
"name": "addPostIntentHook",
|
|
61
|
-
"outputs": [],
|
|
62
|
-
"stateMutability": "nonpayable",
|
|
63
|
-
"type": "function"
|
|
64
|
-
},
|
|
65
|
-
{
|
|
66
|
-
"inputs": [],
|
|
67
|
-
"name": "getWhitelistedHooks",
|
|
68
|
-
"outputs": [
|
|
69
|
-
{
|
|
70
|
-
"internalType": "address[]",
|
|
71
|
-
"name": "",
|
|
72
|
-
"type": "address[]"
|
|
73
|
-
}
|
|
74
|
-
],
|
|
75
|
-
"stateMutability": "view",
|
|
76
|
-
"type": "function"
|
|
77
|
-
},
|
|
78
|
-
{
|
|
79
|
-
"inputs": [
|
|
80
|
-
{
|
|
81
|
-
"internalType": "uint256",
|
|
82
|
-
"name": "",
|
|
83
|
-
"type": "uint256"
|
|
84
|
-
}
|
|
85
|
-
],
|
|
86
|
-
"name": "hooks",
|
|
87
|
-
"outputs": [
|
|
88
|
-
{
|
|
89
|
-
"internalType": "address",
|
|
90
|
-
"name": "",
|
|
91
|
-
"type": "address"
|
|
92
|
-
}
|
|
93
|
-
],
|
|
94
|
-
"stateMutability": "view",
|
|
95
|
-
"type": "function"
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"inputs": [
|
|
99
|
-
{
|
|
100
|
-
"internalType": "address",
|
|
101
|
-
"name": "_hook",
|
|
102
|
-
"type": "address"
|
|
103
|
-
}
|
|
104
|
-
],
|
|
105
|
-
"name": "isWhitelistedHook",
|
|
106
|
-
"outputs": [
|
|
107
|
-
{
|
|
108
|
-
"internalType": "bool",
|
|
109
|
-
"name": "",
|
|
110
|
-
"type": "bool"
|
|
111
|
-
}
|
|
112
|
-
],
|
|
113
|
-
"stateMutability": "view",
|
|
114
|
-
"type": "function"
|
|
115
|
-
},
|
|
116
|
-
{
|
|
117
|
-
"inputs": [],
|
|
118
|
-
"name": "owner",
|
|
119
|
-
"outputs": [
|
|
120
|
-
{
|
|
121
|
-
"internalType": "address",
|
|
122
|
-
"name": "",
|
|
123
|
-
"type": "address"
|
|
124
|
-
}
|
|
125
|
-
],
|
|
126
|
-
"stateMutability": "view",
|
|
127
|
-
"type": "function"
|
|
128
|
-
},
|
|
129
|
-
{
|
|
130
|
-
"inputs": [
|
|
131
|
-
{
|
|
132
|
-
"internalType": "address",
|
|
133
|
-
"name": "_hook",
|
|
134
|
-
"type": "address"
|
|
135
|
-
}
|
|
136
|
-
],
|
|
137
|
-
"name": "removePostIntentHook",
|
|
138
|
-
"outputs": [],
|
|
139
|
-
"stateMutability": "nonpayable",
|
|
140
|
-
"type": "function"
|
|
141
|
-
},
|
|
142
|
-
{
|
|
143
|
-
"inputs": [],
|
|
144
|
-
"name": "renounceOwnership",
|
|
145
|
-
"outputs": [],
|
|
146
|
-
"stateMutability": "nonpayable",
|
|
147
|
-
"type": "function"
|
|
148
|
-
},
|
|
149
|
-
{
|
|
150
|
-
"inputs": [
|
|
151
|
-
{
|
|
152
|
-
"internalType": "address",
|
|
153
|
-
"name": "newOwner",
|
|
154
|
-
"type": "address"
|
|
155
|
-
}
|
|
156
|
-
],
|
|
157
|
-
"name": "transferOwnership",
|
|
158
|
-
"outputs": [],
|
|
159
|
-
"stateMutability": "nonpayable",
|
|
160
|
-
"type": "function"
|
|
161
|
-
},
|
|
162
|
-
{
|
|
163
|
-
"inputs": [
|
|
164
|
-
{
|
|
165
|
-
"internalType": "address",
|
|
166
|
-
"name": "",
|
|
167
|
-
"type": "address"
|
|
168
|
-
}
|
|
169
|
-
],
|
|
170
|
-
"name": "whitelistedHooks",
|
|
171
|
-
"outputs": [
|
|
172
|
-
{
|
|
173
|
-
"internalType": "bool",
|
|
174
|
-
"name": "",
|
|
175
|
-
"type": "bool"
|
|
176
|
-
}
|
|
177
|
-
],
|
|
178
|
-
"stateMutability": "view",
|
|
179
|
-
"type": "function"
|
|
180
|
-
}
|
|
181
|
-
]
|