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,177 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC20Metadata, IERC20MetadataInterface } from "../../../../../../@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata";
|
|
3
|
+
export declare class IERC20Metadata__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: "value";
|
|
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: "decimals";
|
|
97
|
+
readonly outputs: readonly [{
|
|
98
|
+
readonly internalType: "uint8";
|
|
99
|
+
readonly name: "";
|
|
100
|
+
readonly type: "uint8";
|
|
101
|
+
}];
|
|
102
|
+
readonly stateMutability: "view";
|
|
103
|
+
readonly type: "function";
|
|
104
|
+
}, {
|
|
105
|
+
readonly inputs: readonly [];
|
|
106
|
+
readonly name: "name";
|
|
107
|
+
readonly outputs: readonly [{
|
|
108
|
+
readonly internalType: "string";
|
|
109
|
+
readonly name: "";
|
|
110
|
+
readonly type: "string";
|
|
111
|
+
}];
|
|
112
|
+
readonly stateMutability: "view";
|
|
113
|
+
readonly type: "function";
|
|
114
|
+
}, {
|
|
115
|
+
readonly inputs: readonly [];
|
|
116
|
+
readonly name: "symbol";
|
|
117
|
+
readonly outputs: readonly [{
|
|
118
|
+
readonly internalType: "string";
|
|
119
|
+
readonly name: "";
|
|
120
|
+
readonly type: "string";
|
|
121
|
+
}];
|
|
122
|
+
readonly stateMutability: "view";
|
|
123
|
+
readonly type: "function";
|
|
124
|
+
}, {
|
|
125
|
+
readonly inputs: readonly [];
|
|
126
|
+
readonly name: "totalSupply";
|
|
127
|
+
readonly outputs: readonly [{
|
|
128
|
+
readonly internalType: "uint256";
|
|
129
|
+
readonly name: "";
|
|
130
|
+
readonly type: "uint256";
|
|
131
|
+
}];
|
|
132
|
+
readonly stateMutability: "view";
|
|
133
|
+
readonly type: "function";
|
|
134
|
+
}, {
|
|
135
|
+
readonly inputs: readonly [{
|
|
136
|
+
readonly internalType: "address";
|
|
137
|
+
readonly name: "to";
|
|
138
|
+
readonly type: "address";
|
|
139
|
+
}, {
|
|
140
|
+
readonly internalType: "uint256";
|
|
141
|
+
readonly name: "value";
|
|
142
|
+
readonly type: "uint256";
|
|
143
|
+
}];
|
|
144
|
+
readonly name: "transfer";
|
|
145
|
+
readonly outputs: readonly [{
|
|
146
|
+
readonly internalType: "bool";
|
|
147
|
+
readonly name: "";
|
|
148
|
+
readonly type: "bool";
|
|
149
|
+
}];
|
|
150
|
+
readonly stateMutability: "nonpayable";
|
|
151
|
+
readonly type: "function";
|
|
152
|
+
}, {
|
|
153
|
+
readonly inputs: readonly [{
|
|
154
|
+
readonly internalType: "address";
|
|
155
|
+
readonly name: "from";
|
|
156
|
+
readonly type: "address";
|
|
157
|
+
}, {
|
|
158
|
+
readonly internalType: "address";
|
|
159
|
+
readonly name: "to";
|
|
160
|
+
readonly type: "address";
|
|
161
|
+
}, {
|
|
162
|
+
readonly internalType: "uint256";
|
|
163
|
+
readonly name: "value";
|
|
164
|
+
readonly type: "uint256";
|
|
165
|
+
}];
|
|
166
|
+
readonly name: "transferFrom";
|
|
167
|
+
readonly outputs: readonly [{
|
|
168
|
+
readonly internalType: "bool";
|
|
169
|
+
readonly name: "";
|
|
170
|
+
readonly type: "bool";
|
|
171
|
+
}];
|
|
172
|
+
readonly stateMutability: "nonpayable";
|
|
173
|
+
readonly type: "function";
|
|
174
|
+
}];
|
|
175
|
+
static createInterface(): IERC20MetadataInterface;
|
|
176
|
+
static connect(address: string, runner?: ContractRunner | null): IERC20Metadata;
|
|
177
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC20Permit, IERC20PermitInterface } from "../../../../../../@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit";
|
|
3
|
+
export declare class IERC20Permit__factory {
|
|
4
|
+
static readonly abi: readonly [{
|
|
5
|
+
readonly inputs: readonly [];
|
|
6
|
+
readonly name: "DOMAIN_SEPARATOR";
|
|
7
|
+
readonly outputs: readonly [{
|
|
8
|
+
readonly internalType: "bytes32";
|
|
9
|
+
readonly name: "";
|
|
10
|
+
readonly type: "bytes32";
|
|
11
|
+
}];
|
|
12
|
+
readonly stateMutability: "view";
|
|
13
|
+
readonly type: "function";
|
|
14
|
+
}, {
|
|
15
|
+
readonly inputs: readonly [{
|
|
16
|
+
readonly internalType: "address";
|
|
17
|
+
readonly name: "owner";
|
|
18
|
+
readonly type: "address";
|
|
19
|
+
}];
|
|
20
|
+
readonly name: "nonces";
|
|
21
|
+
readonly outputs: readonly [{
|
|
22
|
+
readonly internalType: "uint256";
|
|
23
|
+
readonly name: "";
|
|
24
|
+
readonly type: "uint256";
|
|
25
|
+
}];
|
|
26
|
+
readonly stateMutability: "view";
|
|
27
|
+
readonly type: "function";
|
|
28
|
+
}, {
|
|
29
|
+
readonly inputs: readonly [{
|
|
30
|
+
readonly internalType: "address";
|
|
31
|
+
readonly name: "owner";
|
|
32
|
+
readonly type: "address";
|
|
33
|
+
}, {
|
|
34
|
+
readonly internalType: "address";
|
|
35
|
+
readonly name: "spender";
|
|
36
|
+
readonly type: "address";
|
|
37
|
+
}, {
|
|
38
|
+
readonly internalType: "uint256";
|
|
39
|
+
readonly name: "value";
|
|
40
|
+
readonly type: "uint256";
|
|
41
|
+
}, {
|
|
42
|
+
readonly internalType: "uint256";
|
|
43
|
+
readonly name: "deadline";
|
|
44
|
+
readonly type: "uint256";
|
|
45
|
+
}, {
|
|
46
|
+
readonly internalType: "uint8";
|
|
47
|
+
readonly name: "v";
|
|
48
|
+
readonly type: "uint8";
|
|
49
|
+
}, {
|
|
50
|
+
readonly internalType: "bytes32";
|
|
51
|
+
readonly name: "r";
|
|
52
|
+
readonly type: "bytes32";
|
|
53
|
+
}, {
|
|
54
|
+
readonly internalType: "bytes32";
|
|
55
|
+
readonly name: "s";
|
|
56
|
+
readonly type: "bytes32";
|
|
57
|
+
}];
|
|
58
|
+
readonly name: "permit";
|
|
59
|
+
readonly outputs: readonly [];
|
|
60
|
+
readonly stateMutability: "nonpayable";
|
|
61
|
+
readonly type: "function";
|
|
62
|
+
}];
|
|
63
|
+
static createInterface(): IERC20PermitInterface;
|
|
64
|
+
static connect(address: string, runner?: ContractRunner | null): IERC20Permit;
|
|
65
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { ERC20Burnable__factory } from "./ERC20Burnable__factory";
|
|
2
|
+
export { ERC20FlashMint__factory } from "./ERC20FlashMint__factory";
|
|
3
|
+
export { ERC20Pausable__factory } from "./ERC20Pausable__factory";
|
|
4
|
+
export { ERC20Permit__factory } from "./ERC20Permit__factory";
|
|
5
|
+
export { ERC20Votes__factory } from "./ERC20Votes__factory";
|
|
6
|
+
export { IERC20Metadata__factory } from "./IERC20Metadata__factory";
|
|
7
|
+
export { IERC20Permit__factory } from "./IERC20Permit__factory";
|
package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/utils/SafeERC20__factory.d.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { ContractFactory, ContractTransactionResponse } from "ethers";
|
|
2
|
+
import type { Signer, ContractDeployTransaction, ContractRunner } from "ethers";
|
|
3
|
+
import type { NonPayableOverrides } from "../../../../../../common";
|
|
4
|
+
import type { SafeERC20, SafeERC20Interface } from "../../../../../../@openzeppelin/contracts/token/ERC20/utils/SafeERC20";
|
|
5
|
+
type SafeERC20ConstructorParams = [signer?: Signer] | ConstructorParameters<typeof ContractFactory>;
|
|
6
|
+
export declare class SafeERC20__factory extends ContractFactory {
|
|
7
|
+
constructor(...args: SafeERC20ConstructorParams);
|
|
8
|
+
getDeployTransaction(overrides?: NonPayableOverrides & {
|
|
9
|
+
from?: string;
|
|
10
|
+
}): Promise<ContractDeployTransaction>;
|
|
11
|
+
deploy(overrides?: NonPayableOverrides & {
|
|
12
|
+
from?: string;
|
|
13
|
+
}): Promise<SafeERC20 & {
|
|
14
|
+
deploymentTransaction(): ContractTransactionResponse;
|
|
15
|
+
}>;
|
|
16
|
+
connect(runner: ContractRunner | null): SafeERC20__factory;
|
|
17
|
+
static readonly bytecode = "0x60808060405234601757603a9081601d823930815050f35b600080fdfe600080fdfea2646970667358221220df60616093cdf75e1a03afcfebb711fd45700aadde7f9fc68cb79d9491198cbd64736f6c63430008140033";
|
|
18
|
+
static readonly abi: readonly [{
|
|
19
|
+
readonly inputs: readonly [{
|
|
20
|
+
readonly internalType: "address";
|
|
21
|
+
readonly name: "spender";
|
|
22
|
+
readonly type: "address";
|
|
23
|
+
}, {
|
|
24
|
+
readonly internalType: "uint256";
|
|
25
|
+
readonly name: "currentAllowance";
|
|
26
|
+
readonly type: "uint256";
|
|
27
|
+
}, {
|
|
28
|
+
readonly internalType: "uint256";
|
|
29
|
+
readonly name: "requestedDecrease";
|
|
30
|
+
readonly type: "uint256";
|
|
31
|
+
}];
|
|
32
|
+
readonly name: "SafeERC20FailedDecreaseAllowance";
|
|
33
|
+
readonly type: "error";
|
|
34
|
+
}, {
|
|
35
|
+
readonly inputs: readonly [{
|
|
36
|
+
readonly internalType: "address";
|
|
37
|
+
readonly name: "token";
|
|
38
|
+
readonly type: "address";
|
|
39
|
+
}];
|
|
40
|
+
readonly name: "SafeERC20FailedOperation";
|
|
41
|
+
readonly type: "error";
|
|
42
|
+
}];
|
|
43
|
+
static createInterface(): SafeERC20Interface;
|
|
44
|
+
static connect(address: string, runner?: ContractRunner | null): SafeERC20;
|
|
45
|
+
}
|
|
46
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SafeERC20__factory } from "./SafeERC20__factory";
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { ERC721, ERC721Interface } from "../../../../../@openzeppelin/contracts/token/ERC721/ERC721";
|
|
3
|
+
export declare class ERC721__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
|
+
readonly anonymous: false;
|
|
82
|
+
readonly inputs: readonly [{
|
|
83
|
+
readonly indexed: true;
|
|
84
|
+
readonly internalType: "address";
|
|
85
|
+
readonly name: "owner";
|
|
86
|
+
readonly type: "address";
|
|
87
|
+
}, {
|
|
88
|
+
readonly indexed: true;
|
|
89
|
+
readonly internalType: "address";
|
|
90
|
+
readonly name: "approved";
|
|
91
|
+
readonly type: "address";
|
|
92
|
+
}, {
|
|
93
|
+
readonly indexed: true;
|
|
94
|
+
readonly internalType: "uint256";
|
|
95
|
+
readonly name: "tokenId";
|
|
96
|
+
readonly type: "uint256";
|
|
97
|
+
}];
|
|
98
|
+
readonly name: "Approval";
|
|
99
|
+
readonly type: "event";
|
|
100
|
+
}, {
|
|
101
|
+
readonly anonymous: false;
|
|
102
|
+
readonly inputs: readonly [{
|
|
103
|
+
readonly indexed: true;
|
|
104
|
+
readonly internalType: "address";
|
|
105
|
+
readonly name: "owner";
|
|
106
|
+
readonly type: "address";
|
|
107
|
+
}, {
|
|
108
|
+
readonly indexed: true;
|
|
109
|
+
readonly internalType: "address";
|
|
110
|
+
readonly name: "operator";
|
|
111
|
+
readonly type: "address";
|
|
112
|
+
}, {
|
|
113
|
+
readonly indexed: false;
|
|
114
|
+
readonly internalType: "bool";
|
|
115
|
+
readonly name: "approved";
|
|
116
|
+
readonly type: "bool";
|
|
117
|
+
}];
|
|
118
|
+
readonly name: "ApprovalForAll";
|
|
119
|
+
readonly type: "event";
|
|
120
|
+
}, {
|
|
121
|
+
readonly anonymous: false;
|
|
122
|
+
readonly inputs: readonly [{
|
|
123
|
+
readonly indexed: true;
|
|
124
|
+
readonly internalType: "address";
|
|
125
|
+
readonly name: "from";
|
|
126
|
+
readonly type: "address";
|
|
127
|
+
}, {
|
|
128
|
+
readonly indexed: true;
|
|
129
|
+
readonly internalType: "address";
|
|
130
|
+
readonly name: "to";
|
|
131
|
+
readonly type: "address";
|
|
132
|
+
}, {
|
|
133
|
+
readonly indexed: true;
|
|
134
|
+
readonly internalType: "uint256";
|
|
135
|
+
readonly name: "tokenId";
|
|
136
|
+
readonly type: "uint256";
|
|
137
|
+
}];
|
|
138
|
+
readonly name: "Transfer";
|
|
139
|
+
readonly type: "event";
|
|
140
|
+
}, {
|
|
141
|
+
readonly inputs: readonly [{
|
|
142
|
+
readonly internalType: "address";
|
|
143
|
+
readonly name: "to";
|
|
144
|
+
readonly type: "address";
|
|
145
|
+
}, {
|
|
146
|
+
readonly internalType: "uint256";
|
|
147
|
+
readonly name: "tokenId";
|
|
148
|
+
readonly type: "uint256";
|
|
149
|
+
}];
|
|
150
|
+
readonly name: "approve";
|
|
151
|
+
readonly outputs: readonly [];
|
|
152
|
+
readonly stateMutability: "nonpayable";
|
|
153
|
+
readonly type: "function";
|
|
154
|
+
}, {
|
|
155
|
+
readonly inputs: readonly [{
|
|
156
|
+
readonly internalType: "address";
|
|
157
|
+
readonly name: "owner";
|
|
158
|
+
readonly type: "address";
|
|
159
|
+
}];
|
|
160
|
+
readonly name: "balanceOf";
|
|
161
|
+
readonly outputs: readonly [{
|
|
162
|
+
readonly internalType: "uint256";
|
|
163
|
+
readonly name: "";
|
|
164
|
+
readonly type: "uint256";
|
|
165
|
+
}];
|
|
166
|
+
readonly stateMutability: "view";
|
|
167
|
+
readonly type: "function";
|
|
168
|
+
}, {
|
|
169
|
+
readonly inputs: readonly [{
|
|
170
|
+
readonly internalType: "uint256";
|
|
171
|
+
readonly name: "tokenId";
|
|
172
|
+
readonly type: "uint256";
|
|
173
|
+
}];
|
|
174
|
+
readonly name: "getApproved";
|
|
175
|
+
readonly outputs: readonly [{
|
|
176
|
+
readonly internalType: "address";
|
|
177
|
+
readonly name: "";
|
|
178
|
+
readonly type: "address";
|
|
179
|
+
}];
|
|
180
|
+
readonly stateMutability: "view";
|
|
181
|
+
readonly type: "function";
|
|
182
|
+
}, {
|
|
183
|
+
readonly inputs: readonly [{
|
|
184
|
+
readonly internalType: "address";
|
|
185
|
+
readonly name: "owner";
|
|
186
|
+
readonly type: "address";
|
|
187
|
+
}, {
|
|
188
|
+
readonly internalType: "address";
|
|
189
|
+
readonly name: "operator";
|
|
190
|
+
readonly type: "address";
|
|
191
|
+
}];
|
|
192
|
+
readonly name: "isApprovedForAll";
|
|
193
|
+
readonly outputs: readonly [{
|
|
194
|
+
readonly internalType: "bool";
|
|
195
|
+
readonly name: "";
|
|
196
|
+
readonly type: "bool";
|
|
197
|
+
}];
|
|
198
|
+
readonly stateMutability: "view";
|
|
199
|
+
readonly type: "function";
|
|
200
|
+
}, {
|
|
201
|
+
readonly inputs: readonly [];
|
|
202
|
+
readonly name: "name";
|
|
203
|
+
readonly outputs: readonly [{
|
|
204
|
+
readonly internalType: "string";
|
|
205
|
+
readonly name: "";
|
|
206
|
+
readonly type: "string";
|
|
207
|
+
}];
|
|
208
|
+
readonly stateMutability: "view";
|
|
209
|
+
readonly type: "function";
|
|
210
|
+
}, {
|
|
211
|
+
readonly inputs: readonly [{
|
|
212
|
+
readonly internalType: "uint256";
|
|
213
|
+
readonly name: "tokenId";
|
|
214
|
+
readonly type: "uint256";
|
|
215
|
+
}];
|
|
216
|
+
readonly name: "ownerOf";
|
|
217
|
+
readonly outputs: readonly [{
|
|
218
|
+
readonly internalType: "address";
|
|
219
|
+
readonly name: "";
|
|
220
|
+
readonly type: "address";
|
|
221
|
+
}];
|
|
222
|
+
readonly stateMutability: "view";
|
|
223
|
+
readonly type: "function";
|
|
224
|
+
}, {
|
|
225
|
+
readonly inputs: readonly [{
|
|
226
|
+
readonly internalType: "address";
|
|
227
|
+
readonly name: "from";
|
|
228
|
+
readonly type: "address";
|
|
229
|
+
}, {
|
|
230
|
+
readonly internalType: "address";
|
|
231
|
+
readonly name: "to";
|
|
232
|
+
readonly type: "address";
|
|
233
|
+
}, {
|
|
234
|
+
readonly internalType: "uint256";
|
|
235
|
+
readonly name: "tokenId";
|
|
236
|
+
readonly type: "uint256";
|
|
237
|
+
}];
|
|
238
|
+
readonly name: "safeTransferFrom";
|
|
239
|
+
readonly outputs: readonly [];
|
|
240
|
+
readonly stateMutability: "nonpayable";
|
|
241
|
+
readonly type: "function";
|
|
242
|
+
}, {
|
|
243
|
+
readonly inputs: readonly [{
|
|
244
|
+
readonly internalType: "address";
|
|
245
|
+
readonly name: "from";
|
|
246
|
+
readonly type: "address";
|
|
247
|
+
}, {
|
|
248
|
+
readonly internalType: "address";
|
|
249
|
+
readonly name: "to";
|
|
250
|
+
readonly type: "address";
|
|
251
|
+
}, {
|
|
252
|
+
readonly internalType: "uint256";
|
|
253
|
+
readonly name: "tokenId";
|
|
254
|
+
readonly type: "uint256";
|
|
255
|
+
}, {
|
|
256
|
+
readonly internalType: "bytes";
|
|
257
|
+
readonly name: "data";
|
|
258
|
+
readonly type: "bytes";
|
|
259
|
+
}];
|
|
260
|
+
readonly name: "safeTransferFrom";
|
|
261
|
+
readonly outputs: readonly [];
|
|
262
|
+
readonly stateMutability: "nonpayable";
|
|
263
|
+
readonly type: "function";
|
|
264
|
+
}, {
|
|
265
|
+
readonly inputs: readonly [{
|
|
266
|
+
readonly internalType: "address";
|
|
267
|
+
readonly name: "operator";
|
|
268
|
+
readonly type: "address";
|
|
269
|
+
}, {
|
|
270
|
+
readonly internalType: "bool";
|
|
271
|
+
readonly name: "approved";
|
|
272
|
+
readonly type: "bool";
|
|
273
|
+
}];
|
|
274
|
+
readonly name: "setApprovalForAll";
|
|
275
|
+
readonly outputs: readonly [];
|
|
276
|
+
readonly stateMutability: "nonpayable";
|
|
277
|
+
readonly type: "function";
|
|
278
|
+
}, {
|
|
279
|
+
readonly inputs: readonly [{
|
|
280
|
+
readonly internalType: "bytes4";
|
|
281
|
+
readonly name: "interfaceId";
|
|
282
|
+
readonly type: "bytes4";
|
|
283
|
+
}];
|
|
284
|
+
readonly name: "supportsInterface";
|
|
285
|
+
readonly outputs: readonly [{
|
|
286
|
+
readonly internalType: "bool";
|
|
287
|
+
readonly name: "";
|
|
288
|
+
readonly type: "bool";
|
|
289
|
+
}];
|
|
290
|
+
readonly stateMutability: "view";
|
|
291
|
+
readonly type: "function";
|
|
292
|
+
}, {
|
|
293
|
+
readonly inputs: readonly [];
|
|
294
|
+
readonly name: "symbol";
|
|
295
|
+
readonly outputs: readonly [{
|
|
296
|
+
readonly internalType: "string";
|
|
297
|
+
readonly name: "";
|
|
298
|
+
readonly type: "string";
|
|
299
|
+
}];
|
|
300
|
+
readonly stateMutability: "view";
|
|
301
|
+
readonly type: "function";
|
|
302
|
+
}, {
|
|
303
|
+
readonly inputs: readonly [{
|
|
304
|
+
readonly internalType: "uint256";
|
|
305
|
+
readonly name: "tokenId";
|
|
306
|
+
readonly type: "uint256";
|
|
307
|
+
}];
|
|
308
|
+
readonly name: "tokenURI";
|
|
309
|
+
readonly outputs: readonly [{
|
|
310
|
+
readonly internalType: "string";
|
|
311
|
+
readonly name: "";
|
|
312
|
+
readonly type: "string";
|
|
313
|
+
}];
|
|
314
|
+
readonly stateMutability: "view";
|
|
315
|
+
readonly type: "function";
|
|
316
|
+
}, {
|
|
317
|
+
readonly inputs: readonly [{
|
|
318
|
+
readonly internalType: "address";
|
|
319
|
+
readonly name: "from";
|
|
320
|
+
readonly type: "address";
|
|
321
|
+
}, {
|
|
322
|
+
readonly internalType: "address";
|
|
323
|
+
readonly name: "to";
|
|
324
|
+
readonly type: "address";
|
|
325
|
+
}, {
|
|
326
|
+
readonly internalType: "uint256";
|
|
327
|
+
readonly name: "tokenId";
|
|
328
|
+
readonly type: "uint256";
|
|
329
|
+
}];
|
|
330
|
+
readonly name: "transferFrom";
|
|
331
|
+
readonly outputs: readonly [];
|
|
332
|
+
readonly stateMutability: "nonpayable";
|
|
333
|
+
readonly type: "function";
|
|
334
|
+
}];
|
|
335
|
+
static createInterface(): ERC721Interface;
|
|
336
|
+
static connect(address: string, runner?: ContractRunner | null): ERC721;
|
|
337
|
+
}
|
package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721Receiver__factory.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { type ContractRunner } from "ethers";
|
|
2
|
+
import type { IERC721Receiver, IERC721ReceiverInterface } from "../../../../../@openzeppelin/contracts/token/ERC721/IERC721Receiver";
|
|
3
|
+
export declare class IERC721Receiver__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: "tokenId";
|
|
16
|
+
readonly type: "uint256";
|
|
17
|
+
}, {
|
|
18
|
+
readonly internalType: "bytes";
|
|
19
|
+
readonly name: "data";
|
|
20
|
+
readonly type: "bytes";
|
|
21
|
+
}];
|
|
22
|
+
readonly name: "onERC721Received";
|
|
23
|
+
readonly outputs: readonly [{
|
|
24
|
+
readonly internalType: "bytes4";
|
|
25
|
+
readonly name: "";
|
|
26
|
+
readonly type: "bytes4";
|
|
27
|
+
}];
|
|
28
|
+
readonly stateMutability: "nonpayable";
|
|
29
|
+
readonly type: "function";
|
|
30
|
+
}];
|
|
31
|
+
static createInterface(): IERC721ReceiverInterface;
|
|
32
|
+
static connect(address: string, runner?: ContractRunner | null): IERC721Receiver;
|
|
33
|
+
}
|