@etherisc/gif-next 0.0.2-f30e0eb-805 → 0.0.2-f398177-971
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +6 -83
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +47 -6
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +70 -13
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +137 -6
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +144 -13
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +161 -20
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +151 -20
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +71 -20
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +62 -21
- 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 +310 -2004
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +101 -52
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +425 -2757
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +95 -58
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceAuthorizationsLib.sol/InstanceAuthorizationsLib.json +124 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +348 -58
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +153 -207
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +38 -83
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceStore.sol/InstanceStore.json +2788 -0
- 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 +113 -34
- 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 +186 -236
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +38 -55
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +377 -182
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +74 -39
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +713 -83
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +147 -32
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +266 -442
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +82 -107
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +111 -174
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +233 -128
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +385 -51
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +109 -282
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +210 -99
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +682 -33
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPricingService.sol/IPricingService.json +510 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +85 -27
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +420 -160
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +104 -53
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +880 -82
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +90 -39
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingService.sol/PricingService.json +1004 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PricingServiceManager.sol/PricingServiceManager.json +688 -0
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +144 -57
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +28 -37
- 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 +5 -37
- 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 +22 -49
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +21 -34
- 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 +10 -23
- package/artifacts/contracts/shared/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +3 -3
- 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/INftOwnable.sol/INftOwnable.json +0 -13
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/IPolicyHolder.sol/IPolicyHolder.json +69 -9
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +0 -13
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegistryLinked.sol/IRegistryLinked.json +0 -13
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +85 -27
- 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 +6 -19
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.dbg.json +1 -1
- package/artifacts/contracts/shared/PolicyHolder.sol/PolicyHolder.json +80 -26
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +14 -27
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +6 -19
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/shared/RegistryLinked.sol/RegistryLinked.json +2 -15
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +91 -28
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.json +24 -6
- 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 +6 -19
- 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 +106 -39
- 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 +281 -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 +74 -19
- 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 +25 -4
- package/contracts/components/Distribution.sol +11 -6
- package/contracts/components/IComponent.sol +19 -3
- package/contracts/components/IPoolComponent.sol +8 -7
- package/contracts/components/IProductComponent.sol +5 -4
- package/contracts/components/Pool.sol +17 -14
- package/contracts/components/Product.sol +144 -62
- package/contracts/instance/BundleManager.sol +3 -4
- package/contracts/instance/IInstance.sol +32 -53
- package/contracts/instance/IInstanceService.sol +15 -14
- package/contracts/instance/Instance.sol +107 -205
- package/contracts/instance/InstanceAccessManager.sol +44 -25
- package/contracts/instance/InstanceAuthorizationsLib.sol +308 -0
- package/contracts/instance/InstanceReader.sol +85 -7
- package/contracts/instance/InstanceService.sol +102 -289
- package/contracts/instance/InstanceStore.sol +212 -0
- package/contracts/instance/ObjectManager.sol +1 -1
- package/contracts/instance/base/ComponentService.sol +53 -39
- package/contracts/instance/base/KeyValueStore.sol +8 -34
- package/contracts/instance/base/Lifecycle.sol +15 -4
- package/contracts/instance/module/IAccess.sol +2 -2
- package/contracts/instance/module/IBundle.sol +6 -4
- package/contracts/instance/module/IComponents.sol +7 -1
- package/contracts/instance/module/IDistribution.sol +3 -2
- package/contracts/instance/module/IPolicy.sol +13 -8
- package/contracts/instance/service/ApplicationService.sol +62 -226
- package/contracts/instance/service/BundleService.sol +172 -126
- package/contracts/instance/service/ClaimService.sol +318 -32
- package/contracts/instance/service/DistributionService.sol +71 -190
- package/contracts/instance/service/IApplicationService.sol +8 -28
- package/contracts/instance/service/IBundleService.sol +82 -26
- package/contracts/instance/service/IClaimService.sol +52 -23
- package/contracts/instance/service/IDistributionService.sol +11 -22
- package/contracts/instance/service/IPolicyService.sol +24 -16
- package/contracts/instance/service/IPoolService.sol +82 -3
- package/contracts/instance/service/IPricingService.sol +37 -0
- package/contracts/instance/service/PolicyService.sol +152 -179
- package/contracts/instance/service/PoolService.sol +239 -56
- package/contracts/instance/service/PricingService.sol +275 -0
- package/contracts/instance/service/PricingServiceManager.sol +51 -0
- package/contracts/instance/service/ProductService.sol +27 -58
- package/contracts/registry/IRegistryService.sol +2 -3
- package/contracts/registry/RegistryService.sol +24 -21
- package/contracts/registry/ReleaseManager.sol +20 -18
- package/contracts/shared/IPolicyHolder.sol +23 -9
- package/contracts/shared/IRegistryLinked.sol +0 -1
- package/contracts/shared/IService.sol +6 -6
- package/contracts/shared/NftOwnable.sol +0 -2
- package/contracts/shared/PolicyHolder.sol +30 -17
- package/contracts/shared/Registerable.sol +10 -9
- package/contracts/shared/RegistryLinked.sol +0 -5
- package/contracts/shared/Service.sol +21 -7
- package/contracts/shared/TokenHandler.sol +4 -2
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Amount.sol +109 -0
- package/contracts/types/ClaimId.sol +25 -2
- package/contracts/types/Fee.sol +16 -8
- package/contracts/types/ObjectType.sol +9 -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/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +0 -4
- /package/contracts/{instance → shared}/AccessManagerUpgradeableInitializeable.sol +0 -0
package/README.md
CHANGED
@@ -1,18 +1,6 @@
|
|
1
1
|
# GIF-Next (Generic Insurance Framework, next version)
|
2
2
|
|
3
3
|
|
4
|
-
```mermaid
|
5
|
-
graph TD
|
6
|
-
IPoolComponent --> IComponent
|
7
|
-
IComponent --> IRegisterable
|
8
|
-
IComponent --> ITransferInterceptor
|
9
|
-
IRegistryService --> IService
|
10
|
-
IService-->IRegisterable
|
11
|
-
IService-->IVersionable
|
12
|
-
IRegisterable-->INftOwnable
|
13
|
-
INftOwnable-->IERC165
|
14
|
-
```
|
15
|
-
|
16
4
|
## Add OpenZeppelin V5 Dependencies
|
17
5
|
|
18
6
|
```shell
|
@@ -40,6 +28,10 @@ This repository uses submodules. To checkout or update to the latest submodules,
|
|
40
28
|
git submodule update --recursive
|
41
29
|
```
|
42
30
|
|
31
|
+
## Example components
|
32
|
+
|
33
|
+
A (very early) example of a product and a pool can be found in the [gif-next-sandbox repository](https://github.com/etherisc/gif-next-sandbox).
|
34
|
+
|
43
35
|
## Hardhat
|
44
36
|
|
45
37
|
### NPM Commands
|
@@ -232,17 +224,7 @@ https://book.getfoundry.sh/reference/
|
|
232
224
|
|
233
225
|
## Style Guide
|
234
226
|
|
235
|
-
|
236
|
-
|
237
|
-
Documentation of the code should be written inline using [NatSpec](https://docs.soliditylang.org/en/latest/natspec-format.html).
|
238
|
-
|
239
|
-
### Naming conventions
|
240
|
-
|
241
|
-
Additionally, we use the following naming conventions:
|
242
|
-
|
243
|
-
- Function arguments and return types: If using custom data types, make the name include the type by appending the Type to the argument name, e.g. `function getInfo(NftId bundleNftId)` instead of `function getInfo(NftId bundleId)`. Background: Custom data types are lost when using the ABI or Typescript binding classes (e.g. instead of `NftID` a `uint96` is used), so the type needs to be included in the name to make it clear what the argument is without having to look at the documentation or checking the solidity source code.
|
244
|
-
- When naming a field or an attribute `id` and the context is not clear, call it `nftId` instead so its clear what type if id it is as there will be multiple ids for different kind of objects. Example: if you the function has a bundle nft id and a policy nft id as arguments, call them `bundleNftId` and `policyNftId` instead of `id` and `policyId`. In case of doubt, be a bit more verbose for the sake of clarity.
|
245
|
-
- When naming things, remember that the code will likely be used in Javascript/Typescript as well, so avoid names that are reserved in Javascript/Typescript. A list of reserved words in Javascript can be found [here](https://www.w3schools.com/js/js_reserved.asp) and a list of reserved words in Typescript can be found [here](https://www.tektutorialshub.com/typescript/identifiers-keywords-in-typescript/).
|
227
|
+
Please see https://docs.etherisc.com/gif-next/3.x/ for style guide and general coding rules.
|
246
228
|
|
247
229
|
### Automatic code formatting
|
248
230
|
|
@@ -257,7 +239,7 @@ We use solhint to lint the code.
|
|
257
239
|
To execute linting run `npm run lint`.
|
258
240
|
|
259
241
|
|
260
|
-
### Adding Brownie (Legacy)
|
242
|
+
### Adding Brownie (Legacy - don't do that :wink: )
|
261
243
|
|
262
244
|
python3 is already installed
|
263
245
|
|
@@ -405,65 +387,6 @@ Intercepting property
|
|
405
387
|
|
406
388
|
### Product
|
407
389
|
|
408
|
-
### Payout Handling
|
409
|
-
|
410
|
-
Pool specifies **retention level**.
|
411
|
-
Retention level defines up to which percentage of the sum insured the pool is payout out using its own/current funds.
|
412
|
-
Depending on the amount of a new payout the poolService decides to either execute the payout directly or to add the payout as a pending payout with a notification of the pool.
|
413
|
-
|
414
|
-
The sequence below sketches the small payout flow (payout < retention amount)
|
415
|
-
- retention level: 30%
|
416
|
-
- sum insured: 1000
|
417
|
-
- payout: 200
|
418
|
-
|
419
|
-
```mermaid
|
420
|
-
sequenceDiagram
|
421
|
-
participant customer
|
422
|
-
participant product
|
423
|
-
participant claimService
|
424
|
-
participant poolService
|
425
|
-
participant pool
|
426
|
-
product->>claimService: createPayout()
|
427
|
-
claimService ->> poolService: requestPayout()
|
428
|
-
poolService -->> pool: verifyPayout() *
|
429
|
-
poolService ->> poolService: processPayout()
|
430
|
-
poolService ->> customer: transfer token for payout
|
431
|
-
poolService ->> claimService: payoutExecuted()
|
432
|
-
poolService -->> customer: payoutExecutedCallback() **
|
433
|
-
```
|
434
|
-
|
435
|
-
*: if pool is configured to verify payouts before execution
|
436
|
-
|
437
|
-
**: callback only if customer is contract (IPolicyHolder)
|
438
|
-
|
439
|
-
The sequence below sketches the call flow for payouts larger than the retention amount
|
440
|
-
- retention level: 30%
|
441
|
-
- sum insured: 1000
|
442
|
-
- payout: 500
|
443
|
-
* locally available: 300
|
444
|
-
* via policy (re-insurance): 200
|
445
|
-
|
446
|
-
```mermaid
|
447
|
-
sequenceDiagram
|
448
|
-
participant customer
|
449
|
-
participant product
|
450
|
-
participant claimService
|
451
|
-
participant poolService
|
452
|
-
participant pool
|
453
|
-
pool ->> reinsuranceProduct: applyForPolicy()
|
454
|
-
product->>claimService: createPayout()
|
455
|
-
claimService ->> poolService: requestPayout()
|
456
|
-
poolService ->> pool: pendingPayoutAdded()
|
457
|
-
pool ->> pool: getReinsurancePolicy()
|
458
|
-
pool ->> reinsuranceProduct: claim()
|
459
|
-
reinsuranceProduct -->> reinsurancePool: createPayout
|
460
|
-
reinsurancePool ->> pool: transfer token for payout
|
461
|
-
reinsurancePool ->> pool: payoutExecutedCallback()
|
462
|
-
pool ->> poolService: processPendingPayout()
|
463
|
-
poolService ->> customer: transfer token for payout
|
464
|
-
poolService ->> claimService: payoutExecuted()
|
465
|
-
```
|
466
|
-
|
467
390
|
### Pool
|
468
391
|
|
469
392
|
### Distribution
|
@@ -137,6 +137,11 @@
|
|
137
137
|
"name": "ErrorComponentWalletAllowanceTooSmall",
|
138
138
|
"type": "error"
|
139
139
|
},
|
140
|
+
{
|
141
|
+
"inputs": [],
|
142
|
+
"name": "ErrorComponentWalletNotComponent",
|
143
|
+
"type": "error"
|
144
|
+
},
|
140
145
|
{
|
141
146
|
"inputs": [
|
142
147
|
{
|
@@ -238,6 +243,19 @@
|
|
238
243
|
"name": "Initialized",
|
239
244
|
"type": "event"
|
240
245
|
},
|
246
|
+
{
|
247
|
+
"anonymous": false,
|
248
|
+
"inputs": [
|
249
|
+
{
|
250
|
+
"indexed": false,
|
251
|
+
"internalType": "uint256",
|
252
|
+
"name": "limit",
|
253
|
+
"type": "uint256"
|
254
|
+
}
|
255
|
+
],
|
256
|
+
"name": "LogComponentTokenHandlerApproved",
|
257
|
+
"type": "event"
|
258
|
+
},
|
241
259
|
{
|
242
260
|
"anonymous": false,
|
243
261
|
"inputs": [
|
@@ -321,6 +339,19 @@
|
|
321
339
|
"stateMutability": "view",
|
322
340
|
"type": "function"
|
323
341
|
},
|
342
|
+
{
|
343
|
+
"inputs": [
|
344
|
+
{
|
345
|
+
"internalType": "uint256",
|
346
|
+
"name": "spendingLimitAmount",
|
347
|
+
"type": "uint256"
|
348
|
+
}
|
349
|
+
],
|
350
|
+
"name": "approveTokenHandler",
|
351
|
+
"outputs": [],
|
352
|
+
"stateMutability": "nonpayable",
|
353
|
+
"type": "function"
|
354
|
+
},
|
324
355
|
{
|
325
356
|
"inputs": [],
|
326
357
|
"name": "authority",
|
@@ -360,6 +391,16 @@
|
|
360
391
|
"name": "wallet",
|
361
392
|
"type": "address"
|
362
393
|
},
|
394
|
+
{
|
395
|
+
"internalType": "Amount",
|
396
|
+
"name": "balanceAmount",
|
397
|
+
"type": "uint96"
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"internalType": "Amount",
|
401
|
+
"name": "feeAmount",
|
402
|
+
"type": "uint96"
|
403
|
+
},
|
363
404
|
{
|
364
405
|
"internalType": "bytes",
|
365
406
|
"name": "data",
|
@@ -504,11 +545,11 @@
|
|
504
545
|
},
|
505
546
|
{
|
506
547
|
"inputs": [],
|
507
|
-
"name": "
|
548
|
+
"name": "getToken",
|
508
549
|
"outputs": [
|
509
550
|
{
|
510
|
-
"internalType": "
|
511
|
-
"name": "",
|
551
|
+
"internalType": "contract IERC20Metadata",
|
552
|
+
"name": "token",
|
512
553
|
"type": "address"
|
513
554
|
}
|
514
555
|
],
|
@@ -517,11 +558,11 @@
|
|
517
558
|
},
|
518
559
|
{
|
519
560
|
"inputs": [],
|
520
|
-
"name": "
|
561
|
+
"name": "getTokenHandler",
|
521
562
|
"outputs": [
|
522
563
|
{
|
523
|
-
"internalType": "contract
|
524
|
-
"name": "
|
564
|
+
"internalType": "contract TokenHandler",
|
565
|
+
"name": "tokenHandler",
|
525
566
|
"type": "address"
|
526
567
|
}
|
527
568
|
],
|
@@ -137,6 +137,27 @@
|
|
137
137
|
"name": "ErrorComponentWalletAllowanceTooSmall",
|
138
138
|
"type": "error"
|
139
139
|
},
|
140
|
+
{
|
141
|
+
"inputs": [],
|
142
|
+
"name": "ErrorComponentWalletNotComponent",
|
143
|
+
"type": "error"
|
144
|
+
},
|
145
|
+
{
|
146
|
+
"inputs": [
|
147
|
+
{
|
148
|
+
"internalType": "address",
|
149
|
+
"name": "distributor",
|
150
|
+
"type": "address"
|
151
|
+
},
|
152
|
+
{
|
153
|
+
"internalType": "NftId",
|
154
|
+
"name": "distributorNftId",
|
155
|
+
"type": "uint96"
|
156
|
+
}
|
157
|
+
],
|
158
|
+
"name": "ErrorDistributionAlreadyDistributor",
|
159
|
+
"type": "error"
|
160
|
+
},
|
140
161
|
{
|
141
162
|
"inputs": [
|
142
163
|
{
|
@@ -238,6 +259,19 @@
|
|
238
259
|
"name": "Initialized",
|
239
260
|
"type": "event"
|
240
261
|
},
|
262
|
+
{
|
263
|
+
"anonymous": false,
|
264
|
+
"inputs": [
|
265
|
+
{
|
266
|
+
"indexed": false,
|
267
|
+
"internalType": "uint256",
|
268
|
+
"name": "limit",
|
269
|
+
"type": "uint256"
|
270
|
+
}
|
271
|
+
],
|
272
|
+
"name": "LogComponentTokenHandlerApproved",
|
273
|
+
"type": "event"
|
274
|
+
},
|
241
275
|
{
|
242
276
|
"anonymous": false,
|
243
277
|
"inputs": [
|
@@ -353,6 +387,19 @@
|
|
353
387
|
"stateMutability": "view",
|
354
388
|
"type": "function"
|
355
389
|
},
|
390
|
+
{
|
391
|
+
"inputs": [
|
392
|
+
{
|
393
|
+
"internalType": "uint256",
|
394
|
+
"name": "spendingLimitAmount",
|
395
|
+
"type": "uint256"
|
396
|
+
}
|
397
|
+
],
|
398
|
+
"name": "approveTokenHandler",
|
399
|
+
"outputs": [],
|
400
|
+
"stateMutability": "nonpayable",
|
401
|
+
"type": "function"
|
402
|
+
},
|
356
403
|
{
|
357
404
|
"inputs": [],
|
358
405
|
"name": "authority",
|
@@ -504,6 +551,16 @@
|
|
504
551
|
"name": "wallet",
|
505
552
|
"type": "address"
|
506
553
|
},
|
554
|
+
{
|
555
|
+
"internalType": "Amount",
|
556
|
+
"name": "balanceAmount",
|
557
|
+
"type": "uint96"
|
558
|
+
},
|
559
|
+
{
|
560
|
+
"internalType": "Amount",
|
561
|
+
"name": "feeAmount",
|
562
|
+
"type": "uint96"
|
563
|
+
},
|
507
564
|
{
|
508
565
|
"internalType": "bytes",
|
509
566
|
"name": "data",
|
@@ -733,19 +790,6 @@
|
|
733
790
|
"stateMutability": "view",
|
734
791
|
"type": "function"
|
735
792
|
},
|
736
|
-
{
|
737
|
-
"inputs": [],
|
738
|
-
"name": "getRegistryAddress",
|
739
|
-
"outputs": [
|
740
|
-
{
|
741
|
-
"internalType": "address",
|
742
|
-
"name": "",
|
743
|
-
"type": "address"
|
744
|
-
}
|
745
|
-
],
|
746
|
-
"stateMutability": "view",
|
747
|
-
"type": "function"
|
748
|
-
},
|
749
793
|
{
|
750
794
|
"inputs": [],
|
751
795
|
"name": "getSetupInfo",
|
@@ -828,6 +872,19 @@
|
|
828
872
|
"stateMutability": "view",
|
829
873
|
"type": "function"
|
830
874
|
},
|
875
|
+
{
|
876
|
+
"inputs": [],
|
877
|
+
"name": "getTokenHandler",
|
878
|
+
"outputs": [
|
879
|
+
{
|
880
|
+
"internalType": "contract TokenHandler",
|
881
|
+
"name": "tokenHandler",
|
882
|
+
"type": "address"
|
883
|
+
}
|
884
|
+
],
|
885
|
+
"stateMutability": "view",
|
886
|
+
"type": "function"
|
887
|
+
},
|
831
888
|
{
|
832
889
|
"inputs": [],
|
833
890
|
"name": "getWallet",
|
@@ -3,6 +3,44 @@
|
|
3
3
|
"contractName": "IComponent",
|
4
4
|
"sourceName": "contracts/components/IComponent.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
|
{
|
@@ -77,6 +115,11 @@
|
|
77
115
|
"name": "ErrorComponentWalletAllowanceTooSmall",
|
78
116
|
"type": "error"
|
79
117
|
},
|
118
|
+
{
|
119
|
+
"inputs": [],
|
120
|
+
"name": "ErrorComponentWalletNotComponent",
|
121
|
+
"type": "error"
|
122
|
+
},
|
80
123
|
{
|
81
124
|
"inputs": [
|
82
125
|
{
|
@@ -126,6 +169,32 @@
|
|
126
169
|
"name": "ErrorNotRegistry",
|
127
170
|
"type": "error"
|
128
171
|
},
|
172
|
+
{
|
173
|
+
"anonymous": false,
|
174
|
+
"inputs": [
|
175
|
+
{
|
176
|
+
"indexed": false,
|
177
|
+
"internalType": "address",
|
178
|
+
"name": "authority",
|
179
|
+
"type": "address"
|
180
|
+
}
|
181
|
+
],
|
182
|
+
"name": "AuthorityUpdated",
|
183
|
+
"type": "event"
|
184
|
+
},
|
185
|
+
{
|
186
|
+
"anonymous": false,
|
187
|
+
"inputs": [
|
188
|
+
{
|
189
|
+
"indexed": false,
|
190
|
+
"internalType": "uint256",
|
191
|
+
"name": "limit",
|
192
|
+
"type": "uint256"
|
193
|
+
}
|
194
|
+
],
|
195
|
+
"name": "LogComponentTokenHandlerApproved",
|
196
|
+
"type": "event"
|
197
|
+
},
|
129
198
|
{
|
130
199
|
"anonymous": false,
|
131
200
|
"inputs": [
|
@@ -170,6 +239,32 @@
|
|
170
239
|
"name": "LogComponentWalletTokensTransferred",
|
171
240
|
"type": "event"
|
172
241
|
},
|
242
|
+
{
|
243
|
+
"inputs": [
|
244
|
+
{
|
245
|
+
"internalType": "uint256",
|
246
|
+
"name": "spendingLimitAmount",
|
247
|
+
"type": "uint256"
|
248
|
+
}
|
249
|
+
],
|
250
|
+
"name": "approveTokenHandler",
|
251
|
+
"outputs": [],
|
252
|
+
"stateMutability": "nonpayable",
|
253
|
+
"type": "function"
|
254
|
+
},
|
255
|
+
{
|
256
|
+
"inputs": [],
|
257
|
+
"name": "authority",
|
258
|
+
"outputs": [
|
259
|
+
{
|
260
|
+
"internalType": "address",
|
261
|
+
"name": "",
|
262
|
+
"type": "address"
|
263
|
+
}
|
264
|
+
],
|
265
|
+
"stateMutability": "view",
|
266
|
+
"type": "function"
|
267
|
+
},
|
173
268
|
{
|
174
269
|
"inputs": [],
|
175
270
|
"name": "getComponentInfo",
|
@@ -196,6 +291,16 @@
|
|
196
291
|
"name": "wallet",
|
197
292
|
"type": "address"
|
198
293
|
},
|
294
|
+
{
|
295
|
+
"internalType": "Amount",
|
296
|
+
"name": "balanceAmount",
|
297
|
+
"type": "uint96"
|
298
|
+
},
|
299
|
+
{
|
300
|
+
"internalType": "Amount",
|
301
|
+
"name": "feeAmount",
|
302
|
+
"type": "uint96"
|
303
|
+
},
|
199
304
|
{
|
200
305
|
"internalType": "bytes",
|
201
306
|
"name": "data",
|
@@ -340,11 +445,11 @@
|
|
340
445
|
},
|
341
446
|
{
|
342
447
|
"inputs": [],
|
343
|
-
"name": "
|
448
|
+
"name": "getToken",
|
344
449
|
"outputs": [
|
345
450
|
{
|
346
|
-
"internalType": "
|
347
|
-
"name": "",
|
451
|
+
"internalType": "contract IERC20Metadata",
|
452
|
+
"name": "token",
|
348
453
|
"type": "address"
|
349
454
|
}
|
350
455
|
],
|
@@ -353,11 +458,11 @@
|
|
353
458
|
},
|
354
459
|
{
|
355
460
|
"inputs": [],
|
356
|
-
"name": "
|
461
|
+
"name": "getTokenHandler",
|
357
462
|
"outputs": [
|
358
463
|
{
|
359
|
-
"internalType": "contract
|
360
|
-
"name": "
|
464
|
+
"internalType": "contract TokenHandler",
|
465
|
+
"name": "tokenHandler",
|
361
466
|
"type": "address"
|
362
467
|
}
|
363
468
|
],
|
@@ -377,6 +482,19 @@
|
|
377
482
|
"stateMutability": "view",
|
378
483
|
"type": "function"
|
379
484
|
},
|
485
|
+
{
|
486
|
+
"inputs": [],
|
487
|
+
"name": "isConsumingScheduledOp",
|
488
|
+
"outputs": [
|
489
|
+
{
|
490
|
+
"internalType": "bytes4",
|
491
|
+
"name": "",
|
492
|
+
"type": "bytes4"
|
493
|
+
}
|
494
|
+
],
|
495
|
+
"stateMutability": "view",
|
496
|
+
"type": "function"
|
497
|
+
},
|
380
498
|
{
|
381
499
|
"inputs": [],
|
382
500
|
"name": "isNftInterceptor",
|
@@ -445,6 +563,19 @@
|
|
445
563
|
"stateMutability": "nonpayable",
|
446
564
|
"type": "function"
|
447
565
|
},
|
566
|
+
{
|
567
|
+
"inputs": [
|
568
|
+
{
|
569
|
+
"internalType": "address",
|
570
|
+
"name": "",
|
571
|
+
"type": "address"
|
572
|
+
}
|
573
|
+
],
|
574
|
+
"name": "setAuthority",
|
575
|
+
"outputs": [],
|
576
|
+
"stateMutability": "nonpayable",
|
577
|
+
"type": "function"
|
578
|
+
},
|
448
579
|
{
|
449
580
|
"inputs": [
|
450
581
|
{
|