televerse-dao-typechain-types 1.0.5-alpha-1 → 1.0.6-alpha.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/package.json +18 -6
- package/typechain-types/@openzeppelin/contracts/access/AccessControl.d.ts +159 -0
- package/typechain-types/@openzeppelin/contracts/access/IAccessControl.d.ts +147 -0
- package/typechain-types/@openzeppelin/contracts/access/Ownable.d.ts +54 -0
- package/typechain-types/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/governance/Governor.d.ts +635 -0
- package/typechain-types/@openzeppelin/contracts/governance/IGovernor.d.ts +488 -0
- package/typechain-types/@openzeppelin/contracts/governance/TimelockController.d.ts +526 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple.d.ts +663 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorSettings.d.ts +720 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl.d.ts +662 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotes.d.ts +639 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction.d.ts +688 -0
- package/typechain-types/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/governance/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/IVotes.d.ts +134 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/Votes.d.ts +201 -0
- package/typechain-types/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/index.d.ts +10 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC1271.d.ts +35 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower.d.ts +41 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC3156FlashLender.d.ts +57 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC4906.d.ts +231 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5267.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC5805.d.ts +142 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/IERC6372.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/@openzeppelin/contracts/interfaces/index.d.ts +9 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/ERC1155.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155.d.ts +232 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.d.ts +75 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.d.ts +268 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.d.ts +268 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.d.ts +252 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.d.ts +75 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/ERC20.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.d.ts +159 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint.d.ts +177 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.d.ts +173 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit.d.ts +236 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes.d.ts +347 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.d.ts +141 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.d.ts +61 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/SafeERC20.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/ERC721.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721Receiver.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.d.ts +215 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.d.ts +233 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable.d.ts +243 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.d.ts +243 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.d.ts +221 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.d.ts +211 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/index.d.ts +7 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.d.ts +39 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/@openzeppelin/contracts/token/index.d.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/utils/Address.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Nonces.d.ts +25 -0
- package/typechain-types/@openzeppelin/contracts/utils/Pausable.d.ts +55 -0
- package/typechain-types/@openzeppelin/contracts/utils/ReentrancyGuard.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/ShortStrings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/Strings.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/ECDSA.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/EIP712.d.ts +78 -0
- package/typechain-types/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.d.ts +14 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/ERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/Math.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/SafeCast.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/Checkpoints.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/DoubleEndedQueue.d.ts +20 -0
- package/typechain-types/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
- package/typechain-types/@openzeppelin/index.d.ts +2 -0
- package/typechain-types/common.d.ts +50 -0
- package/typechain-types/contracts/index.d.ts +6 -0
- package/typechain-types/contracts/mocks/MockToken20.d.ts +522 -0
- package/typechain-types/contracts/mocks/MockToken202.d.ts +522 -0
- package/typechain-types/contracts/mocks/index.d.ts +2 -0
- package/typechain-types/contracts/televerse/CommitteeElection.d.ts +308 -0
- package/typechain-types/contracts/televerse/ContractService.d.ts +592 -0
- package/typechain-types/contracts/televerse/DummyGovToken.d.ts +383 -0
- package/typechain-types/contracts/televerse/Governance.d.ts +1175 -0
- package/typechain-types/contracts/televerse/Location.d.ts +267 -0
- package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken.d.ts +313 -0
- package/typechain-types/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
- package/typechain-types/contracts/televerse/TeleverseToken.d.ts +607 -0
- package/typechain-types/contracts/televerse/index.d.ts +8 -0
- package/typechain-types/contracts/tokens/GovernanceToken.d.ts +446 -0
- package/typechain-types/contracts/tokens/Token1155.d.ts +395 -0
- package/typechain-types/contracts/tokens/Token20.d.ts +522 -0
- package/typechain-types/contracts/tokens/Token721.d.ts +349 -0
- package/typechain-types/contracts/tokens/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/AccessControl__factory.d.ts +181 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/IAccessControl__factory.d.ts +157 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/Ownable__factory.d.ts +64 -0
- package/typechain-types/factories/@openzeppelin/contracts/access/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/Governor__factory.d.ts +1023 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/IGovernor__factory.d.ts +795 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/TimelockController__factory.d.ts +791 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorCountingSimple__factory.d.ts +1045 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorSettings__factory.d.ts +1098 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorTimelockControl__factory.d.ts +1058 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotesQuorumFraction__factory.d.ts +1108 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/GovernorVotes__factory.d.ts +1033 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/extensions/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/IVotes__factory.d.ts +155 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/Votes__factory.d.ts +304 -0
- package/typechain-types/factories/@openzeppelin/contracts/governance/utils/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC1271__factory.d.ts +25 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashBorrower__factory.d.ts +37 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC3156FlashLender__factory.d.ts +65 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC4906__factory.d.ts +252 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5267__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC5805__factory.d.ts +175 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/IERC6372__factory.d.ts +27 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC1155Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC20Errors__factory.d.ts +71 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors__factory.d.ts +83 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/draft-IERC6093.sol/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/interfaces/index.d.ts +8 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/ERC1155__factory.d.ts +326 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155Receiver__factory.d.ts +81 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/IERC1155__factory.d.ts +236 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable__factory.d.ts +362 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable__factory.d.ts +364 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply__factory.d.ts +364 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/IERC1155MetadataURI__factory.d.ts +250 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/extensions/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder__factory.d.ts +81 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC1155/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/ERC20__factory.d.ts +241 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable__factory.d.ts +265 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20FlashMint__factory.d.ts +323 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable__factory.d.ts +279 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Permit__factory.d.ts +402 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/ERC20Votes__factory.d.ts +591 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata__factory.d.ts +177 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit__factory.d.ts +65 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/extensions/index.d.ts +7 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts +46 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/ERC721__factory.d.ts +337 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable__factory.d.ts +347 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable__factory.d.ts +395 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721Pausable__factory.d.ts +375 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage__factory.d.ts +362 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable__factory.d.ts +269 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.d.ts +261 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.d.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/ERC721Holder__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/utils/index.d.ts +1 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/index.d.ts +3 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Address__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Nonces__factory.d.ts +33 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Pausable__factory.d.ts +45 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ReentrancyGuard__factory.d.ts +11 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/ShortStrings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/Strings__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/ECDSA__factory.d.ts +42 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/EIP712__factory.d.ts +58 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/cryptography/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.d.ts +10 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/ERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/Math__factory.d.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/SafeCast__factory.d.ts +62 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/math/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/Checkpoints__factory.d.ts +26 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/DoubleEndedQueue__factory.d.ts +34 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/structs/index.d.ts +2 -0
- package/typechain-types/factories/@openzeppelin/index.d.ts +1 -0
- package/typechain-types/factories/contracts/index.d.ts +3 -0
- package/typechain-types/factories/contracts/mocks/MockToken202__factory.d.ts +921 -0
- package/typechain-types/factories/contracts/mocks/MockToken20__factory.d.ts +921 -0
- package/typechain-types/factories/contracts/mocks/index.d.ts +2 -0
- package/typechain-types/factories/contracts/televerse/CommitteeElection__factory.d.ts +407 -0
- package/typechain-types/factories/contracts/televerse/ContractService__factory.d.ts +896 -0
- package/typechain-types/factories/contracts/televerse/DummyGovToken__factory.d.ts +682 -0
- package/typechain-types/factories/contracts/televerse/Governance__factory.d.ts +1770 -0
- package/typechain-types/factories/contracts/televerse/Location__factory.d.ts +342 -0
- package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/TeleverseDAOToken__factory.d.ts +490 -0
- package/typechain-types/factories/contracts/televerse/TeleverseDaoToken.sol/index.d.ts +1 -0
- package/typechain-types/factories/contracts/televerse/TeleverseToken__factory.d.ts +889 -0
- package/typechain-types/factories/contracts/televerse/index.d.ts +7 -0
- package/typechain-types/factories/contracts/tokens/GovernanceToken__factory.d.ts +771 -0
- package/typechain-types/factories/contracts/tokens/Token1155__factory.d.ts +584 -0
- package/typechain-types/factories/contracts/tokens/Token20__factory.d.ts +913 -0
- package/typechain-types/factories/contracts/tokens/Token721__factory.d.ts +582 -0
- package/typechain-types/factories/contracts/tokens/index.d.ts +4 -0
- package/typechain-types/factories/index.d.ts +2 -0
- package/typechain-types/index.d.ts +161 -0
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC721Errors, IERC721ErrorsInterface } from "../../../../../@openzeppelin/contracts/interfaces/draft-IERC6093.sol/IERC721Errors";
|
|
3
|
+
export declare class IERC721Errors__factory {
|
|
4
|
+
static readonly abi: readonly [{
|
|
5
|
+
readonly inputs: readonly [{
|
|
6
|
+
readonly internalType: "address";
|
|
7
|
+
readonly name: "sender";
|
|
8
|
+
readonly type: "address";
|
|
9
|
+
}, {
|
|
10
|
+
readonly internalType: "uint256";
|
|
11
|
+
readonly name: "tokenId";
|
|
12
|
+
readonly type: "uint256";
|
|
13
|
+
}, {
|
|
14
|
+
readonly internalType: "address";
|
|
15
|
+
readonly name: "owner";
|
|
16
|
+
readonly type: "address";
|
|
17
|
+
}];
|
|
18
|
+
readonly name: "ERC721IncorrectOwner";
|
|
19
|
+
readonly type: "error";
|
|
20
|
+
}, {
|
|
21
|
+
readonly inputs: readonly [{
|
|
22
|
+
readonly internalType: "address";
|
|
23
|
+
readonly name: "operator";
|
|
24
|
+
readonly type: "address";
|
|
25
|
+
}, {
|
|
26
|
+
readonly internalType: "uint256";
|
|
27
|
+
readonly name: "tokenId";
|
|
28
|
+
readonly type: "uint256";
|
|
29
|
+
}];
|
|
30
|
+
readonly name: "ERC721InsufficientApproval";
|
|
31
|
+
readonly type: "error";
|
|
32
|
+
}, {
|
|
33
|
+
readonly inputs: readonly [{
|
|
34
|
+
readonly internalType: "address";
|
|
35
|
+
readonly name: "approver";
|
|
36
|
+
readonly type: "address";
|
|
37
|
+
}];
|
|
38
|
+
readonly name: "ERC721InvalidApprover";
|
|
39
|
+
readonly type: "error";
|
|
40
|
+
}, {
|
|
41
|
+
readonly inputs: readonly [{
|
|
42
|
+
readonly internalType: "address";
|
|
43
|
+
readonly name: "operator";
|
|
44
|
+
readonly type: "address";
|
|
45
|
+
}];
|
|
46
|
+
readonly name: "ERC721InvalidOperator";
|
|
47
|
+
readonly type: "error";
|
|
48
|
+
}, {
|
|
49
|
+
readonly inputs: readonly [{
|
|
50
|
+
readonly internalType: "address";
|
|
51
|
+
readonly name: "owner";
|
|
52
|
+
readonly type: "address";
|
|
53
|
+
}];
|
|
54
|
+
readonly name: "ERC721InvalidOwner";
|
|
55
|
+
readonly type: "error";
|
|
56
|
+
}, {
|
|
57
|
+
readonly inputs: readonly [{
|
|
58
|
+
readonly internalType: "address";
|
|
59
|
+
readonly name: "receiver";
|
|
60
|
+
readonly type: "address";
|
|
61
|
+
}];
|
|
62
|
+
readonly name: "ERC721InvalidReceiver";
|
|
63
|
+
readonly type: "error";
|
|
64
|
+
}, {
|
|
65
|
+
readonly inputs: readonly [{
|
|
66
|
+
readonly internalType: "address";
|
|
67
|
+
readonly name: "sender";
|
|
68
|
+
readonly type: "address";
|
|
69
|
+
}];
|
|
70
|
+
readonly name: "ERC721InvalidSender";
|
|
71
|
+
readonly type: "error";
|
|
72
|
+
}, {
|
|
73
|
+
readonly inputs: readonly [{
|
|
74
|
+
readonly internalType: "uint256";
|
|
75
|
+
readonly name: "tokenId";
|
|
76
|
+
readonly type: "uint256";
|
|
77
|
+
}];
|
|
78
|
+
readonly name: "ERC721NonexistentToken";
|
|
79
|
+
readonly type: "error";
|
|
80
|
+
}];
|
|
81
|
+
static createInterface(): IERC721ErrorsInterface;
|
|
82
|
+
static connect(address: string, runner?: ContractRunner | null): IERC721Errors;
|
|
83
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * as draftIerc6093Sol from "./draft-IERC6093.sol";
|
|
2
|
+
export { IERC1271__factory } from "./IERC1271__factory";
|
|
3
|
+
export { IERC3156FlashBorrower__factory } from "./IERC3156FlashBorrower__factory";
|
|
4
|
+
export { IERC3156FlashLender__factory } from "./IERC3156FlashLender__factory";
|
|
5
|
+
export { IERC4906__factory } from "./IERC4906__factory";
|
|
6
|
+
export { IERC5267__factory } from "./IERC5267__factory";
|
|
7
|
+
export { IERC5805__factory } from "./IERC5805__factory";
|
|
8
|
+
export { IERC6372__factory } from "./IERC6372__factory";
|
|
@@ -0,0 +1,326 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { ERC1155, ERC1155Interface } from "../../../../../@openzeppelin/contracts/token/ERC1155/ERC1155";
|
|
3
|
+
export declare class ERC1155__factory {
|
|
4
|
+
static readonly abi: readonly [{
|
|
5
|
+
readonly inputs: readonly [{
|
|
6
|
+
readonly internalType: "address";
|
|
7
|
+
readonly name: "sender";
|
|
8
|
+
readonly type: "address";
|
|
9
|
+
}, {
|
|
10
|
+
readonly internalType: "uint256";
|
|
11
|
+
readonly name: "balance";
|
|
12
|
+
readonly type: "uint256";
|
|
13
|
+
}, {
|
|
14
|
+
readonly internalType: "uint256";
|
|
15
|
+
readonly name: "needed";
|
|
16
|
+
readonly type: "uint256";
|
|
17
|
+
}, {
|
|
18
|
+
readonly internalType: "uint256";
|
|
19
|
+
readonly name: "tokenId";
|
|
20
|
+
readonly type: "uint256";
|
|
21
|
+
}];
|
|
22
|
+
readonly name: "ERC1155InsufficientBalance";
|
|
23
|
+
readonly type: "error";
|
|
24
|
+
}, {
|
|
25
|
+
readonly inputs: readonly [{
|
|
26
|
+
readonly internalType: "address";
|
|
27
|
+
readonly name: "approver";
|
|
28
|
+
readonly type: "address";
|
|
29
|
+
}];
|
|
30
|
+
readonly name: "ERC1155InvalidApprover";
|
|
31
|
+
readonly type: "error";
|
|
32
|
+
}, {
|
|
33
|
+
readonly inputs: readonly [{
|
|
34
|
+
readonly internalType: "uint256";
|
|
35
|
+
readonly name: "idsLength";
|
|
36
|
+
readonly type: "uint256";
|
|
37
|
+
}, {
|
|
38
|
+
readonly internalType: "uint256";
|
|
39
|
+
readonly name: "valuesLength";
|
|
40
|
+
readonly type: "uint256";
|
|
41
|
+
}];
|
|
42
|
+
readonly name: "ERC1155InvalidArrayLength";
|
|
43
|
+
readonly type: "error";
|
|
44
|
+
}, {
|
|
45
|
+
readonly inputs: readonly [{
|
|
46
|
+
readonly internalType: "address";
|
|
47
|
+
readonly name: "operator";
|
|
48
|
+
readonly type: "address";
|
|
49
|
+
}];
|
|
50
|
+
readonly name: "ERC1155InvalidOperator";
|
|
51
|
+
readonly type: "error";
|
|
52
|
+
}, {
|
|
53
|
+
readonly inputs: readonly [{
|
|
54
|
+
readonly internalType: "address";
|
|
55
|
+
readonly name: "receiver";
|
|
56
|
+
readonly type: "address";
|
|
57
|
+
}];
|
|
58
|
+
readonly name: "ERC1155InvalidReceiver";
|
|
59
|
+
readonly type: "error";
|
|
60
|
+
}, {
|
|
61
|
+
readonly inputs: readonly [{
|
|
62
|
+
readonly internalType: "address";
|
|
63
|
+
readonly name: "sender";
|
|
64
|
+
readonly type: "address";
|
|
65
|
+
}];
|
|
66
|
+
readonly name: "ERC1155InvalidSender";
|
|
67
|
+
readonly type: "error";
|
|
68
|
+
}, {
|
|
69
|
+
readonly inputs: readonly [{
|
|
70
|
+
readonly internalType: "address";
|
|
71
|
+
readonly name: "operator";
|
|
72
|
+
readonly type: "address";
|
|
73
|
+
}, {
|
|
74
|
+
readonly internalType: "address";
|
|
75
|
+
readonly name: "owner";
|
|
76
|
+
readonly type: "address";
|
|
77
|
+
}];
|
|
78
|
+
readonly name: "ERC1155MissingApprovalForAll";
|
|
79
|
+
readonly type: "error";
|
|
80
|
+
}, {
|
|
81
|
+
readonly anonymous: false;
|
|
82
|
+
readonly inputs: readonly [{
|
|
83
|
+
readonly indexed: true;
|
|
84
|
+
readonly internalType: "address";
|
|
85
|
+
readonly name: "account";
|
|
86
|
+
readonly type: "address";
|
|
87
|
+
}, {
|
|
88
|
+
readonly indexed: true;
|
|
89
|
+
readonly internalType: "address";
|
|
90
|
+
readonly name: "operator";
|
|
91
|
+
readonly type: "address";
|
|
92
|
+
}, {
|
|
93
|
+
readonly indexed: false;
|
|
94
|
+
readonly internalType: "bool";
|
|
95
|
+
readonly name: "approved";
|
|
96
|
+
readonly type: "bool";
|
|
97
|
+
}];
|
|
98
|
+
readonly name: "ApprovalForAll";
|
|
99
|
+
readonly type: "event";
|
|
100
|
+
}, {
|
|
101
|
+
readonly anonymous: false;
|
|
102
|
+
readonly inputs: readonly [{
|
|
103
|
+
readonly indexed: true;
|
|
104
|
+
readonly internalType: "address";
|
|
105
|
+
readonly name: "operator";
|
|
106
|
+
readonly type: "address";
|
|
107
|
+
}, {
|
|
108
|
+
readonly indexed: true;
|
|
109
|
+
readonly internalType: "address";
|
|
110
|
+
readonly name: "from";
|
|
111
|
+
readonly type: "address";
|
|
112
|
+
}, {
|
|
113
|
+
readonly indexed: true;
|
|
114
|
+
readonly internalType: "address";
|
|
115
|
+
readonly name: "to";
|
|
116
|
+
readonly type: "address";
|
|
117
|
+
}, {
|
|
118
|
+
readonly indexed: false;
|
|
119
|
+
readonly internalType: "uint256[]";
|
|
120
|
+
readonly name: "ids";
|
|
121
|
+
readonly type: "uint256[]";
|
|
122
|
+
}, {
|
|
123
|
+
readonly indexed: false;
|
|
124
|
+
readonly internalType: "uint256[]";
|
|
125
|
+
readonly name: "values";
|
|
126
|
+
readonly type: "uint256[]";
|
|
127
|
+
}];
|
|
128
|
+
readonly name: "TransferBatch";
|
|
129
|
+
readonly type: "event";
|
|
130
|
+
}, {
|
|
131
|
+
readonly anonymous: false;
|
|
132
|
+
readonly inputs: readonly [{
|
|
133
|
+
readonly indexed: true;
|
|
134
|
+
readonly internalType: "address";
|
|
135
|
+
readonly name: "operator";
|
|
136
|
+
readonly type: "address";
|
|
137
|
+
}, {
|
|
138
|
+
readonly indexed: true;
|
|
139
|
+
readonly internalType: "address";
|
|
140
|
+
readonly name: "from";
|
|
141
|
+
readonly type: "address";
|
|
142
|
+
}, {
|
|
143
|
+
readonly indexed: true;
|
|
144
|
+
readonly internalType: "address";
|
|
145
|
+
readonly name: "to";
|
|
146
|
+
readonly type: "address";
|
|
147
|
+
}, {
|
|
148
|
+
readonly indexed: false;
|
|
149
|
+
readonly internalType: "uint256";
|
|
150
|
+
readonly name: "id";
|
|
151
|
+
readonly type: "uint256";
|
|
152
|
+
}, {
|
|
153
|
+
readonly indexed: false;
|
|
154
|
+
readonly internalType: "uint256";
|
|
155
|
+
readonly name: "value";
|
|
156
|
+
readonly type: "uint256";
|
|
157
|
+
}];
|
|
158
|
+
readonly name: "TransferSingle";
|
|
159
|
+
readonly type: "event";
|
|
160
|
+
}, {
|
|
161
|
+
readonly anonymous: false;
|
|
162
|
+
readonly inputs: readonly [{
|
|
163
|
+
readonly indexed: false;
|
|
164
|
+
readonly internalType: "string";
|
|
165
|
+
readonly name: "value";
|
|
166
|
+
readonly type: "string";
|
|
167
|
+
}, {
|
|
168
|
+
readonly indexed: true;
|
|
169
|
+
readonly internalType: "uint256";
|
|
170
|
+
readonly name: "id";
|
|
171
|
+
readonly type: "uint256";
|
|
172
|
+
}];
|
|
173
|
+
readonly name: "URI";
|
|
174
|
+
readonly type: "event";
|
|
175
|
+
}, {
|
|
176
|
+
readonly inputs: readonly [{
|
|
177
|
+
readonly internalType: "address";
|
|
178
|
+
readonly name: "account";
|
|
179
|
+
readonly type: "address";
|
|
180
|
+
}, {
|
|
181
|
+
readonly internalType: "uint256";
|
|
182
|
+
readonly name: "id";
|
|
183
|
+
readonly type: "uint256";
|
|
184
|
+
}];
|
|
185
|
+
readonly name: "balanceOf";
|
|
186
|
+
readonly outputs: readonly [{
|
|
187
|
+
readonly internalType: "uint256";
|
|
188
|
+
readonly name: "";
|
|
189
|
+
readonly type: "uint256";
|
|
190
|
+
}];
|
|
191
|
+
readonly stateMutability: "view";
|
|
192
|
+
readonly type: "function";
|
|
193
|
+
}, {
|
|
194
|
+
readonly inputs: readonly [{
|
|
195
|
+
readonly internalType: "address[]";
|
|
196
|
+
readonly name: "accounts";
|
|
197
|
+
readonly type: "address[]";
|
|
198
|
+
}, {
|
|
199
|
+
readonly internalType: "uint256[]";
|
|
200
|
+
readonly name: "ids";
|
|
201
|
+
readonly type: "uint256[]";
|
|
202
|
+
}];
|
|
203
|
+
readonly name: "balanceOfBatch";
|
|
204
|
+
readonly outputs: readonly [{
|
|
205
|
+
readonly internalType: "uint256[]";
|
|
206
|
+
readonly name: "";
|
|
207
|
+
readonly type: "uint256[]";
|
|
208
|
+
}];
|
|
209
|
+
readonly stateMutability: "view";
|
|
210
|
+
readonly type: "function";
|
|
211
|
+
}, {
|
|
212
|
+
readonly inputs: readonly [{
|
|
213
|
+
readonly internalType: "address";
|
|
214
|
+
readonly name: "account";
|
|
215
|
+
readonly type: "address";
|
|
216
|
+
}, {
|
|
217
|
+
readonly internalType: "address";
|
|
218
|
+
readonly name: "operator";
|
|
219
|
+
readonly type: "address";
|
|
220
|
+
}];
|
|
221
|
+
readonly name: "isApprovedForAll";
|
|
222
|
+
readonly outputs: readonly [{
|
|
223
|
+
readonly internalType: "bool";
|
|
224
|
+
readonly name: "";
|
|
225
|
+
readonly type: "bool";
|
|
226
|
+
}];
|
|
227
|
+
readonly stateMutability: "view";
|
|
228
|
+
readonly type: "function";
|
|
229
|
+
}, {
|
|
230
|
+
readonly inputs: readonly [{
|
|
231
|
+
readonly internalType: "address";
|
|
232
|
+
readonly name: "from";
|
|
233
|
+
readonly type: "address";
|
|
234
|
+
}, {
|
|
235
|
+
readonly internalType: "address";
|
|
236
|
+
readonly name: "to";
|
|
237
|
+
readonly type: "address";
|
|
238
|
+
}, {
|
|
239
|
+
readonly internalType: "uint256[]";
|
|
240
|
+
readonly name: "ids";
|
|
241
|
+
readonly type: "uint256[]";
|
|
242
|
+
}, {
|
|
243
|
+
readonly internalType: "uint256[]";
|
|
244
|
+
readonly name: "values";
|
|
245
|
+
readonly type: "uint256[]";
|
|
246
|
+
}, {
|
|
247
|
+
readonly internalType: "bytes";
|
|
248
|
+
readonly name: "data";
|
|
249
|
+
readonly type: "bytes";
|
|
250
|
+
}];
|
|
251
|
+
readonly name: "safeBatchTransferFrom";
|
|
252
|
+
readonly outputs: readonly [];
|
|
253
|
+
readonly stateMutability: "nonpayable";
|
|
254
|
+
readonly type: "function";
|
|
255
|
+
}, {
|
|
256
|
+
readonly inputs: readonly [{
|
|
257
|
+
readonly internalType: "address";
|
|
258
|
+
readonly name: "from";
|
|
259
|
+
readonly type: "address";
|
|
260
|
+
}, {
|
|
261
|
+
readonly internalType: "address";
|
|
262
|
+
readonly name: "to";
|
|
263
|
+
readonly type: "address";
|
|
264
|
+
}, {
|
|
265
|
+
readonly internalType: "uint256";
|
|
266
|
+
readonly name: "id";
|
|
267
|
+
readonly type: "uint256";
|
|
268
|
+
}, {
|
|
269
|
+
readonly internalType: "uint256";
|
|
270
|
+
readonly name: "value";
|
|
271
|
+
readonly type: "uint256";
|
|
272
|
+
}, {
|
|
273
|
+
readonly internalType: "bytes";
|
|
274
|
+
readonly name: "data";
|
|
275
|
+
readonly type: "bytes";
|
|
276
|
+
}];
|
|
277
|
+
readonly name: "safeTransferFrom";
|
|
278
|
+
readonly outputs: readonly [];
|
|
279
|
+
readonly stateMutability: "nonpayable";
|
|
280
|
+
readonly type: "function";
|
|
281
|
+
}, {
|
|
282
|
+
readonly inputs: readonly [{
|
|
283
|
+
readonly internalType: "address";
|
|
284
|
+
readonly name: "operator";
|
|
285
|
+
readonly type: "address";
|
|
286
|
+
}, {
|
|
287
|
+
readonly internalType: "bool";
|
|
288
|
+
readonly name: "approved";
|
|
289
|
+
readonly type: "bool";
|
|
290
|
+
}];
|
|
291
|
+
readonly name: "setApprovalForAll";
|
|
292
|
+
readonly outputs: readonly [];
|
|
293
|
+
readonly stateMutability: "nonpayable";
|
|
294
|
+
readonly type: "function";
|
|
295
|
+
}, {
|
|
296
|
+
readonly inputs: readonly [{
|
|
297
|
+
readonly internalType: "bytes4";
|
|
298
|
+
readonly name: "interfaceId";
|
|
299
|
+
readonly type: "bytes4";
|
|
300
|
+
}];
|
|
301
|
+
readonly name: "supportsInterface";
|
|
302
|
+
readonly outputs: readonly [{
|
|
303
|
+
readonly internalType: "bool";
|
|
304
|
+
readonly name: "";
|
|
305
|
+
readonly type: "bool";
|
|
306
|
+
}];
|
|
307
|
+
readonly stateMutability: "view";
|
|
308
|
+
readonly type: "function";
|
|
309
|
+
}, {
|
|
310
|
+
readonly inputs: readonly [{
|
|
311
|
+
readonly internalType: "uint256";
|
|
312
|
+
readonly name: "";
|
|
313
|
+
readonly type: "uint256";
|
|
314
|
+
}];
|
|
315
|
+
readonly name: "uri";
|
|
316
|
+
readonly outputs: readonly [{
|
|
317
|
+
readonly internalType: "string";
|
|
318
|
+
readonly name: "";
|
|
319
|
+
readonly type: "string";
|
|
320
|
+
}];
|
|
321
|
+
readonly stateMutability: "view";
|
|
322
|
+
readonly type: "function";
|
|
323
|
+
}];
|
|
324
|
+
static createInterface(): ERC1155Interface;
|
|
325
|
+
static connect(address: string, runner?: ContractRunner | null): ERC1155;
|
|
326
|
+
}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC1155Receiver, IERC1155ReceiverInterface } from "../../../../../@openzeppelin/contracts/token/ERC1155/IERC1155Receiver";
|
|
3
|
+
export declare class IERC1155Receiver__factory {
|
|
4
|
+
static readonly abi: readonly [{
|
|
5
|
+
readonly inputs: readonly [{
|
|
6
|
+
readonly internalType: "address";
|
|
7
|
+
readonly name: "operator";
|
|
8
|
+
readonly type: "address";
|
|
9
|
+
}, {
|
|
10
|
+
readonly internalType: "address";
|
|
11
|
+
readonly name: "from";
|
|
12
|
+
readonly type: "address";
|
|
13
|
+
}, {
|
|
14
|
+
readonly internalType: "uint256[]";
|
|
15
|
+
readonly name: "ids";
|
|
16
|
+
readonly type: "uint256[]";
|
|
17
|
+
}, {
|
|
18
|
+
readonly internalType: "uint256[]";
|
|
19
|
+
readonly name: "values";
|
|
20
|
+
readonly type: "uint256[]";
|
|
21
|
+
}, {
|
|
22
|
+
readonly internalType: "bytes";
|
|
23
|
+
readonly name: "data";
|
|
24
|
+
readonly type: "bytes";
|
|
25
|
+
}];
|
|
26
|
+
readonly name: "onERC1155BatchReceived";
|
|
27
|
+
readonly outputs: readonly [{
|
|
28
|
+
readonly internalType: "bytes4";
|
|
29
|
+
readonly name: "";
|
|
30
|
+
readonly type: "bytes4";
|
|
31
|
+
}];
|
|
32
|
+
readonly stateMutability: "nonpayable";
|
|
33
|
+
readonly type: "function";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [{
|
|
36
|
+
readonly internalType: "address";
|
|
37
|
+
readonly name: "operator";
|
|
38
|
+
readonly type: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly internalType: "address";
|
|
41
|
+
readonly name: "from";
|
|
42
|
+
readonly type: "address";
|
|
43
|
+
}, {
|
|
44
|
+
readonly internalType: "uint256";
|
|
45
|
+
readonly name: "id";
|
|
46
|
+
readonly type: "uint256";
|
|
47
|
+
}, {
|
|
48
|
+
readonly internalType: "uint256";
|
|
49
|
+
readonly name: "value";
|
|
50
|
+
readonly type: "uint256";
|
|
51
|
+
}, {
|
|
52
|
+
readonly internalType: "bytes";
|
|
53
|
+
readonly name: "data";
|
|
54
|
+
readonly type: "bytes";
|
|
55
|
+
}];
|
|
56
|
+
readonly name: "onERC1155Received";
|
|
57
|
+
readonly outputs: readonly [{
|
|
58
|
+
readonly internalType: "bytes4";
|
|
59
|
+
readonly name: "";
|
|
60
|
+
readonly type: "bytes4";
|
|
61
|
+
}];
|
|
62
|
+
readonly stateMutability: "nonpayable";
|
|
63
|
+
readonly type: "function";
|
|
64
|
+
}, {
|
|
65
|
+
readonly inputs: readonly [{
|
|
66
|
+
readonly internalType: "bytes4";
|
|
67
|
+
readonly name: "interfaceId";
|
|
68
|
+
readonly type: "bytes4";
|
|
69
|
+
}];
|
|
70
|
+
readonly name: "supportsInterface";
|
|
71
|
+
readonly outputs: readonly [{
|
|
72
|
+
readonly internalType: "bool";
|
|
73
|
+
readonly name: "";
|
|
74
|
+
readonly type: "bool";
|
|
75
|
+
}];
|
|
76
|
+
readonly stateMutability: "view";
|
|
77
|
+
readonly type: "function";
|
|
78
|
+
}];
|
|
79
|
+
static createInterface(): IERC1155ReceiverInterface;
|
|
80
|
+
static connect(address: string, runner?: ContractRunner | null): IERC1155Receiver;
|
|
81
|
+
}
|