@hypercerts-org/marketplace-sdk 0.0.14 → 0.0.16

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.
Files changed (137) hide show
  1. package/dist/LooksRare.d.ts +3 -3
  2. package/dist/index.d.ts +6 -6
  3. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/AffiliateManager.d.ts +210 -0
  4. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry.d.ts +35 -0
  5. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties.d.ts +47 -0
  6. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/CurrencyManager.d.ts +247 -0
  7. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/ExecutionManager.d.ts +616 -0
  8. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol.d.ts +1005 -0
  9. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/NonceManager.d.ts +148 -0
  10. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/StrategyManager.d.ts +401 -0
  11. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferManager.d.ts +324 -0
  12. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT.d.ts +620 -0
  13. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy.d.ts +97 -0
  14. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer.d.ts +176 -0
  15. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  16. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A.d.ts +172 -0
  17. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers.d.ts +148 -0
  18. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  19. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/index.d.ts +16 -0
  20. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager.d.ts +65 -0
  21. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager.d.ts +47 -0
  22. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager.d.ts +37 -0
  23. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager.d.ts +64 -0
  24. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol.d.ts +343 -0
  25. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager.d.ts +72 -0
  26. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry.d.ts +41 -0
  27. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy.d.ts +97 -0
  28. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager.d.ts +85 -0
  29. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager.d.ts +80 -0
  30. package/dist/typechain/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  31. package/dist/typechain/@looksrare/contracts-exchange-v2/index.d.ts +4 -0
  32. package/dist/typechain/@looksrare/contracts-exchange-v2/test/index.d.ts +2 -0
  33. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry.d.ts +222 -0
  34. package/dist/typechain/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  35. package/dist/typechain/@looksrare/contracts-libs/contracts/OwnableTwoSteps.d.ts +121 -0
  36. package/dist/typechain/@looksrare/contracts-libs/contracts/PackableReentrancyGuard.d.ts +20 -0
  37. package/dist/typechain/@looksrare/contracts-libs/contracts/index.d.ts +4 -0
  38. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps.d.ts +80 -0
  39. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard.d.ts +20 -0
  40. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155.d.ts +224 -0
  41. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271.d.ts +35 -0
  42. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165.d.ts +29 -0
  43. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20.d.ts +129 -0
  44. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981.d.ts +49 -0
  45. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721.d.ts +191 -0
  46. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH.d.ts +43 -0
  47. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  48. package/dist/typechain/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +4 -0
  49. package/dist/typechain/@looksrare/contracts-libs/index.d.ts +2 -0
  50. package/dist/typechain/@looksrare/index.d.ts +4 -0
  51. package/dist/typechain/common.d.ts +50 -0
  52. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/AffiliateManager__factory.d.ts +264 -0
  53. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry__factory.d.ts +48 -0
  54. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties__factory.d.ts +74 -0
  55. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/CurrencyManager__factory.d.ts +307 -0
  56. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/ExecutionManager__factory.d.ts +748 -0
  57. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol__factory.d.ts +1527 -0
  58. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/NonceManager__factory.d.ts +174 -0
  59. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/StrategyManager__factory.d.ts +478 -0
  60. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferManager__factory.d.ts +406 -0
  61. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT__factory.d.ts +766 -0
  62. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy__factory.d.ts +100 -0
  63. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer__factory.d.ts +323 -0
  64. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/index.d.ts +2 -0
  65. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A__factory.d.ts +338 -0
  66. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers__factory.d.ts +302 -0
  67. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/helpers/index.d.ts +2 -0
  68. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/index.d.ts +13 -0
  69. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager__factory.d.ts +50 -0
  70. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager__factory.d.ts +51 -0
  71. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager__factory.d.ts +22 -0
  72. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager__factory.d.ts +61 -0
  73. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol__factory.d.ts +540 -0
  74. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager__factory.d.ts +57 -0
  75. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry__factory.d.ts +29 -0
  76. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager__factory.d.ts +88 -0
  77. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy__factory.d.ts +100 -0
  78. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager__factory.d.ts +77 -0
  79. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/contracts/interfaces/index.d.ts +10 -0
  80. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/index.d.ts +2 -0
  81. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/index.d.ts +1 -0
  82. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry__factory.d.ts +278 -0
  83. package/dist/typechain/factories/@looksrare/contracts-exchange-v2/test/mock/index.d.ts +1 -0
  84. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/OwnableTwoSteps__factory.d.ts +130 -0
  85. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/PackableReentrancyGuard__factory.d.ts +11 -0
  86. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/index.d.ts +3 -0
  87. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps__factory.d.ts +66 -0
  88. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard__factory.d.ts +11 -0
  89. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155__factory.d.ts +222 -0
  90. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271__factory.d.ts +25 -0
  91. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165__factory.d.ts +21 -0
  92. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20__factory.d.ts +147 -0
  93. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981__factory.d.ts +43 -0
  94. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721__factory.d.ts +213 -0
  95. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH__factory.d.ts +41 -0
  96. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/generic/index.d.ts +7 -0
  97. package/dist/typechain/factories/@looksrare/contracts-libs/contracts/interfaces/index.d.ts +3 -0
  98. package/dist/typechain/factories/@looksrare/contracts-libs/index.d.ts +1 -0
  99. package/dist/typechain/factories/@looksrare/index.d.ts +2 -0
  100. package/dist/typechain/factories/index.d.ts +3 -0
  101. package/dist/typechain/factories/solmate/index.d.ts +1 -0
  102. package/dist/typechain/factories/solmate/src/index.d.ts +1 -0
  103. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver__factory.d.ts +67 -0
  104. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/ERC1155__factory.d.ts +250 -0
  105. package/dist/typechain/factories/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  106. package/dist/typechain/factories/solmate/src/tokens/ERC20__factory.d.ts +235 -0
  107. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver__factory.d.ts +33 -0
  108. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/ERC721__factory.d.ts +261 -0
  109. package/dist/typechain/factories/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  110. package/dist/typechain/factories/solmate/src/tokens/WETH__factory.d.ts +299 -0
  111. package/dist/typechain/factories/solmate/src/tokens/index.d.ts +4 -0
  112. package/dist/typechain/factories/src/contracts/index.d.ts +1 -0
  113. package/dist/typechain/factories/src/contracts/tests/MockERC1155__factory.d.ts +283 -0
  114. package/dist/typechain/factories/src/contracts/tests/MockERC721__factory.d.ts +308 -0
  115. package/dist/typechain/factories/src/contracts/tests/Verifier__factory.d.ts +462 -0
  116. package/dist/typechain/factories/src/contracts/tests/index.d.ts +3 -0
  117. package/dist/typechain/factories/src/index.d.ts +1 -0
  118. package/dist/typechain/index.d.ts +97 -0
  119. package/dist/typechain/solmate/index.d.ts +2 -0
  120. package/dist/typechain/solmate/src/index.d.ts +2 -0
  121. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155.d.ts +236 -0
  122. package/dist/typechain/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver.d.ts +67 -0
  123. package/dist/typechain/solmate/src/tokens/ERC1155.sol/index.d.ts +2 -0
  124. package/dist/typechain/solmate/src/tokens/ERC20.d.ts +181 -0
  125. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721.d.ts +211 -0
  126. package/dist/typechain/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver.d.ts +39 -0
  127. package/dist/typechain/solmate/src/tokens/ERC721.sol/index.d.ts +2 -0
  128. package/dist/typechain/solmate/src/tokens/WETH.d.ts +219 -0
  129. package/dist/typechain/solmate/src/tokens/index.d.ts +6 -0
  130. package/dist/typechain/src/contracts/index.d.ts +2 -0
  131. package/dist/typechain/src/contracts/tests/MockERC1155.d.ts +252 -0
  132. package/dist/typechain/src/contracts/tests/MockERC721.d.ts +219 -0
  133. package/dist/typechain/src/contracts/tests/Verifier.d.ts +174 -0
  134. package/dist/typechain/src/contracts/tests/index.d.ts +3 -0
  135. package/dist/typechain/src/index.d.ts +2 -0
  136. package/dist/utils/calls/exchange.d.ts +7 -6
  137. package/package.json +4 -4
