@etherisc/gif-next 0.0.2-e1f23dc-329 → 0.0.2-e2d8c7d-942

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.
Files changed (200) hide show
  1. package/README.md +63 -1
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +126 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +136 -10
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +88 -0
  8. package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
  9. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
  10. package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +28 -2
  11. package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  12. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  13. package/artifacts/contracts/components/Pool.sol/Pool.json +168 -11
  14. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  15. package/artifacts/contracts/components/Product.sol/Product.json +144 -8
  16. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  30. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
  31. package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
  32. package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
  33. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  34. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  36. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
  37. package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
  38. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
  39. package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
  40. package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
  41. package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
  42. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  44. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +69 -0
  45. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
  46. package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
  47. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  48. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +17 -1
  49. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  50. package/artifacts/contracts/instance/Instance.sol/Instance.json +156 -139
  51. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  52. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +55 -32
  53. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
  54. package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
  55. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  56. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +55 -40
  57. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  58. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +243 -95
  59. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  60. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +82 -30
  61. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
  62. package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
  63. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  64. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +0 -19
  65. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  66. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  67. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  68. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  69. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  72. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  73. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  74. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  75. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  76. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  77. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
  78. package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +923 -0
  79. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
  80. package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +440 -0
  81. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  82. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +2 -2
  83. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
  84. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +16 -48
  85. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
  86. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +8 -24
  87. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
  88. package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.json +669 -0
  89. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  90. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  91. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
  92. package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +664 -0
  93. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  94. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +9 -158
  95. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  96. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +9 -212
  97. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
  98. package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +984 -0
  99. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
  100. package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +464 -0
  101. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
  102. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +20 -228
  103. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
  104. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +10 -30
  105. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
  106. package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +20 -346
  107. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
  108. package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +10 -62
  109. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  110. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  111. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  112. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  113. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  114. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  115. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +2 -2
  116. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  117. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +2 -2
  118. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
  119. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  120. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  121. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  122. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  123. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
  124. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  125. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  126. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  127. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  128. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +1 -1
  129. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
  130. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  131. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  132. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  133. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  134. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  135. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  136. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  137. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  138. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  139. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  140. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  141. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  142. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  143. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  144. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  145. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  146. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  147. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  148. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  149. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  150. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +26 -3
  151. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  152. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  154. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  156. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  157. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  158. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  159. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  160. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  161. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  162. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  163. package/contracts/components/BaseComponent.sol +49 -8
  164. package/contracts/components/Distribution.sol +5 -1
  165. package/contracts/components/IBaseComponent.sol +6 -0
  166. package/contracts/components/IPoolComponent.sol +5 -1
  167. package/contracts/components/Pool.sol +39 -10
  168. package/contracts/components/Product.sol +15 -7
  169. package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
  170. package/contracts/instance/BundleManager.sol +129 -0
  171. package/contracts/instance/Cloneable.sol +46 -0
  172. package/contracts/instance/IInstance.sol +6 -0
  173. package/contracts/instance/IInstanceBase.sol +26 -0
  174. package/contracts/instance/IInstanceService.sol +7 -3
  175. package/contracts/instance/Instance.sol +36 -15
  176. package/contracts/instance/InstanceAccessManager.sol +6 -6
  177. package/contracts/instance/InstanceBase.sol +41 -0
  178. package/contracts/instance/InstanceService.sol +171 -70
  179. package/contracts/instance/ObjectManager.sol +101 -0
  180. package/contracts/instance/base/ComponentServiceBase.sol +15 -77
  181. package/contracts/instance/module/ISetup.sol +3 -1
  182. package/contracts/instance/service/BundleService.sol +260 -0
  183. package/contracts/instance/service/BundleServiceManager.sol +54 -0
  184. package/contracts/instance/service/DistributionService.sol +38 -8
  185. package/contracts/instance/service/IBundleService.sol +45 -0
  186. package/contracts/instance/service/IPolicyService.sol +87 -0
  187. package/contracts/instance/service/IPoolService.sol +4 -25
  188. package/contracts/instance/service/IProductService.sol +3 -70
  189. package/contracts/instance/service/PolicyService.sol +508 -0
  190. package/contracts/instance/service/PolicyServiceManager.sol +54 -0
  191. package/contracts/instance/service/PoolService.sol +41 -118
  192. package/contracts/instance/service/ProductService.sol +50 -441
  193. package/contracts/types/NftIdSet.sol +26 -24
  194. package/contracts/types/RoleId.sol +2 -0
  195. package/package.json +1 -1
  196. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
  197. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
  198. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
  199. package/contracts/instance/AccessManagedSimple.sol +0 -115
  200. package/contracts/instance/AccessManagerSimple.sol +0 -692
