@etherisc/gif-next 0.0.2-eb98db7-932 → 0.0.2-ebf1a6b-485
Sign up to get free protection for your applications and to get access to all the features.
- package/artifacts/contracts/components/Component.sol/Component.dbg.json +1 -1
- package/artifacts/contracts/components/Component.sol/Component.json +10 -89
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +67 -134
- package/artifacts/contracts/components/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IComponent.sol/IComponent.json +7 -73
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +46 -117
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +238 -96
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +11 -145
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +241 -112
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +15 -162
- 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 +84 -146
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +11 -0
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +149 -211
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +2 -2
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +79 -110
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +44 -33
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +17 -17
- 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 +12 -1
- 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 +2 -2
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.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 +172 -62
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ApplicationServiceManager.sol/ApplicationServiceManager.json +33 -25
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +34 -23
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +9 -9
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimService.sol/ClaimService.json +14 -3
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ClaimServiceManager.sol/ClaimServiceManager.json +2 -2
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +535 -69
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +96 -32
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IApplicationService.sol/IApplicationService.json +121 -27
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +17 -6
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IClaimService.sol/IClaimService.json +11 -0
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +344 -6
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +11 -64
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +11 -0
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +11 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +48 -157
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +19 -47
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +22 -11
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +6 -6
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +14 -3
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +2 -2
- 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 +11 -0
- 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 +24 -13
- 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 +2 -2
- 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 +11 -0
- 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 +3 -3
- 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 +12 -1
- 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/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +3 -3
- 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 +14 -3
- 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/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/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- 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/PayoutId.sol/PayoutIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- 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 +4 -0
- package/artifacts/contracts/types/Seconds.sol/SecondsLib.json +124 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.json +25 -7
- 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 +68 -88
- package/contracts/components/Distribution.sol +12 -6
- package/contracts/components/IComponent.sol +31 -17
- package/contracts/components/IDistributionComponent.sol +1 -14
- package/contracts/components/IPoolComponent.sol +89 -25
- package/contracts/components/IProductComponent.sol +3 -2
- package/contracts/components/Pool.sol +216 -92
- package/contracts/components/Product.sol +24 -20
- package/contracts/instance/BundleManager.sol +1 -1
- package/contracts/instance/InstanceService.sol +15 -1
- package/contracts/instance/module/IBundle.sol +2 -1
- package/contracts/instance/module/IDistribution.sol +2 -1
- package/contracts/instance/module/IPolicy.sol +26 -1
- package/contracts/instance/module/ISetup.sol +5 -7
- package/contracts/instance/service/ApplicationService.sol +121 -40
- package/contracts/instance/service/BundleService.sol +4 -3
- package/contracts/instance/service/DistributionService.sol +91 -43
- package/contracts/instance/service/IApplicationService.sol +7 -7
- package/contracts/instance/service/IBundleService.sol +3 -2
- package/contracts/instance/service/IDistributionService.sol +15 -2
- package/contracts/instance/service/IPolicyService.sol +1 -20
- package/contracts/instance/service/PolicyService.sol +31 -105
- package/contracts/registry/RegistryService.sol +5 -5
- package/contracts/shared/IService.sol +2 -0
- package/contracts/shared/Registerable.sol +2 -2
- package/contracts/types/RoleId.sol +7 -2
- package/contracts/types/Seconds.sol +54 -0
- package/contracts/types/Timestamp.sol +12 -13
- package/package.json +1 -1
@@ -327,9 +327,9 @@
|
|
327
327
|
"type": "uint256"
|
328
328
|
},
|
329
329
|
{
|
330
|
-
"internalType": "
|
330
|
+
"internalType": "Seconds",
|
331
331
|
"name": "lifetime",
|
332
|
-
"type": "
|
332
|
+
"type": "uint40"
|
333
333
|
},
|
334
334
|
{
|
335
335
|
"internalType": "bytes",
|
@@ -434,9 +434,9 @@
|
|
434
434
|
"type": "uint256"
|
435
435
|
},
|
436
436
|
{
|
437
|
-
"internalType": "
|
437
|
+
"internalType": "Seconds",
|
438
438
|
"name": "lifetime",
|
439
|
-
"type": "
|
439
|
+
"type": "uint40"
|
440
440
|
},
|
441
441
|
{
|
442
442
|
"internalType": "Timestamp",
|
@@ -478,6 +478,23 @@
|
|
478
478
|
"name": "tokenHandler",
|
479
479
|
"type": "address"
|
480
480
|
},
|
481
|
+
{
|
482
|
+
"components": [
|
483
|
+
{
|
484
|
+
"internalType": "UFixed",
|
485
|
+
"name": "fractionalFee",
|
486
|
+
"type": "uint256"
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"internalType": "uint256",
|
490
|
+
"name": "fixedFee",
|
491
|
+
"type": "uint256"
|
492
|
+
}
|
493
|
+
],
|
494
|
+
"internalType": "struct Fee",
|
495
|
+
"name": "minDistributionOwnerFee",
|
496
|
+
"type": "tuple"
|
497
|
+
},
|
481
498
|
{
|
482
499
|
"components": [
|
483
500
|
{
|
@@ -499,6 +516,11 @@
|
|
499
516
|
"internalType": "address",
|
500
517
|
"name": "wallet",
|
501
518
|
"type": "address"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"internalType": "uint256",
|
522
|
+
"name": "sumDistributionFees",
|
523
|
+
"type": "uint256"
|
502
524
|
}
|
503
525
|
],
|
504
526
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -534,6 +556,16 @@
|
|
534
556
|
"internalType": "bytes",
|
535
557
|
"name": "data",
|
536
558
|
"type": "bytes"
|
559
|
+
},
|
560
|
+
{
|
561
|
+
"internalType": "uint256",
|
562
|
+
"name": "sumCommisions",
|
563
|
+
"type": "uint256"
|
564
|
+
},
|
565
|
+
{
|
566
|
+
"internalType": "uint256",
|
567
|
+
"name": "numPoliciesSold",
|
568
|
+
"type": "uint256"
|
537
569
|
}
|
538
570
|
],
|
539
571
|
"internalType": "struct IDistribution.DistributorInfo",
|
@@ -630,6 +662,11 @@
|
|
630
662
|
"name": "tokenHandler",
|
631
663
|
"type": "address"
|
632
664
|
},
|
665
|
+
{
|
666
|
+
"internalType": "uint256",
|
667
|
+
"name": "maxCapitalAmount",
|
668
|
+
"type": "uint256"
|
669
|
+
},
|
633
670
|
{
|
634
671
|
"internalType": "bool",
|
635
672
|
"name": "isInterceptingBundleTransfers",
|
@@ -751,23 +788,6 @@
|
|
751
788
|
"name": "poolNftId",
|
752
789
|
"type": "uint96"
|
753
790
|
},
|
754
|
-
{
|
755
|
-
"components": [
|
756
|
-
{
|
757
|
-
"internalType": "UFixed",
|
758
|
-
"name": "fractionalFee",
|
759
|
-
"type": "uint256"
|
760
|
-
},
|
761
|
-
{
|
762
|
-
"internalType": "uint256",
|
763
|
-
"name": "fixedFee",
|
764
|
-
"type": "uint256"
|
765
|
-
}
|
766
|
-
],
|
767
|
-
"internalType": "struct Fee",
|
768
|
-
"name": "distributionFee",
|
769
|
-
"type": "tuple"
|
770
|
-
},
|
771
791
|
{
|
772
792
|
"components": [
|
773
793
|
{
|
@@ -802,57 +822,6 @@
|
|
802
822
|
"name": "processingFee",
|
803
823
|
"type": "tuple"
|
804
824
|
},
|
805
|
-
{
|
806
|
-
"components": [
|
807
|
-
{
|
808
|
-
"internalType": "UFixed",
|
809
|
-
"name": "fractionalFee",
|
810
|
-
"type": "uint256"
|
811
|
-
},
|
812
|
-
{
|
813
|
-
"internalType": "uint256",
|
814
|
-
"name": "fixedFee",
|
815
|
-
"type": "uint256"
|
816
|
-
}
|
817
|
-
],
|
818
|
-
"internalType": "struct Fee",
|
819
|
-
"name": "poolFee",
|
820
|
-
"type": "tuple"
|
821
|
-
},
|
822
|
-
{
|
823
|
-
"components": [
|
824
|
-
{
|
825
|
-
"internalType": "UFixed",
|
826
|
-
"name": "fractionalFee",
|
827
|
-
"type": "uint256"
|
828
|
-
},
|
829
|
-
{
|
830
|
-
"internalType": "uint256",
|
831
|
-
"name": "fixedFee",
|
832
|
-
"type": "uint256"
|
833
|
-
}
|
834
|
-
],
|
835
|
-
"internalType": "struct Fee",
|
836
|
-
"name": "stakingFee",
|
837
|
-
"type": "tuple"
|
838
|
-
},
|
839
|
-
{
|
840
|
-
"components": [
|
841
|
-
{
|
842
|
-
"internalType": "UFixed",
|
843
|
-
"name": "fractionalFee",
|
844
|
-
"type": "uint256"
|
845
|
-
},
|
846
|
-
{
|
847
|
-
"internalType": "uint256",
|
848
|
-
"name": "fixedFee",
|
849
|
-
"type": "uint256"
|
850
|
-
}
|
851
|
-
],
|
852
|
-
"internalType": "struct Fee",
|
853
|
-
"name": "performanceFee",
|
854
|
-
"type": "tuple"
|
855
|
-
},
|
856
825
|
{
|
857
826
|
"internalType": "bool",
|
858
827
|
"name": "isIntercepting",
|
@@ -1514,9 +1483,9 @@
|
|
1514
1483
|
"type": "uint256"
|
1515
1484
|
},
|
1516
1485
|
{
|
1517
|
-
"internalType": "
|
1486
|
+
"internalType": "Seconds",
|
1518
1487
|
"name": "lifetime",
|
1519
|
-
"type": "
|
1488
|
+
"type": "uint40"
|
1520
1489
|
},
|
1521
1490
|
{
|
1522
1491
|
"internalType": "bytes",
|
@@ -1644,9 +1613,9 @@
|
|
1644
1613
|
"type": "uint256"
|
1645
1614
|
},
|
1646
1615
|
{
|
1647
|
-
"internalType": "
|
1616
|
+
"internalType": "Seconds",
|
1648
1617
|
"name": "lifetime",
|
1649
|
-
"type": "
|
1618
|
+
"type": "uint40"
|
1650
1619
|
},
|
1651
1620
|
{
|
1652
1621
|
"internalType": "Timestamp",
|
@@ -1711,6 +1680,23 @@
|
|
1711
1680
|
"name": "tokenHandler",
|
1712
1681
|
"type": "address"
|
1713
1682
|
},
|
1683
|
+
{
|
1684
|
+
"components": [
|
1685
|
+
{
|
1686
|
+
"internalType": "UFixed",
|
1687
|
+
"name": "fractionalFee",
|
1688
|
+
"type": "uint256"
|
1689
|
+
},
|
1690
|
+
{
|
1691
|
+
"internalType": "uint256",
|
1692
|
+
"name": "fixedFee",
|
1693
|
+
"type": "uint256"
|
1694
|
+
}
|
1695
|
+
],
|
1696
|
+
"internalType": "struct Fee",
|
1697
|
+
"name": "minDistributionOwnerFee",
|
1698
|
+
"type": "tuple"
|
1699
|
+
},
|
1714
1700
|
{
|
1715
1701
|
"components": [
|
1716
1702
|
{
|
@@ -1732,6 +1718,11 @@
|
|
1732
1718
|
"internalType": "address",
|
1733
1719
|
"name": "wallet",
|
1734
1720
|
"type": "address"
|
1721
|
+
},
|
1722
|
+
{
|
1723
|
+
"internalType": "uint256",
|
1724
|
+
"name": "sumDistributionFees",
|
1725
|
+
"type": "uint256"
|
1735
1726
|
}
|
1736
1727
|
],
|
1737
1728
|
"internalType": "struct ISetup.DistributionSetupInfo",
|
@@ -1790,6 +1781,16 @@
|
|
1790
1781
|
"internalType": "bytes",
|
1791
1782
|
"name": "data",
|
1792
1783
|
"type": "bytes"
|
1784
|
+
},
|
1785
|
+
{
|
1786
|
+
"internalType": "uint256",
|
1787
|
+
"name": "sumCommisions",
|
1788
|
+
"type": "uint256"
|
1789
|
+
},
|
1790
|
+
{
|
1791
|
+
"internalType": "uint256",
|
1792
|
+
"name": "numPoliciesSold",
|
1793
|
+
"type": "uint256"
|
1793
1794
|
}
|
1794
1795
|
],
|
1795
1796
|
"internalType": "struct IDistribution.DistributorInfo",
|
@@ -1958,9 +1959,9 @@
|
|
1958
1959
|
"type": "uint256"
|
1959
1960
|
},
|
1960
1961
|
{
|
1961
|
-
"internalType": "
|
1962
|
+
"internalType": "Seconds",
|
1962
1963
|
"name": "lifetime",
|
1963
|
-
"type": "
|
1964
|
+
"type": "uint40"
|
1964
1965
|
},
|
1965
1966
|
{
|
1966
1967
|
"internalType": "bytes",
|
@@ -2055,6 +2056,11 @@
|
|
2055
2056
|
"name": "tokenHandler",
|
2056
2057
|
"type": "address"
|
2057
2058
|
},
|
2059
|
+
{
|
2060
|
+
"internalType": "uint256",
|
2061
|
+
"name": "maxCapitalAmount",
|
2062
|
+
"type": "uint256"
|
2063
|
+
},
|
2058
2064
|
{
|
2059
2065
|
"internalType": "bool",
|
2060
2066
|
"name": "isInterceptingBundleTransfers",
|
@@ -2199,23 +2205,6 @@
|
|
2199
2205
|
"name": "poolNftId",
|
2200
2206
|
"type": "uint96"
|
2201
2207
|
},
|
2202
|
-
{
|
2203
|
-
"components": [
|
2204
|
-
{
|
2205
|
-
"internalType": "UFixed",
|
2206
|
-
"name": "fractionalFee",
|
2207
|
-
"type": "uint256"
|
2208
|
-
},
|
2209
|
-
{
|
2210
|
-
"internalType": "uint256",
|
2211
|
-
"name": "fixedFee",
|
2212
|
-
"type": "uint256"
|
2213
|
-
}
|
2214
|
-
],
|
2215
|
-
"internalType": "struct Fee",
|
2216
|
-
"name": "distributionFee",
|
2217
|
-
"type": "tuple"
|
2218
|
-
},
|
2219
2208
|
{
|
2220
2209
|
"components": [
|
2221
2210
|
{
|
@@ -2250,57 +2239,6 @@
|
|
2250
2239
|
"name": "processingFee",
|
2251
2240
|
"type": "tuple"
|
2252
2241
|
},
|
2253
|
-
{
|
2254
|
-
"components": [
|
2255
|
-
{
|
2256
|
-
"internalType": "UFixed",
|
2257
|
-
"name": "fractionalFee",
|
2258
|
-
"type": "uint256"
|
2259
|
-
},
|
2260
|
-
{
|
2261
|
-
"internalType": "uint256",
|
2262
|
-
"name": "fixedFee",
|
2263
|
-
"type": "uint256"
|
2264
|
-
}
|
2265
|
-
],
|
2266
|
-
"internalType": "struct Fee",
|
2267
|
-
"name": "poolFee",
|
2268
|
-
"type": "tuple"
|
2269
|
-
},
|
2270
|
-
{
|
2271
|
-
"components": [
|
2272
|
-
{
|
2273
|
-
"internalType": "UFixed",
|
2274
|
-
"name": "fractionalFee",
|
2275
|
-
"type": "uint256"
|
2276
|
-
},
|
2277
|
-
{
|
2278
|
-
"internalType": "uint256",
|
2279
|
-
"name": "fixedFee",
|
2280
|
-
"type": "uint256"
|
2281
|
-
}
|
2282
|
-
],
|
2283
|
-
"internalType": "struct Fee",
|
2284
|
-
"name": "stakingFee",
|
2285
|
-
"type": "tuple"
|
2286
|
-
},
|
2287
|
-
{
|
2288
|
-
"components": [
|
2289
|
-
{
|
2290
|
-
"internalType": "UFixed",
|
2291
|
-
"name": "fractionalFee",
|
2292
|
-
"type": "uint256"
|
2293
|
-
},
|
2294
|
-
{
|
2295
|
-
"internalType": "uint256",
|
2296
|
-
"name": "fixedFee",
|
2297
|
-
"type": "uint256"
|
2298
|
-
}
|
2299
|
-
],
|
2300
|
-
"internalType": "struct Fee",
|
2301
|
-
"name": "performanceFee",
|
2302
|
-
"type": "tuple"
|
2303
|
-
},
|
2304
2242
|
{
|
2305
2243
|
"internalType": "bool",
|
2306
2244
|
"name": "isIntercepting",
|
@@ -3,6 +3,17 @@
|
|
3
3
|
"contractName": "IInstanceService",
|
4
4
|
"sourceName": "contracts/instance/IInstanceService.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "caller",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "ErrorIServiceCallerUnknown",
|
15
|
+
"type": "error"
|
16
|
+
},
|
6
17
|
{
|
7
18
|
"inputs": [],
|
8
19
|
"name": "ErrorInstanceServiceAccessManagerZero",
|