@superfluid-finance/ethereum-contracts 1.4.3-dev.f80a180.0 → 1.4.4-dev.9c5d504.0
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/artifacts/contracts/agreements/AgreementBase.sol/AgreementBase.json +146 -0
- package/artifacts/contracts/agreements/AgreementLibrary.sol/AgreementLibrary.json +10 -0
- package/artifacts/contracts/agreements/ConstantFlowAgreementV1.sol/ConstantFlowAgreementV1.json +1074 -0
- package/artifacts/contracts/agreements/InstantDistributionAgreementV1.sol/InstantDistributionAgreementV1.json +1143 -0
- package/artifacts/contracts/apps/CFAv1Library.sol/CFAv1Library.json +10 -0
- package/artifacts/contracts/apps/IDAv1Library.sol/IDAv1Library.json +10 -0
- package/artifacts/contracts/apps/SuperAppBase.sol/SuperAppBase.json +260 -0
- package/artifacts/contracts/gov/SuperfluidGovernanceBase.sol/SuperfluidGovernanceBase.json +953 -0
- package/artifacts/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceII.json +1088 -0
- package/artifacts/contracts/gov/SuperfluidGovernanceII.sol/SuperfluidGovernanceIIProxy.json +84 -0
- package/artifacts/contracts/interfaces/agreements/IConstantFlowAgreementHook.sol/IConstantFlowAgreementHook.json +159 -0
- package/artifacts/contracts/interfaces/agreements/IConstantFlowAgreementV1.sol/IConstantFlowAgreementV1.json +899 -0
- package/artifacts/contracts/interfaces/agreements/IInstantDistributionAgreementV1.sol/IInstantDistributionAgreementV1.json +994 -0
- package/artifacts/contracts/interfaces/superfluid/CustomSuperTokenBase.sol/CustomSuperTokenBase.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/Definitions.sol/BatchOperation.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/Definitions.sol/ContextDefinitions.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/Definitions.sol/FlowOperatorDefinitions.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/Definitions.sol/SuperAppDefinitions.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/Definitions.sol/SuperfluidGovernanceConfigs.json +10 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperAgreement.sol/ISuperAgreement.json +63 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperApp.sol/ISuperApp.json +260 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperToken.sol/ISuperToken.json +1670 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperTokenFactory.sol/ISuperTokenFactory.json +256 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperfluid.sol/ISuperfluid.json +1131 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperfluidGovernance.sol/ISuperfluidGovernance.json +245 -0
- package/artifacts/contracts/interfaces/superfluid/ISuperfluidToken.sol/ISuperfluidToken.json +682 -0
- package/artifacts/contracts/interfaces/tokens/ERC20WithTokenInfo.sol/ERC20WithTokenInfo.json +233 -0
- package/artifacts/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperToken.json +1693 -0
- package/artifacts/contracts/interfaces/tokens/IPureSuperToken.sol/IPureSuperTokenCustom.json +34 -0
- package/artifacts/contracts/interfaces/tokens/ISETH.sol/ISETH.json +1703 -0
- package/artifacts/contracts/interfaces/tokens/ISETH.sol/ISETHCustom.json +44 -0
- package/artifacts/contracts/interfaces/tokens/TokenInfo.sol/TokenInfo.json +50 -0
- package/artifacts/contracts/interfaces/utils/IMultiSigWallet.sol/IMultiSigWallet.json +40 -0
- package/artifacts/contracts/interfaces/utils/IRelayRecipient.sol/IRelayRecipient.json +43 -0
- package/artifacts/contracts/interfaces/utils/IResolver.sol/IResolver.json +67 -0
- package/artifacts/contracts/libs/BaseRelayRecipient.sol/BaseRelayRecipient.json +43 -0
- package/artifacts/contracts/libs/CallUtils.sol/CallUtils.json +10 -0
- package/artifacts/contracts/libs/ERC1820RegistryCompiled.sol/ERC1820RegistryCompiled.json +10 -0
- package/artifacts/contracts/libs/ERC777Helper.sol/ERC777Helper.json +10 -0
- package/artifacts/contracts/libs/EventsEmitter.sol/EventsEmitter.json +36 -0
- package/artifacts/contracts/libs/FixedSizeData.sol/FixedSizeData.json +10 -0
- package/artifacts/contracts/libs/SlotsBitmapLibrary.sol/SlotsBitmapLibrary.json +50 -0
- package/artifacts/contracts/mocks/AgreementMock.sol/AgreementMock.json +825 -0
- package/artifacts/contracts/mocks/CFAAppMocks.sol/ClosingOnUpdateFlowTestApp.json +276 -0
- package/artifacts/contracts/mocks/CFAAppMocks.sol/ExclusiveInflowTestApp.json +276 -0
- package/artifacts/contracts/mocks/CFAAppMocks.sol/FlowExchangeTestApp.json +281 -0
- package/artifacts/contracts/mocks/CFAAppMocks.sol/NonClosableOutflowTestApp.json +299 -0
- package/artifacts/contracts/mocks/CFAAppMocks.sol/SelfDeletingFlowTestApp.json +276 -0
- package/artifacts/contracts/mocks/CFAHookMocks.sol/BadCFAHookMock.json +187 -0
- package/artifacts/contracts/mocks/CFAHookMocks.sol/BaseCFAHookMock.json +182 -0
- package/artifacts/contracts/mocks/CFAHookMocks.sol/GoodCFAHookMock.json +305 -0
- package/artifacts/contracts/mocks/CFALibraryMock.sol/CFALibraryMock.json +247 -0
- package/artifacts/contracts/mocks/CFALibraryMock.sol/CFALibrarySuperAppMock.json +312 -0
- package/artifacts/contracts/mocks/CallUtilsMock.sol/CallUtilsMock.json +161 -0
- package/artifacts/contracts/mocks/CallUtilsTester.sol/CallUtilsTester.json +18 -0
- package/artifacts/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenBaseMock.json +119 -0
- package/artifacts/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenMock.json +1778 -0
- package/artifacts/contracts/mocks/CustomSuperTokenMock.sol/CustomSuperTokenProxyMock.json +165 -0
- package/artifacts/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientDrainingGas.json +92 -0
- package/artifacts/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777RecipientReverting.json +78 -0
- package/artifacts/contracts/mocks/ERC777SenderRecipientMock.sol/ERC777SenderRecipientMock.json +388 -0
- package/artifacts/contracts/mocks/FakeSuperfluidMock.sol/FakeSuperfluidMock.json +29 -0
- package/artifacts/contracts/mocks/ForwarderMock.sol/ForwarderMock.json +51 -0
- package/artifacts/contracts/mocks/IDASuperAppTester.sol/IDASuperAppTester.json +403 -0
- package/artifacts/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibraryMock.json +660 -0
- package/artifacts/contracts/mocks/IDAv1LibraryMock.sol/IDAv1LibrarySuperAppMock.json +909 -0
- package/artifacts/contracts/mocks/MockSmartWallet.sol/MockSmartWallet.json +62 -0
- package/artifacts/contracts/mocks/MultiFlowTesterApp.sol/MultiFlowTesterApp.json +310 -0
- package/artifacts/contracts/mocks/StreamRedirector.sol/StreamRedirector.json +451 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppFactoryMock.json +34 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMock.json +693 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMock2ndLevel.json +83 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockAux.json +62 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockNotSelfRegistering.json +10 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningEmptyCtx.json +164 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockReturningInvalidCtx.json +110 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockUsingDeprecatedRegisterApp.json +27 -0
- package/artifacts/contracts/mocks/SuperAppMocks.sol/SuperAppMockWithRegistrationKey.json +32 -0
- package/artifacts/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock.json +399 -0
- package/artifacts/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMock42.json +399 -0
- package/artifacts/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryMockHelper.json +35 -0
- package/artifacts/contracts/mocks/SuperTokenFactoryMock.sol/SuperTokenFactoryStorageLayoutTester.json +401 -0
- package/artifacts/contracts/mocks/SuperTokenMock.sol/SuperTokenMock.json +1864 -0
- package/artifacts/contracts/mocks/SuperTokenMock.sol/SuperTokenStorageLayoutTester.json +1779 -0
- package/artifacts/contracts/mocks/SuperfluidDestructorMock.sol/SuperfluidDestructorMock.json +28 -0
- package/artifacts/contracts/mocks/SuperfluidGovernanceIIMock.sol/SuperfluidGovernanceIIUpgradabilityTester.json +1095 -0
- package/artifacts/contracts/mocks/SuperfluidMock.sol/SuperfluidMock.json +1444 -0
- package/artifacts/contracts/mocks/SuperfluidMock.sol/SuperfluidUpgradabilityTester.json +1312 -0
- package/artifacts/contracts/mocks/UUPSProxiableMock.sol/UUPSProxiableMock.json +125 -0
- package/artifacts/contracts/superfluid/FullUpgradableSuperTokenProxy.sol/FullUpgradableSuperTokenProxy.json +31 -0
- package/artifacts/contracts/superfluid/SuperToken.sol/SuperToken.json +1759 -0
- package/artifacts/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactory.json +399 -0
- package/artifacts/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactoryBase.json +383 -0
- package/artifacts/contracts/superfluid/SuperTokenFactory.sol/SuperTokenFactoryHelper.json +30 -0
- package/artifacts/contracts/superfluid/Superfluid.sol/Superfluid.json +1309 -0
- package/artifacts/contracts/superfluid/SuperfluidToken.sol/SuperfluidToken.json +682 -0
- package/artifacts/contracts/tokens/PureSuperToken.sol/PureSuperToken.json +55 -0
- package/artifacts/contracts/tokens/SETH.sol/SETHProxy.json +103 -0
- package/artifacts/contracts/upgradability/UUPSProxiable.sol/UUPSProxiable.json +89 -0
- package/artifacts/contracts/upgradability/UUPSProxy.sol/UUPSProxy.json +32 -0
- package/artifacts/contracts/upgradability/UUPSUtils.sol/UUPSUtils.json +10 -0
- package/artifacts/contracts/utils/BatchLiquidator.sol/BatchLiquidator.json +44 -0
- package/artifacts/contracts/utils/CFAv1Forwarder.sol/CFAv1Forwarder.json +478 -0
- package/artifacts/contracts/utils/Resolver.sol/Resolver.json +319 -0
- package/artifacts/contracts/utils/SuperUpgrader.sol/SuperUpgrader.json +408 -0
- package/artifacts/contracts/utils/SuperfluidFrameworkDeployer.sol/SuperfluidFrameworkDeployer.json +244 -0
- package/artifacts/contracts/utils/SuperfluidLoader.sol/SuperfluidLoader.json +63 -0
- package/artifacts/contracts/utils/TOGA.sol/ITOGAv1.json +175 -0
- package/artifacts/contracts/utils/TOGA.sol/ITOGAv2.json +207 -0
- package/artifacts/contracts/utils/TOGA.sol/TOGA.json +292 -0
- package/artifacts/contracts/utils/TestGovernance.sol/TestGovernance.json +1038 -0
- package/artifacts/contracts/utils/TestResolver.sol/TestResolver.json +325 -0
- package/artifacts/contracts/utils/TestToken.sol/TestToken.json +331 -0
- package/artifacts/contracts/utils/TokenCustodian.sol/TokenCustodian.json +146 -0
- package/build/contracts/AccessControl.json +1 -1
- package/build/contracts/AccessControlEnumerable.json +1 -1
- package/build/contracts/Address.json +1 -1
- package/build/contracts/AgreementBase.json +1 -1
- package/build/contracts/AgreementLibrary.json +1 -1
- package/build/contracts/BaseRelayRecipient.json +1 -1
- package/build/contracts/BatchLiquidator.json +1 -1
- package/build/contracts/BatchOperation.json +1 -1
- package/build/contracts/CFAv1Forwarder.json +1 -1
- package/build/contracts/CFAv1Library.json +1 -1
- package/build/contracts/CallUtils.json +1 -1
- package/build/contracts/ClosingOnUpdateFlowTestApp.json +1 -1
- package/build/contracts/ConstantFlowAgreementV1.json +1 -1
- package/build/contracts/Context.json +1 -1
- package/build/contracts/ContextDefinitions.json +1 -1
- package/build/contracts/CustomSuperTokenBase.json +1 -1
- package/build/contracts/ERC165.json +1 -1
- package/build/contracts/ERC1820Implementer.json +1 -1
- package/build/contracts/ERC1820RegistryCompiled.json +1 -1
- package/build/contracts/ERC20.json +1 -1
- package/build/contracts/ERC20WithTokenInfo.json +1 -1
- package/build/contracts/ERC777Helper.json +1 -1
- package/build/contracts/ERC777RecipientDrainingGas.json +1 -1
- package/build/contracts/ERC777RecipientReverting.json +1 -1
- package/build/contracts/EnumerableSet.json +1 -1
- package/build/contracts/EventsEmitter.json +1 -1
- package/build/contracts/ExclusiveInflowTestApp.json +1 -1
- package/build/contracts/FixedSizeData.json +1 -1
- package/build/contracts/FlowExchangeTestApp.json +1 -1
- package/build/contracts/FlowOperatorDefinitions.json +1 -1
- package/build/contracts/FullUpgradableSuperTokenProxy.json +1 -1
- package/build/contracts/IAccessControl.json +1 -1
- package/build/contracts/IAccessControlEnumerable.json +1 -1
- package/build/contracts/IConstantFlowAgreementHook.json +1 -1
- package/build/contracts/IConstantFlowAgreementV1.json +1 -1
- package/build/contracts/IDAv1Library.json +1 -1
- package/build/contracts/IERC165.json +1 -1
- package/build/contracts/IERC1820Implementer.json +1 -1
- package/build/contracts/IERC1820Registry.json +1 -1
- package/build/contracts/IERC20.json +1 -1
- package/build/contracts/IERC20Metadata.json +1 -1
- package/build/contracts/IERC20Permit.json +1 -1
- package/build/contracts/IERC777.json +1 -1
- package/build/contracts/IERC777Recipient.json +1 -1
- package/build/contracts/IERC777Sender.json +1 -1
- package/build/contracts/IInstantDistributionAgreementV1.json +1 -1
- package/build/contracts/IMultiSigWallet.json +1 -1
- package/build/contracts/IPureSuperToken.json +1 -1
- package/build/contracts/IPureSuperTokenCustom.json +1 -1
- package/build/contracts/IRelayRecipient.json +1 -1
- package/build/contracts/IResolver.json +1 -1
- package/build/contracts/ISETH.json +1 -1
- package/build/contracts/ISETHCustom.json +1 -1
- package/build/contracts/ISuperAgreement.json +1 -1
- package/build/contracts/ISuperApp.json +1 -1
- package/build/contracts/ISuperToken.json +1 -1
- package/build/contracts/ISuperTokenFactory.json +1 -1
- package/build/contracts/ISuperfluid.json +1 -1
- package/build/contracts/ISuperfluidGovernance.json +1 -1
- package/build/contracts/ISuperfluidToken.json +1 -1
- package/build/contracts/ITOGAv1.json +1 -1
- package/build/contracts/ITOGAv2.json +1 -1
- package/build/contracts/Initializable.json +1 -1
- package/build/contracts/InstantDistributionAgreementV1.json +1 -1
- package/build/contracts/NonClosableOutflowTestApp.json +1 -1
- package/build/contracts/Ownable.json +1 -1
- package/build/contracts/Proxy.json +1 -1
- package/build/contracts/PureSuperToken.json +1 -1
- package/build/contracts/Resolver.json +1 -1
- package/build/contracts/SETHProxy.json +1 -1
- package/build/contracts/SafeCast.json +1 -1
- package/build/contracts/SafeERC20.json +1 -1
- package/build/contracts/SafeMath.json +1 -1
- package/build/contracts/SelfDeletingFlowTestApp.json +1 -1
- package/build/contracts/SlotsBitmapLibrary.json +1 -1
- package/build/contracts/StreamRedirector.json +1 -1
- package/build/contracts/Strings.json +1 -1
- package/build/contracts/SuperAppBase.json +1 -1
- package/build/contracts/SuperAppDefinitions.json +1 -1
- package/build/contracts/SuperToken.json +1 -1
- package/build/contracts/SuperTokenFactory.json +1 -1
- package/build/contracts/SuperTokenFactoryBase.json +1 -1
- package/build/contracts/SuperTokenFactoryHelper.json +1 -1
- package/build/contracts/SuperUpgrader.json +1 -1
- package/build/contracts/Superfluid.json +1 -1
- package/build/contracts/SuperfluidFrameworkDeployer.json +1 -1
- package/build/contracts/SuperfluidGovernanceBase.json +1 -1
- package/build/contracts/SuperfluidGovernanceConfigs.json +1 -1
- package/build/contracts/SuperfluidGovernanceII.json +1 -1
- package/build/contracts/SuperfluidGovernanceIIProxy.json +1 -1
- package/build/contracts/SuperfluidLoader.json +1 -1
- package/build/contracts/SuperfluidToken.json +1 -1
- package/build/contracts/TOGA.json +1 -1
- package/build/contracts/TestGovernance.json +1 -1
- package/build/contracts/TestResolver.json +1 -1
- package/build/contracts/TestToken.json +1 -1
- package/build/contracts/TokenCustodian.json +1 -1
- package/build/contracts/TokenInfo.json +1 -1
- package/build/contracts/UUPSProxiable.json +1 -1
- package/build/contracts/UUPSProxy.json +1 -1
- package/build/contracts/UUPSUtils.json +1 -1
- package/package.json +7 -2
- package/scripts/deploy-aux-contracts.d.ts +3 -0
- package/scripts/deploy-aux-contracts.d.ts.map +1 -0
- package/scripts/deploy-deterministically.d.ts +3 -0
- package/scripts/deploy-deterministically.d.ts.map +1 -0
- package/scripts/deploy-erc1820.d.ts +3 -0
- package/scripts/deploy-erc1820.d.ts.map +1 -0
- package/scripts/deploy-framework.d.ts +3 -0
- package/scripts/deploy-framework.d.ts.map +1 -0
- package/scripts/deploy-super-token.d.ts +3 -0
- package/scripts/deploy-super-token.d.ts.map +1 -0
- package/scripts/deploy-test-environment.d.ts +3 -0
- package/scripts/deploy-test-environment.d.ts.map +1 -0
- package/scripts/deploy-test-framework.d.ts +2 -0
- package/scripts/deploy-test-framework.d.ts.map +1 -0
- package/scripts/deploy-test-framework.js +78 -0
- package/scripts/deploy-test-token.d.ts +3 -0
- package/scripts/deploy-test-token.d.ts.map +1 -0
- package/scripts/deploy-unlisted-pure-super-token.d.ts +3 -0
- package/scripts/deploy-unlisted-pure-super-token.d.ts.map +1 -0
- package/scripts/deploy-unlisted-super-token.d.ts +3 -0
- package/scripts/deploy-unlisted-super-token.d.ts.map +1 -0
- package/scripts/gov-create-new-app-registration-key.d.ts +3 -0
- package/scripts/gov-create-new-app-registration-key.d.ts.map +1 -0
- package/scripts/gov-create-new-factory-registration.d.ts +3 -0
- package/scripts/gov-create-new-factory-registration.d.ts.map +1 -0
- package/scripts/gov-set-3Ps-config.d.ts +3 -0
- package/scripts/gov-set-3Ps-config.d.ts.map +1 -0
- package/scripts/gov-set-reward-address.d.ts +3 -0
- package/scripts/gov-set-reward-address.d.ts.map +1 -0
- package/scripts/gov-set-token-min-deposit.d.ts +3 -0
- package/scripts/gov-set-token-min-deposit.d.ts.map +1 -0
- package/scripts/gov-set-trusted-forwarder.d.ts +3 -0
- package/scripts/gov-set-trusted-forwarder.d.ts.map +1 -0
- package/scripts/gov-transfer-framework-ownership.d.ts +3 -0
- package/scripts/gov-transfer-framework-ownership.d.ts.map +1 -0
- package/scripts/gov-upgrade-governance.d.ts +3 -0
- package/scripts/gov-upgrade-governance.d.ts.map +1 -0
- package/scripts/gov-upgrade-super-token-logic.d.ts +3 -0
- package/scripts/gov-upgrade-super-token-logic.d.ts.map +1 -0
- package/scripts/index.d.ts +31 -0
- package/scripts/index.d.ts.map +1 -0
- package/scripts/index.js +72 -0
- package/scripts/info-inspect-account.d.ts +3 -0
- package/scripts/info-inspect-account.d.ts.map +1 -0
- package/scripts/info-list-apps.d.ts +3 -0
- package/scripts/info-list-apps.d.ts.map +1 -0
- package/scripts/info-print-contract-addresses.d.ts +3 -0
- package/scripts/info-print-contract-addresses.d.ts.map +1 -0
- package/scripts/info-scan-deployments.d.ts +3 -0
- package/scripts/info-scan-deployments.d.ts.map +1 -0
- package/scripts/info-show-protocol.d.ts +3 -0
- package/scripts/info-show-protocol.d.ts.map +1 -0
- package/scripts/libs/common.d.ts +83 -0
- package/scripts/libs/common.d.ts.map +1 -0
- package/scripts/libs/getConfig.d.ts +3 -0
- package/scripts/libs/getConfig.d.ts.map +1 -0
- package/scripts/resolver-list-super-token.d.ts +3 -0
- package/scripts/resolver-list-super-token.d.ts.map +1 -0
- package/scripts/resolver-register-token.d.ts +3 -0
- package/scripts/resolver-register-token.d.ts.map +1 -0
- package/scripts/resolver-reset-deployment.d.ts +3 -0
- package/scripts/resolver-reset-deployment.d.ts.map +1 -0
- package/scripts/resolver-set-key-value.d.ts +3 -0
- package/scripts/resolver-set-key-value.d.ts.map +1 -0
- package/scripts/resolver-unlist-super-token.d.ts +3 -0
- package/scripts/resolver-unlist-super-token.d.ts.map +1 -0
- package/scripts/tmp-trigger-token-transfer.d.ts +3 -0
- package/scripts/tmp-trigger-token-transfer.d.ts.map +1 -0
- package/scripts/deploy-test-framework.ts +0 -84
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "AgreementBase",
|
|
4
|
+
"sourceName": "contracts/agreements/AgreementBase.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [],
|
|
8
|
+
"name": "AGREEMENT_BASE_ONLY_HOST",
|
|
9
|
+
"type": "error"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"anonymous": false,
|
|
13
|
+
"inputs": [
|
|
14
|
+
{
|
|
15
|
+
"indexed": false,
|
|
16
|
+
"internalType": "bytes32",
|
|
17
|
+
"name": "uuid",
|
|
18
|
+
"type": "bytes32"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"indexed": false,
|
|
22
|
+
"internalType": "address",
|
|
23
|
+
"name": "codeAddress",
|
|
24
|
+
"type": "address"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"name": "CodeUpdated",
|
|
28
|
+
"type": "event"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"anonymous": false,
|
|
32
|
+
"inputs": [
|
|
33
|
+
{
|
|
34
|
+
"indexed": false,
|
|
35
|
+
"internalType": "uint8",
|
|
36
|
+
"name": "version",
|
|
37
|
+
"type": "uint8"
|
|
38
|
+
}
|
|
39
|
+
],
|
|
40
|
+
"name": "Initialized",
|
|
41
|
+
"type": "event"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"inputs": [],
|
|
45
|
+
"name": "agreementType",
|
|
46
|
+
"outputs": [
|
|
47
|
+
{
|
|
48
|
+
"internalType": "bytes32",
|
|
49
|
+
"name": "",
|
|
50
|
+
"type": "bytes32"
|
|
51
|
+
}
|
|
52
|
+
],
|
|
53
|
+
"stateMutability": "view",
|
|
54
|
+
"type": "function"
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"inputs": [],
|
|
58
|
+
"name": "castrate",
|
|
59
|
+
"outputs": [],
|
|
60
|
+
"stateMutability": "nonpayable",
|
|
61
|
+
"type": "function"
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"inputs": [],
|
|
65
|
+
"name": "getCodeAddress",
|
|
66
|
+
"outputs": [
|
|
67
|
+
{
|
|
68
|
+
"internalType": "address",
|
|
69
|
+
"name": "codeAddress",
|
|
70
|
+
"type": "address"
|
|
71
|
+
}
|
|
72
|
+
],
|
|
73
|
+
"stateMutability": "view",
|
|
74
|
+
"type": "function"
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"inputs": [],
|
|
78
|
+
"name": "proxiableUUID",
|
|
79
|
+
"outputs": [
|
|
80
|
+
{
|
|
81
|
+
"internalType": "bytes32",
|
|
82
|
+
"name": "",
|
|
83
|
+
"type": "bytes32"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"stateMutability": "view",
|
|
87
|
+
"type": "function"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"inputs": [
|
|
91
|
+
{
|
|
92
|
+
"internalType": "contract ISuperfluidToken",
|
|
93
|
+
"name": "token",
|
|
94
|
+
"type": "address"
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
"internalType": "address",
|
|
98
|
+
"name": "account",
|
|
99
|
+
"type": "address"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"internalType": "uint256",
|
|
103
|
+
"name": "time",
|
|
104
|
+
"type": "uint256"
|
|
105
|
+
}
|
|
106
|
+
],
|
|
107
|
+
"name": "realtimeBalanceOf",
|
|
108
|
+
"outputs": [
|
|
109
|
+
{
|
|
110
|
+
"internalType": "int256",
|
|
111
|
+
"name": "dynamicBalance",
|
|
112
|
+
"type": "int256"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"internalType": "uint256",
|
|
116
|
+
"name": "deposit",
|
|
117
|
+
"type": "uint256"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"internalType": "uint256",
|
|
121
|
+
"name": "owedDeposit",
|
|
122
|
+
"type": "uint256"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"stateMutability": "view",
|
|
126
|
+
"type": "function"
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
"inputs": [
|
|
130
|
+
{
|
|
131
|
+
"internalType": "address",
|
|
132
|
+
"name": "newAddress",
|
|
133
|
+
"type": "address"
|
|
134
|
+
}
|
|
135
|
+
],
|
|
136
|
+
"name": "updateCode",
|
|
137
|
+
"outputs": [],
|
|
138
|
+
"stateMutability": "nonpayable",
|
|
139
|
+
"type": "function"
|
|
140
|
+
}
|
|
141
|
+
],
|
|
142
|
+
"bytecode": "0x",
|
|
143
|
+
"deployedBytecode": "0x",
|
|
144
|
+
"linkReferences": {},
|
|
145
|
+
"deployedLinkReferences": {}
|
|
146
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh-sol-artifact-1",
|
|
3
|
+
"contractName": "AgreementLibrary",
|
|
4
|
+
"sourceName": "contracts/agreements/AgreementLibrary.sol",
|
|
5
|
+
"abi": [],
|
|
6
|
+
"bytecode": "0x60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122095e92d53aabad1a3e40e558cfab9675ae7f8c67b5de92a5e5acfcb1db30b636c64736f6c63430008100033",
|
|
7
|
+
"deployedBytecode": "0x73000000000000000000000000000000000000000030146080604052600080fdfea264697066735822122095e92d53aabad1a3e40e558cfab9675ae7f8c67b5de92a5e5acfcb1db30b636c64736f6c63430008100033",
|
|
8
|
+
"linkReferences": {},
|
|
9
|
+
"deployedLinkReferences": {}
|
|
10
|
+
}
|