@etherisc/gif-next 0.0.2-83d1db6-607 → 0.0.2-83e248c-054
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/README.md +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +10 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +26 -0
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +100 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +100 -0
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +110 -0
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +100 -0
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +20 -0
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +10 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +1 -1
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +2 -2
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +380 -116
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +80 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +310 -303
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +76 -57
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +171 -47
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +208 -101
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +62 -22
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +1 -1
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +2 -2
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentService.sol/ComponentService.json +85 -30
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +8 -8
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +6 -6
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +6 -6
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IComponents.sol/IComponents.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationService.sol/ApplicationService.json +175 -83
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +29 -13
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +333 -160
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +78 -14
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +372 -86
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +55 -7
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +183 -141
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +45 -57
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -40
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +169 -113
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +251 -58
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +101 -24
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +438 -41
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +430 -14
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +80 -14
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +575 -85
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +71 -19
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +468 -55
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +18 -14
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +114 -51
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +16 -12
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +0 -24
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +2 -2
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +17 -36
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +7 -7
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +1 -1
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +23 -11
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +2 -2
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +80 -14
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -2
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +86 -15
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +101 -26
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Amount.sol/AmountLib.dbg.json +4 -0
- package/artifacts/contracts/types/Amount.sol/AmountLib.json +185 -0
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ClaimId.sol/ClaimIdLib.json +83 -4
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.json +2 -2
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.json +40 -9
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +2 -2
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +2 -2
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.json +2 -2
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/PayoutId.sol/PayoutIdLib.json +116 -7
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.json +2 -2
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.json +2 -2
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +17 -4
- package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/contracts/components/Component.sol +4 -2
- package/contracts/components/Distribution.sol +6 -2
- package/contracts/components/IComponent.sol +3 -1
- package/contracts/components/IPoolComponent.sol +1 -1
- package/contracts/components/Pool.sol +11 -8
- package/contracts/components/Product.sol +137 -59
- package/contracts/instance/BundleManager.sol +3 -4
- package/contracts/instance/IInstance.sol +25 -21
- package/contracts/instance/IInstanceService.sol +0 -4
- package/contracts/instance/Instance.sol +85 -102
- package/contracts/instance/InstanceAccessManager.sol +16 -11
- package/contracts/instance/InstanceReader.sol +31 -4
- package/contracts/instance/InstanceService.sol +29 -46
- package/contracts/instance/base/ComponentService.sol +17 -30
- package/contracts/instance/base/KeyValueStore.sol +8 -3
- package/contracts/instance/base/Lifecycle.sol +12 -4
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +6 -0
- package/contracts/instance/module/IPolicy.sol +11 -6
- package/contracts/instance/service/ApplicationService.sol +19 -14
- package/contracts/instance/service/BundleService.sol +163 -63
- package/contracts/instance/service/ClaimService.sol +114 -26
- package/contracts/instance/service/DistributionService.sol +38 -74
- package/contracts/instance/service/IApplicationService.sol +3 -7
- package/contracts/instance/service/IBundleService.sol +56 -22
- package/contracts/instance/service/IClaimService.sol +46 -15
- package/contracts/instance/service/IDistributionService.sol +1 -0
- package/contracts/instance/service/IPolicyService.sol +70 -5
- package/contracts/instance/service/IPoolService.sol +65 -1
- package/contracts/instance/service/PolicyService.sol +254 -116
- package/contracts/instance/service/PoolService.sol +132 -49
- package/contracts/instance/service/ProductService.sol +21 -52
- package/contracts/registry/IRegistryService.sol +4 -3
- package/contracts/registry/RegistryService.sol +10 -11
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IService.sol +4 -6
- package/contracts/shared/Service.sol +21 -7
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +65 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +12 -5
- package/contracts/types/ObjectType.sol +5 -5
- package/contracts/types/PayoutId.sol +33 -5
- package/contracts/types/StateId.sol +6 -2
- package/contracts/types/Timestamp.sol +5 -0
- package/package.json +1 -1
package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json
CHANGED
@@ -3,6 +3,33 @@
|
|
3
3
|
"contractName": "IApplicationService",
|
4
4
|
"sourceName": "contracts/instance/service/IApplicationService.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
6
33
|
{
|
7
34
|
"inputs": [
|
8
35
|
{
|
@@ -11,7 +38,44 @@
|
|
11
38
|
"type": "address"
|
12
39
|
}
|
13
40
|
],
|
14
|
-
"name": "
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "NftId",
|
48
|
+
"name": "bundleNftId",
|
49
|
+
"type": "uint96"
|
50
|
+
},
|
51
|
+
{
|
52
|
+
"internalType": "NftId",
|
53
|
+
"name": "bundlePoolNftId",
|
54
|
+
"type": "uint96"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"internalType": "NftId",
|
58
|
+
"name": "poolNftId",
|
59
|
+
"type": "uint96"
|
60
|
+
}
|
61
|
+
],
|
62
|
+
"name": "ErrorApplicationServiceBundlePoolMismatch",
|
63
|
+
"type": "error"
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "NftId",
|
69
|
+
"name": "callerNftId",
|
70
|
+
"type": "uint96"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"internalType": "ObjectType",
|
74
|
+
"name": "callerType",
|
75
|
+
"type": "uint8"
|
76
|
+
}
|
77
|
+
],
|
78
|
+
"name": "ErrorApplicationServiceNotProduct",
|
15
79
|
"type": "error"
|
16
80
|
},
|
17
81
|
{
|
@@ -64,36 +128,17 @@
|
|
64
128
|
"type": "error"
|
65
129
|
},
|
66
130
|
{
|
131
|
+
"anonymous": false,
|
67
132
|
"inputs": [
|
68
133
|
{
|
69
|
-
"
|
70
|
-
"
|
71
|
-
"
|
72
|
-
|
73
|
-
{
|
74
|
-
"internalType": "NftId",
|
75
|
-
"name": "bundlePoolNftId",
|
76
|
-
"type": "uint96"
|
77
|
-
},
|
78
|
-
{
|
79
|
-
"internalType": "NftId",
|
80
|
-
"name": "poolNftId",
|
81
|
-
"type": "uint96"
|
82
|
-
}
|
83
|
-
],
|
84
|
-
"name": "IApplicationServiceBundlePoolMismatch",
|
85
|
-
"type": "error"
|
86
|
-
},
|
87
|
-
{
|
88
|
-
"inputs": [
|
89
|
-
{
|
90
|
-
"internalType": "NftId",
|
91
|
-
"name": "applicationNftId",
|
92
|
-
"type": "uint96"
|
134
|
+
"indexed": false,
|
135
|
+
"internalType": "address",
|
136
|
+
"name": "authority",
|
137
|
+
"type": "address"
|
93
138
|
}
|
94
139
|
],
|
95
|
-
"name": "
|
96
|
-
"type": "
|
140
|
+
"name": "AuthorityUpdated",
|
141
|
+
"type": "event"
|
97
142
|
},
|
98
143
|
{
|
99
144
|
"inputs": [
|
@@ -138,6 +183,19 @@
|
|
138
183
|
"stateMutability": "nonpayable",
|
139
184
|
"type": "function"
|
140
185
|
},
|
186
|
+
{
|
187
|
+
"inputs": [],
|
188
|
+
"name": "authority",
|
189
|
+
"outputs": [
|
190
|
+
{
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "",
|
193
|
+
"type": "address"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"stateMutability": "view",
|
197
|
+
"type": "function"
|
198
|
+
},
|
141
199
|
{
|
142
200
|
"inputs": [
|
143
201
|
{
|
@@ -376,19 +434,6 @@
|
|
376
434
|
"stateMutability": "view",
|
377
435
|
"type": "function"
|
378
436
|
},
|
379
|
-
{
|
380
|
-
"inputs": [],
|
381
|
-
"name": "getMajorVersion",
|
382
|
-
"outputs": [
|
383
|
-
{
|
384
|
-
"internalType": "VersionPart",
|
385
|
-
"name": "majorVersion",
|
386
|
-
"type": "uint8"
|
387
|
-
}
|
388
|
-
],
|
389
|
-
"stateMutability": "view",
|
390
|
-
"type": "function"
|
391
|
-
},
|
392
437
|
{
|
393
438
|
"inputs": [],
|
394
439
|
"name": "getNftId",
|
@@ -472,6 +517,19 @@
|
|
472
517
|
"stateMutability": "nonpayable",
|
473
518
|
"type": "function"
|
474
519
|
},
|
520
|
+
{
|
521
|
+
"inputs": [],
|
522
|
+
"name": "isConsumingScheduledOp",
|
523
|
+
"outputs": [
|
524
|
+
{
|
525
|
+
"internalType": "bytes4",
|
526
|
+
"name": "",
|
527
|
+
"type": "bytes4"
|
528
|
+
}
|
529
|
+
],
|
530
|
+
"stateMutability": "view",
|
531
|
+
"type": "function"
|
532
|
+
},
|
475
533
|
{
|
476
534
|
"inputs": [],
|
477
535
|
"name": "linkToRegisteredNftId",
|
@@ -516,6 +574,19 @@
|
|
516
574
|
"stateMutability": "nonpayable",
|
517
575
|
"type": "function"
|
518
576
|
},
|
577
|
+
{
|
578
|
+
"inputs": [
|
579
|
+
{
|
580
|
+
"internalType": "address",
|
581
|
+
"name": "",
|
582
|
+
"type": "address"
|
583
|
+
}
|
584
|
+
],
|
585
|
+
"name": "setAuthority",
|
586
|
+
"outputs": [],
|
587
|
+
"stateMutability": "nonpayable",
|
588
|
+
"type": "function"
|
589
|
+
},
|
519
590
|
{
|
520
591
|
"inputs": [
|
521
592
|
{
|
@@ -3,6 +3,44 @@
|
|
3
3
|
"contractName": "IBundleService",
|
4
4
|
"sourceName": "contracts/instance/service/IBundleService.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "authority",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AccessManagedInvalidAuthority",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "caller",
|
22
|
+
"type": "address"
|
23
|
+
},
|
24
|
+
{
|
25
|
+
"internalType": "uint32",
|
26
|
+
"name": "delay",
|
27
|
+
"type": "uint32"
|
28
|
+
}
|
29
|
+
],
|
30
|
+
"name": "AccessManagedRequiredDelay",
|
31
|
+
"type": "error"
|
32
|
+
},
|
33
|
+
{
|
34
|
+
"inputs": [
|
35
|
+
{
|
36
|
+
"internalType": "address",
|
37
|
+
"name": "caller",
|
38
|
+
"type": "address"
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "AccessManagedUnauthorized",
|
42
|
+
"type": "error"
|
43
|
+
},
|
6
44
|
{
|
7
45
|
"inputs": [
|
8
46
|
{
|
@@ -14,11 +52,43 @@
|
|
14
52
|
"internalType": "StateId",
|
15
53
|
"name": "state",
|
16
54
|
"type": "uint8"
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"internalType": "Timestamp",
|
58
|
+
"name": "expiredAt",
|
59
|
+
"type": "uint40"
|
17
60
|
}
|
18
61
|
],
|
19
62
|
"name": "ErrorBundleServiceBundleNotOpen",
|
20
63
|
"type": "error"
|
21
64
|
},
|
65
|
+
{
|
66
|
+
"inputs": [
|
67
|
+
{
|
68
|
+
"internalType": "NftId",
|
69
|
+
"name": "expectedPoolNftId",
|
70
|
+
"type": "uint96"
|
71
|
+
},
|
72
|
+
{
|
73
|
+
"internalType": "NftId",
|
74
|
+
"name": "bundlePoolNftId",
|
75
|
+
"type": "uint96"
|
76
|
+
}
|
77
|
+
],
|
78
|
+
"name": "ErrorBundleServiceBundlePoolMismatch",
|
79
|
+
"type": "error"
|
80
|
+
},
|
81
|
+
{
|
82
|
+
"inputs": [
|
83
|
+
{
|
84
|
+
"internalType": "NftId",
|
85
|
+
"name": "bundleNftId",
|
86
|
+
"type": "uint96"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"name": "ErrorBundleServiceBundleUnknown",
|
90
|
+
"type": "error"
|
91
|
+
},
|
22
92
|
{
|
23
93
|
"inputs": [
|
24
94
|
{
|
@@ -38,33 +108,43 @@
|
|
38
108
|
{
|
39
109
|
"inputs": [
|
40
110
|
{
|
41
|
-
"internalType": "
|
42
|
-
"name": "
|
43
|
-
"type": "
|
111
|
+
"internalType": "NftId",
|
112
|
+
"name": "bundleNftId",
|
113
|
+
"type": "uint96"
|
44
114
|
},
|
45
115
|
{
|
46
|
-
"internalType": "
|
47
|
-
"name": "
|
48
|
-
"type": "
|
116
|
+
"internalType": "uint256",
|
117
|
+
"name": "capacityAmount",
|
118
|
+
"type": "uint256"
|
49
119
|
},
|
50
120
|
{
|
51
121
|
"internalType": "uint256",
|
52
|
-
"name": "
|
122
|
+
"name": "collateralAmount",
|
53
123
|
"type": "uint256"
|
54
124
|
}
|
55
125
|
],
|
56
|
-
"name": "
|
126
|
+
"name": "ErrorBundleServiceCapacityInsufficient",
|
57
127
|
"type": "error"
|
58
128
|
},
|
59
129
|
{
|
60
130
|
"inputs": [
|
61
131
|
{
|
62
132
|
"internalType": "address",
|
63
|
-
"name": "
|
133
|
+
"name": "bundleOwner",
|
134
|
+
"type": "address"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"internalType": "address",
|
138
|
+
"name": "tokenHandlerAddress",
|
64
139
|
"type": "address"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"internalType": "uint256",
|
143
|
+
"name": "amount",
|
144
|
+
"type": "uint256"
|
65
145
|
}
|
66
146
|
],
|
67
|
-
"name": "
|
147
|
+
"name": "ErrorBundleServiceInsufficientAllowance",
|
68
148
|
"type": "error"
|
69
149
|
},
|
70
150
|
{
|
@@ -121,12 +201,12 @@
|
|
121
201
|
"inputs": [
|
122
202
|
{
|
123
203
|
"indexed": false,
|
124
|
-
"internalType": "
|
125
|
-
"name": "
|
126
|
-
"type": "
|
204
|
+
"internalType": "address",
|
205
|
+
"name": "authority",
|
206
|
+
"type": "address"
|
127
207
|
}
|
128
208
|
],
|
129
|
-
"name": "
|
209
|
+
"name": "AuthorityUpdated",
|
130
210
|
"type": "event"
|
131
211
|
},
|
132
212
|
{
|
@@ -139,7 +219,7 @@
|
|
139
219
|
"type": "uint96"
|
140
220
|
}
|
141
221
|
],
|
142
|
-
"name": "
|
222
|
+
"name": "LogBundleServiceBundleActivated",
|
143
223
|
"type": "event"
|
144
224
|
},
|
145
225
|
{
|
@@ -156,16 +236,16 @@
|
|
156
236
|
"type": "event"
|
157
237
|
},
|
158
238
|
{
|
159
|
-
"inputs": [
|
239
|
+
"inputs": [],
|
240
|
+
"name": "authority",
|
241
|
+
"outputs": [
|
160
242
|
{
|
161
|
-
"internalType": "
|
162
|
-
"name": "
|
163
|
-
"type": "
|
243
|
+
"internalType": "address",
|
244
|
+
"name": "",
|
245
|
+
"type": "address"
|
164
246
|
}
|
165
247
|
],
|
166
|
-
"
|
167
|
-
"outputs": [],
|
168
|
-
"stateMutability": "nonpayable",
|
248
|
+
"stateMutability": "view",
|
169
249
|
"type": "function"
|
170
250
|
},
|
171
251
|
{
|
@@ -175,29 +255,29 @@
|
|
175
255
|
"name": "instance",
|
176
256
|
"type": "address"
|
177
257
|
},
|
178
|
-
{
|
179
|
-
"internalType": "NftId",
|
180
|
-
"name": "policyNftId",
|
181
|
-
"type": "uint96"
|
182
|
-
},
|
183
258
|
{
|
184
259
|
"internalType": "NftId",
|
185
260
|
"name": "bundleNftId",
|
186
261
|
"type": "uint96"
|
187
|
-
},
|
188
|
-
{
|
189
|
-
"internalType": "uint256",
|
190
|
-
"name": "collateralAmount",
|
191
|
-
"type": "uint256"
|
192
262
|
}
|
193
263
|
],
|
194
|
-
"name": "
|
264
|
+
"name": "close",
|
195
265
|
"outputs": [],
|
196
266
|
"stateMutability": "nonpayable",
|
197
267
|
"type": "function"
|
198
268
|
},
|
199
269
|
{
|
200
270
|
"inputs": [
|
271
|
+
{
|
272
|
+
"internalType": "contract IInstance",
|
273
|
+
"name": "instance",
|
274
|
+
"type": "address"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"internalType": "NftId",
|
278
|
+
"name": "poolNftId",
|
279
|
+
"type": "uint96"
|
280
|
+
},
|
201
281
|
{
|
202
282
|
"internalType": "address",
|
203
283
|
"name": "owner",
|
@@ -221,9 +301,9 @@
|
|
221
301
|
"type": "tuple"
|
222
302
|
},
|
223
303
|
{
|
224
|
-
"internalType": "
|
225
|
-
"name": "
|
226
|
-
"type": "
|
304
|
+
"internalType": "Amount",
|
305
|
+
"name": "stakingAmount",
|
306
|
+
"type": "uint96"
|
227
307
|
},
|
228
308
|
{
|
229
309
|
"internalType": "Seconds",
|
@@ -310,19 +390,6 @@
|
|
310
390
|
"stateMutability": "view",
|
311
391
|
"type": "function"
|
312
392
|
},
|
313
|
-
{
|
314
|
-
"inputs": [],
|
315
|
-
"name": "getMajorVersion",
|
316
|
-
"outputs": [
|
317
|
-
{
|
318
|
-
"internalType": "VersionPart",
|
319
|
-
"name": "majorVersion",
|
320
|
-
"type": "uint8"
|
321
|
-
}
|
322
|
-
],
|
323
|
-
"stateMutability": "view",
|
324
|
-
"type": "function"
|
325
|
-
},
|
326
393
|
{
|
327
394
|
"inputs": [],
|
328
395
|
"name": "getNftId",
|
@@ -429,6 +496,19 @@
|
|
429
496
|
"stateMutability": "nonpayable",
|
430
497
|
"type": "function"
|
431
498
|
},
|
499
|
+
{
|
500
|
+
"inputs": [],
|
501
|
+
"name": "isConsumingScheduledOp",
|
502
|
+
"outputs": [
|
503
|
+
{
|
504
|
+
"internalType": "bytes4",
|
505
|
+
"name": "",
|
506
|
+
"type": "bytes4"
|
507
|
+
}
|
508
|
+
],
|
509
|
+
"stateMutability": "view",
|
510
|
+
"type": "function"
|
511
|
+
},
|
432
512
|
{
|
433
513
|
"inputs": [],
|
434
514
|
"name": "linkToRegisteredNftId",
|
@@ -473,77 +553,53 @@
|
|
473
553
|
},
|
474
554
|
{
|
475
555
|
"internalType": "uint256",
|
476
|
-
"name": "
|
556
|
+
"name": "premium",
|
477
557
|
"type": "uint256"
|
478
558
|
}
|
479
559
|
],
|
480
560
|
"name": "lockCollateral",
|
481
|
-
"outputs": [
|
561
|
+
"outputs": [],
|
562
|
+
"stateMutability": "nonpayable",
|
563
|
+
"type": "function"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"inputs": [
|
482
567
|
{
|
483
|
-
"
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
],
|
502
|
-
"internalType": "struct Fee",
|
503
|
-
"name": "fee",
|
504
|
-
"type": "tuple"
|
505
|
-
},
|
506
|
-
{
|
507
|
-
"internalType": "bytes",
|
508
|
-
"name": "filter",
|
509
|
-
"type": "bytes"
|
510
|
-
},
|
511
|
-
{
|
512
|
-
"internalType": "uint256",
|
513
|
-
"name": "capitalAmount",
|
514
|
-
"type": "uint256"
|
515
|
-
},
|
516
|
-
{
|
517
|
-
"internalType": "uint256",
|
518
|
-
"name": "lockedAmount",
|
519
|
-
"type": "uint256"
|
520
|
-
},
|
521
|
-
{
|
522
|
-
"internalType": "uint256",
|
523
|
-
"name": "balanceAmount",
|
524
|
-
"type": "uint256"
|
525
|
-
},
|
526
|
-
{
|
527
|
-
"internalType": "Seconds",
|
528
|
-
"name": "lifetime",
|
529
|
-
"type": "uint40"
|
530
|
-
},
|
531
|
-
{
|
532
|
-
"internalType": "Timestamp",
|
533
|
-
"name": "expiredAt",
|
534
|
-
"type": "uint40"
|
535
|
-
},
|
536
|
-
{
|
537
|
-
"internalType": "Timestamp",
|
538
|
-
"name": "closedAt",
|
539
|
-
"type": "uint40"
|
540
|
-
}
|
541
|
-
],
|
542
|
-
"internalType": "struct IBundle.BundleInfo",
|
543
|
-
"name": "bundleInfo",
|
544
|
-
"type": "tuple"
|
568
|
+
"internalType": "contract IInstance",
|
569
|
+
"name": "instance",
|
570
|
+
"type": "address"
|
571
|
+
},
|
572
|
+
{
|
573
|
+
"internalType": "NftId",
|
574
|
+
"name": "policyNftId",
|
575
|
+
"type": "uint96"
|
576
|
+
},
|
577
|
+
{
|
578
|
+
"internalType": "NftId",
|
579
|
+
"name": "bundleNftId",
|
580
|
+
"type": "uint96"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"internalType": "uint256",
|
584
|
+
"name": "collateralAmount",
|
585
|
+
"type": "uint256"
|
545
586
|
}
|
546
587
|
],
|
588
|
+
"name": "releaseCollateral",
|
589
|
+
"outputs": [],
|
590
|
+
"stateMutability": "nonpayable",
|
591
|
+
"type": "function"
|
592
|
+
},
|
593
|
+
{
|
594
|
+
"inputs": [
|
595
|
+
{
|
596
|
+
"internalType": "address",
|
597
|
+
"name": "",
|
598
|
+
"type": "address"
|
599
|
+
}
|
600
|
+
],
|
601
|
+
"name": "setAuthority",
|
602
|
+
"outputs": [],
|
547
603
|
"stateMutability": "nonpayable",
|
548
604
|
"type": "function"
|
549
605
|
},
|