@@ -0,0 +1,130 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { OwnableTwoSteps, OwnableTwoStepsInterface } from "../../../../@looksrare/contracts-libs/contracts/OwnableTwoSteps";
3
+ export declare class OwnableTwoSteps__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "NoOngoingTransferInProgress";
7
+ readonly type: "error";
8
+ }, {
9
+ readonly inputs: readonly [];
10
+ readonly name: "NotOwner";
11
+ readonly type: "error";
12
+ }, {
13
+ readonly inputs: readonly [];
14
+ readonly name: "RenouncementNotInProgress";
15
+ readonly type: "error";
16
+ }, {
17
+ readonly inputs: readonly [];
18
+ readonly name: "TransferAlreadyInProgress";
19
+ readonly type: "error";
20
+ }, {
21
+ readonly inputs: readonly [];
22
+ readonly name: "TransferNotInProgress";
23
+ readonly type: "error";
24
+ }, {
25
+ readonly inputs: readonly [];
26
+ readonly name: "WrongPotentialOwner";
27
+ readonly type: "error";
28
+ }, {
29
+ readonly anonymous: false;
30
+ readonly inputs: readonly [];
31
+ readonly name: "CancelOwnershipTransfer";
32
+ readonly type: "event";
33
+ }, {
34
+ readonly anonymous: false;
35
+ readonly inputs: readonly [];
36
+ readonly name: "InitiateOwnershipRenouncement";
37
+ readonly type: "event";
38
+ }, {
39
+ readonly anonymous: false;
40
+ readonly inputs: readonly [{
41
+ readonly indexed: false;
42
+ readonly internalType: "address";
43
+ readonly name: "previousOwner";
44
+ readonly type: "address";
45
+ }, {
46
+ readonly indexed: false;
47
+ readonly internalType: "address";
48
+ readonly name: "potentialOwner";
49
+ readonly type: "address";
50
+ }];
51
+ readonly name: "InitiateOwnershipTransfer";
52
+ readonly type: "event";
53
+ }, {
54
+ readonly anonymous: false;
55
+ readonly inputs: readonly [{
56
+ readonly indexed: false;
57
+ readonly internalType: "address";
58
+ readonly name: "newOwner";
59
+ readonly type: "address";
60
+ }];
61
+ readonly name: "NewOwner";
62
+ readonly type: "event";
63
+ }, {
64
+ readonly inputs: readonly [];
65
+ readonly name: "cancelOwnershipTransfer";
66
+ readonly outputs: readonly [];
67
+ readonly stateMutability: "nonpayable";
68
+ readonly type: "function";
69
+ }, {
70
+ readonly inputs: readonly [];
71
+ readonly name: "confirmOwnershipRenouncement";
72
+ readonly outputs: readonly [];
73
+ readonly stateMutability: "nonpayable";
74
+ readonly type: "function";
75
+ }, {
76
+ readonly inputs: readonly [];
77
+ readonly name: "confirmOwnershipTransfer";
78
+ readonly outputs: readonly [];
79
+ readonly stateMutability: "nonpayable";
80
+ readonly type: "function";
81
+ }, {
82
+ readonly inputs: readonly [];
83
+ readonly name: "initiateOwnershipRenouncement";
84
+ readonly outputs: readonly [];
85
+ readonly stateMutability: "nonpayable";
86
+ readonly type: "function";
87
+ }, {
88
+ readonly inputs: readonly [{
89
+ readonly internalType: "address";
90
+ readonly name: "newPotentialOwner";
91
+ readonly type: "address";
92
+ }];
93
+ readonly name: "initiateOwnershipTransfer";
94
+ readonly outputs: readonly [];
95
+ readonly stateMutability: "nonpayable";
96
+ readonly type: "function";
97
+ }, {
98
+ readonly inputs: readonly [];
99
+ readonly name: "owner";
100
+ readonly outputs: readonly [{
101
+ readonly internalType: "address";
102
+ readonly name: "";
103
+ readonly type: "address";
104
+ }];
105
+ readonly stateMutability: "view";
106
+ readonly type: "function";
107
+ }, {
108
+ readonly inputs: readonly [];
109
+ readonly name: "ownershipStatus";
110
+ readonly outputs: readonly [{
111
+ readonly internalType: "enum IOwnableTwoSteps.Status";
112
+ readonly name: "";
113
+ readonly type: "uint8";
114
+ }];
115
+ readonly stateMutability: "view";
116
+ readonly type: "function";
117
+ }, {
118
+ readonly inputs: readonly [];
119
+ readonly name: "potentialOwner";
120
+ readonly outputs: readonly [{
121
+ readonly internalType: "address";
122
+ readonly name: "";
123
+ readonly type: "address";
124
+ }];
125
+ readonly stateMutability: "view";
126
+ readonly type: "function";
127
+ }];
128
+ static createInterface(): OwnableTwoStepsInterface;
129
+ static connect(address: string, runner?: ContractRunner | null): OwnableTwoSteps;
130
+ }
@@ -0,0 +1,11 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { PackableReentrancyGuard, PackableReentrancyGuardInterface } from "../../../../@looksrare/contracts-libs/contracts/PackableReentrancyGuard";
3
+ export declare class PackableReentrancyGuard__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "ReentrancyFail";
7
+ readonly type: "error";
8
+ }];
9
+ static createInterface(): PackableReentrancyGuardInterface;
10
+ static connect(address: string, runner?: ContractRunner | null): PackableReentrancyGuard;
11
+ }
@@ -0,0 +1,3 @@
1
+ export * as interfaces from "./interfaces";
2
+ export { OwnableTwoSteps__factory } from "./OwnableTwoSteps__factory";
3
+ export { PackableReentrancyGuard__factory } from "./PackableReentrancyGuard__factory";
@@ -0,0 +1,66 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IOwnableTwoSteps, IOwnableTwoStepsInterface } from "../../../../../@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps";
3
+ export declare class IOwnableTwoSteps__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "NoOngoingTransferInProgress";
7
+ readonly type: "error";
8
+ }, {
9
+ readonly inputs: readonly [];
10
+ readonly name: "NotOwner";
11
+ readonly type: "error";
12
+ }, {
13
+ readonly inputs: readonly [];
14
+ readonly name: "RenouncementNotInProgress";
15
+ readonly type: "error";
16
+ }, {
17
+ readonly inputs: readonly [];
18
+ readonly name: "TransferAlreadyInProgress";
19
+ readonly type: "error";
20
+ }, {
21
+ readonly inputs: readonly [];
22
+ readonly name: "TransferNotInProgress";
23
+ readonly type: "error";
24
+ }, {
25
+ readonly inputs: readonly [];
26
+ readonly name: "WrongPotentialOwner";
27
+ readonly type: "error";
28
+ }, {
29
+ readonly anonymous: false;
30
+ readonly inputs: readonly [];
31
+ readonly name: "CancelOwnershipTransfer";
32
+ readonly type: "event";
33
+ }, {
34
+ readonly anonymous: false;
35
+ readonly inputs: readonly [];
36
+ readonly name: "InitiateOwnershipRenouncement";
37
+ readonly type: "event";
38
+ }, {
39
+ readonly anonymous: false;
40
+ readonly inputs: readonly [{
41
+ readonly indexed: false;
42
+ readonly internalType: "address";
43
+ readonly name: "previousOwner";
44
+ readonly type: "address";
45
+ }, {
46
+ readonly indexed: false;
47
+ readonly internalType: "address";
48
+ readonly name: "potentialOwner";
49
+ readonly type: "address";
50
+ }];
51
+ readonly name: "InitiateOwnershipTransfer";
52
+ readonly type: "event";
53
+ }, {
54
+ readonly anonymous: false;
55
+ readonly inputs: readonly [{
56
+ readonly indexed: false;
57
+ readonly internalType: "address";
58
+ readonly name: "newOwner";
59
+ readonly type: "address";
60
+ }];
61
+ readonly name: "NewOwner";
62
+ readonly type: "event";
63
+ }];
64
+ static createInterface(): IOwnableTwoStepsInterface;
65
+ static connect(address: string, runner?: ContractRunner | null): IOwnableTwoSteps;
66
+ }
@@ -0,0 +1,11 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IReentrancyGuard, IReentrancyGuardInterface } from "../../../../../@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard";
3
+ export declare class IReentrancyGuard__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [];
6
+ readonly name: "ReentrancyFail";
7
+ readonly type: "error";
8
+ }];
9
+ static createInterface(): IReentrancyGuardInterface;
10
+ static connect(address: string, runner?: ContractRunner | null): IReentrancyGuard;
11
+ }
@@ -0,0 +1,222 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IERC1155, IERC1155Interface } from "../../../../../../@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155";
3
+ export declare class IERC1155__factory {
4
+ static readonly abi: readonly [{
5
+ readonly anonymous: false;
6
+ readonly inputs: readonly [{
7
+ readonly indexed: true;
8
+ readonly internalType: "address";
9
+ readonly name: "account";
10
+ readonly type: "address";
11
+ }, {
12
+ readonly indexed: true;
13
+ readonly internalType: "address";
14
+ readonly name: "operator";
15
+ readonly type: "address";
16
+ }, {
17
+ readonly indexed: false;
18
+ readonly internalType: "bool";
19
+ readonly name: "approved";
20
+ readonly type: "bool";
21
+ }];
22
+ readonly name: "ApprovalForAll";
23
+ readonly type: "event";
24
+ }, {
25
+ readonly anonymous: false;
26
+ readonly inputs: readonly [{
27
+ readonly indexed: true;
28
+ readonly internalType: "address";
29
+ readonly name: "operator";
30
+ readonly type: "address";
31
+ }, {
32
+ readonly indexed: true;
33
+ readonly internalType: "address";
34
+ readonly name: "from";
35
+ readonly type: "address";
36
+ }, {
37
+ readonly indexed: true;
38
+ readonly internalType: "address";
39
+ readonly name: "to";
40
+ readonly type: "address";
41
+ }, {
42
+ readonly indexed: false;
43
+ readonly internalType: "uint256[]";
44
+ readonly name: "ids";
45
+ readonly type: "uint256[]";
46
+ }, {
47
+ readonly indexed: false;
48
+ readonly internalType: "uint256[]";
49
+ readonly name: "values";
50
+ readonly type: "uint256[]";
51
+ }];
52
+ readonly name: "TransferBatch";
53
+ readonly type: "event";
54
+ }, {
55
+ readonly anonymous: false;
56
+ readonly inputs: readonly [{
57
+ readonly indexed: true;
58
+ readonly internalType: "address";
59
+ readonly name: "operator";
60
+ readonly type: "address";
61
+ }, {
62
+ readonly indexed: true;
63
+ readonly internalType: "address";
64
+ readonly name: "from";
65
+ readonly type: "address";
66
+ }, {
67
+ readonly indexed: true;
68
+ readonly internalType: "address";
69
+ readonly name: "to";
70
+ readonly type: "address";
71
+ }, {
72
+ readonly indexed: false;
73
+ readonly internalType: "uint256";
74
+ readonly name: "id";
75
+ readonly type: "uint256";
76
+ }, {
77
+ readonly indexed: false;
78
+ readonly internalType: "uint256";
79
+ readonly name: "value";
80
+ readonly type: "uint256";
81
+ }];
82
+ readonly name: "TransferSingle";
83
+ readonly type: "event";
84
+ }, {
85
+ readonly anonymous: false;
86
+ readonly inputs: readonly [{
87
+ readonly indexed: false;
88
+ readonly internalType: "string";
89
+ readonly name: "value";
90
+ readonly type: "string";
91
+ }, {
92
+ readonly indexed: true;
93
+ readonly internalType: "uint256";
94
+ readonly name: "id";
95
+ readonly type: "uint256";
96
+ }];
97
+ readonly name: "URI";
98
+ readonly type: "event";
99
+ }, {
100
+ readonly inputs: readonly [{
101
+ readonly internalType: "address";
102
+ readonly name: "account";
103
+ readonly type: "address";
104
+ }, {
105
+ readonly internalType: "uint256";
106
+ readonly name: "id";
107
+ readonly type: "uint256";
108
+ }];
109
+ readonly name: "balanceOf";
110
+ readonly outputs: readonly [{
111
+ readonly internalType: "uint256";
112
+ readonly name: "";
113
+ readonly type: "uint256";
114
+ }];
115
+ readonly stateMutability: "view";
116
+ readonly type: "function";
117
+ }, {
118
+ readonly inputs: readonly [{
119
+ readonly internalType: "address[]";
120
+ readonly name: "accounts";
121
+ readonly type: "address[]";
122
+ }, {
123
+ readonly internalType: "uint256[]";
124
+ readonly name: "ids";
125
+ readonly type: "uint256[]";
126
+ }];
127
+ readonly name: "balanceOfBatch";
128
+ readonly outputs: readonly [{
129
+ readonly internalType: "uint256[]";
130
+ readonly name: "";
131
+ readonly type: "uint256[]";
132
+ }];
133
+ readonly stateMutability: "view";
134
+ readonly type: "function";
135
+ }, {
136
+ readonly inputs: readonly [{
137
+ readonly internalType: "address";
138
+ readonly name: "account";
139
+ readonly type: "address";
140
+ }, {
141
+ readonly internalType: "address";
142
+ readonly name: "operator";
143
+ readonly type: "address";
144
+ }];
145
+ readonly name: "isApprovedForAll";
146
+ readonly outputs: readonly [{
147
+ readonly internalType: "bool";
148
+ readonly name: "";
149
+ readonly type: "bool";
150
+ }];
151
+ readonly stateMutability: "view";
152
+ readonly type: "function";
153
+ }, {
154
+ readonly inputs: readonly [{
155
+ readonly internalType: "address";
156
+ readonly name: "from";
157
+ readonly type: "address";
158
+ }, {
159
+ readonly internalType: "address";
160
+ readonly name: "to";
161
+ readonly type: "address";
162
+ }, {
163
+ readonly internalType: "uint256[]";
164
+ readonly name: "ids";
165
+ readonly type: "uint256[]";
166
+ }, {
167
+ readonly internalType: "uint256[]";
168
+ readonly name: "amounts";
169
+ readonly type: "uint256[]";
170
+ }, {
171
+ readonly internalType: "bytes";
172
+ readonly name: "data";
173
+ readonly type: "bytes";
174
+ }];
175
+ readonly name: "safeBatchTransferFrom";
176
+ readonly outputs: readonly [];
177
+ readonly stateMutability: "nonpayable";
178
+ readonly type: "function";
179
+ }, {
180
+ readonly inputs: readonly [{
181
+ readonly internalType: "address";
182
+ readonly name: "from";
183
+ readonly type: "address";
184
+ }, {
185
+ readonly internalType: "address";
186
+ readonly name: "to";
187
+ readonly type: "address";
188
+ }, {
189
+ readonly internalType: "uint256";
190
+ readonly name: "id";
191
+ readonly type: "uint256";
192
+ }, {
193
+ readonly internalType: "uint256";
194
+ readonly name: "amount";
195
+ readonly type: "uint256";
196
+ }, {
197
+ readonly internalType: "bytes";
198
+ readonly name: "data";
199
+ readonly type: "bytes";
200
+ }];
201
+ readonly name: "safeTransferFrom";
202
+ readonly outputs: readonly [];
203
+ readonly stateMutability: "nonpayable";
204
+ readonly type: "function";
205
+ }, {
206
+ readonly inputs: readonly [{
207
+ readonly internalType: "address";
208
+ readonly name: "operator";
209
+ readonly type: "address";
210
+ }, {
211
+ readonly internalType: "bool";
212
+ readonly name: "approved";
213
+ readonly type: "bool";
214
+ }];
215
+ readonly name: "setApprovalForAll";
216
+ readonly outputs: readonly [];
217
+ readonly stateMutability: "nonpayable";
218
+ readonly type: "function";
219
+ }];
220
+ static createInterface(): IERC1155Interface;
221
+ static connect(address: string, runner?: ContractRunner | null): IERC1155;
222
+ }
@@ -0,0 +1,25 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IERC1271, IERC1271Interface } from "../../../../../../@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271";
3
+ export declare class IERC1271__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "bytes32";
7
+ readonly name: "hash";
8
+ readonly type: "bytes32";
9
+ }, {
10
+ readonly internalType: "bytes";
11
+ readonly name: "signature";
12
+ readonly type: "bytes";
13
+ }];
14
+ readonly name: "isValidSignature";
15
+ readonly outputs: readonly [{
16
+ readonly internalType: "bytes4";
17
+ readonly name: "magicValue";
18
+ readonly type: "bytes4";
19
+ }];
20
+ readonly stateMutability: "view";
21
+ readonly type: "function";
22
+ }];
23
+ static createInterface(): IERC1271Interface;
24
+ static connect(address: string, runner?: ContractRunner | null): IERC1271;
25
+ }
@@ -0,0 +1,21 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IERC165, IERC165Interface } from "../../../../../../@looksrare/contracts-libs/contracts/interfaces/generic/IERC165";
3
+ export declare class IERC165__factory {
4
+ static readonly abi: readonly [{
5
+ readonly inputs: readonly [{
6
+ readonly internalType: "bytes4";
7
+ readonly name: "interfaceId";
8
+ readonly type: "bytes4";
9
+ }];
10
+ readonly name: "supportsInterface";
11
+ readonly outputs: readonly [{
12
+ readonly internalType: "bool";
13
+ readonly name: "";
14
+ readonly type: "bool";
15
+ }];
16
+ readonly stateMutability: "view";
17
+ readonly type: "function";
18
+ }];
19
+ static createInterface(): IERC165Interface;
20
+ static connect(address: string, runner?: ContractRunner | null): IERC165;
21
+ }
@@ -0,0 +1,147 @@
1
+ import { type ContractRunner } from "ethers";
2
+ import type { IERC20, IERC20Interface } from "../../../../../../@looksrare/contracts-libs/contracts/interfaces/generic/IERC20";
3
+ export declare class IERC20__factory {
4
+ static readonly abi: readonly [{
5
+ readonly anonymous: false;
6
+ readonly inputs: readonly [{
7
+ readonly indexed: true;
8
+ readonly internalType: "address";
9
+ readonly name: "owner";
10
+ readonly type: "address";
11
+ }, {
12
+ readonly indexed: true;
13
+ readonly internalType: "address";
14
+ readonly name: "spender";
15
+ readonly type: "address";
16
+ }, {
17
+ readonly indexed: false;
18
+ readonly internalType: "uint256";
19
+ readonly name: "value";
20
+ readonly type: "uint256";
21
+ }];
22
+ readonly name: "Approval";
23
+ readonly type: "event";
24
+ }, {
25
+ readonly anonymous: false;
26
+ readonly inputs: readonly [{
27
+ readonly indexed: true;
28
+ readonly internalType: "address";
29
+ readonly name: "from";
30
+ readonly type: "address";
31
+ }, {
32
+ readonly indexed: true;
33
+ readonly internalType: "address";
34
+ readonly name: "to";
35
+ readonly type: "address";
36
+ }, {
37
+ readonly indexed: false;
38
+ readonly internalType: "uint256";
39
+ readonly name: "value";
40
+ readonly type: "uint256";
41
+ }];
42
+ readonly name: "Transfer";
43
+ readonly type: "event";
44
+ }, {
45
+ readonly inputs: readonly [{
46
+ readonly internalType: "address";
47
+ readonly name: "owner";
48
+ readonly type: "address";
49
+ }, {
50
+ readonly internalType: "address";
51
+ readonly name: "spender";
52
+ readonly type: "address";
53
+ }];
54
+ readonly name: "allowance";
55
+ readonly outputs: readonly [{
56
+ readonly internalType: "uint256";
57
+ readonly name: "";
58
+ readonly type: "uint256";
59
+ }];
60
+ readonly stateMutability: "view";
61
+ readonly type: "function";
62
+ }, {
63
+ readonly inputs: readonly [{
64
+ readonly internalType: "address";
65
+ readonly name: "spender";
66
+ readonly type: "address";
67
+ }, {
68
+ readonly internalType: "uint256";
69
+ readonly name: "amount";
70
+ readonly type: "uint256";
71
+ }];
72
+ readonly name: "approve";
73
+ readonly outputs: readonly [{
74
+ readonly internalType: "bool";
75
+ readonly name: "";
76
+ readonly type: "bool";
77
+ }];
78
+ readonly stateMutability: "nonpayable";
79
+ readonly type: "function";
80
+ }, {
81
+ readonly inputs: readonly [{
82
+ readonly internalType: "address";
83
+ readonly name: "account";
84
+ readonly type: "address";
85
+ }];
86
+ readonly name: "balanceOf";
87
+ readonly outputs: readonly [{
88
+ readonly internalType: "uint256";
89
+ readonly name: "";
90
+ readonly type: "uint256";
91
+ }];
92
+ readonly stateMutability: "view";
93
+ readonly type: "function";
94
+ }, {
95
+ readonly inputs: readonly [];
96
+ readonly name: "totalSupply";
97
+ readonly outputs: readonly [{
98
+ readonly internalType: "uint256";
99
+ readonly name: "";
100
+ readonly type: "uint256";
101
+ }];
102
+ readonly stateMutability: "view";
103
+ readonly type: "function";
104
+ }, {
105
+ readonly inputs: readonly [{
106
+ readonly internalType: "address";
107
+ readonly name: "to";
108
+ readonly type: "address";
109
+ }, {
110
+ readonly internalType: "uint256";
111
+ readonly name: "amount";
112
+ readonly type: "uint256";
113
+ }];
114
+ readonly name: "transfer";
115
+ readonly outputs: readonly [{
116
+ readonly internalType: "bool";
117
+ readonly name: "";
118
+ readonly type: "bool";
119
+ }];
120
+ readonly stateMutability: "nonpayable";
121
+ readonly type: "function";
122
+ }, {
123
+ readonly inputs: readonly [{
124
+ readonly internalType: "address";
125
+ readonly name: "from";
126
+ readonly type: "address";
127
+ }, {
128
+ readonly internalType: "address";
129
+ readonly name: "to";
130
+ readonly type: "address";
131
+ }, {
132
+ readonly internalType: "uint256";
133
+ readonly name: "amount";
134
+ readonly type: "uint256";
135
+ }];
136
+ readonly name: "transferFrom";
137
+ readonly outputs: readonly [{
138
+ readonly internalType: "bool";
139
+ readonly name: "";
140
+ readonly type: "bool";
141
+ }];
142
+ readonly stateMutability: "nonpayable";
143
+ readonly type: "function";
144
+ }];
145
+ static createInterface(): IERC20Interface;
146
+ static connect(address: string, runner?: ContractRunner | null): IERC20;
147
+ }