@hypercerts-org/marketplace-sdk 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +4 -0
- package/LICENSE-APACHE +10 -0
- package/LICENSE-MIT +21 -0
- package/README.md +101 -0
- package/dist/LooksRare.d.ts +223 -0
- package/dist/abis/IERC1155.json +276 -0
- package/dist/abis/IERC20.json +185 -0
- package/dist/abis/IERC721.json +268 -0
- package/dist/abis/ILooksRareProtocol.json +677 -0
- package/dist/abis/ITransferManager.json +91 -0
- package/dist/abis/IWETH.json +46 -0
- package/dist/abis/LooksRareProtocol.json +1924 -0
- package/dist/abis/OrderValidatorV2A.json +410 -0
- package/dist/abis/ProtocolHelpers.json +366 -0
- package/dist/abis/TransferManager.json +492 -0
- package/dist/abis/WETH.json +361 -0
- package/dist/abis/index.d.ts +7 -0
- package/dist/abis/index.ts +7 -0
- package/dist/constants/addresses.d.ts +7 -0
- package/dist/constants/chains.d.ts +4 -0
- package/dist/constants/eip712.d.ts +10 -0
- package/dist/constants/index.d.ts +14 -0
- package/dist/errors.d.ts +30 -0
- package/dist/index.cjs.js +5251 -0
- package/dist/index.d.ts +45 -0
- package/dist/index.esm.js +5229 -0
- 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/types.d.ts +242 -0
- package/dist/utils/Eip712MakerMerkleTree.d.ts +10 -0
- package/dist/utils/Eip712MerkleTree.d.ts +40 -0
- package/dist/utils/calls/exchange.d.ts +10 -0
- package/dist/utils/calls/nonces.d.ts +9 -0
- package/dist/utils/calls/orderValidator.d.ts +3 -0
- package/dist/utils/calls/strategies.d.ts +3 -0
- package/dist/utils/calls/tokens.d.ts +6 -0
- package/dist/utils/calls/transferManager.d.ts +6 -0
- package/dist/utils/eip712.d.ts +12 -0
- package/dist/utils/encodeOrderParams.d.ts +22 -0
- package/dist/utils/signMakerOrders.d.ts +18 -0
- package/package.json +94 -0
@@ -0,0 +1,462 @@
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
2
|
+
import type { Signer, AddressLike, ContractDeployTransaction, ContractRunner } from "ethers";
|
3
|
+
import type { NonPayableOverrides } from "../../../../common";
|
4
|
+
import type { Verifier, VerifierInterface } from "../../../../src/contracts/tests/Verifier";
|
5
|
+
type VerifierConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
6
|
+
export declare class Verifier__factory extends ContractFactory {
|
7
|
+
constructor(...args: VerifierConstructorParams);
|
8
|
+
getDeployTransaction(_looksRareProtocol: AddressLike, overrides?: NonPayableOverrides & {
|
9
|
+
from?: string;
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
11
|
+
deploy(_looksRareProtocol: AddressLike, overrides?: NonPayableOverrides & {
|
12
|
+
from?: string;
|
13
|
+
}): Promise<Verifier & {
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
15
|
+
}>;
|
16
|
+
connect(runner: ContractRunner | null): Verifier__factory;
|
17
|
+
static readonly bytecode = "0x608060405234801561001057600080fd5b5060405161107838038061107883398101604081905261002f91610054565b600080546001600160a01b0319166001600160a01b0392909216919091179055610084565b60006020828403121561006657600080fd5b81516001600160a01b038116811461007d57600080fd5b9392505050565b610fe5806100936000396000f3fe608060405234801561001057600080fd5b50600436106100885760003560e01c80639bd2d29f1161005b5780639bd2d29f14610116578063bfbf50ff14610129578063cd271c5e1461013c578063ed24911d1461014f57600080fd5b80630ad584961461008d5780631a8a1fa1146100b5578063265981d8146100ca57806377a682c3146100eb575b600080fd5b6100a061009b366004610a33565b610157565b60405190151581526020015b60405180910390f35b6100c86100c3366004610aad565b61017d565b005b6100dd6100d8366004610b1e565b6101a3565b6040519081526020016100ac565b6000546100fe906001600160a01b031681565b6040516001600160a01b0390911681526020016100ac565b6100a0610124366004610d6a565b6102e2565b6100dd610137366004610da3565b6102ee565b6100dd61014a366004610da3565b6102ff565b6100dd6103c4565b600080610163866101a3565b905061017181848787610432565b50600195945050505050565b61019d61018984610dd7565b838361012461012088016101008901610de3565b50505050565b600080546040805163f698da2560e01b8152905183926001600160a01b03169163f698da259160048083019260209291908290030181865afa1580156101ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102119190610e05565b6000805485516020870151516040516343603b2160e11b81526004810192909252602482015292935090916001600160a01b03909116906386c0764290604401602060405180830381865afa15801561026e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102929190610e05565b905060405180604001604052806002815260200161190160f01b81525082826040516020016102c393929190610e42565b6040516020818303038152906040528051906020012092505050919050565b600080610163866102ff565b60006102f98261051b565b92915050565b600080546040805163f698da2560e01b8152905183926001600160a01b03169163f698da259160048083019260209291908290030181865afa158015610349573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061036d9190610e05565b905060405180604001604052806002815260200161190160f01b815250816103948561051b565b6040516020016103a693929190610e42565b60405160208183030381529060405280519060200120915050919050565b600080546040805163f698da2560e01b8152905183926001600160a01b03169163f698da259160048083019260209291908290030181865afa15801561040e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102f99190610e05565b826001600160a01b03163b60000361048057826001600160a01b0316610459858484610687565b6001600160a01b03161461019d5760405163d1085d1b60e01b815260040160405180910390fd5b604051630b135d3f60e11b808252906001600160a01b03851690631626ba7e906104b290889087908790600401610e69565b602060405180830381865afa1580156104cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104f39190610e9f565b6001600160e01b0319161461019d5760405163f6cd0e2f60e01b815260040160405180910390fd5b60007e3c1bce41a2de73dfe64d6eeb2b3d7f15f1c0c382d9d963c2c6daeb75f0e539826000015183602001518460400151856060015186608001518760a001518860c001518960e0015160405160200161057d99989796959493929190610ee7565b6040516020818303038152906040528261010001518361012001518461014001518561016001518661018001516040516020016105ba9190610f4a565b60405160208183030381529060405280519060200120876101a001516040516020016105e69190610f4a565b60408051601f1981840301815282825280516020918201206101c08c01518051908301206001600160a01b0390991691840191909152908201959095526060810193909352608083019190915260a082015260c081019190915260e08101919091526101000160408051601f198184030181529082905261066a9291602001610f80565b604051602081830303815290604052805190602001209050919050565b6000806000806106978686610730565b6040805160008152602081018083528c905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa1580156106f2573d6000803e3d6000fd5b5050604051601f1901519450506001600160a01b0384166107265760405163f05a20c760e01b815260040160405180910390fd5b5050509392505050565b60008080836041819003610758578535935060208601359250604086013560001a91506107a4565b8060400361078357853593506001600160ff1b036020870135908116935060ff1c601b0191506107a4565b60405163d42b4bbd60e01b8152600481018290526024015b60405180910390fd5b7f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156107e5576040516360c2892960e11b815260040160405180910390fd5b8160ff16601b141580156107fd57508160ff16601c14155b156108205760405163105e24e960e21b815260ff8316600482015260240161079b565b509250925092565b634e487b7160e01b600052604160045260246000fd5b604080519081016001600160401b038111828210171561086057610860610828565b60405290565b6040516101e081016001600160401b038111828210171561086057610860610828565b604051601f8201601f191681016001600160401b03811182821017156108b1576108b1610828565b604052919050565b60006001600160401b038211156108d2576108d2610828565b5060051b60200190565b600281106108e957600080fd5b50565b80356108f7816108dc565b919050565b6000604080838503121561090f57600080fd5b61091761083e565b9150823582526020808401356001600160401b0381111561093757600080fd5b8401601f8101861361094857600080fd5b803561095b610956826108b9565b610889565b81815260069190911b8201830190838101908883111561097a57600080fd5b928401925b828410156109c35785848a0312156109975760008081fd5b61099f61083e565b84358152858501356109b0816108dc565b818701528252928501929084019061097f565b808588015250505050505092915050565b60008083601f8401126109e657600080fd5b5081356001600160401b038111156109fd57600080fd5b602083019150836020828501011115610a1557600080fd5b9250929050565b80356001600160a01b03811681146108f757600080fd5b60008060008060608587031215610a4957600080fd5b84356001600160401b0380821115610a6057600080fd5b610a6c888389016108fc565b95506020870135915080821115610a8257600080fd5b50610a8f878288016109d4565b9094509250610aa2905060408601610a1c565b905092959194509250565b600080600060408486031215610ac257600080fd5b83356001600160401b0380821115610ad957600080fd5b908501906101e08288031215610aee57600080fd5b90935060208501359080821115610b0457600080fd5b50610b11868287016109d4565b9497909650939450505050565b600060208284031215610b3057600080fd5b81356001600160401b03811115610b4657600080fd5b610b52848285016108fc565b949350505050565b600082601f830112610b6b57600080fd5b81356020610b7b610956836108b9565b82815260059290921b84018101918181019086841115610b9a57600080fd5b8286015b84811015610bb55780358352918301918301610b9e565b509695505050505050565b600082601f830112610bd157600080fd5b81356001600160401b03811115610bea57610bea610828565b610bfd601f8201601f1916602001610889565b818152846020838601011115610c1257600080fd5b816020850160208301376000918101602001919091529392505050565b60006101e08284031215610c4257600080fd5b610c4a610866565b9050610c55826108ec565b815260208201356020820152604082013560408201526060820135606082015260808201356080820152610c8b60a083016108ec565b60a0820152610c9c60c08301610a1c565b60c0820152610cad60e08301610a1c565b60e0820152610100610cc0818401610a1c565b90820152610120828101359082015261014080830135908201526101608083013590820152610180808301356001600160401b0380821115610d0157600080fd5b610d0d86838701610b5a565b838501526101a0925082850135915080821115610d2957600080fd5b610d3586838701610b5a565b838501526101c0925082850135915080821115610d5157600080fd5b50610d5e85828601610bc0565b82840152505092915050565b60008060008060608587031215610d8057600080fd5b84356001600160401b0380821115610d9757600080fd5b610a6c88838901610c2f565b600060208284031215610db557600080fd5b81356001600160401b03811115610dcb57600080fd5b610b5284828501610c2f565b60006102f93683610c2f565b600060208284031215610df557600080fd5b610dfe82610a1c565b9392505050565b600060208284031215610e1757600080fd5b5051919050565b60005b83811015610e39578181015183820152602001610e21565b50506000910152565b60008451610e54818460208901610e1e565b91909101928352506020820152604001919050565b83815260406020820152816040820152818360608301376000818301606090810191909152601f909201601f1916010192915050565b600060208284031215610eb157600080fd5b81516001600160e01b031981168114610dfe57600080fd5b600281106108e957634e487b7160e01b600052602160045260246000fd5b8981526101208101610ef88a610ec9565b8960208301528860408301528760608301528660808301528560a0830152610f1f85610ec9565b60c08201949094526001600160a01b0392831660e08201529116610100909101529695505050505050565b815160009082906020808601845b83811015610f7457815185529382019390820190600101610f58565b50929695505050505050565b60008351610f92818460208801610e1e565b835190830190610fa6818360208801610e1e565b0194935050505056fea2646970667358221220e357f8136ddf2253aae66ded2913ceed258ff283e66a82889fe893c93d583eb964736f6c63430008110033";
|
18
|
+
static readonly abi: readonly [{
|
19
|
+
readonly inputs: readonly [{
|
20
|
+
readonly internalType: "address";
|
21
|
+
readonly name: "_looksRareProtocol";
|
22
|
+
readonly type: "address";
|
23
|
+
}];
|
24
|
+
readonly stateMutability: "nonpayable";
|
25
|
+
readonly type: "constructor";
|
26
|
+
}, {
|
27
|
+
readonly inputs: readonly [];
|
28
|
+
readonly name: "NullSignerAddress";
|
29
|
+
readonly type: "error";
|
30
|
+
}, {
|
31
|
+
readonly inputs: readonly [];
|
32
|
+
readonly name: "SignatureEOAInvalid";
|
33
|
+
readonly type: "error";
|
34
|
+
}, {
|
35
|
+
readonly inputs: readonly [];
|
36
|
+
readonly name: "SignatureERC1271Invalid";
|
37
|
+
readonly type: "error";
|
38
|
+
}, {
|
39
|
+
readonly inputs: readonly [{
|
40
|
+
readonly internalType: "uint256";
|
41
|
+
readonly name: "length";
|
42
|
+
readonly type: "uint256";
|
43
|
+
}];
|
44
|
+
readonly name: "SignatureLengthInvalid";
|
45
|
+
readonly type: "error";
|
46
|
+
}, {
|
47
|
+
readonly inputs: readonly [];
|
48
|
+
readonly name: "SignatureParameterSInvalid";
|
49
|
+
readonly type: "error";
|
50
|
+
}, {
|
51
|
+
readonly inputs: readonly [{
|
52
|
+
readonly internalType: "uint8";
|
53
|
+
readonly name: "v";
|
54
|
+
readonly type: "uint8";
|
55
|
+
}];
|
56
|
+
readonly name: "SignatureParameterVInvalid";
|
57
|
+
readonly type: "error";
|
58
|
+
}, {
|
59
|
+
readonly inputs: readonly [{
|
60
|
+
readonly components: readonly [{
|
61
|
+
readonly internalType: "bytes32";
|
62
|
+
readonly name: "root";
|
63
|
+
readonly type: "bytes32";
|
64
|
+
}, {
|
65
|
+
readonly components: readonly [{
|
66
|
+
readonly internalType: "bytes32";
|
67
|
+
readonly name: "value";
|
68
|
+
readonly type: "bytes32";
|
69
|
+
}, {
|
70
|
+
readonly internalType: "enum OrderStructs.MerkleTreeNodePosition";
|
71
|
+
readonly name: "position";
|
72
|
+
readonly type: "uint8";
|
73
|
+
}];
|
74
|
+
readonly internalType: "struct OrderStructs.MerkleTreeNode[]";
|
75
|
+
readonly name: "proof";
|
76
|
+
readonly type: "tuple[]";
|
77
|
+
}];
|
78
|
+
readonly internalType: "struct OrderStructs.MerkleTree";
|
79
|
+
readonly name: "merkleTree";
|
80
|
+
readonly type: "tuple";
|
81
|
+
}];
|
82
|
+
readonly name: "computeDigestMerkleTree";
|
83
|
+
readonly outputs: readonly [{
|
84
|
+
readonly internalType: "bytes32";
|
85
|
+
readonly name: "digest";
|
86
|
+
readonly type: "bytes32";
|
87
|
+
}];
|
88
|
+
readonly stateMutability: "view";
|
89
|
+
readonly type: "function";
|
90
|
+
}, {
|
91
|
+
readonly inputs: readonly [{
|
92
|
+
readonly components: readonly [{
|
93
|
+
readonly internalType: "enum QuoteType";
|
94
|
+
readonly name: "quoteType";
|
95
|
+
readonly type: "uint8";
|
96
|
+
}, {
|
97
|
+
readonly internalType: "uint256";
|
98
|
+
readonly name: "globalNonce";
|
99
|
+
readonly type: "uint256";
|
100
|
+
}, {
|
101
|
+
readonly internalType: "uint256";
|
102
|
+
readonly name: "subsetNonce";
|
103
|
+
readonly type: "uint256";
|
104
|
+
}, {
|
105
|
+
readonly internalType: "uint256";
|
106
|
+
readonly name: "orderNonce";
|
107
|
+
readonly type: "uint256";
|
108
|
+
}, {
|
109
|
+
readonly internalType: "uint256";
|
110
|
+
readonly name: "strategyId";
|
111
|
+
readonly type: "uint256";
|
112
|
+
}, {
|
113
|
+
readonly internalType: "enum CollectionType";
|
114
|
+
readonly name: "collectionType";
|
115
|
+
readonly type: "uint8";
|
116
|
+
}, {
|
117
|
+
readonly internalType: "address";
|
118
|
+
readonly name: "collection";
|
119
|
+
readonly type: "address";
|
120
|
+
}, {
|
121
|
+
readonly internalType: "address";
|
122
|
+
readonly name: "currency";
|
123
|
+
readonly type: "address";
|
124
|
+
}, {
|
125
|
+
readonly internalType: "address";
|
126
|
+
readonly name: "signer";
|
127
|
+
readonly type: "address";
|
128
|
+
}, {
|
129
|
+
readonly internalType: "uint256";
|
130
|
+
readonly name: "startTime";
|
131
|
+
readonly type: "uint256";
|
132
|
+
}, {
|
133
|
+
readonly internalType: "uint256";
|
134
|
+
readonly name: "endTime";
|
135
|
+
readonly type: "uint256";
|
136
|
+
}, {
|
137
|
+
readonly internalType: "uint256";
|
138
|
+
readonly name: "price";
|
139
|
+
readonly type: "uint256";
|
140
|
+
}, {
|
141
|
+
readonly internalType: "uint256[]";
|
142
|
+
readonly name: "itemIds";
|
143
|
+
readonly type: "uint256[]";
|
144
|
+
}, {
|
145
|
+
readonly internalType: "uint256[]";
|
146
|
+
readonly name: "amounts";
|
147
|
+
readonly type: "uint256[]";
|
148
|
+
}, {
|
149
|
+
readonly internalType: "bytes";
|
150
|
+
readonly name: "additionalParameters";
|
151
|
+
readonly type: "bytes";
|
152
|
+
}];
|
153
|
+
readonly internalType: "struct OrderStructs.Maker";
|
154
|
+
readonly name: "maker";
|
155
|
+
readonly type: "tuple";
|
156
|
+
}];
|
157
|
+
readonly name: "computeMakerDigest";
|
158
|
+
readonly outputs: readonly [{
|
159
|
+
readonly internalType: "bytes32";
|
160
|
+
readonly name: "digest";
|
161
|
+
readonly type: "bytes32";
|
162
|
+
}];
|
163
|
+
readonly stateMutability: "view";
|
164
|
+
readonly type: "function";
|
165
|
+
}, {
|
166
|
+
readonly inputs: readonly [];
|
167
|
+
readonly name: "getDomainSeparator";
|
168
|
+
readonly outputs: readonly [{
|
169
|
+
readonly internalType: "bytes32";
|
170
|
+
readonly name: "";
|
171
|
+
readonly type: "bytes32";
|
172
|
+
}];
|
173
|
+
readonly stateMutability: "view";
|
174
|
+
readonly type: "function";
|
175
|
+
}, {
|
176
|
+
readonly inputs: readonly [{
|
177
|
+
readonly components: readonly [{
|
178
|
+
readonly internalType: "enum QuoteType";
|
179
|
+
readonly name: "quoteType";
|
180
|
+
readonly type: "uint8";
|
181
|
+
}, {
|
182
|
+
readonly internalType: "uint256";
|
183
|
+
readonly name: "globalNonce";
|
184
|
+
readonly type: "uint256";
|
185
|
+
}, {
|
186
|
+
readonly internalType: "uint256";
|
187
|
+
readonly name: "subsetNonce";
|
188
|
+
readonly type: "uint256";
|
189
|
+
}, {
|
190
|
+
readonly internalType: "uint256";
|
191
|
+
readonly name: "orderNonce";
|
192
|
+
readonly type: "uint256";
|
193
|
+
}, {
|
194
|
+
readonly internalType: "uint256";
|
195
|
+
readonly name: "strategyId";
|
196
|
+
readonly type: "uint256";
|
197
|
+
}, {
|
198
|
+
readonly internalType: "enum CollectionType";
|
199
|
+
readonly name: "collectionType";
|
200
|
+
readonly type: "uint8";
|
201
|
+
}, {
|
202
|
+
readonly internalType: "address";
|
203
|
+
readonly name: "collection";
|
204
|
+
readonly type: "address";
|
205
|
+
}, {
|
206
|
+
readonly internalType: "address";
|
207
|
+
readonly name: "currency";
|
208
|
+
readonly type: "address";
|
209
|
+
}, {
|
210
|
+
readonly internalType: "address";
|
211
|
+
readonly name: "signer";
|
212
|
+
readonly type: "address";
|
213
|
+
}, {
|
214
|
+
readonly internalType: "uint256";
|
215
|
+
readonly name: "startTime";
|
216
|
+
readonly type: "uint256";
|
217
|
+
}, {
|
218
|
+
readonly internalType: "uint256";
|
219
|
+
readonly name: "endTime";
|
220
|
+
readonly type: "uint256";
|
221
|
+
}, {
|
222
|
+
readonly internalType: "uint256";
|
223
|
+
readonly name: "price";
|
224
|
+
readonly type: "uint256";
|
225
|
+
}, {
|
226
|
+
readonly internalType: "uint256[]";
|
227
|
+
readonly name: "itemIds";
|
228
|
+
readonly type: "uint256[]";
|
229
|
+
}, {
|
230
|
+
readonly internalType: "uint256[]";
|
231
|
+
readonly name: "amounts";
|
232
|
+
readonly type: "uint256[]";
|
233
|
+
}, {
|
234
|
+
readonly internalType: "bytes";
|
235
|
+
readonly name: "additionalParameters";
|
236
|
+
readonly type: "bytes";
|
237
|
+
}];
|
238
|
+
readonly internalType: "struct OrderStructs.Maker";
|
239
|
+
readonly name: "maker";
|
240
|
+
readonly type: "tuple";
|
241
|
+
}];
|
242
|
+
readonly name: "getMakerHash";
|
243
|
+
readonly outputs: readonly [{
|
244
|
+
readonly internalType: "bytes32";
|
245
|
+
readonly name: "orderHash";
|
246
|
+
readonly type: "bytes32";
|
247
|
+
}];
|
248
|
+
readonly stateMutability: "pure";
|
249
|
+
readonly type: "function";
|
250
|
+
}, {
|
251
|
+
readonly inputs: readonly [];
|
252
|
+
readonly name: "looksRareProtocol";
|
253
|
+
readonly outputs: readonly [{
|
254
|
+
readonly internalType: "contract LooksRareProtocol";
|
255
|
+
readonly name: "";
|
256
|
+
readonly type: "address";
|
257
|
+
}];
|
258
|
+
readonly stateMutability: "view";
|
259
|
+
readonly type: "function";
|
260
|
+
}, {
|
261
|
+
readonly inputs: readonly [{
|
262
|
+
readonly components: readonly [{
|
263
|
+
readonly internalType: "enum QuoteType";
|
264
|
+
readonly name: "quoteType";
|
265
|
+
readonly type: "uint8";
|
266
|
+
}, {
|
267
|
+
readonly internalType: "uint256";
|
268
|
+
readonly name: "globalNonce";
|
269
|
+
readonly type: "uint256";
|
270
|
+
}, {
|
271
|
+
readonly internalType: "uint256";
|
272
|
+
readonly name: "subsetNonce";
|
273
|
+
readonly type: "uint256";
|
274
|
+
}, {
|
275
|
+
readonly internalType: "uint256";
|
276
|
+
readonly name: "orderNonce";
|
277
|
+
readonly type: "uint256";
|
278
|
+
}, {
|
279
|
+
readonly internalType: "uint256";
|
280
|
+
readonly name: "strategyId";
|
281
|
+
readonly type: "uint256";
|
282
|
+
}, {
|
283
|
+
readonly internalType: "enum CollectionType";
|
284
|
+
readonly name: "collectionType";
|
285
|
+
readonly type: "uint8";
|
286
|
+
}, {
|
287
|
+
readonly internalType: "address";
|
288
|
+
readonly name: "collection";
|
289
|
+
readonly type: "address";
|
290
|
+
}, {
|
291
|
+
readonly internalType: "address";
|
292
|
+
readonly name: "currency";
|
293
|
+
readonly type: "address";
|
294
|
+
}, {
|
295
|
+
readonly internalType: "address";
|
296
|
+
readonly name: "signer";
|
297
|
+
readonly type: "address";
|
298
|
+
}, {
|
299
|
+
readonly internalType: "uint256";
|
300
|
+
readonly name: "startTime";
|
301
|
+
readonly type: "uint256";
|
302
|
+
}, {
|
303
|
+
readonly internalType: "uint256";
|
304
|
+
readonly name: "endTime";
|
305
|
+
readonly type: "uint256";
|
306
|
+
}, {
|
307
|
+
readonly internalType: "uint256";
|
308
|
+
readonly name: "price";
|
309
|
+
readonly type: "uint256";
|
310
|
+
}, {
|
311
|
+
readonly internalType: "uint256[]";
|
312
|
+
readonly name: "itemIds";
|
313
|
+
readonly type: "uint256[]";
|
314
|
+
}, {
|
315
|
+
readonly internalType: "uint256[]";
|
316
|
+
readonly name: "amounts";
|
317
|
+
readonly type: "uint256[]";
|
318
|
+
}, {
|
319
|
+
readonly internalType: "bytes";
|
320
|
+
readonly name: "additionalParameters";
|
321
|
+
readonly type: "bytes";
|
322
|
+
}];
|
323
|
+
readonly internalType: "struct OrderStructs.Maker";
|
324
|
+
readonly name: "maker";
|
325
|
+
readonly type: "tuple";
|
326
|
+
}, {
|
327
|
+
readonly internalType: "bytes";
|
328
|
+
readonly name: "makerSignature";
|
329
|
+
readonly type: "bytes";
|
330
|
+
}, {
|
331
|
+
readonly internalType: "address";
|
332
|
+
readonly name: "signer";
|
333
|
+
readonly type: "address";
|
334
|
+
}];
|
335
|
+
readonly name: "verifyMakerSignature";
|
336
|
+
readonly outputs: readonly [{
|
337
|
+
readonly internalType: "bool";
|
338
|
+
readonly name: "";
|
339
|
+
readonly type: "bool";
|
340
|
+
}];
|
341
|
+
readonly stateMutability: "view";
|
342
|
+
readonly type: "function";
|
343
|
+
}, {
|
344
|
+
readonly inputs: readonly [{
|
345
|
+
readonly components: readonly [{
|
346
|
+
readonly internalType: "bytes32";
|
347
|
+
readonly name: "root";
|
348
|
+
readonly type: "bytes32";
|
349
|
+
}, {
|
350
|
+
readonly components: readonly [{
|
351
|
+
readonly internalType: "bytes32";
|
352
|
+
readonly name: "value";
|
353
|
+
readonly type: "bytes32";
|
354
|
+
}, {
|
355
|
+
readonly internalType: "enum OrderStructs.MerkleTreeNodePosition";
|
356
|
+
readonly name: "position";
|
357
|
+
readonly type: "uint8";
|
358
|
+
}];
|
359
|
+
readonly internalType: "struct OrderStructs.MerkleTreeNode[]";
|
360
|
+
readonly name: "proof";
|
361
|
+
readonly type: "tuple[]";
|
362
|
+
}];
|
363
|
+
readonly internalType: "struct OrderStructs.MerkleTree";
|
364
|
+
readonly name: "merkleTree";
|
365
|
+
readonly type: "tuple";
|
366
|
+
}, {
|
367
|
+
readonly internalType: "bytes";
|
368
|
+
readonly name: "makerSignature";
|
369
|
+
readonly type: "bytes";
|
370
|
+
}, {
|
371
|
+
readonly internalType: "address";
|
372
|
+
readonly name: "signer";
|
373
|
+
readonly type: "address";
|
374
|
+
}];
|
375
|
+
readonly name: "verifyMerkleTree";
|
376
|
+
readonly outputs: readonly [{
|
377
|
+
readonly internalType: "bool";
|
378
|
+
readonly name: "";
|
379
|
+
readonly type: "bool";
|
380
|
+
}];
|
381
|
+
readonly stateMutability: "view";
|
382
|
+
readonly type: "function";
|
383
|
+
}, {
|
384
|
+
readonly inputs: readonly [{
|
385
|
+
readonly components: readonly [{
|
386
|
+
readonly internalType: "enum QuoteType";
|
387
|
+
readonly name: "quoteType";
|
388
|
+
readonly type: "uint8";
|
389
|
+
}, {
|
390
|
+
readonly internalType: "uint256";
|
391
|
+
readonly name: "globalNonce";
|
392
|
+
readonly type: "uint256";
|
393
|
+
}, {
|
394
|
+
readonly internalType: "uint256";
|
395
|
+
readonly name: "subsetNonce";
|
396
|
+
readonly type: "uint256";
|
397
|
+
}, {
|
398
|
+
readonly internalType: "uint256";
|
399
|
+
readonly name: "orderNonce";
|
400
|
+
readonly type: "uint256";
|
401
|
+
}, {
|
402
|
+
readonly internalType: "uint256";
|
403
|
+
readonly name: "strategyId";
|
404
|
+
readonly type: "uint256";
|
405
|
+
}, {
|
406
|
+
readonly internalType: "enum CollectionType";
|
407
|
+
readonly name: "collectionType";
|
408
|
+
readonly type: "uint8";
|
409
|
+
}, {
|
410
|
+
readonly internalType: "address";
|
411
|
+
readonly name: "collection";
|
412
|
+
readonly type: "address";
|
413
|
+
}, {
|
414
|
+
readonly internalType: "address";
|
415
|
+
readonly name: "currency";
|
416
|
+
readonly type: "address";
|
417
|
+
}, {
|
418
|
+
readonly internalType: "address";
|
419
|
+
readonly name: "signer";
|
420
|
+
readonly type: "address";
|
421
|
+
}, {
|
422
|
+
readonly internalType: "uint256";
|
423
|
+
readonly name: "startTime";
|
424
|
+
readonly type: "uint256";
|
425
|
+
}, {
|
426
|
+
readonly internalType: "uint256";
|
427
|
+
readonly name: "endTime";
|
428
|
+
readonly type: "uint256";
|
429
|
+
}, {
|
430
|
+
readonly internalType: "uint256";
|
431
|
+
readonly name: "price";
|
432
|
+
readonly type: "uint256";
|
433
|
+
}, {
|
434
|
+
readonly internalType: "uint256[]";
|
435
|
+
readonly name: "itemIds";
|
436
|
+
readonly type: "uint256[]";
|
437
|
+
}, {
|
438
|
+
readonly internalType: "uint256[]";
|
439
|
+
readonly name: "amounts";
|
440
|
+
readonly type: "uint256[]";
|
441
|
+
}, {
|
442
|
+
readonly internalType: "bytes";
|
443
|
+
readonly name: "additionalParameters";
|
444
|
+
readonly type: "bytes";
|
445
|
+
}];
|
446
|
+
readonly internalType: "struct OrderStructs.Maker";
|
447
|
+
readonly name: "maker";
|
448
|
+
readonly type: "tuple";
|
449
|
+
}, {
|
450
|
+
readonly internalType: "bytes";
|
451
|
+
readonly name: "signature";
|
452
|
+
readonly type: "bytes";
|
453
|
+
}];
|
454
|
+
readonly name: "verifySignature";
|
455
|
+
readonly outputs: readonly [];
|
456
|
+
readonly stateMutability: "view";
|
457
|
+
readonly type: "function";
|
458
|
+
}];
|
459
|
+
static createInterface(): VerifierInterface;
|
460
|
+
static connect(address: string, runner?: ContractRunner | null): Verifier;
|
461
|
+
}
|
462
|
+
export {};
|
@@ -0,0 +1 @@
|
|
1
|
+
export * as contracts from "./contracts";
|
@@ -0,0 +1,97 @@
|
|
1
|
+
import type * as looksrare from "./@looksrare";
|
2
|
+
export type { looksrare };
|
3
|
+
import type * as solmate from "./solmate";
|
4
|
+
export type { solmate };
|
5
|
+
import type * as src from "./src";
|
6
|
+
export type { src };
|
7
|
+
export * as factories from "./factories";
|
8
|
+
export type { AffiliateManager } from "./@looksrare/contracts-exchange-v2/contracts/AffiliateManager";
|
9
|
+
export { AffiliateManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/AffiliateManager__factory";
|
10
|
+
export type { BatchOrderTypehashRegistry } from "./@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry";
|
11
|
+
export { BatchOrderTypehashRegistry__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/BatchOrderTypehashRegistry__factory";
|
12
|
+
export type { CreatorFeeManagerWithRoyalties } from "./@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties";
|
13
|
+
export { CreatorFeeManagerWithRoyalties__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/CreatorFeeManagerWithRoyalties__factory";
|
14
|
+
export type { CurrencyManager } from "./@looksrare/contracts-exchange-v2/contracts/CurrencyManager";
|
15
|
+
export { CurrencyManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/CurrencyManager__factory";
|
16
|
+
export type { ExecutionManager } from "./@looksrare/contracts-exchange-v2/contracts/ExecutionManager";
|
17
|
+
export { ExecutionManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/ExecutionManager__factory";
|
18
|
+
export type { BaseStrategy } from "./@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy";
|
19
|
+
export { BaseStrategy__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/BaseStrategy__factory";
|
20
|
+
export type { StrategyCollectionOffer } from "./@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer";
|
21
|
+
export { StrategyCollectionOffer__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/executionStrategies/StrategyCollectionOffer__factory";
|
22
|
+
export type { OrderValidatorV2A } from "./@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A";
|
23
|
+
export { OrderValidatorV2A__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/helpers/OrderValidatorV2A__factory";
|
24
|
+
export type { ProtocolHelpers } from "./@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers";
|
25
|
+
export { ProtocolHelpers__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/helpers/ProtocolHelpers__factory";
|
26
|
+
export type { IAffiliateManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager";
|
27
|
+
export { IAffiliateManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IAffiliateManager__factory";
|
28
|
+
export type { ICreatorFeeManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager";
|
29
|
+
export { ICreatorFeeManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICreatorFeeManager__factory";
|
30
|
+
export type { ICurrencyManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager";
|
31
|
+
export { ICurrencyManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ICurrencyManager__factory";
|
32
|
+
export type { IExecutionManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager";
|
33
|
+
export { IExecutionManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IExecutionManager__factory";
|
34
|
+
export type { ILooksRareProtocol } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol";
|
35
|
+
export { ILooksRareProtocol__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ILooksRareProtocol__factory";
|
36
|
+
export type { INonceManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager";
|
37
|
+
export { INonceManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/INonceManager__factory";
|
38
|
+
export type { IRoyaltyFeeRegistry } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry";
|
39
|
+
export { IRoyaltyFeeRegistry__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IRoyaltyFeeRegistry__factory";
|
40
|
+
export type { IStrategy } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy";
|
41
|
+
export { IStrategy__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategy__factory";
|
42
|
+
export type { IStrategyManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager";
|
43
|
+
export { IStrategyManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/IStrategyManager__factory";
|
44
|
+
export type { ITransferManager } from "./@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager";
|
45
|
+
export { ITransferManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/interfaces/ITransferManager__factory";
|
46
|
+
export type { LooksRareProtocol } from "./@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol";
|
47
|
+
export { LooksRareProtocol__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/LooksRareProtocol__factory";
|
48
|
+
export type { NonceManager } from "./@looksrare/contracts-exchange-v2/contracts/NonceManager";
|
49
|
+
export { NonceManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/NonceManager__factory";
|
50
|
+
export type { StrategyManager } from "./@looksrare/contracts-exchange-v2/contracts/StrategyManager";
|
51
|
+
export { StrategyManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/StrategyManager__factory";
|
52
|
+
export type { TransferManager } from "./@looksrare/contracts-exchange-v2/contracts/TransferManager";
|
53
|
+
export { TransferManager__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/TransferManager__factory";
|
54
|
+
export type { TransferSelectorNFT } from "./@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT";
|
55
|
+
export { TransferSelectorNFT__factory } from "./factories/@looksrare/contracts-exchange-v2/contracts/TransferSelectorNFT__factory";
|
56
|
+
export type { MockRoyaltyFeeRegistry } from "./@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry";
|
57
|
+
export { MockRoyaltyFeeRegistry__factory } from "./factories/@looksrare/contracts-exchange-v2/test/mock/MockRoyaltyFeeRegistry__factory";
|
58
|
+
export type { IERC1155 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155";
|
59
|
+
export { IERC1155__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1155__factory";
|
60
|
+
export type { IERC1271 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271";
|
61
|
+
export { IERC1271__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC1271__factory";
|
62
|
+
export type { IERC165 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC165";
|
63
|
+
export { IERC165__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC165__factory";
|
64
|
+
export type { IERC20 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC20";
|
65
|
+
export { IERC20__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC20__factory";
|
66
|
+
export type { IERC2981 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981";
|
67
|
+
export { IERC2981__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC2981__factory";
|
68
|
+
export type { IERC721 } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IERC721";
|
69
|
+
export { IERC721__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IERC721__factory";
|
70
|
+
export type { IWETH } from "./@looksrare/contracts-libs/contracts/interfaces/generic/IWETH";
|
71
|
+
export { IWETH__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/generic/IWETH__factory";
|
72
|
+
export type { IOwnableTwoSteps } from "./@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps";
|
73
|
+
export { IOwnableTwoSteps__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/IOwnableTwoSteps__factory";
|
74
|
+
export type { IReentrancyGuard } from "./@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard";
|
75
|
+
export { IReentrancyGuard__factory } from "./factories/@looksrare/contracts-libs/contracts/interfaces/IReentrancyGuard__factory";
|
76
|
+
export type { OwnableTwoSteps } from "./@looksrare/contracts-libs/contracts/OwnableTwoSteps";
|
77
|
+
export { OwnableTwoSteps__factory } from "./factories/@looksrare/contracts-libs/contracts/OwnableTwoSteps__factory";
|
78
|
+
export type { PackableReentrancyGuard } from "./@looksrare/contracts-libs/contracts/PackableReentrancyGuard";
|
79
|
+
export { PackableReentrancyGuard__factory } from "./factories/@looksrare/contracts-libs/contracts/PackableReentrancyGuard__factory";
|
80
|
+
export type { ERC1155 } from "./solmate/src/tokens/ERC1155.sol/ERC1155";
|
81
|
+
export { ERC1155__factory } from "./factories/solmate/src/tokens/ERC1155.sol/ERC1155__factory";
|
82
|
+
export type { ERC1155TokenReceiver } from "./solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver";
|
83
|
+
export { ERC1155TokenReceiver__factory } from "./factories/solmate/src/tokens/ERC1155.sol/ERC1155TokenReceiver__factory";
|
84
|
+
export type { ERC20 } from "./solmate/src/tokens/ERC20";
|
85
|
+
export { ERC20__factory } from "./factories/solmate/src/tokens/ERC20__factory";
|
86
|
+
export type { ERC721 } from "./solmate/src/tokens/ERC721.sol/ERC721";
|
87
|
+
export { ERC721__factory } from "./factories/solmate/src/tokens/ERC721.sol/ERC721__factory";
|
88
|
+
export type { ERC721TokenReceiver } from "./solmate/src/tokens/ERC721.sol/ERC721TokenReceiver";
|
89
|
+
export { ERC721TokenReceiver__factory } from "./factories/solmate/src/tokens/ERC721.sol/ERC721TokenReceiver__factory";
|
90
|
+
export type { WETH } from "./solmate/src/tokens/WETH";
|
91
|
+
export { WETH__factory } from "./factories/solmate/src/tokens/WETH__factory";
|
92
|
+
export type { MockERC1155 } from "./src/contracts/tests/MockERC1155";
|
93
|
+
export { MockERC1155__factory } from "./factories/src/contracts/tests/MockERC1155__factory";
|
94
|
+
export type { MockERC721 } from "./src/contracts/tests/MockERC721";
|
95
|
+
export { MockERC721__factory } from "./factories/src/contracts/tests/MockERC721__factory";
|
96
|
+
export type { Verifier } from "./src/contracts/tests/Verifier";
|
97
|
+
export { Verifier__factory } from "./factories/src/contracts/tests/Verifier__factory";
|