@gooddollar/goodcollective-contracts 1.0.1 → 1.0.2
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/contracts/DirectPayments/DirectPaymentsPool.sol +12 -2
- package/contracts/GoodCollective/GoodCollectiveSuperApp.sol +264 -0
- package/contracts/GoodCollective/SuperAppBaseFlow.sol +204 -0
- package/contracts/utils/SwapRouterMock.sol +32 -0
- package/package.json +4 -1
- package/releases/deployment.json +7984 -2746
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/AggregatorV3Interface.ts +199 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/CERC20.ts +630 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/ERC20.ts +450 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAaveIncentivesController.ts +161 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAdminWallet.ts +189 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IDonationStaking.ts +98 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IERC2917.ts +750 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IFirstClaimPool.ts +144 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodDollar.ts +1033 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodStaking.ts +281 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IHasRouter.ts +81 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentity.ts +598 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentityV2.ts +689 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/ILendingPool.ts +257 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IMultichainRouter.ts +179 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/INameService.ts +100 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/IUBIScheme.ts +137 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/ProxyAdmin.ts +278 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/Reserve.ts +117 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/Staking.ts +175 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/Uniswap.ts +464 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapFactory.ts +105 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapPair.ts +209 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/Interfaces.sol/index.ts +26 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/index.ts +7 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/IFeesFormula.ts +115 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/index.ts +4 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/index.ts +7 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/IGoodDollarCustom.ts +726 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/ISuperGoodDollar.ts +3662 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/index.ts +5 -0
- package/typechain-types/@gooddollar/goodprotocol/contracts/token/superfluid/index.ts +5 -0
- package/typechain-types/@gooddollar/goodprotocol/index.ts +5 -0
- package/typechain-types/@gooddollar/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/IERC20.ts +342 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC20/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/IERC721.ts +559 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.ts +619 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/extensions/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC721/index.ts +6 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC777/IERC777.ts +650 -0
- package/typechain-types/@openzeppelin/contracts/token/ERC777/index.ts +4 -0
- package/typechain-types/@openzeppelin/contracts/token/index.ts +9 -0
- package/typechain-types/@openzeppelin/contracts/utils/index.ts +5 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/IERC165.ts +103 -0
- package/typechain-types/@openzeppelin/contracts/utils/introspection/index.ts +4 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/index.ts +5 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1.ts +1390 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1.ts +1280 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/index.ts +5 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/index.ts +9 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT.ts +876 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT.ts +945 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase.ts +807 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement.ts +157 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp.ts +457 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken.ts +2806 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory.ts +465 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid.ts +1727 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance.ts +506 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken.ts +1010 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/index.ts +13 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ERC20WithTokenInfo.ts +384 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/TokenInfo.ts +109 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/index.ts +5 -0
- package/typechain-types/@superfluid-finance/ethereum-contracts/index.ts +5 -0
- package/typechain-types/@superfluid-finance/index.ts +5 -0
- package/typechain-types/@uniswap/index.ts +7 -0
- package/typechain-types/@uniswap/v3-core/contracts/index.ts +5 -0
- package/typechain-types/@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback.ts +122 -0
- package/typechain-types/@uniswap/v3-core/contracts/interfaces/callback/index.ts +4 -0
- package/typechain-types/@uniswap/v3-core/contracts/interfaces/index.ts +5 -0
- package/typechain-types/@uniswap/v3-core/index.ts +5 -0
- package/typechain-types/@uniswap/v3-periphery/contracts/index.ts +5 -0
- package/typechain-types/@uniswap/v3-periphery/contracts/interfaces/ISwapRouter.ts +369 -0
- package/typechain-types/@uniswap/v3-periphery/contracts/interfaces/index.ts +4 -0
- package/typechain-types/@uniswap/v3-periphery/index.ts +5 -0
- package/typechain-types/contracts/DirectPayments/DirectPaymentsPool.sol/DirectPaymentsPool.ts +763 -0
- package/typechain-types/contracts/GoodCollective/GoodCollectiveSuperApp.ts +843 -0
- package/typechain-types/contracts/GoodCollective/SuperAppBaseFlow.ts +523 -0
- package/typechain-types/contracts/GoodCollective/index.ts +5 -0
- package/typechain-types/contracts/index.ts +4 -1
- package/typechain-types/contracts/utils/SwapRouterMock.ts +194 -0
- package/typechain-types/contracts/utils/index.ts +4 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/AggregatorV3Interface__factory.ts +121 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/CERC20__factory.ts +384 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ERC20__factory.ts +288 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAaveIncentivesController__factory.ts +83 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAdminWallet__factory.ts +78 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IDonationStaking__factory.ts +33 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IERC2917__factory.ts +496 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IFirstClaimPool__factory.ts +65 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodDollar__factory.ts +598 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodStaking__factory.ts +178 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IHasRouter__factory.ts +39 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentityV2__factory.ts +334 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentity__factory.ts +287 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ILendingPool__factory.ts +171 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IMultichainRouter__factory.ts +82 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/INameService__factory.ts +45 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IUBIScheme__factory.ts +71 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ProxyAdmin__factory.ts +131 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Reserve__factory.ts +55 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Staking__factory.ts +77 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapFactory__factory.ts +50 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapPair__factory.ts +120 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Uniswap__factory.ts +275 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/index.ts +26 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/index.ts +5 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/IFeesFormula__factory.ts +60 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/index.ts +4 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/index.ts +5 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/IGoodDollarCustom__factory.ts +370 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/ISuperGoodDollar__factory.ts +2301 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/index.ts +5 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/contracts/token/superfluid/index.ts +4 -0
- package/typechain-types/factories/@gooddollar/goodprotocol/index.ts +4 -0
- package/typechain-types/factories/@gooddollar/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/index.ts +2 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.ts +206 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC20/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.ts +311 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory.ts +356 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/extensions/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC721/index.ts +5 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC777/IERC777__factory.ts +417 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/ERC777/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/token/index.ts +6 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/index.ts +4 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.ts +45 -0
- package/typechain-types/factories/@openzeppelin/contracts/utils/introspection/index.ts +4 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/index.ts +4 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1__factory.ts +986 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1__factory.ts +1015 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/index.ts +5 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/index.ts +6 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT__factory.ts +551 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT__factory.ts +614 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase__factory.ts +515 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement__factory.ts +78 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp__factory.ts +275 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory__factory.ts +276 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken__factory.ts +1839 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance__factory.ts +264 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken__factory.ts +697 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid__factory.ts +1151 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/index.ts +13 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ERC20WithTokenInfo__factory.ts +248 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/TokenInfo__factory.ts +65 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/index.ts +5 -0
- package/typechain-types/factories/@superfluid-finance/ethereum-contracts/index.ts +4 -0
- package/typechain-types/factories/@superfluid-finance/index.ts +4 -0
- package/typechain-types/factories/@uniswap/index.ts +5 -0
- package/typechain-types/factories/@uniswap/v3-core/contracts/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback__factory.ts +53 -0
- package/typechain-types/factories/@uniswap/v3-core/contracts/interfaces/callback/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-core/contracts/interfaces/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-core/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-periphery/contracts/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-periphery/contracts/interfaces/ISwapRouter__factory.ts +263 -0
- package/typechain-types/factories/@uniswap/v3-periphery/contracts/interfaces/index.ts +4 -0
- package/typechain-types/factories/@uniswap/v3-periphery/index.ts +4 -0
- package/typechain-types/factories/contracts/DirectPayments/DirectPaymentsFactory__factory.ts +1 -1
- package/typechain-types/factories/contracts/DirectPayments/DirectPaymentsPool.sol/DirectPaymentsPool__factory.ts +581 -3
- package/typechain-types/factories/contracts/GoodCollective/GoodCollectiveSuperApp__factory.ts +584 -0
- package/typechain-types/factories/contracts/GoodCollective/SuperAppBaseFlow__factory.ts +335 -0
- package/typechain-types/factories/contracts/GoodCollective/index.ts +5 -0
- package/typechain-types/factories/contracts/index.ts +2 -1
- package/typechain-types/factories/contracts/utils/SwapRouterMock__factory.ts +183 -0
- package/typechain-types/factories/contracts/utils/index.ts +4 -0
- package/typechain-types/factories/index.ts +3 -0
- package/typechain-types/hardhat.d.ts +445 -4
- package/typechain-types/index.ts +106 -4
|
@@ -12,6 +12,110 @@ import * as Contracts from ".";
|
|
|
12
12
|
|
|
13
13
|
declare module "hardhat/types/runtime" {
|
|
14
14
|
interface HardhatEthersHelpers extends HardhatEthersHelpersBase {
|
|
15
|
+
getContractFactory(
|
|
16
|
+
name: "AggregatorV3Interface",
|
|
17
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
18
|
+
): Promise<Contracts.AggregatorV3Interface__factory>;
|
|
19
|
+
getContractFactory(
|
|
20
|
+
name: "CERC20",
|
|
21
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
22
|
+
): Promise<Contracts.CERC20__factory>;
|
|
23
|
+
getContractFactory(
|
|
24
|
+
name: "ERC20",
|
|
25
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
26
|
+
): Promise<Contracts.ERC20__factory>;
|
|
27
|
+
getContractFactory(
|
|
28
|
+
name: "IAaveIncentivesController",
|
|
29
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
30
|
+
): Promise<Contracts.IAaveIncentivesController__factory>;
|
|
31
|
+
getContractFactory(
|
|
32
|
+
name: "IAdminWallet",
|
|
33
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
34
|
+
): Promise<Contracts.IAdminWallet__factory>;
|
|
35
|
+
getContractFactory(
|
|
36
|
+
name: "IDonationStaking",
|
|
37
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
38
|
+
): Promise<Contracts.IDonationStaking__factory>;
|
|
39
|
+
getContractFactory(
|
|
40
|
+
name: "IERC2917",
|
|
41
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
42
|
+
): Promise<Contracts.IERC2917__factory>;
|
|
43
|
+
getContractFactory(
|
|
44
|
+
name: "IFirstClaimPool",
|
|
45
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
46
|
+
): Promise<Contracts.IFirstClaimPool__factory>;
|
|
47
|
+
getContractFactory(
|
|
48
|
+
name: "IGoodDollar",
|
|
49
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
50
|
+
): Promise<Contracts.IGoodDollar__factory>;
|
|
51
|
+
getContractFactory(
|
|
52
|
+
name: "IGoodStaking",
|
|
53
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
54
|
+
): Promise<Contracts.IGoodStaking__factory>;
|
|
55
|
+
getContractFactory(
|
|
56
|
+
name: "IHasRouter",
|
|
57
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
58
|
+
): Promise<Contracts.IHasRouter__factory>;
|
|
59
|
+
getContractFactory(
|
|
60
|
+
name: "IIdentity",
|
|
61
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
62
|
+
): Promise<Contracts.IIdentity__factory>;
|
|
63
|
+
getContractFactory(
|
|
64
|
+
name: "IIdentityV2",
|
|
65
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
66
|
+
): Promise<Contracts.IIdentityV2__factory>;
|
|
67
|
+
getContractFactory(
|
|
68
|
+
name: "ILendingPool",
|
|
69
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
70
|
+
): Promise<Contracts.ILendingPool__factory>;
|
|
71
|
+
getContractFactory(
|
|
72
|
+
name: "IMultichainRouter",
|
|
73
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
74
|
+
): Promise<Contracts.IMultichainRouter__factory>;
|
|
75
|
+
getContractFactory(
|
|
76
|
+
name: "INameService",
|
|
77
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
78
|
+
): Promise<Contracts.INameService__factory>;
|
|
79
|
+
getContractFactory(
|
|
80
|
+
name: "IUBIScheme",
|
|
81
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
82
|
+
): Promise<Contracts.IUBIScheme__factory>;
|
|
83
|
+
getContractFactory(
|
|
84
|
+
name: "ProxyAdmin",
|
|
85
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
86
|
+
): Promise<Contracts.ProxyAdmin__factory>;
|
|
87
|
+
getContractFactory(
|
|
88
|
+
name: "Reserve",
|
|
89
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
90
|
+
): Promise<Contracts.Reserve__factory>;
|
|
91
|
+
getContractFactory(
|
|
92
|
+
name: "Staking",
|
|
93
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
94
|
+
): Promise<Contracts.Staking__factory>;
|
|
95
|
+
getContractFactory(
|
|
96
|
+
name: "Uniswap",
|
|
97
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
98
|
+
): Promise<Contracts.Uniswap__factory>;
|
|
99
|
+
getContractFactory(
|
|
100
|
+
name: "UniswapFactory",
|
|
101
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
102
|
+
): Promise<Contracts.UniswapFactory__factory>;
|
|
103
|
+
getContractFactory(
|
|
104
|
+
name: "UniswapPair",
|
|
105
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
106
|
+
): Promise<Contracts.UniswapPair__factory>;
|
|
107
|
+
getContractFactory(
|
|
108
|
+
name: "IFeesFormula",
|
|
109
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
110
|
+
): Promise<Contracts.IFeesFormula__factory>;
|
|
111
|
+
getContractFactory(
|
|
112
|
+
name: "IGoodDollarCustom",
|
|
113
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
114
|
+
): Promise<Contracts.IGoodDollarCustom__factory>;
|
|
115
|
+
getContractFactory(
|
|
116
|
+
name: "ISuperGoodDollar",
|
|
117
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
118
|
+
): Promise<Contracts.ISuperGoodDollar__factory>;
|
|
15
119
|
getContractFactory(
|
|
16
120
|
name: "AccessControlUpgradeable",
|
|
17
121
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -104,6 +208,90 @@ declare module "hardhat/types/runtime" {
|
|
|
104
208
|
name: "Proxy",
|
|
105
209
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
106
210
|
): Promise<Contracts.Proxy__factory>;
|
|
211
|
+
getContractFactory(
|
|
212
|
+
name: "IERC20",
|
|
213
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
214
|
+
): Promise<Contracts.IERC20__factory>;
|
|
215
|
+
getContractFactory(
|
|
216
|
+
name: "IERC721Metadata",
|
|
217
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
218
|
+
): Promise<Contracts.IERC721Metadata__factory>;
|
|
219
|
+
getContractFactory(
|
|
220
|
+
name: "IERC721",
|
|
221
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
222
|
+
): Promise<Contracts.IERC721__factory>;
|
|
223
|
+
getContractFactory(
|
|
224
|
+
name: "IERC777",
|
|
225
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
226
|
+
): Promise<Contracts.IERC777__factory>;
|
|
227
|
+
getContractFactory(
|
|
228
|
+
name: "IERC165",
|
|
229
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
230
|
+
): Promise<Contracts.IERC165__factory>;
|
|
231
|
+
getContractFactory(
|
|
232
|
+
name: "IConstantFlowAgreementV1",
|
|
233
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
234
|
+
): Promise<Contracts.IConstantFlowAgreementV1__factory>;
|
|
235
|
+
getContractFactory(
|
|
236
|
+
name: "IInstantDistributionAgreementV1",
|
|
237
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
238
|
+
): Promise<Contracts.IInstantDistributionAgreementV1__factory>;
|
|
239
|
+
getContractFactory(
|
|
240
|
+
name: "IConstantInflowNFT",
|
|
241
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
242
|
+
): Promise<Contracts.IConstantInflowNFT__factory>;
|
|
243
|
+
getContractFactory(
|
|
244
|
+
name: "IConstantOutflowNFT",
|
|
245
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
246
|
+
): Promise<Contracts.IConstantOutflowNFT__factory>;
|
|
247
|
+
getContractFactory(
|
|
248
|
+
name: "IFlowNFTBase",
|
|
249
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
250
|
+
): Promise<Contracts.IFlowNFTBase__factory>;
|
|
251
|
+
getContractFactory(
|
|
252
|
+
name: "ISuperAgreement",
|
|
253
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
254
|
+
): Promise<Contracts.ISuperAgreement__factory>;
|
|
255
|
+
getContractFactory(
|
|
256
|
+
name: "ISuperApp",
|
|
257
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
258
|
+
): Promise<Contracts.ISuperApp__factory>;
|
|
259
|
+
getContractFactory(
|
|
260
|
+
name: "ISuperfluid",
|
|
261
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
262
|
+
): Promise<Contracts.ISuperfluid__factory>;
|
|
263
|
+
getContractFactory(
|
|
264
|
+
name: "ISuperfluidGovernance",
|
|
265
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
266
|
+
): Promise<Contracts.ISuperfluidGovernance__factory>;
|
|
267
|
+
getContractFactory(
|
|
268
|
+
name: "ISuperfluidToken",
|
|
269
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
270
|
+
): Promise<Contracts.ISuperfluidToken__factory>;
|
|
271
|
+
getContractFactory(
|
|
272
|
+
name: "ISuperToken",
|
|
273
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
274
|
+
): Promise<Contracts.ISuperToken__factory>;
|
|
275
|
+
getContractFactory(
|
|
276
|
+
name: "ISuperTokenFactory",
|
|
277
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
278
|
+
): Promise<Contracts.ISuperTokenFactory__factory>;
|
|
279
|
+
getContractFactory(
|
|
280
|
+
name: "ERC20WithTokenInfo",
|
|
281
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
282
|
+
): Promise<Contracts.ERC20WithTokenInfo__factory>;
|
|
283
|
+
getContractFactory(
|
|
284
|
+
name: "TokenInfo",
|
|
285
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
286
|
+
): Promise<Contracts.TokenInfo__factory>;
|
|
287
|
+
getContractFactory(
|
|
288
|
+
name: "IUniswapV3SwapCallback",
|
|
289
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
290
|
+
): Promise<Contracts.IUniswapV3SwapCallback__factory>;
|
|
291
|
+
getContractFactory(
|
|
292
|
+
name: "ISwapRouter",
|
|
293
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
294
|
+
): Promise<Contracts.ISwapRouter__factory>;
|
|
107
295
|
getContractFactory(
|
|
108
296
|
name: "DirectPaymentsFactory",
|
|
109
297
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
@@ -125,10 +313,148 @@ declare module "hardhat/types/runtime" {
|
|
|
125
313
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
126
314
|
): Promise<Contracts.ProvableNFT__factory>;
|
|
127
315
|
getContractFactory(
|
|
128
|
-
name: "
|
|
316
|
+
name: "GoodCollectiveSuperApp",
|
|
317
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
318
|
+
): Promise<Contracts.GoodCollectiveSuperApp__factory>;
|
|
319
|
+
getContractFactory(
|
|
320
|
+
name: "SuperAppBaseFlow",
|
|
129
321
|
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
130
|
-
): Promise<Contracts.
|
|
322
|
+
): Promise<Contracts.SuperAppBaseFlow__factory>;
|
|
323
|
+
getContractFactory(
|
|
324
|
+
name: "SwapRouterMock",
|
|
325
|
+
signerOrOptions?: ethers.Signer | FactoryOptions
|
|
326
|
+
): Promise<Contracts.SwapRouterMock__factory>;
|
|
131
327
|
|
|
328
|
+
getContractAt(
|
|
329
|
+
name: "AggregatorV3Interface",
|
|
330
|
+
address: string,
|
|
331
|
+
signer?: ethers.Signer
|
|
332
|
+
): Promise<Contracts.AggregatorV3Interface>;
|
|
333
|
+
getContractAt(
|
|
334
|
+
name: "CERC20",
|
|
335
|
+
address: string,
|
|
336
|
+
signer?: ethers.Signer
|
|
337
|
+
): Promise<Contracts.CERC20>;
|
|
338
|
+
getContractAt(
|
|
339
|
+
name: "ERC20",
|
|
340
|
+
address: string,
|
|
341
|
+
signer?: ethers.Signer
|
|
342
|
+
): Promise<Contracts.ERC20>;
|
|
343
|
+
getContractAt(
|
|
344
|
+
name: "IAaveIncentivesController",
|
|
345
|
+
address: string,
|
|
346
|
+
signer?: ethers.Signer
|
|
347
|
+
): Promise<Contracts.IAaveIncentivesController>;
|
|
348
|
+
getContractAt(
|
|
349
|
+
name: "IAdminWallet",
|
|
350
|
+
address: string,
|
|
351
|
+
signer?: ethers.Signer
|
|
352
|
+
): Promise<Contracts.IAdminWallet>;
|
|
353
|
+
getContractAt(
|
|
354
|
+
name: "IDonationStaking",
|
|
355
|
+
address: string,
|
|
356
|
+
signer?: ethers.Signer
|
|
357
|
+
): Promise<Contracts.IDonationStaking>;
|
|
358
|
+
getContractAt(
|
|
359
|
+
name: "IERC2917",
|
|
360
|
+
address: string,
|
|
361
|
+
signer?: ethers.Signer
|
|
362
|
+
): Promise<Contracts.IERC2917>;
|
|
363
|
+
getContractAt(
|
|
364
|
+
name: "IFirstClaimPool",
|
|
365
|
+
address: string,
|
|
366
|
+
signer?: ethers.Signer
|
|
367
|
+
): Promise<Contracts.IFirstClaimPool>;
|
|
368
|
+
getContractAt(
|
|
369
|
+
name: "IGoodDollar",
|
|
370
|
+
address: string,
|
|
371
|
+
signer?: ethers.Signer
|
|
372
|
+
): Promise<Contracts.IGoodDollar>;
|
|
373
|
+
getContractAt(
|
|
374
|
+
name: "IGoodStaking",
|
|
375
|
+
address: string,
|
|
376
|
+
signer?: ethers.Signer
|
|
377
|
+
): Promise<Contracts.IGoodStaking>;
|
|
378
|
+
getContractAt(
|
|
379
|
+
name: "IHasRouter",
|
|
380
|
+
address: string,
|
|
381
|
+
signer?: ethers.Signer
|
|
382
|
+
): Promise<Contracts.IHasRouter>;
|
|
383
|
+
getContractAt(
|
|
384
|
+
name: "IIdentity",
|
|
385
|
+
address: string,
|
|
386
|
+
signer?: ethers.Signer
|
|
387
|
+
): Promise<Contracts.IIdentity>;
|
|
388
|
+
getContractAt(
|
|
389
|
+
name: "IIdentityV2",
|
|
390
|
+
address: string,
|
|
391
|
+
signer?: ethers.Signer
|
|
392
|
+
): Promise<Contracts.IIdentityV2>;
|
|
393
|
+
getContractAt(
|
|
394
|
+
name: "ILendingPool",
|
|
395
|
+
address: string,
|
|
396
|
+
signer?: ethers.Signer
|
|
397
|
+
): Promise<Contracts.ILendingPool>;
|
|
398
|
+
getContractAt(
|
|
399
|
+
name: "IMultichainRouter",
|
|
400
|
+
address: string,
|
|
401
|
+
signer?: ethers.Signer
|
|
402
|
+
): Promise<Contracts.IMultichainRouter>;
|
|
403
|
+
getContractAt(
|
|
404
|
+
name: "INameService",
|
|
405
|
+
address: string,
|
|
406
|
+
signer?: ethers.Signer
|
|
407
|
+
): Promise<Contracts.INameService>;
|
|
408
|
+
getContractAt(
|
|
409
|
+
name: "IUBIScheme",
|
|
410
|
+
address: string,
|
|
411
|
+
signer?: ethers.Signer
|
|
412
|
+
): Promise<Contracts.IUBIScheme>;
|
|
413
|
+
getContractAt(
|
|
414
|
+
name: "ProxyAdmin",
|
|
415
|
+
address: string,
|
|
416
|
+
signer?: ethers.Signer
|
|
417
|
+
): Promise<Contracts.ProxyAdmin>;
|
|
418
|
+
getContractAt(
|
|
419
|
+
name: "Reserve",
|
|
420
|
+
address: string,
|
|
421
|
+
signer?: ethers.Signer
|
|
422
|
+
): Promise<Contracts.Reserve>;
|
|
423
|
+
getContractAt(
|
|
424
|
+
name: "Staking",
|
|
425
|
+
address: string,
|
|
426
|
+
signer?: ethers.Signer
|
|
427
|
+
): Promise<Contracts.Staking>;
|
|
428
|
+
getContractAt(
|
|
429
|
+
name: "Uniswap",
|
|
430
|
+
address: string,
|
|
431
|
+
signer?: ethers.Signer
|
|
432
|
+
): Promise<Contracts.Uniswap>;
|
|
433
|
+
getContractAt(
|
|
434
|
+
name: "UniswapFactory",
|
|
435
|
+
address: string,
|
|
436
|
+
signer?: ethers.Signer
|
|
437
|
+
): Promise<Contracts.UniswapFactory>;
|
|
438
|
+
getContractAt(
|
|
439
|
+
name: "UniswapPair",
|
|
440
|
+
address: string,
|
|
441
|
+
signer?: ethers.Signer
|
|
442
|
+
): Promise<Contracts.UniswapPair>;
|
|
443
|
+
getContractAt(
|
|
444
|
+
name: "IFeesFormula",
|
|
445
|
+
address: string,
|
|
446
|
+
signer?: ethers.Signer
|
|
447
|
+
): Promise<Contracts.IFeesFormula>;
|
|
448
|
+
getContractAt(
|
|
449
|
+
name: "IGoodDollarCustom",
|
|
450
|
+
address: string,
|
|
451
|
+
signer?: ethers.Signer
|
|
452
|
+
): Promise<Contracts.IGoodDollarCustom>;
|
|
453
|
+
getContractAt(
|
|
454
|
+
name: "ISuperGoodDollar",
|
|
455
|
+
address: string,
|
|
456
|
+
signer?: ethers.Signer
|
|
457
|
+
): Promise<Contracts.ISuperGoodDollar>;
|
|
132
458
|
getContractAt(
|
|
133
459
|
name: "AccessControlUpgradeable",
|
|
134
460
|
address: string,
|
|
@@ -244,6 +570,111 @@ declare module "hardhat/types/runtime" {
|
|
|
244
570
|
address: string,
|
|
245
571
|
signer?: ethers.Signer
|
|
246
572
|
): Promise<Contracts.Proxy>;
|
|
573
|
+
getContractAt(
|
|
574
|
+
name: "IERC20",
|
|
575
|
+
address: string,
|
|
576
|
+
signer?: ethers.Signer
|
|
577
|
+
): Promise<Contracts.IERC20>;
|
|
578
|
+
getContractAt(
|
|
579
|
+
name: "IERC721Metadata",
|
|
580
|
+
address: string,
|
|
581
|
+
signer?: ethers.Signer
|
|
582
|
+
): Promise<Contracts.IERC721Metadata>;
|
|
583
|
+
getContractAt(
|
|
584
|
+
name: "IERC721",
|
|
585
|
+
address: string,
|
|
586
|
+
signer?: ethers.Signer
|
|
587
|
+
): Promise<Contracts.IERC721>;
|
|
588
|
+
getContractAt(
|
|
589
|
+
name: "IERC777",
|
|
590
|
+
address: string,
|
|
591
|
+
signer?: ethers.Signer
|
|
592
|
+
): Promise<Contracts.IERC777>;
|
|
593
|
+
getContractAt(
|
|
594
|
+
name: "IERC165",
|
|
595
|
+
address: string,
|
|
596
|
+
signer?: ethers.Signer
|
|
597
|
+
): Promise<Contracts.IERC165>;
|
|
598
|
+
getContractAt(
|
|
599
|
+
name: "IConstantFlowAgreementV1",
|
|
600
|
+
address: string,
|
|
601
|
+
signer?: ethers.Signer
|
|
602
|
+
): Promise<Contracts.IConstantFlowAgreementV1>;
|
|
603
|
+
getContractAt(
|
|
604
|
+
name: "IInstantDistributionAgreementV1",
|
|
605
|
+
address: string,
|
|
606
|
+
signer?: ethers.Signer
|
|
607
|
+
): Promise<Contracts.IInstantDistributionAgreementV1>;
|
|
608
|
+
getContractAt(
|
|
609
|
+
name: "IConstantInflowNFT",
|
|
610
|
+
address: string,
|
|
611
|
+
signer?: ethers.Signer
|
|
612
|
+
): Promise<Contracts.IConstantInflowNFT>;
|
|
613
|
+
getContractAt(
|
|
614
|
+
name: "IConstantOutflowNFT",
|
|
615
|
+
address: string,
|
|
616
|
+
signer?: ethers.Signer
|
|
617
|
+
): Promise<Contracts.IConstantOutflowNFT>;
|
|
618
|
+
getContractAt(
|
|
619
|
+
name: "IFlowNFTBase",
|
|
620
|
+
address: string,
|
|
621
|
+
signer?: ethers.Signer
|
|
622
|
+
): Promise<Contracts.IFlowNFTBase>;
|
|
623
|
+
getContractAt(
|
|
624
|
+
name: "ISuperAgreement",
|
|
625
|
+
address: string,
|
|
626
|
+
signer?: ethers.Signer
|
|
627
|
+
): Promise<Contracts.ISuperAgreement>;
|
|
628
|
+
getContractAt(
|
|
629
|
+
name: "ISuperApp",
|
|
630
|
+
address: string,
|
|
631
|
+
signer?: ethers.Signer
|
|
632
|
+
): Promise<Contracts.ISuperApp>;
|
|
633
|
+
getContractAt(
|
|
634
|
+
name: "ISuperfluid",
|
|
635
|
+
address: string,
|
|
636
|
+
signer?: ethers.Signer
|
|
637
|
+
): Promise<Contracts.ISuperfluid>;
|
|
638
|
+
getContractAt(
|
|
639
|
+
name: "ISuperfluidGovernance",
|
|
640
|
+
address: string,
|
|
641
|
+
signer?: ethers.Signer
|
|
642
|
+
): Promise<Contracts.ISuperfluidGovernance>;
|
|
643
|
+
getContractAt(
|
|
644
|
+
name: "ISuperfluidToken",
|
|
645
|
+
address: string,
|
|
646
|
+
signer?: ethers.Signer
|
|
647
|
+
): Promise<Contracts.ISuperfluidToken>;
|
|
648
|
+
getContractAt(
|
|
649
|
+
name: "ISuperToken",
|
|
650
|
+
address: string,
|
|
651
|
+
signer?: ethers.Signer
|
|
652
|
+
): Promise<Contracts.ISuperToken>;
|
|
653
|
+
getContractAt(
|
|
654
|
+
name: "ISuperTokenFactory",
|
|
655
|
+
address: string,
|
|
656
|
+
signer?: ethers.Signer
|
|
657
|
+
): Promise<Contracts.ISuperTokenFactory>;
|
|
658
|
+
getContractAt(
|
|
659
|
+
name: "ERC20WithTokenInfo",
|
|
660
|
+
address: string,
|
|
661
|
+
signer?: ethers.Signer
|
|
662
|
+
): Promise<Contracts.ERC20WithTokenInfo>;
|
|
663
|
+
getContractAt(
|
|
664
|
+
name: "TokenInfo",
|
|
665
|
+
address: string,
|
|
666
|
+
signer?: ethers.Signer
|
|
667
|
+
): Promise<Contracts.TokenInfo>;
|
|
668
|
+
getContractAt(
|
|
669
|
+
name: "IUniswapV3SwapCallback",
|
|
670
|
+
address: string,
|
|
671
|
+
signer?: ethers.Signer
|
|
672
|
+
): Promise<Contracts.IUniswapV3SwapCallback>;
|
|
673
|
+
getContractAt(
|
|
674
|
+
name: "ISwapRouter",
|
|
675
|
+
address: string,
|
|
676
|
+
signer?: ethers.Signer
|
|
677
|
+
): Promise<Contracts.ISwapRouter>;
|
|
247
678
|
getContractAt(
|
|
248
679
|
name: "DirectPaymentsFactory",
|
|
249
680
|
address: string,
|
|
@@ -270,10 +701,20 @@ declare module "hardhat/types/runtime" {
|
|
|
270
701
|
signer?: ethers.Signer
|
|
271
702
|
): Promise<Contracts.ProvableNFT>;
|
|
272
703
|
getContractAt(
|
|
273
|
-
name: "
|
|
704
|
+
name: "GoodCollectiveSuperApp",
|
|
705
|
+
address: string,
|
|
706
|
+
signer?: ethers.Signer
|
|
707
|
+
): Promise<Contracts.GoodCollectiveSuperApp>;
|
|
708
|
+
getContractAt(
|
|
709
|
+
name: "SuperAppBaseFlow",
|
|
710
|
+
address: string,
|
|
711
|
+
signer?: ethers.Signer
|
|
712
|
+
): Promise<Contracts.SuperAppBaseFlow>;
|
|
713
|
+
getContractAt(
|
|
714
|
+
name: "SwapRouterMock",
|
|
274
715
|
address: string,
|
|
275
716
|
signer?: ethers.Signer
|
|
276
|
-
): Promise<Contracts.
|
|
717
|
+
): Promise<Contracts.SwapRouterMock>;
|
|
277
718
|
|
|
278
719
|
// default types
|
|
279
720
|
getContractFactory(
|
package/typechain-types/index.ts
CHANGED
|
@@ -1,11 +1,69 @@
|
|
|
1
1
|
/* Autogenerated file. Do not edit manually. */
|
|
2
2
|
/* tslint:disable */
|
|
3
3
|
/* eslint-disable */
|
|
4
|
+
import type * as gooddollar from "./@gooddollar";
|
|
5
|
+
export type { gooddollar };
|
|
4
6
|
import type * as openzeppelin from "./@openzeppelin";
|
|
5
7
|
export type { openzeppelin };
|
|
8
|
+
import type * as superfluidFinance from "./@superfluid-finance";
|
|
9
|
+
export type { superfluidFinance };
|
|
10
|
+
import type * as uniswap from "./@uniswap";
|
|
11
|
+
export type { uniswap };
|
|
6
12
|
import type * as contracts from "./contracts";
|
|
7
13
|
export type { contracts };
|
|
8
14
|
export * as factories from "./factories";
|
|
15
|
+
export type { AggregatorV3Interface } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/AggregatorV3Interface";
|
|
16
|
+
export { AggregatorV3Interface__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/AggregatorV3Interface__factory";
|
|
17
|
+
export type { CERC20 } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/CERC20";
|
|
18
|
+
export { CERC20__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/CERC20__factory";
|
|
19
|
+
export type { ERC20 } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/ERC20";
|
|
20
|
+
export { ERC20__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ERC20__factory";
|
|
21
|
+
export type { IAaveIncentivesController } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IAaveIncentivesController";
|
|
22
|
+
export { IAaveIncentivesController__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAaveIncentivesController__factory";
|
|
23
|
+
export type { IAdminWallet } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IAdminWallet";
|
|
24
|
+
export { IAdminWallet__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IAdminWallet__factory";
|
|
25
|
+
export type { IDonationStaking } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IDonationStaking";
|
|
26
|
+
export { IDonationStaking__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IDonationStaking__factory";
|
|
27
|
+
export type { IERC2917 } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IERC2917";
|
|
28
|
+
export { IERC2917__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IERC2917__factory";
|
|
29
|
+
export type { IFirstClaimPool } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IFirstClaimPool";
|
|
30
|
+
export { IFirstClaimPool__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IFirstClaimPool__factory";
|
|
31
|
+
export type { IGoodDollar } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodDollar";
|
|
32
|
+
export { IGoodDollar__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodDollar__factory";
|
|
33
|
+
export type { IGoodStaking } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodStaking";
|
|
34
|
+
export { IGoodStaking__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IGoodStaking__factory";
|
|
35
|
+
export type { IHasRouter } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IHasRouter";
|
|
36
|
+
export { IHasRouter__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IHasRouter__factory";
|
|
37
|
+
export type { IIdentity } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentity";
|
|
38
|
+
export { IIdentity__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentity__factory";
|
|
39
|
+
export type { IIdentityV2 } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentityV2";
|
|
40
|
+
export { IIdentityV2__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IIdentityV2__factory";
|
|
41
|
+
export type { ILendingPool } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/ILendingPool";
|
|
42
|
+
export { ILendingPool__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ILendingPool__factory";
|
|
43
|
+
export type { IMultichainRouter } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IMultichainRouter";
|
|
44
|
+
export { IMultichainRouter__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IMultichainRouter__factory";
|
|
45
|
+
export type { INameService } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/INameService";
|
|
46
|
+
export { INameService__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/INameService__factory";
|
|
47
|
+
export type { IUBIScheme } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/IUBIScheme";
|
|
48
|
+
export { IUBIScheme__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/IUBIScheme__factory";
|
|
49
|
+
export type { ProxyAdmin } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/ProxyAdmin";
|
|
50
|
+
export { ProxyAdmin__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/ProxyAdmin__factory";
|
|
51
|
+
export type { Reserve } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/Reserve";
|
|
52
|
+
export { Reserve__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Reserve__factory";
|
|
53
|
+
export type { Staking } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/Staking";
|
|
54
|
+
export { Staking__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Staking__factory";
|
|
55
|
+
export type { Uniswap } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/Uniswap";
|
|
56
|
+
export { Uniswap__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/Uniswap__factory";
|
|
57
|
+
export type { UniswapFactory } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapFactory";
|
|
58
|
+
export { UniswapFactory__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapFactory__factory";
|
|
59
|
+
export type { UniswapPair } from "./@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapPair";
|
|
60
|
+
export { UniswapPair__factory } from "./factories/@gooddollar/goodprotocol/contracts/Interfaces.sol/UniswapPair__factory";
|
|
61
|
+
export type { IFeesFormula } from "./@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/IFeesFormula";
|
|
62
|
+
export { IFeesFormula__factory } from "./factories/@gooddollar/goodprotocol/contracts/token/FeesFormula.sol/IFeesFormula__factory";
|
|
63
|
+
export type { IGoodDollarCustom } from "./@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/IGoodDollarCustom";
|
|
64
|
+
export { IGoodDollarCustom__factory } from "./factories/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/IGoodDollarCustom__factory";
|
|
65
|
+
export type { ISuperGoodDollar } from "./@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/ISuperGoodDollar";
|
|
66
|
+
export { ISuperGoodDollar__factory } from "./factories/@gooddollar/goodprotocol/contracts/token/superfluid/ISuperGoodDollar.sol/ISuperGoodDollar__factory";
|
|
9
67
|
export type { AccessControlUpgradeable } from "./@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable";
|
|
10
68
|
export { AccessControlUpgradeable__factory } from "./factories/@openzeppelin/contracts-upgradeable/access/AccessControlUpgradeable__factory";
|
|
11
69
|
export type { IAccessControlUpgradeable } from "./@openzeppelin/contracts-upgradeable/access/IAccessControlUpgradeable";
|
|
@@ -52,15 +110,59 @@ export type { ERC1967Upgrade } from "./@openzeppelin/contracts/proxy/ERC1967/ERC
|
|
|
52
110
|
export { ERC1967Upgrade__factory } from "./factories/@openzeppelin/contracts/proxy/ERC1967/ERC1967Upgrade__factory";
|
|
53
111
|
export type { Proxy } from "./@openzeppelin/contracts/proxy/Proxy";
|
|
54
112
|
export { Proxy__factory } from "./factories/@openzeppelin/contracts/proxy/Proxy__factory";
|
|
113
|
+
export type { IERC20 } from "./@openzeppelin/contracts/token/ERC20/IERC20";
|
|
114
|
+
export { IERC20__factory } from "./factories/@openzeppelin/contracts/token/ERC20/IERC20__factory";
|
|
115
|
+
export type { IERC721Metadata } from "./@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata";
|
|
116
|
+
export { IERC721Metadata__factory } from "./factories/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata__factory";
|
|
117
|
+
export type { IERC721 } from "./@openzeppelin/contracts/token/ERC721/IERC721";
|
|
118
|
+
export { IERC721__factory } from "./factories/@openzeppelin/contracts/token/ERC721/IERC721__factory";
|
|
119
|
+
export type { IERC777 } from "./@openzeppelin/contracts/token/ERC777/IERC777";
|
|
120
|
+
export { IERC777__factory } from "./factories/@openzeppelin/contracts/token/ERC777/IERC777__factory";
|
|
121
|
+
export type { IERC165 } from "./@openzeppelin/contracts/utils/introspection/IERC165";
|
|
122
|
+
export { IERC165__factory } from "./factories/@openzeppelin/contracts/utils/introspection/IERC165__factory";
|
|
123
|
+
export type { IConstantFlowAgreementV1 } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1";
|
|
124
|
+
export { IConstantFlowAgreementV1__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IConstantFlowAgreementV1__factory";
|
|
125
|
+
export type { IInstantDistributionAgreementV1 } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1";
|
|
126
|
+
export { IInstantDistributionAgreementV1__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/agreements/IInstantDistributionAgreementV1__factory";
|
|
127
|
+
export type { IConstantInflowNFT } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT";
|
|
128
|
+
export { IConstantInflowNFT__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantInflowNFT__factory";
|
|
129
|
+
export type { IConstantOutflowNFT } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT";
|
|
130
|
+
export { IConstantOutflowNFT__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IConstantOutflowNFT__factory";
|
|
131
|
+
export type { IFlowNFTBase } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase";
|
|
132
|
+
export { IFlowNFTBase__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/IFlowNFTBase__factory";
|
|
133
|
+
export type { ISuperAgreement } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement";
|
|
134
|
+
export { ISuperAgreement__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperAgreement__factory";
|
|
135
|
+
export type { ISuperApp } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp";
|
|
136
|
+
export { ISuperApp__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperApp__factory";
|
|
137
|
+
export type { ISuperfluid } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid";
|
|
138
|
+
export { ISuperfluid__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluid__factory";
|
|
139
|
+
export type { ISuperfluidGovernance } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance";
|
|
140
|
+
export { ISuperfluidGovernance__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidGovernance__factory";
|
|
141
|
+
export type { ISuperfluidToken } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken";
|
|
142
|
+
export { ISuperfluidToken__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperfluidToken__factory";
|
|
143
|
+
export type { ISuperToken } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken";
|
|
144
|
+
export { ISuperToken__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperToken__factory";
|
|
145
|
+
export type { ISuperTokenFactory } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory";
|
|
146
|
+
export { ISuperTokenFactory__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/superfluid/ISuperTokenFactory__factory";
|
|
147
|
+
export type { ERC20WithTokenInfo } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ERC20WithTokenInfo";
|
|
148
|
+
export { ERC20WithTokenInfo__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/ERC20WithTokenInfo__factory";
|
|
149
|
+
export type { TokenInfo } from "./@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/TokenInfo";
|
|
150
|
+
export { TokenInfo__factory } from "./factories/@superfluid-finance/ethereum-contracts/contracts/interfaces/tokens/TokenInfo__factory";
|
|
151
|
+
export type { IUniswapV3SwapCallback } from "./@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback";
|
|
152
|
+
export { IUniswapV3SwapCallback__factory } from "./factories/@uniswap/v3-core/contracts/interfaces/callback/IUniswapV3SwapCallback__factory";
|
|
153
|
+
export type { ISwapRouter } from "./@uniswap/v3-periphery/contracts/interfaces/ISwapRouter";
|
|
154
|
+
export { ISwapRouter__factory } from "./factories/@uniswap/v3-periphery/contracts/interfaces/ISwapRouter__factory";
|
|
55
155
|
export type { DirectPaymentsFactory } from "./contracts/DirectPayments/DirectPaymentsFactory";
|
|
56
156
|
export { DirectPaymentsFactory__factory } from "./factories/contracts/DirectPayments/DirectPaymentsFactory__factory";
|
|
57
157
|
export type { DirectPaymentsPool } from "./contracts/DirectPayments/DirectPaymentsPool.sol/DirectPaymentsPool";
|
|
58
158
|
export { DirectPaymentsPool__factory } from "./factories/contracts/DirectPayments/DirectPaymentsPool.sol/DirectPaymentsPool__factory";
|
|
59
|
-
export type { IIdentityV2 } from "./contracts/DirectPayments/DirectPaymentsPool.sol/IIdentityV2";
|
|
60
|
-
export { IIdentityV2__factory } from "./factories/contracts/DirectPayments/DirectPaymentsPool.sol/IIdentityV2__factory";
|
|
61
159
|
export type { IMembersValidator } from "./contracts/DirectPayments/DirectPaymentsPool.sol/IMembersValidator";
|
|
62
160
|
export { IMembersValidator__factory } from "./factories/contracts/DirectPayments/DirectPaymentsPool.sol/IMembersValidator__factory";
|
|
63
161
|
export type { ProvableNFT } from "./contracts/DirectPayments/ProvableNFT";
|
|
64
162
|
export { ProvableNFT__factory } from "./factories/contracts/DirectPayments/ProvableNFT__factory";
|
|
65
|
-
export type {
|
|
66
|
-
export {
|
|
163
|
+
export type { GoodCollectiveSuperApp } from "./contracts/GoodCollective/GoodCollectiveSuperApp";
|
|
164
|
+
export { GoodCollectiveSuperApp__factory } from "./factories/contracts/GoodCollective/GoodCollectiveSuperApp__factory";
|
|
165
|
+
export type { SuperAppBaseFlow } from "./contracts/GoodCollective/SuperAppBaseFlow";
|
|
166
|
+
export { SuperAppBaseFlow__factory } from "./factories/contracts/GoodCollective/SuperAppBaseFlow__factory";
|
|
167
|
+
export type { SwapRouterMock } from "./contracts/utils/SwapRouterMock";
|
|
168
|
+
export { SwapRouterMock__factory } from "./factories/contracts/utils/SwapRouterMock__factory";
|