@@ -98,57 +98,6 @@
98
98
  "name": "LogVersionableInitialized",
99
99
  "type": "event"
100
100
  },
101
- {
102
- "inputs": [
103
- {
104
- "internalType": "address",
105
- "name": "owner",
106
- "type": "address"
107
- },
108
- {
109
- "components": [
110
- {
111
- "internalType": "UFixed",
112
- "name": "fractionalFee",
113
- "type": "uint256"
114
- },
115
- {
116
- "internalType": "uint256",
117
- "name": "fixedFee",
118
- "type": "uint256"
119
- }
120
- ],
121
- "internalType": "struct Fee",
122
- "name": "fee",
123
- "type": "tuple"
124
- },
125
- {
126
- "internalType": "uint256",
127
- "name": "amount",
128
- "type": "uint256"
129
- },
130
- {
131
- "internalType": "uint256",
132
- "name": "lifetime",
133
- "type": "uint256"
134
- },
135
- {
136
- "internalType": "bytes",
137
- "name": "filter",
138
- "type": "bytes"
139
- }
140
- ],
141
- "name": "createBundle",
142
- "outputs": [
143
- {
144
- "internalType": "NftId",
145
- "name": "bundleNftId",
146
- "type": "uint96"
147
- }
148
- ],
149
- "stateMutability": "nonpayable",
150
- "type": "function"
151
- },
152
101
  {
153
102
  "inputs": [],
154
103
  "name": "getInitialInfo",
@@ -424,31 +373,20 @@
424
373
  },
425
374
  {
426
375
  "inputs": [
376
+ {
377
+ "internalType": "address",
378
+ "name": "poolAddress",
379
+ "type": "address"
380
+ }
381
+ ],
382
+ "name": "register",
383
+ "outputs": [
427
384
  {
428
385
  "internalType": "NftId",
429
- "name": "bundleNftId",
386
+ "name": "",
430
387
  "type": "uint96"
431
- },
432
- {
433
- "components": [
434
- {
435
- "internalType": "UFixed",
436
- "name": "fractionalFee",
437
- "type": "uint256"
438
- },
439
- {
440
- "internalType": "uint256",
441
- "name": "fixedFee",
442
- "type": "uint256"
443
- }
444
- ],
445
- "internalType": "struct Fee",
446
- "name": "fee",
447
- "type": "tuple"
448
388
  }
449
389
  ],
450
- "name": "setBundleFee",
451
- "outputs": [],
452
390
  "stateMutability": "nonpayable",
453
391
  "type": "function"
454
392
  },
@@ -530,93 +468,6 @@
530
468
  "stateMutability": "view",
531
469
  "type": "function"
532
470
  },
