@etherisc/gif-next 0.0.2-d288ca9-933 → 0.0.2-d3207d2-901

Sign up to get free protection for your applications and to get access to all the features.
Files changed (203) hide show
  1. package/README.md +4 -0
  2. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
  3. package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +13 -0
  4. package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
  5. package/artifacts/contracts/components/Distribution.sol/Distribution.json +23 -15
  6. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
  7. package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +13 -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/IProductComponent.sol/IProductComponent.dbg.json +1 -1
  11. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
  12. package/artifacts/contracts/components/Pool.sol/Pool.json +21 -13
  13. package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
  14. package/artifacts/contracts/components/Product.sol/Product.json +39 -18
  15. package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
  16. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
  17. package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
  18. package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
  19. package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
  20. package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
  21. package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
  22. package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
  23. package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
  24. package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
  25. package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
  26. package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
  27. package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
  28. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
  29. package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.json +2 -2
  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/SM.sol/SM.json +2 -2
  34. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
  35. package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
  36. package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
  37. package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
  38. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +1 -1
  39. package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.json +0 -13
  40. package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +1 -1
  41. package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +1 -1
  42. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
  43. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +403 -1
  44. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
  45. package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +59 -0
  46. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
  47. package/artifacts/contracts/instance/Instance.sol/Instance.json +129 -101
  48. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
  49. package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +34 -47
  50. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
  51. package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +143 -38
  52. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
  53. package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +200 -33
  54. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
  55. package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +71 -15
  56. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
  57. package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +59 -0
  58. package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
  59. package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
  60. package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
  61. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
  62. package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +2 -2
  63. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
  64. package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +2 -2
  65. package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
  66. package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
  67. package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
  68. package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
  69. package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
  70. package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
  71. package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
  72. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
  73. package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +18 -18
  74. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +4 -0
  75. package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +716 -0
  76. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +4 -0
  77. package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +444 -0
  78. package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
  79. package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
  80. package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
  81. package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
  82. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +4 -0
  83. package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +839 -0
  84. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +4 -0
  85. package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +448 -0
  86. package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
  87. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
  88. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +182 -0
  89. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
  90. package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +94 -19
  91. package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
  92. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
  93. package/artifacts/contracts/registry/Registry.sol/Registry.json +145 -49
  94. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
  95. package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +61 -29
  96. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
  97. package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +43 -34
  98. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +4 -0
  99. package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +410 -0
  100. package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
  101. package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
  102. package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
  103. package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
  104. package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
  105. package/artifacts/contracts/shared/IService.sol/IService.dbg.json +4 -0
  106. package/artifacts/contracts/{instance/base → shared}/IService.sol/IService.json +1 -1
  107. package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
  108. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
  109. package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
  110. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
  111. package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
  112. package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
  113. package/artifacts/contracts/shared/Registerable.sol/Registerable.json +4 -4
  114. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +4 -0
  115. package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.json +442 -0
  116. package/artifacts/contracts/shared/Service.sol/Service.dbg.json +4 -0
  117. package/artifacts/contracts/{instance/base/ServiceBase.sol/ServiceBase.json → shared/Service.sol/Service.json} +2 -2
  118. package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
  119. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +1 -1
  120. package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json +2 -2
  121. package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
  122. package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
  123. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
  124. package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +4 -4
  125. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
  126. package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +2 -2
  127. package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
  128. package/artifacts/contracts/test/TestService.sol/TestService.json +11 -11
  129. package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
  130. package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
  131. package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
  132. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
  133. package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
  134. package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
  135. package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
  136. package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
  137. package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
  138. package/artifacts/contracts/types/DistributorType.sol/DistributorTypeLib.dbg.json +1 -1
  139. package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
  140. package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
  141. package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
  142. package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
  143. package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
  144. package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
  145. package/artifacts/contracts/types/Referral.sol/ReferralLib.dbg.json +1 -1
  146. package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
  147. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
  148. package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +2 -2
  149. package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
  150. package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
  151. package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
  152. package/artifacts/contracts/types/UFixed.sol/MathLib.dbg.json +1 -1
  153. package/artifacts/contracts/types/UFixed.sol/UFixedLib.dbg.json +1 -1
  154. package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
  155. package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
  156. package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
  157. package/artifacts/contracts/types/Version.sol/VersionPartLib.json +22 -3
  158. package/contracts/components/BaseComponent.sol +8 -3
  159. package/contracts/components/Distribution.sol +10 -16
  160. package/contracts/components/IBaseComponent.sol +1 -0
  161. package/contracts/components/IDistributionComponent.sol +1 -0
  162. package/contracts/components/Pool.sol +4 -20
  163. package/contracts/components/Product.sol +1 -1
  164. package/contracts/instance/AccessManagedSimple.sol +1 -8
  165. package/contracts/instance/IInstance.sol +15 -4
  166. package/contracts/instance/IInstanceService.sol +21 -8
  167. package/contracts/instance/Instance.sol +19 -18
  168. package/contracts/instance/InstanceAccessManager.sol +1 -1
  169. package/contracts/instance/InstanceReader.sol +17 -1
  170. package/contracts/instance/InstanceService.sol +61 -14
  171. package/contracts/instance/InstanceServiceManager.sol +6 -5
  172. package/contracts/instance/base/ComponentServiceBase.sol +83 -8
  173. package/contracts/instance/module/IBundle.sol +1 -0
  174. package/contracts/instance/module/ISetup.sol +1 -0
  175. package/contracts/instance/service/ComponentOwnerService.sol +5 -5
  176. package/contracts/instance/service/DistributionService.sol +88 -0
  177. package/contracts/instance/service/DistributionServiceManager.sol +54 -0
  178. package/contracts/instance/service/IComponentOwnerService.sol +1 -1
  179. package/contracts/instance/service/IDistributionService.sol +1 -1
  180. package/contracts/instance/service/IPoolService.sol +1 -1
  181. package/contracts/instance/service/IProductService.sol +1 -1
  182. package/contracts/instance/service/PoolService.sol +194 -0
  183. package/contracts/instance/service/PoolServiceManager.sol +54 -0
  184. package/contracts/registry/IRegistry.sol +24 -2
  185. package/contracts/registry/IRegistryService.sol +34 -19
  186. package/contracts/registry/Registry.sol +57 -36
  187. package/contracts/registry/RegistryService.sol +42 -123
  188. package/contracts/registry/RegistryServiceManager.sol +21 -5
  189. package/contracts/registry/TokenRegistry.sol +111 -0
  190. package/contracts/shared/ERC165.sol +6 -2
  191. package/contracts/{instance/base → shared}/IService.sol +3 -3
  192. package/contracts/shared/NftOwnable.sol +2 -4
  193. package/contracts/shared/Registerable.sol +1 -0
  194. package/contracts/shared/RegisterableUpgradable.sol +16 -0
  195. package/contracts/shared/Service.sol +55 -0
  196. package/contracts/test/TestService.sol +3 -5
  197. package/contracts/types/RoleId.sol +7 -0
  198. package/contracts/types/StateId.sol +4 -0
  199. package/contracts/types/Version.sol +4 -1
  200. package/package.json +1 -1
  201. package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +0 -4
  202. package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +0 -4
  203. package/contracts/instance/base/ServiceBase.sol +0 -44
