@hypercerts-org/marketplace-sdk 0.0.14 → 0.0.15
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/dist/LooksRare.d.ts +3 -3
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +6 -6
- package/dist/index.esm.js +1 -1
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/AffiliateManager.d.ts +210 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry.d.ts +35 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties.d.ts +47 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CurrencyManager.d.ts +247 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/ExecutionManager.d.ts +616 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol.d.ts +1005 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/NonceManager.d.ts +148 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/StrategyManager.d.ts +401 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferManager.d.ts +324 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT.d.ts +620 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy.d.ts +97 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer.d.ts +176 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A.d.ts +172 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers.d.ts +148 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/index.d.ts +16 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager.d.ts +65 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager.d.ts +47 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager.d.ts +37 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager.d.ts +64 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol.d.ts +343 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager.d.ts +72 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry.d.ts +41 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy.d.ts +97 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager.d.ts +85 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager.d.ts +80 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/index.d.ts +4 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/test/index.d.ts +2 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry.d.ts +222 -0
- package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/OwnableTwoSteps.d.ts +121 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/PackableReentrancyGuard.d.ts +20 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/index.d.ts +4 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps.d.ts +80 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard.d.ts +20 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155.d.ts +224 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271.d.ts +35 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165.d.ts +29 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20.d.ts +129 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981.d.ts +49 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721.d.ts +191 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH.d.ts +43 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
- package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +4 -0
- package/dist/typechain/@looksrare/contracts-libs/index.d.ts +2 -0
- package/dist/typechain/@looksrare/index.d.ts +4 -0
- package/dist/typechain/common.d.ts +50 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/AffiliateManager__factory.d.ts +264 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry__factory.d.ts +48 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties__factory.d.ts +74 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CurrencyManager__factory.d.ts +307 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/ExecutionManager__factory.d.ts +748 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol__factory.d.ts +1527 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/NonceManager__factory.d.ts +174 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/StrategyManager__factory.d.ts +478 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferManager__factory.d.ts +406 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT__factory.d.ts +766 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy__factory.d.ts +100 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer__factory.d.ts +323 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A__factory.d.ts +338 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers__factory.d.ts +302 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/index.d.ts +13 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager__factory.d.ts +50 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager__factory.d.ts +51 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager__factory.d.ts +22 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager__factory.d.ts +61 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol__factory.d.ts +540 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager__factory.d.ts +57 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry__factory.d.ts +29 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager__factory.d.ts +88 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy__factory.d.ts +100 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager__factory.d.ts +77 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/index.d.ts +2 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/index.d.ts +1 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry__factory.d.ts +278 -0
- package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/OwnableTwoSteps__factory.d.ts +130 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/PackableReentrancyGuard__factory.d.ts +11 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/index.d.ts +3 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps__factory.d.ts +66 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard__factory.d.ts +11 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155__factory.d.ts +222 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271__factory.d.ts +25 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165__factory.d.ts +21 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20__factory.d.ts +147 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981__factory.d.ts +43 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721__factory.d.ts +213 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH__factory.d.ts +41 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +3 -0
- package/dist/typechain/factories/@looksrare/contracts-libs/index.d.ts +1 -0
- package/dist/typechain/factories/@looksrare/index.d.ts +2 -0
- package/dist/typechain/factories/index.d.ts +3 -0
- package/dist/typechain/factories/solmate/index.d.ts +1 -0
- package/dist/typechain/factories/solmate/src/index.d.ts +1 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver__factory.d.ts +67 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155__factory.d.ts +250 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC20__factory.d.ts +235 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver__factory.d.ts +33 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721__factory.d.ts +261 -0
- package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
- package/dist/typechain/factories/solmate/src/tokens/WETH__factory.d.ts +299 -0
- package/dist/typechain/factories/solmate/src/tokens/index.d.ts +4 -0
- package/dist/typechain/factories/src/contracts/index.d.ts +1 -0
- package/dist/typechain/factories/src/contracts/tests/MockERC1155__factory.d.ts +283 -0
- package/dist/typechain/factories/src/contracts/tests/MockERC721__factory.d.ts +308 -0
- package/dist/typechain/factories/src/contracts/tests/Verifier__factory.d.ts +462 -0
- package/dist/typechain/factories/src/contracts/tests/index.d.ts +3 -0
- package/dist/typechain/factories/src/index.d.ts +1 -0
- package/dist/typechain/index.d.ts +97 -0
- package/dist/typechain/solmate/index.d.ts +2 -0
- package/dist/typechain/solmate/src/index.d.ts +2 -0
- package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155.d.ts +236 -0
- package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver.d.ts +67 -0
- package/dist/typechain/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
- package/dist/typechain/solmate/src/tokens/ERC20.d.ts +181 -0
- package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721.d.ts +211 -0
- package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver.d.ts +39 -0
- package/dist/typechain/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
- package/dist/typechain/solmate/src/tokens/WETH.d.ts +219 -0
- package/dist/typechain/solmate/src/tokens/index.d.ts +6 -0
- package/dist/typechain/src/contracts/index.d.ts +2 -0
- package/dist/typechain/src/contracts/tests/MockERC1155.d.ts +252 -0
- package/dist/typechain/src/contracts/tests/MockERC721.d.ts +219 -0
- package/dist/typechain/src/contracts/tests/Verifier.d.ts +174 -0
- package/dist/typechain/src/contracts/tests/index.d.ts +3 -0
- package/dist/typechain/src/index.d.ts +2 -0
- package/dist/utils/calls/exchange.d.ts +7 -6
- package/package.json +1 -1
@@ -0,0 +1,121 @@
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../common";
|
3
|
+
export interface OwnableTwoStepsInterface extends Interface {
|
4
|
+
getFunction(nameOrSignature: "cancelOwnershipTransfer" | "confirmOwnershipRenouncement" | "confirmOwnershipTransfer" | "initiateOwnershipRenouncement" | "initiateOwnershipTransfer" | "owner" | "ownershipStatus" | "potentialOwner"): FunctionFragment;
|
5
|
+
getEvent(nameOrSignatureOrTopic: "CancelOwnershipTransfer" | "InitiateOwnershipRenouncement" | "InitiateOwnershipTransfer" | "NewOwner"): EventFragment;
|
6
|
+
encodeFunctionData(functionFragment: "cancelOwnershipTransfer", values?: undefined): string;
|
7
|
+
encodeFunctionData(functionFragment: "confirmOwnershipRenouncement", values?: undefined): string;
|
8
|
+
encodeFunctionData(functionFragment: "confirmOwnershipTransfer", values?: undefined): string;
|
9
|
+
encodeFunctionData(functionFragment: "initiateOwnershipRenouncement", values?: undefined): string;
|
10
|
+
encodeFunctionData(functionFragment: "initiateOwnershipTransfer", values: [AddressLike]): string;
|
11
|
+
encodeFunctionData(functionFragment: "owner", values?: undefined): string;
|
12
|
+
encodeFunctionData(functionFragment: "ownershipStatus", values?: undefined): string;
|
13
|
+
encodeFunctionData(functionFragment: "potentialOwner", values?: undefined): string;
|
14
|
+
decodeFunctionResult(functionFragment: "cancelOwnershipTransfer", data: BytesLike): Result;
|
15
|
+
decodeFunctionResult(functionFragment: "confirmOwnershipRenouncement", data: BytesLike): Result;
|
16
|
+
decodeFunctionResult(functionFragment: "confirmOwnershipTransfer", data: BytesLike): Result;
|
17
|
+
decodeFunctionResult(functionFragment: "initiateOwnershipRenouncement", data: BytesLike): Result;
|
18
|
+
decodeFunctionResult(functionFragment: "initiateOwnershipTransfer", data: BytesLike): Result;
|
19
|
+
decodeFunctionResult(functionFragment: "owner", data: BytesLike): Result;
|
20
|
+
decodeFunctionResult(functionFragment: "ownershipStatus", data: BytesLike): Result;
|
21
|
+
decodeFunctionResult(functionFragment: "potentialOwner", data: BytesLike): Result;
|
22
|
+
}
|
23
|
+
export declare namespace CancelOwnershipTransferEvent {
|
24
|
+
type InputTuple = [];
|
25
|
+
type OutputTuple = [];
|
26
|
+
interface OutputObject {
|
27
|
+
}
|
28
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
29
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
30
|
+
type Log = TypedEventLog<Event>;
|
31
|
+
type LogDescription = TypedLogDescription<Event>;
|
32
|
+
}
|
33
|
+
export declare namespace InitiateOwnershipRenouncementEvent {
|
34
|
+
type InputTuple = [];
|
35
|
+
type OutputTuple = [];
|
36
|
+
interface OutputObject {
|
37
|
+
}
|
38
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
39
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
40
|
+
type Log = TypedEventLog<Event>;
|
41
|
+
type LogDescription = TypedLogDescription<Event>;
|
42
|
+
}
|
43
|
+
export declare namespace InitiateOwnershipTransferEvent {
|
44
|
+
type InputTuple = [
|
45
|
+
previousOwner: AddressLike,
|
46
|
+
potentialOwner: AddressLike
|
47
|
+
];
|
48
|
+
type OutputTuple = [previousOwner: string, potentialOwner: string];
|
49
|
+
interface OutputObject {
|
50
|
+
previousOwner: string;
|
51
|
+
potentialOwner: string;
|
52
|
+
}
|
53
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
54
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
55
|
+
type Log = TypedEventLog<Event>;
|
56
|
+
type LogDescription = TypedLogDescription<Event>;
|
57
|
+
}
|
58
|
+
export declare namespace NewOwnerEvent {
|
59
|
+
type InputTuple = [newOwner: AddressLike];
|
60
|
+
type OutputTuple = [newOwner: string];
|
61
|
+
interface OutputObject {
|
62
|
+
newOwner: string;
|
63
|
+
}
|
64
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
65
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
66
|
+
type Log = TypedEventLog<Event>;
|
67
|
+
type LogDescription = TypedLogDescription<Event>;
|
68
|
+
}
|
69
|
+
export interface OwnableTwoSteps extends BaseContract {
|
70
|
+
connect(runner?: ContractRunner | null): OwnableTwoSteps;
|
71
|
+
waitForDeployment(): Promise<this>;
|
72
|
+
interface: OwnableTwoStepsInterface;
|
73
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
74
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
75
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
76
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
77
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
78
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
79
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
80
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
81
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
82
|
+
cancelOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
|
83
|
+
confirmOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
|
84
|
+
confirmOwnershipTransfer: TypedContractMethod<[], [void], "nonpayable">;
|
85
|
+
initiateOwnershipRenouncement: TypedContractMethod<[], [void], "nonpayable">;
|
86
|
+
initiateOwnershipTransfer: TypedContractMethod<[
|
87
|
+
newPotentialOwner: AddressLike
|
88
|
+
], [
|
89
|
+
void
|
90
|
+
], "nonpayable">;
|
91
|
+
owner: TypedContractMethod<[], [string], "view">;
|
92
|
+
ownershipStatus: TypedContractMethod<[], [bigint], "view">;
|
93
|
+
potentialOwner: TypedContractMethod<[], [string], "view">;
|
94
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
95
|
+
getFunction(nameOrSignature: "cancelOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
|
96
|
+
getFunction(nameOrSignature: "confirmOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
|
97
|
+
getFunction(nameOrSignature: "confirmOwnershipTransfer"): TypedContractMethod<[], [void], "nonpayable">;
|
98
|
+
getFunction(nameOrSignature: "initiateOwnershipRenouncement"): TypedContractMethod<[], [void], "nonpayable">;
|
99
|
+
getFunction(nameOrSignature: "initiateOwnershipTransfer"): TypedContractMethod<[
|
100
|
+
newPotentialOwner: AddressLike
|
101
|
+
], [
|
102
|
+
void
|
103
|
+
], "nonpayable">;
|
104
|
+
getFunction(nameOrSignature: "owner"): TypedContractMethod<[], [string], "view">;
|
105
|
+
getFunction(nameOrSignature: "ownershipStatus"): TypedContractMethod<[], [bigint], "view">;
|
106
|
+
getFunction(nameOrSignature: "potentialOwner"): TypedContractMethod<[], [string], "view">;
|
107
|
+
getEvent(key: "CancelOwnershipTransfer"): TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
108
|
+
getEvent(key: "InitiateOwnershipRenouncement"): TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
109
|
+
getEvent(key: "InitiateOwnershipTransfer"): TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
110
|
+
getEvent(key: "NewOwner"): TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
111
|
+
filters: {
|
112
|
+
"CancelOwnershipTransfer()": TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
113
|
+
CancelOwnershipTransfer: TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
114
|
+
"InitiateOwnershipRenouncement()": TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
115
|
+
InitiateOwnershipRenouncement: TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
116
|
+
"InitiateOwnershipTransfer(address,address)": TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
117
|
+
InitiateOwnershipTransfer: TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
118
|
+
"NewOwner(address)": TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
119
|
+
NewOwner: TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
120
|
+
};
|
121
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener } from "../../../common";
|
3
|
+
export interface PackableReentrancyGuardInterface extends Interface {
|
4
|
+
}
|
5
|
+
export interface PackableReentrancyGuard extends BaseContract {
|
6
|
+
connect(runner?: ContractRunner | null): PackableReentrancyGuard;
|
7
|
+
waitForDeployment(): Promise<this>;
|
8
|
+
interface: PackableReentrancyGuardInterface;
|
9
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
10
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
11
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
12
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
13
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
14
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
15
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
16
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
17
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
18
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
19
|
+
filters: {};
|
20
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener } from "../../../../common";
|
3
|
+
export interface IOwnableTwoStepsInterface extends Interface {
|
4
|
+
getEvent(nameOrSignatureOrTopic: "CancelOwnershipTransfer" | "InitiateOwnershipRenouncement" | "InitiateOwnershipTransfer" | "NewOwner"): EventFragment;
|
5
|
+
}
|
6
|
+
export declare namespace CancelOwnershipTransferEvent {
|
7
|
+
type InputTuple = [];
|
8
|
+
type OutputTuple = [];
|
9
|
+
interface OutputObject {
|
10
|
+
}
|
11
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
12
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
13
|
+
type Log = TypedEventLog<Event>;
|
14
|
+
type LogDescription = TypedLogDescription<Event>;
|
15
|
+
}
|
16
|
+
export declare namespace InitiateOwnershipRenouncementEvent {
|
17
|
+
type InputTuple = [];
|
18
|
+
type OutputTuple = [];
|
19
|
+
interface OutputObject {
|
20
|
+
}
|
21
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
22
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
23
|
+
type Log = TypedEventLog<Event>;
|
24
|
+
type LogDescription = TypedLogDescription<Event>;
|
25
|
+
}
|
26
|
+
export declare namespace InitiateOwnershipTransferEvent {
|
27
|
+
type InputTuple = [
|
28
|
+
previousOwner: AddressLike,
|
29
|
+
potentialOwner: AddressLike
|
30
|
+
];
|
31
|
+
type OutputTuple = [previousOwner: string, potentialOwner: string];
|
32
|
+
interface OutputObject {
|
33
|
+
previousOwner: string;
|
34
|
+
potentialOwner: string;
|
35
|
+
}
|
36
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
37
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
38
|
+
type Log = TypedEventLog<Event>;
|
39
|
+
type LogDescription = TypedLogDescription<Event>;
|
40
|
+
}
|
41
|
+
export declare namespace NewOwnerEvent {
|
42
|
+
type InputTuple = [newOwner: AddressLike];
|
43
|
+
type OutputTuple = [newOwner: string];
|
44
|
+
interface OutputObject {
|
45
|
+
newOwner: string;
|
46
|
+
}
|
47
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
48
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
49
|
+
type Log = TypedEventLog<Event>;
|
50
|
+
type LogDescription = TypedLogDescription<Event>;
|
51
|
+
}
|
52
|
+
export interface IOwnableTwoSteps extends BaseContract {
|
53
|
+
connect(runner?: ContractRunner | null): IOwnableTwoSteps;
|
54
|
+
waitForDeployment(): Promise<this>;
|
55
|
+
interface: IOwnableTwoStepsInterface;
|
56
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
57
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
58
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
59
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
60
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
61
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
62
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
63
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
64
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
65
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
66
|
+
getEvent(key: "CancelOwnershipTransfer"): TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
67
|
+
getEvent(key: "InitiateOwnershipRenouncement"): TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
68
|
+
getEvent(key: "InitiateOwnershipTransfer"): TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
69
|
+
getEvent(key: "NewOwner"): TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
70
|
+
filters: {
|
71
|
+
"CancelOwnershipTransfer()": TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
72
|
+
CancelOwnershipTransfer: TypedContractEvent<CancelOwnershipTransferEvent.InputTuple, CancelOwnershipTransferEvent.OutputTuple, CancelOwnershipTransferEvent.OutputObject>;
|
73
|
+
"InitiateOwnershipRenouncement()": TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
74
|
+
InitiateOwnershipRenouncement: TypedContractEvent<InitiateOwnershipRenouncementEvent.InputTuple, InitiateOwnershipRenouncementEvent.OutputTuple, InitiateOwnershipRenouncementEvent.OutputObject>;
|
75
|
+
"InitiateOwnershipTransfer(address,address)": TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
76
|
+
InitiateOwnershipTransfer: TypedContractEvent<InitiateOwnershipTransferEvent.InputTuple, InitiateOwnershipTransferEvent.OutputTuple, InitiateOwnershipTransferEvent.OutputObject>;
|
77
|
+
"NewOwner(address)": TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
78
|
+
NewOwner: TypedContractEvent<NewOwnerEvent.InputTuple, NewOwnerEvent.OutputTuple, NewOwnerEvent.OutputObject>;
|
79
|
+
};
|
80
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import type { BaseContract, FunctionFragment, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener } from "../../../../common";
|
3
|
+
export interface IReentrancyGuardInterface extends Interface {
|
4
|
+
}
|
5
|
+
export interface IReentrancyGuard extends BaseContract {
|
6
|
+
connect(runner?: ContractRunner | null): IReentrancyGuard;
|
7
|
+
waitForDeployment(): Promise<this>;
|
8
|
+
interface: IReentrancyGuardInterface;
|
9
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
10
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
11
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
12
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
13
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
14
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
15
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
16
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
17
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
18
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
19
|
+
filters: {};
|
20
|
+
}
|
@@ -0,0 +1,224 @@
|
|
1
|
+
import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../../../../common";
|
3
|
+
export interface IERC1155Interface extends Interface {
|
4
|
+
getFunction(nameOrSignature: "balanceOf" | "balanceOfBatch" | "isApprovedForAll" | "safeBatchTransferFrom" | "safeTransferFrom" | "setApprovalForAll"): FunctionFragment;
|
5
|
+
getEvent(nameOrSignatureOrTopic: "ApprovalForAll" | "TransferBatch" | "TransferSingle" | "URI"): EventFragment;
|
6
|
+
encodeFunctionData(functionFragment: "balanceOf", values: [AddressLike, BigNumberish]): string;
|
7
|
+
encodeFunctionData(functionFragment: "balanceOfBatch", values: [AddressLike[], BigNumberish[]]): string;
|
8
|
+
encodeFunctionData(functionFragment: "isApprovedForAll", values: [AddressLike, AddressLike]): string;
|
9
|
+
encodeFunctionData(functionFragment: "safeBatchTransferFrom", values: [
|
10
|
+
AddressLike,
|
11
|
+
AddressLike,
|
12
|
+
BigNumberish[],
|
13
|
+
BigNumberish[],
|
14
|
+
BytesLike
|
15
|
+
]): string;
|
16
|
+
encodeFunctionData(functionFragment: "safeTransferFrom", values: [AddressLike, AddressLike, BigNumberish, BigNumberish, BytesLike]): string;
|
17
|
+
encodeFunctionData(functionFragment: "setApprovalForAll", values: [AddressLike, boolean]): string;
|
18
|
+
decodeFunctionResult(functionFragment: "balanceOf", data: BytesLike): Result;
|
19
|
+
decodeFunctionResult(functionFragment: "balanceOfBatch", data: BytesLike): Result;
|
20
|
+
decodeFunctionResult(functionFragment: "isApprovedForAll", data: BytesLike): Result;
|
21
|
+
decodeFunctionResult(functionFragment: "safeBatchTransferFrom", data: BytesLike): Result;
|
22
|
+
decodeFunctionResult(functionFragment: "safeTransferFrom", data: BytesLike): Result;
|
23
|
+
decodeFunctionResult(functionFragment: "setApprovalForAll", data: BytesLike): Result;
|
24
|
+
}
|
25
|
+
export declare namespace ApprovalForAllEvent {
|
26
|
+
type InputTuple = [
|
27
|
+
account: AddressLike,
|
28
|
+
operator: AddressLike,
|
29
|
+
approved: boolean
|
30
|
+
];
|
31
|
+
type OutputTuple = [
|
32
|
+
account: string,
|
33
|
+
operator: string,
|
34
|
+
approved: boolean
|
35
|
+
];
|
36
|
+
interface OutputObject {
|
37
|
+
account: string;
|
38
|
+
operator: string;
|
39
|
+
approved: boolean;
|
40
|
+
}
|
41
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
42
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
43
|
+
type Log = TypedEventLog<Event>;
|
44
|
+
type LogDescription = TypedLogDescription<Event>;
|
45
|
+
}
|
46
|
+
export declare namespace TransferBatchEvent {
|
47
|
+
type InputTuple = [
|
48
|
+
operator: AddressLike,
|
49
|
+
from: AddressLike,
|
50
|
+
to: AddressLike,
|
51
|
+
ids: BigNumberish[],
|
52
|
+
values: BigNumberish[]
|
53
|
+
];
|
54
|
+
type OutputTuple = [
|
55
|
+
operator: string,
|
56
|
+
from: string,
|
57
|
+
to: string,
|
58
|
+
ids: bigint[],
|
59
|
+
values: bigint[]
|
60
|
+
];
|
61
|
+
interface OutputObject {
|
62
|
+
operator: string;
|
63
|
+
from: string;
|
64
|
+
to: string;
|
65
|
+
ids: bigint[];
|
66
|
+
values: bigint[];
|
67
|
+
}
|
68
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
69
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
70
|
+
type Log = TypedEventLog<Event>;
|
71
|
+
type LogDescription = TypedLogDescription<Event>;
|
72
|
+
}
|
73
|
+
export declare namespace TransferSingleEvent {
|
74
|
+
type InputTuple = [
|
75
|
+
operator: AddressLike,
|
76
|
+
from: AddressLike,
|
77
|
+
to: AddressLike,
|
78
|
+
id: BigNumberish,
|
79
|
+
value: BigNumberish
|
80
|
+
];
|
81
|
+
type OutputTuple = [
|
82
|
+
operator: string,
|
83
|
+
from: string,
|
84
|
+
to: string,
|
85
|
+
id: bigint,
|
86
|
+
value: bigint
|
87
|
+
];
|
88
|
+
interface OutputObject {
|
89
|
+
operator: string;
|
90
|
+
from: string;
|
91
|
+
to: string;
|
92
|
+
id: bigint;
|
93
|
+
value: bigint;
|
94
|
+
}
|
95
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
96
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
97
|
+
type Log = TypedEventLog<Event>;
|
98
|
+
type LogDescription = TypedLogDescription<Event>;
|
99
|
+
}
|
100
|
+
export declare namespace URIEvent {
|
101
|
+
type InputTuple = [value: string, id: BigNumberish];
|
102
|
+
type OutputTuple = [value: string, id: bigint];
|
103
|
+
interface OutputObject {
|
104
|
+
value: string;
|
105
|
+
id: bigint;
|
106
|
+
}
|
107
|
+
type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
|
108
|
+
type Filter = TypedDeferredTopicFilter<Event>;
|
109
|
+
type Log = TypedEventLog<Event>;
|
110
|
+
type LogDescription = TypedLogDescription<Event>;
|
111
|
+
}
|
112
|
+
export interface IERC1155 extends BaseContract {
|
113
|
+
connect(runner?: ContractRunner | null): IERC1155;
|
114
|
+
waitForDeployment(): Promise<this>;
|
115
|
+
interface: IERC1155Interface;
|
116
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
117
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
118
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
119
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
120
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
121
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
122
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
123
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
124
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
125
|
+
balanceOf: TypedContractMethod<[
|
126
|
+
account: AddressLike,
|
127
|
+
id: BigNumberish
|
128
|
+
], [
|
129
|
+
bigint
|
130
|
+
], "view">;
|
131
|
+
balanceOfBatch: TypedContractMethod<[
|
132
|
+
accounts: AddressLike[],
|
133
|
+
ids: BigNumberish[]
|
134
|
+
], [
|
135
|
+
bigint[]
|
136
|
+
], "view">;
|
137
|
+
isApprovedForAll: TypedContractMethod<[
|
138
|
+
account: AddressLike,
|
139
|
+
operator: AddressLike
|
140
|
+
], [
|
141
|
+
boolean
|
142
|
+
], "view">;
|
143
|
+
safeBatchTransferFrom: TypedContractMethod<[
|
144
|
+
from: AddressLike,
|
145
|
+
to: AddressLike,
|
146
|
+
ids: BigNumberish[],
|
147
|
+
amounts: BigNumberish[],
|
148
|
+
data: BytesLike
|
149
|
+
], [
|
150
|
+
void
|
151
|
+
], "nonpayable">;
|
152
|
+
safeTransferFrom: TypedContractMethod<[
|
153
|
+
from: AddressLike,
|
154
|
+
to: AddressLike,
|
155
|
+
id: BigNumberish,
|
156
|
+
amount: BigNumberish,
|
157
|
+
data: BytesLike
|
158
|
+
], [
|
159
|
+
void
|
160
|
+
], "nonpayable">;
|
161
|
+
setApprovalForAll: TypedContractMethod<[
|
162
|
+
operator: AddressLike,
|
163
|
+
approved: boolean
|
164
|
+
], [
|
165
|
+
void
|
166
|
+
], "nonpayable">;
|
167
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
168
|
+
getFunction(nameOrSignature: "balanceOf"): TypedContractMethod<[
|
169
|
+
account: AddressLike,
|
170
|
+
id: BigNumberish
|
171
|
+
], [
|
172
|
+
bigint
|
173
|
+
], "view">;
|
174
|
+
getFunction(nameOrSignature: "balanceOfBatch"): TypedContractMethod<[
|
175
|
+
accounts: AddressLike[],
|
176
|
+
ids: BigNumberish[]
|
177
|
+
], [
|
178
|
+
bigint[]
|
179
|
+
], "view">;
|
180
|
+
getFunction(nameOrSignature: "isApprovedForAll"): TypedContractMethod<[
|
181
|
+
account: AddressLike,
|
182
|
+
operator: AddressLike
|
183
|
+
], [
|
184
|
+
boolean
|
185
|
+
], "view">;
|
186
|
+
getFunction(nameOrSignature: "safeBatchTransferFrom"): TypedContractMethod<[
|
187
|
+
from: AddressLike,
|
188
|
+
to: AddressLike,
|
189
|
+
ids: BigNumberish[],
|
190
|
+
amounts: BigNumberish[],
|
191
|
+
data: BytesLike
|
192
|
+
], [
|
193
|
+
void
|
194
|
+
], "nonpayable">;
|
195
|
+
getFunction(nameOrSignature: "safeTransferFrom"): TypedContractMethod<[
|
196
|
+
from: AddressLike,
|
197
|
+
to: AddressLike,
|
198
|
+
id: BigNumberish,
|
199
|
+
amount: BigNumberish,
|
200
|
+
data: BytesLike
|
201
|
+
], [
|
202
|
+
void
|
203
|
+
], "nonpayable">;
|
204
|
+
getFunction(nameOrSignature: "setApprovalForAll"): TypedContractMethod<[
|
205
|
+
operator: AddressLike,
|
206
|
+
approved: boolean
|
207
|
+
], [
|
208
|
+
void
|
209
|
+
], "nonpayable">;
|
210
|
+
getEvent(key: "ApprovalForAll"): TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
211
|
+
getEvent(key: "TransferBatch"): TypedContractEvent<TransferBatchEvent.InputTuple, TransferBatchEvent.OutputTuple, TransferBatchEvent.OutputObject>;
|
212
|
+
getEvent(key: "TransferSingle"): TypedContractEvent<TransferSingleEvent.InputTuple, TransferSingleEvent.OutputTuple, TransferSingleEvent.OutputObject>;
|
213
|
+
getEvent(key: "URI"): TypedContractEvent<URIEvent.InputTuple, URIEvent.OutputTuple, URIEvent.OutputObject>;
|
214
|
+
filters: {
|
215
|
+
"ApprovalForAll(address,address,bool)": TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
216
|
+
ApprovalForAll: TypedContractEvent<ApprovalForAllEvent.InputTuple, ApprovalForAllEvent.OutputTuple, ApprovalForAllEvent.OutputObject>;
|
217
|
+
"TransferBatch(address,address,address,uint256[],uint256[])": TypedContractEvent<TransferBatchEvent.InputTuple, TransferBatchEvent.OutputTuple, TransferBatchEvent.OutputObject>;
|
218
|
+
TransferBatch: TypedContractEvent<TransferBatchEvent.InputTuple, TransferBatchEvent.OutputTuple, TransferBatchEvent.OutputObject>;
|
219
|
+
"TransferSingle(address,address,address,uint256,uint256)": TypedContractEvent<TransferSingleEvent.InputTuple, TransferSingleEvent.OutputTuple, TransferSingleEvent.OutputObject>;
|
220
|
+
TransferSingle: TypedContractEvent<TransferSingleEvent.InputTuple, TransferSingleEvent.OutputTuple, TransferSingleEvent.OutputObject>;
|
221
|
+
"URI(string,uint256)": TypedContractEvent<URIEvent.InputTuple, URIEvent.OutputTuple, URIEvent.OutputObject>;
|
222
|
+
URI: TypedContractEvent<URIEvent.InputTuple, URIEvent.OutputTuple, URIEvent.OutputObject>;
|
223
|
+
};
|
224
|
+
}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../../common";
|
3
|
+
export interface IERC1271Interface extends Interface {
|
4
|
+
getFunction(nameOrSignature: "isValidSignature"): FunctionFragment;
|
5
|
+
encodeFunctionData(functionFragment: "isValidSignature", values: [BytesLike, BytesLike]): string;
|
6
|
+
decodeFunctionResult(functionFragment: "isValidSignature", data: BytesLike): Result;
|
7
|
+
}
|
8
|
+
export interface IERC1271 extends BaseContract {
|
9
|
+
connect(runner?: ContractRunner | null): IERC1271;
|
10
|
+
waitForDeployment(): Promise<this>;
|
11
|
+
interface: IERC1271Interface;
|
12
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
13
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
14
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
15
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
16
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
17
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
18
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
19
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
20
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
21
|
+
isValidSignature: TypedContractMethod<[
|
22
|
+
hash: BytesLike,
|
23
|
+
signature: BytesLike
|
24
|
+
], [
|
25
|
+
string
|
26
|
+
], "view">;
|
27
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
28
|
+
getFunction(nameOrSignature: "isValidSignature"): TypedContractMethod<[
|
29
|
+
hash: BytesLike,
|
30
|
+
signature: BytesLike
|
31
|
+
], [
|
32
|
+
string
|
33
|
+
], "view">;
|
34
|
+
filters: {};
|
35
|
+
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import type { BaseContract, BytesLike, FunctionFragment, Result, Interface, ContractRunner, ContractMethod, Listener } from "ethers";
|
2
|
+
import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedListener, TypedContractMethod } from "../../../../../common";
|
3
|
+
export interface IERC165Interface extends Interface {
|
4
|
+
getFunction(nameOrSignature: "supportsInterface"): FunctionFragment;
|
5
|
+
encodeFunctionData(functionFragment: "supportsInterface", values: [BytesLike]): string;
|
6
|
+
decodeFunctionResult(functionFragment: "supportsInterface", data: BytesLike): Result;
|
7
|
+
}
|
8
|
+
export interface IERC165 extends BaseContract {
|
9
|
+
connect(runner?: ContractRunner | null): IERC165;
|
10
|
+
waitForDeployment(): Promise<this>;
|
11
|
+
interface: IERC165Interface;
|
12
|
+
queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
13
|
+
queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
|
14
|
+
on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
15
|
+
on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
16
|
+
once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
|
17
|
+
once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
|
18
|
+
listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
|
19
|
+
listeners(eventName?: string): Promise<Array<Listener>>;
|
20
|
+
removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
|
21
|
+
supportsInterface: TypedContractMethod<[
|
22
|
+
interfaceId: BytesLike
|
23
|
+
], [
|
24
|
+
boolean
|
25
|
+
], "view">;
|
26
|
+
getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
|
27
|
+
getFunction(nameOrSignature: "supportsInterface"): TypedContractMethod<[interfaceId: BytesLike], [boolean], "view">;
|
28
|
+
filters: {};
|
29
|
+
}
|