533
- {
534
- "inputs": [
535
- {
536
- "internalType": "NftId",
537
- "name": "instanceNftId",
538
- "type": "uint96"
539
- },
540
- {
541
- "internalType": "NftId",
542
- "name": "bundleNftId",
543
- "type": "uint96"
544
- },
545
- {
546
- "components": [
547
- {
548
- "internalType": "NftId",
549
- "name": "poolNftId",
550
- "type": "uint96"
551
- },
552
- {
553
- "components": [
554
- {
555
- "internalType": "UFixed",
556
- "name": "fractionalFee",
557
- "type": "uint256"
558
- },
559
- {
560
- "internalType": "uint256",
561
- "name": "fixedFee",
562
- "type": "uint256"
563
- }
564
- ],
565
- "internalType": "struct Fee",
566
- "name": "fee",
567
- "type": "tuple"
568
- },
569
- {
570
- "internalType": "bytes",
571
- "name": "filter",
572
- "type": "bytes"
573
- },
574
- {
575
- "internalType": "uint256",
576
- "name": "capitalAmount",
577
- "type": "uint256"
578
- },
579
- {
580
- "internalType": "uint256",
581
- "name": "lockedAmount",
582
- "type": "uint256"
583
- },
584
- {
585
- "internalType": "uint256",
586
- "name": "balanceAmount",
587
- "type": "uint256"
588
- },
589
- {
590
- "internalType": "uint256",
591
- "name": "lifetime",
592
- "type": "uint256"
593
- },
594
- {
595
- "internalType": "Timestamp",
596
- "name": "expiredAt",
597
- "type": "uint40"
598
- },
599
- {
600
- "internalType": "Timestamp",
601
- "name": "closedAt",
602
- "type": "uint40"
603
- }
604
- ],
605
- "internalType": "struct IBundle.BundleInfo",
606
- "name": "bundleInfo",
607
- "type": "tuple"
608
- },
609
- {
610
- "internalType": "StateId",
611
- "name": "state",
612
- "type": "uint8"
613
- }
614
- ],
615
- "name": "updateBundle",
616
- "outputs": [],
617
- "stateMutability": "nonpayable",
618
- "type": "function"
619
- },
620
471
  {
621
472
  "inputs": [
622
473
  {
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../../build-info/975c16748e8c205fdb3397ef4efe6b12.json"
3
+ "buildInfo": "../../../../build-info/21904db660ef62061ace66e5e42ffc9e.json"
4
4
  }
@@ -98,192 +98,6 @@
98
98
  "name": "LogVersionableInitialized",
99
99
  "type": "event"
100
100
  },
101
- {
102
- "inputs": [
103
- {
104
- "internalType": "NftId",
105
- "name": "policyNftId",
106
- "type": "uint96"
107
- },
108
- {
109
- "internalType": "Timestamp",
110
- "name": "activateAt",
111
- "type": "uint40"
112
- }
113
- ],
114
- "name": "activate",
115
- "outputs": [],
116
- "stateMutability": "nonpayable",
117
- "type": "function"
118
- },
119
- {
120
- "inputs": [
121
- {
122
- "internalType": "RiskId",
123
- "name": "riskId",
124
- "type": "bytes8"
125
- },
126
- {
127
- "internalType": "uint256",
128
- "name": "sumInsuredAmount",
129
- "type": "uint256"
130
- },
131
- {
132
- "internalType": "uint256",
133
- "name": "lifetime",
134
- "type": "uint256"
135
- },
136
- {
137
- "internalType": "bytes",
138
- "name": "applicationData",
139
- "type": "bytes"
140
- },
141
- {
142
- "internalType": "NftId",
143
- "name": "bundleNftId",
144
- "type": "uint96"
145
- },
146
- {
147
- "internalType": "ReferralId",
148
- "name": "referralId",
149
- "type": "bytes8"
150
- }
151
- ],
152
- "name": "calculatePremium",
153
- "outputs": [
154
- {
155
- "internalType": "uint256",
156
- "name": "premiumAmount",
157
- "type": "uint256"
158
- },
159
- {
160
- "internalType": "uint256",
161
- "name": "productFeeAmount",
162
- "type": "uint256"
163
- },
164
- {
165
- "internalType": "uint256",
166
- "name": "poolFeeAmount",
167
- "type": "uint256"
168
- },
169
- {
170
- "internalType": "uint256",
171
- "name": "bundleFeeAmount",
172
- "type": "uint256"
173
- },
174
- {
175
- "internalType": "uint256",
176
- "name": "distributionFeeAmount",
177
- "type": "uint256"
178
- }
179
- ],
180
- "stateMutability": "view",
181
- "type": "function"
182
- },
183
- {
184
- "inputs": [
185
- {
186
- "internalType": "UFixed",
187
- "name": "collateralizationLevel",
188
- "type": "uint256"
189
- },
190
- {
191
- "internalType": "uint256",
192
- "name": "sumInsuredAmount",
193
- "type": "uint256"
194
- }
195
- ],
196
- "name": "calculateRequiredCollateral",
197
- "outputs": [
198
- {
199
- "internalType": "uint256",
200
- "name": "collateralAmount",
201
- "type": "uint256"
202
- }
203
- ],
204
- "stateMutability": "pure",
205
- "type": "function"
206
- },
207
- {
208
- "inputs": [
209
- {
210
- "internalType": "NftId",
211
- "name": "nftId",
212
- "type": "uint96"
213
- }
214
- ],
215
- "name": "close",
216
- "outputs": [],
217
- "stateMutability": "nonpayable",
218
- "type": "function"
219
- },
220
- {
221
- "inputs": [
222
- {
223
- "internalType": "NftId",
224
- "name": "policyNftId",
225
- "type": "uint96"
226
- },
227
- {
228
- "internalType": "Timestamp",
229
- "name": "activateAt",
230
- "type": "uint40"
231
- }
232
- ],
233
- "name": "collectPremium",
234
- "outputs": [],
235
- "stateMutability": "nonpayable",
236
- "type": "function"
237
- },
238
- {
239
- "inputs": [
240
- {
241
- "internalType": "address",
242
- "name": "applicationOwner",
243
- "type": "address"
244
- },
245
- {
246
- "internalType": "RiskId",
247
- "name": "riskId",
248
- "type": "bytes8"
249
- },
250
- {
251
- "internalType": "uint256",
252
- "name": "sumInsuredAmount",
253
- "type": "uint256"
254
- },
255
- {
256
- "internalType": "uint256",
257
- "name": "lifetime",
258
- "type": "uint256"
259
- },
260
- {
261
- "internalType": "bytes",
262
- "name": "applicationData",
263
- "type": "bytes"
264
- },
265
- {
266
- "internalType": "NftId",
267
- "name": "bundleNftId",
268
- "type": "uint96"
269
- },
270
- {
271
- "internalType": "ReferralId",
272
- "name": "referralId",
273
- "type": "bytes8"
274
- }
275
- ],
276
- "name": "createApplication",
277
- "outputs": [
278
- {
279
- "internalType": "NftId",
280
- "name": "nftId",
281
- "type": "uint96"
282
- }
283
- ],
284
- "stateMutability": "nonpayable",
285
- "type": "function"
286
- },
287
101
  {
288
102
  "inputs": [
289
103
  {
@@ -577,14 +391,20 @@
577
391
  },
578
392
  {
579
393
  "inputs": [
394
+ {
395
+ "internalType": "address",
396
+ "name": "productAddress",
397
+ "type": "address"
398
+ }
399
+ ],
400
+ "name": "register",
401
+ "outputs": [
580
402
  {
581
403
  "internalType": "NftId",
582
- "name": "policyNftId",
404
+ "name": "",
583
405
  "type": "uint96"
584
406
  }
585
407
  ],
586
- "name": "revoke",
587
- "outputs": [],
588
408
  "stateMutability": "nonpayable",
589
409
  "type": "function"
590
410
  },
@@ -649,29 +469,6 @@
649
469
  "stateMutability": "view",
650
470
  "type": "function"
651
471
  },
652
- {
653
- "inputs": [
654
- {
655
- "internalType": "NftId",
656
- "name": "policyNftId",
657
- "type": "uint96"
658
- },
659
- {
660
- "internalType": "bool",
661
- "name": "requirePremiumPayment",
662
- "type": "bool"
663
- },
664
- {
665
- "internalType": "Timestamp",
666
- "name": "activateAt",
667
- "type": "uint40"
668
- }
669
- ],
670
- "name": "underwrite",
671
- "outputs": [],
672
- "stateMutability": "nonpayable",
673
- "type": "function"
674
- },
675
472
  {
676
473
  "inputs": [
677
474
  {
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../../build-info/21904db660ef62061ace66e5e42ffc9e.json"
4
+ }