@@ -3,6 +3,83 @@
3
3
  "contractName": "IInstance",
4
4
  "sourceName": "contracts/instance/IInstance.sol",
5
5
  "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "NftId",
10
+ "name": "bundleNftId",
11
+ "type": "uint96"
12
+ },
13
+ {
14
+ "components": [
15
+ {
16
+ "internalType": "NftId",
17
+ "name": "poolNftId",
18
+ "type": "uint96"
19
+ },
20
+ {
21
+ "components": [
22
+ {
23
+ "internalType": "UFixed",
24
+ "name": "fractionalFee",
25
+ "type": "uint256"
26
+ },
27
+ {
28
+ "internalType": "uint256",
29
+ "name": "fixedFee",
30
+ "type": "uint256"
31
+ }
32
+ ],
33
+ "internalType": "struct Fee",
34
+ "name": "fee",
35
+ "type": "tuple"
36
+ },
37
+ {
38
+ "internalType": "bytes",
39
+ "name": "filter",
40
+ "type": "bytes"
41
+ },
42
+ {
43
+ "internalType": "uint256",
44
+ "name": "capitalAmount",
45
+ "type": "uint256"
46
+ },
47
+ {
48
+ "internalType": "uint256",
49
+ "name": "lockedAmount",
50
+ "type": "uint256"
51
+ },
52
+ {
53
+ "internalType": "uint256",
54
+ "name": "balanceAmount",
55
+ "type": "uint256"
56
+ },
57
+ {
58
+ "internalType": "uint256",
59
+ "name": "lifetime",
60
+ "type": "uint256"
61
+ },
62
+ {
63
+ "internalType": "Timestamp",
64
+ "name": "expiredAt",
65
+ "type": "uint40"
66
+ },
67
+ {
68
+ "internalType": "Timestamp",
69
+ "name": "closedAt",
70
+ "type": "uint40"
71
+ }
72
+ ],
73
+ "internalType": "struct IBundle.BundleInfo",
74
+ "name": "bundle",
75
+ "type": "tuple"
76
+ }
77
+ ],
78
+ "name": "createBundle",
79
+ "outputs": [],
80
+ "stateMutability": "nonpayable",
81
+ "type": "function"
82
+ },
6
83
  {
7
84
  "inputs": [
8
85
  {
@@ -64,7 +141,7 @@
64
141
  "inputs": [
65
142
  {
66
143
  "internalType": "NftId",
67
- "name": "distributionNftId",
144
+ "name": "poolNftId",
68
145
  "type": "uint96"
69
146
  },
70
147
  {
@@ -311,6 +388,19 @@
311
388
  "stateMutability": "view",
312
389
  "type": "function"
313
390
  },
391
+ {
392
+ "inputs": [],
393
+ "name": "getDistributionService",
394
+ "outputs": [
395
+ {
396
+ "internalType": "contract IDistributionService",
397
+ "name": "",
398
+ "type": "address"
399
+ }
400
+ ],
401
+ "stateMutability": "view",
402
+ "type": "function"
403
+ },
314
404
  {
315
405
  "inputs": [],
316
406
  "name": "getInstanceReader",
@@ -324,6 +414,19 @@
324
414
  "stateMutability": "view",
325
415
  "type": "function"
326
416
  },
417
+ {
418
+ "inputs": [],
419
+ "name": "getPoolService",
420
+ "outputs": [
421
+ {
422
+ "internalType": "contract IPoolService",
423
+ "name": "",
424
+ "type": "address"
425
+ }
426
+ ],
427
+ "stateMutability": "view",
428
+ "type": "function"
429
+ },
327
430
  {
328
431
  "inputs": [
329
432
  {
@@ -342,6 +445,305 @@
342
445
  ],
343
446
  "stateMutability": "view",
344
447
  "type": "function"
448
+ },
449
+ {
450
+ "inputs": [
451
+ {
452
+ "internalType": "NftId",
453
+ "name": "bundleNftId",
454
+ "type": "uint96"
455
+ },
456
+ {
457
+ "components": [
458
+ {
459
+ "internalType": "NftId",
460
+ "name": "poolNftId",
461
+ "type": "uint96"
462
+ },
463
+ {
464
+ "components": [
465
+ {
466
+ "internalType": "UFixed",
467
+ "name": "fractionalFee",
468
+ "type": "uint256"
469
+ },
470
+ {
471
+ "internalType": "uint256",
472
+ "name": "fixedFee",
473
+ "type": "uint256"
474
+ }
475
+ ],
476
+ "internalType": "struct Fee",
477
+ "name": "fee",
478
+ "type": "tuple"
479
+ },
480
+ {
481
+ "internalType": "bytes",
482
+ "name": "filter",
483
+ "type": "bytes"
484
+ },
485
+ {
486
+ "internalType": "uint256",
487
+ "name": "capitalAmount",
488
+ "type": "uint256"
489
+ },
490
+ {
491
+ "internalType": "uint256",
492
+ "name": "lockedAmount",
493
+ "type": "uint256"
494
+ },
495
+ {
496
+ "internalType": "uint256",
497
+ "name": "balanceAmount",
498
+ "type": "uint256"
499
+ },
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "lifetime",
503
+ "type": "uint256"
504
+ },
505
+ {
506
+ "internalType": "Timestamp",
507
+ "name": "expiredAt",
508
+ "type": "uint40"
509
+ },
510
+ {
511
+ "internalType": "Timestamp",
512
+ "name": "closedAt",
513
+ "type": "uint40"
514
+ }
515
+ ],
516
+ "internalType": "struct IBundle.BundleInfo",
517
+ "name": "bundle",
518
+ "type": "tuple"
519
+ },
520
+ {
521
+ "internalType": "StateId",
522
+ "name": "newState",
523
+ "type": "uint8"
524
+ }
525
+ ],
526
+ "name": "updateBundle",
527
+ "outputs": [],
528
+ "stateMutability": "nonpayable",
529
+ "type": "function"
530
+ },
531
+ {
532
+ "inputs": [
533
+ {
534
+ "internalType": "NftId",
535
+ "name": "bundleNftId",
536
+ "type": "uint96"
537
+ },
538
+ {
539
+ "internalType": "StateId",
540
+ "name": "newState",
541
+ "type": "uint8"
542
+ }
543
+ ],
544
+ "name": "updateBundleState",
545
+ "outputs": [],
546
+ "stateMutability": "nonpayable",
547
+ "type": "function"
548
+ },
549
+ {
550
+ "inputs": [
551
+ {
552
+ "internalType": "NftId",
553
+ "name": "distributionNftId",
554
+ "type": "uint96"
555
+ },
556
+ {
557
+ "components": [
558
+ {
559
+ "internalType": "NftId",
560
+ "name": "productNftId",
561
+ "type": "uint96"
562
+ },
563
+ {
564
+ "internalType": "contract TokenHandler",
565
+ "name": "tokenHandler",
566
+ "type": "address"
567
+ },
568
+ {
569
+ "components": [
570
+ {
571
+ "internalType": "UFixed",
572
+ "name": "fractionalFee",
573
+ "type": "uint256"
574
+ },
575
+ {
576
+ "internalType": "uint256",
577
+ "name": "fixedFee",
578
+ "type": "uint256"
579
+ }
580
+ ],
581
+ "internalType": "struct Fee",
582
+ "name": "distributionFee",
583
+ "type": "tuple"
584
+ },
585
+ {
586
+ "internalType": "bool",
587
+ "name": "isIntercepting",
588
+ "type": "bool"
589
+ },
590
+ {
591
+ "internalType": "address",
592
+ "name": "wallet",
593
+ "type": "address"
594
+ }
595
+ ],
596
+ "internalType": "struct ISetup.DistributionSetupInfo",
597
+ "name": "setup",
598
+ "type": "tuple"
599
+ },
600
+ {
601
+ "internalType": "StateId",
602
+ "name": "newState",
603
+ "type": "uint8"
604
+ }
605
+ ],
606
+ "name": "updateDistributionSetup",
607
+ "outputs": [],
608
+ "stateMutability": "nonpayable",
609
+ "type": "function"
610
+ },
611
+ {
612
+ "inputs": [
613
+ {
614
+ "internalType": "NftId",
615
+ "name": "distributionNftId",
616
+ "type": "uint96"
617
+ },
618
+ {
619
+ "internalType": "StateId",
620
+ "name": "newState",
621
+ "type": "uint8"
622
+ }
623
+ ],
624
+ "name": "updateDistributionSetupState",
625
+ "outputs": [],
626
+ "stateMutability": "nonpayable",
627
+ "type": "function"
628
+ },
629
+ {
630
+ "inputs": [
631
+ {
632
+ "internalType": "NftId",
633
+ "name": "poolNftId",
634
+ "type": "uint96"
635
+ },
636
+ {
637
+ "components": [
638
+ {
639
+ "internalType": "NftId",
640
+ "name": "productNftId",
641
+ "type": "uint96"
642
+ },
643
+ {
644
+ "internalType": "contract TokenHandler",
645
+ "name": "tokenHandler",
646
+ "type": "address"
647
+ },
648
+ {
649
+ "internalType": "UFixed",
650
+ "name": "collateralizationLevel",
651
+ "type": "uint256"
652
+ },
653
+ {
654
+ "components": [
655
+ {
656
+ "internalType": "UFixed",
657
+ "name": "fractionalFee",
658
+ "type": "uint256"
659
+ },
660
+ {
661
+ "internalType": "uint256",
662
+ "name": "fixedFee",
663
+ "type": "uint256"
664
+ }
665
+ ],
666
+ "internalType": "struct Fee",
667
+ "name": "poolFee",
668
+ "type": "tuple"
669
+ },
670
+ {
671
+ "components": [
672
+ {
673
+ "internalType": "UFixed",
674
+ "name": "fractionalFee",
675
+ "type": "uint256"
676
+ },
677
+ {
678
+ "internalType": "uint256",
679
+ "name": "fixedFee",
680
+ "type": "uint256"
681
+ }
682
+ ],
683
+ "internalType": "struct Fee",
684
+ "name": "stakingFee",
685
+ "type": "tuple"
686
+ },
687
+ {
688
+ "components": [
689
+ {
690
+ "internalType": "UFixed",
691
+ "name": "fractionalFee",
692
+ "type": "uint256"
693
+ },
694
+ {
695
+ "internalType": "uint256",
696
+ "name": "fixedFee",
697
+ "type": "uint256"
698
+ }
699
+ ],
700
+ "internalType": "struct Fee",
701
+ "name": "performanceFee",
702
+ "type": "tuple"
703
+ },
704
+ {
705
+ "internalType": "bool",
706
+ "name": "isIntercepting",
707
+ "type": "bool"
708
+ },
709
+ {
710
+ "internalType": "address",
711
+ "name": "wallet",
712
+ "type": "address"
713
+ }
714
+ ],
715
+ "internalType": "struct ISetup.PoolSetupInfo",
716
+ "name": "setup",
717
+ "type": "tuple"
718
+ },
719
+ {
720
+ "internalType": "StateId",
721
+ "name": "newState",
722
+ "type": "uint8"
723
+ }
724
+ ],
725
+ "name": "updatePoolSetup",
726
+ "outputs": [],
727
+ "stateMutability": "nonpayable",
728
+ "type": "function"
729
+ },
730
+ {
731
+ "inputs": [
732
+ {
733
+ "internalType": "NftId",
734
+ "name": "poolNftId",
735
+ "type": "uint96"
736
+ },
737
+ {
738
+ "internalType": "StateId",
739
+ "name": "newState",
740
+ "type": "uint8"
741
+ }
742
+ ],
743
+ "name": "updatePoolSetupState",
744
+ "outputs": [],
745
+ "stateMutability": "nonpayable",
746
+ "type": "function"
345
747
  }
346
748
  ],
347
749
  "bytecode": "0x",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/06a31ccab61da786e7ce630a83bdee6b.json"
3
+ "buildInfo": "../../../build-info/9a1dcddb78050fb9fa99251007297056.json"
4
4
  }
@@ -73,6 +73,37 @@
73
73
  "name": "ErrorRegistryNotInitialized",
74
74
  "type": "error"
75
75
  },
76
+ {
77
+ "anonymous": false,
78
+ "inputs": [
79
+ {
80
+ "indexed": false,
81
+ "internalType": "address",
82
+ "name": "clonedAccessManagerAddress",
83
+ "type": "address"
84
+ },
85
+ {
86
+ "indexed": false,
87
+ "internalType": "address",
88
+ "name": "clonedInstanceAddress",
89
+ "type": "address"
90
+ },
91
+ {
92
+ "indexed": false,
93
+ "internalType": "address",
94
+ "name": "clonedInstanceReaderAddress",
95
+ "type": "address"
96
+ },
97
+ {
98
+ "indexed": false,
99
+ "internalType": "NftId",
100
+ "name": "clonedInstanceNftId",
101
+ "type": "uint96"
102
+ }
103
+ ],
104
+ "name": "LogInstanceCloned",
105
+ "type": "event"
106
+ },
76
107
  {
77
108
  "anonymous": false,
78
109
  "inputs": [
@@ -98,6 +129,34 @@
98
129
  "name": "LogVersionableInitialized",
99
130
  "type": "event"
100
131
  },
132
+ {
133
+ "inputs": [],
134
+ "name": "createInstanceClone",
135
+ "outputs": [
136
+ {
137
+ "internalType": "contract AccessManagerSimple",
138
+ "name": "clonedAccessManager",
139
+ "type": "address"
140
+ },
141
+ {
142
+ "internalType": "contract Instance",
143
+ "name": "clonedInstance",
144
+ "type": "address"
145
+ },
146
+ {
147
+ "internalType": "NftId",
148
+ "name": "instanceNftId",
149
+ "type": "uint96"
150
+ },
151
+ {
152
+ "internalType": "contract InstanceReader",
153
+ "name": "clonedInstanceReader",
154
+ "type": "address"
155
+ }
156
+ ],
157
+ "stateMutability": "nonpayable",
158
+ "type": "function"
159
+ },
101
160
  {
102
161
  "inputs": [],
103
162
  "name": "getInitialInfo",
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "_format": "hh-sol-dbg-1",
3
- "buildInfo": "../../../build-info/06a31ccab61da786e7ce630a83bdee6b.json"
3
+ "buildInfo": "../../../build-info/9a1dcddb78050fb9fa99251007297056.json"
4
4
  }