@etherisc/gif-next 0.0.2-ebbe63d → 0.0.2-fe77319

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. package/README.md +95 -1
  2. package/artifacts/contracts/components/Component.sol/Component.dbg.json +4 -0
  3. package/artifacts/contracts/components/Component.sol/Component.json +179 -0
  4. package/artifacts/contracts/components/Component.sol/InstanceLinked.dbg.json +4 -0
  5. package/artifacts/contracts/components/Component.sol/InstanceLinked.json +35 -0
  6. package/artifacts/contracts/components/IPool.sol/IPoolComponent.dbg.json +4 -0
  7. package/artifacts/contracts/components/IPool.sol/IPoolComponent.json +179 -0
  8. package/artifacts/contracts/components/IProduct.sol/IProductComponent.dbg.json +4 -0
  9. package/artifacts/contracts/components/IProduct.sol/IProductComponent.json +192 -0
  10. package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +4 -0
  11. package/artifacts/contracts/components/Pool.sol/Pool.json +195 -0
  12. package/artifacts/contracts/components/Product.sol/Product.dbg.json +4 -0
  13. package/artifacts/contracts/components/Product.sol/Product.json +213 -0
  14. package/artifacts/contracts/experiment/A.sol/A.dbg.json +4 -0
  15. package/artifacts/contracts/experiment/A.sol/A.json +128 -0
  16. package/artifacts/contracts/experiment/A.sol/AShared.dbg.json +4 -0
  17. package/artifacts/contracts/experiment/A.sol/AShared.json +42 -0
  18. package/artifacts/contracts/experiment/B.sol/B.dbg.json +4 -0
  19. package/artifacts/contracts/experiment/B.sol/B.json +76 -0
  20. package/artifacts/contracts/experiment/C.sol/C.dbg.json +4 -0
  21. package/artifacts/contracts/experiment/C.sol/C.json +89 -0
  22. package/artifacts/contracts/experiment/IA.sol/IA.dbg.json +4 -0
  23. package/artifacts/contracts/experiment/IA.sol/IA.json +128 -0
  24. package/artifacts/contracts/experiment/IA.sol/ISharedA.dbg.json +4 -0
  25. package/artifacts/contracts/experiment/IA.sol/ISharedA.json +37 -0
  26. package/artifacts/contracts/experiment/IB.sol/IB.dbg.json +4 -0
  27. package/artifacts/contracts/experiment/IB.sol/IB.json +50 -0
  28. package/artifacts/contracts/experiment/IC.sol/IC.dbg.json +4 -0
  29. package/artifacts/contracts/experiment/IC.sol/IC.json +63 -0
  30. package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +4 -0
  31. package/artifacts/contracts/instance/IInstance.sol/IInstance.json +892 -0
  32. package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +4 -0
  33. package/artifacts/contracts/instance/Instance.sol/Instance.json +1009 -0
  34. package/artifacts/contracts/instance/access/Access.sol/AccessModule.dbg.json +4 -0
  35. package/artifacts/contracts/instance/access/Access.sol/AccessModule.json +400 -0
  36. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.dbg.json +4 -0
  37. package/artifacts/contracts/instance/access/IAccess.sol/IAccess.json +10 -0
  38. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.dbg.json +4 -0
  39. package/artifacts/contracts/instance/access/IAccess.sol/IAccessCheckRole.json +35 -0
  40. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.dbg.json +4 -0
  41. package/artifacts/contracts/instance/access/IAccess.sol/IAccessComponentTypeRoles.json +50 -0
  42. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.dbg.json +4 -0
  43. package/artifacts/contracts/instance/access/IAccess.sol/IAccessModule.json +336 -0
  44. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.dbg.json +4 -0
  45. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentModule.json +327 -0
  46. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.dbg.json +4 -0
  47. package/artifacts/contracts/instance/component/ComponentModule.sol/ComponentOwnerService.json +105 -0
  48. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.dbg.json +4 -0
  49. package/artifacts/contracts/instance/component/IComponent.sol/IComponent.json +10 -0
  50. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.dbg.json +4 -0
  51. package/artifacts/contracts/instance/component/IComponent.sol/IComponentContract.json +179 -0
  52. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.dbg.json +4 -0
  53. package/artifacts/contracts/instance/component/IComponent.sol/IComponentModule.json +245 -0
  54. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.dbg.json +4 -0
  55. package/artifacts/contracts/instance/component/IComponent.sol/IComponentOwnerService.json +94 -0
  56. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.dbg.json +4 -0
  57. package/artifacts/contracts/instance/component/IComponent.sol/IInstanceLinked.json +24 -0
  58. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.dbg.json +4 -0
  59. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicy.json +10 -0
  60. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.dbg.json +4 -0
  61. package/artifacts/contracts/instance/policy/IPolicy.sol/IPolicyModule.json +231 -0
  62. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.dbg.json +4 -0
  63. package/artifacts/contracts/instance/policy/PolicyModule.sol/PolicyModule.json +231 -0
  64. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.dbg.json +4 -0
  65. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPool.json +10 -0
  66. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.dbg.json +4 -0
  67. package/artifacts/contracts/instance/pool/IPoolModule.sol/IPoolModule.json +149 -0
  68. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.dbg.json +4 -0
  69. package/artifacts/contracts/instance/pool/PoolModule.sol/PoolModule.json +162 -0
  70. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.dbg.json +4 -0
  71. package/artifacts/contracts/instance/product/IProductService.sol/IProductModule.json +75 -0
  72. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.dbg.json +4 -0
  73. package/artifacts/contracts/instance/product/IProductService.sol/IProductService.json +114 -0
  74. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.dbg.json +4 -0
  75. package/artifacts/contracts/instance/product/ProductService.sol/ProductModule.json +75 -0
  76. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.dbg.json +4 -0
  77. package/artifacts/contracts/instance/product/ProductService.sol/ProductService.json +125 -0
  78. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.dbg.json +4 -0
  79. package/artifacts/contracts/registry/IRegistry.sol/IOwnable.json +24 -0
  80. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.dbg.json +4 -0
  81. package/artifacts/contracts/registry/IRegistry.sol/IRegisterable.json +166 -0
  82. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +4 -0
  83. package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +271 -0
  84. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.dbg.json +4 -0
  85. package/artifacts/contracts/registry/IRegistry.sol/IRegistryLinked.json +49 -0
  86. package/artifacts/contracts/registry/Registry.sol/Registerable.dbg.json +4 -0
  87. package/artifacts/contracts/registry/Registry.sol/Registerable.json +166 -0
  88. package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +4 -0
  89. package/artifacts/contracts/registry/Registry.sol/Registry.json +289 -0
  90. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.dbg.json +4 -0
  91. package/artifacts/contracts/registry/Registry.sol/RegistryLinked.json +60 -0
  92. package/contracts/components/Component.sol +62 -0
  93. package/contracts/components/IPool.sol +9 -0
  94. package/contracts/components/IProduct.sol +11 -0
  95. package/contracts/components/Pool.sol +29 -0
  96. package/contracts/components/Product.sol +65 -0
  97. package/contracts/experiment/A.sol +56 -0
  98. package/contracts/experiment/B.sol +23 -0
  99. package/contracts/experiment/C.sol +28 -0
  100. package/contracts/experiment/IA.sol +18 -0
  101. package/contracts/experiment/IB.sol +9 -0
  102. package/contracts/experiment/IC.sol +11 -0
  103. package/contracts/instance/IInstance.sol +20 -0
  104. package/contracts/instance/Instance.sol +63 -0
  105. package/contracts/instance/access/Access.sol +218 -0
  106. package/contracts/instance/access/IAccess.sol +83 -0
  107. package/contracts/instance/component/ComponentModule.sol +259 -0
  108. package/contracts/instance/component/IComponent.sol +94 -0
  109. package/contracts/instance/policy/IPolicy.sol +66 -0
  110. package/contracts/instance/policy/PolicyModule.sol +106 -0
  111. package/contracts/instance/pool/IPoolModule.sol +40 -0
  112. package/contracts/instance/pool/PoolModule.sol +83 -0
  113. package/contracts/instance/product/IProductService.sol +45 -0
  114. package/contracts/instance/product/ProductService.sol +105 -0
  115. package/contracts/registry/IRegistry.sol +66 -0
  116. package/contracts/registry/Registry.sol +197 -0
  117. package/package.json +7 -6
  118. package/artifacts/contracts/Dip.sol/DIP.dbg.json +0 -4
  119. package/artifacts/contracts/Dip.sol/DIP.json +0 -338
  120. package/artifacts/contracts/Lock.sol/Lock.dbg.json +0 -4
  121. package/artifacts/contracts/Lock.sol/Lock.json +0 -74
  122. package/contracts/Dip.sol +0 -26
  123. package/contracts/Lock.sol +0 -34
@@ -0,0 +1,125 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "ProductService",
4
+ "sourceName": "contracts/instance/product/ProductService.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [
8
+ {
9
+ "internalType": "address",
10
+ "name": "registry",
11
+ "type": "address"
12
+ }
13
+ ],
14
+ "stateMutability": "nonpayable",
15
+ "type": "constructor"
16
+ },
17
+ {
18
+ "anonymous": false,
19
+ "inputs": [
20
+ {
21
+ "indexed": false,
22
+ "internalType": "uint256",
23
+ "name": "idx",
24
+ "type": "uint256"
25
+ },
26
+ {
27
+ "indexed": false,
28
+ "internalType": "address",
29
+ "name": "module",
30
+ "type": "address"
31
+ },
32
+ {
33
+ "indexed": false,
34
+ "internalType": "string",
35
+ "name": "comment",
36
+ "type": "string"
37
+ }
38
+ ],
39
+ "name": "LogDebug",
40
+ "type": "event"
41
+ },
42
+ {
43
+ "inputs": [
44
+ {
45
+ "internalType": "uint256",
46
+ "name": "nftId",
47
+ "type": "uint256"
48
+ }
49
+ ],
50
+ "name": "close",
51
+ "outputs": [],
52
+ "stateMutability": "nonpayable",
53
+ "type": "function"
54
+ },
55
+ {
56
+ "inputs": [
57
+ {
58
+ "internalType": "address",
59
+ "name": "applicationOwner",
60
+ "type": "address"
61
+ },
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "sumInsuredAmount",
65
+ "type": "uint256"
66
+ },
67
+ {
68
+ "internalType": "uint256",
69
+ "name": "premiumAmount",
70
+ "type": "uint256"
71
+ },
72
+ {
73
+ "internalType": "uint256",
74
+ "name": "lifetime",
75
+ "type": "uint256"
76
+ },
77
+ {
78
+ "internalType": "uint256",
79
+ "name": "bundleNftId",
80
+ "type": "uint256"
81
+ }
82
+ ],
83
+ "name": "createApplication",
84
+ "outputs": [
85
+ {
86
+ "internalType": "uint256",
87
+ "name": "nftId",
88
+ "type": "uint256"
89
+ }
90
+ ],
91
+ "stateMutability": "nonpayable",
92
+ "type": "function"
93
+ },
94
+ {
95
+ "inputs": [],
96
+ "name": "getRegistry",
97
+ "outputs": [
98
+ {
99
+ "internalType": "contract IRegistry",
100
+ "name": "registry",
101
+ "type": "address"
102
+ }
103
+ ],
104
+ "stateMutability": "view",
105
+ "type": "function"
106
+ },
107
+ {
108
+ "inputs": [
109
+ {
110
+ "internalType": "uint256",
111
+ "name": "nftId",
112
+ "type": "uint256"
113
+ }
114
+ ],
115
+ "name": "underwrite",
116
+ "outputs": [],
117
+ "stateMutability": "nonpayable",
118
+ "type": "function"
119
+ }
120
+ ],
121
+ "bytecode": "0x60806040523480156200001157600080fd5b5060405162001332380380620013328339818101604052810190620000379190620000ea565b80806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200011c565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620000b28262000085565b9050919050565b620000c481620000a5565b8114620000d057600080fd5b50565b600081519050620000e481620000b9565b92915050565b60006020828403121562000103576200010262000080565b5b60006200011384828501620000d3565b91505092915050565b611206806200012c6000396000f3fe608060405234801561001057600080fd5b506004361061004c5760003560e01c80630aebeb4e146100515780635ab1bd531461006d578063606da8fe1461008b5780636be60f8b146100bb575b600080fd5b61006b60048036038101906100669190610b87565b6100d7565b005b6100756100da565b6040516100829190610c33565b60405180910390f35b6100a560048036038101906100a09190610c8c565b610103565b6040516100b29190610d16565b60405180910390f35b6100d560048036038101906100d09190610b87565b6105b4565b005b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e336040518263ffffffff1660e01b815260040161015f9190610d40565b602060405180830381865afa15801561017c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101a09190610d70565b9050600081116101e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dc90610dfa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a836040518263ffffffff1660e01b81526004016102419190610d16565b60a060405180830381865afa15801561025e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102829190610f4c565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103139190610d70565b816040015114610358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034f90610fc5565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016103b89190610d16565b60a060405180830381865afa1580156103d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f99190610f4c565b90506000816000015111610442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043990611031565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d19190610d70565b816040015114610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d9061109d565b60405180910390fd5b6000816060015190508073ffffffffffffffffffffffffffffffffffffffff16635ede3c2f848c8c8c8c8c6040518763ffffffff1660e01b815260040161056296959493929190611143565b6020604051808303816000875af1158015610581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a59190610d70565b94505050505095945050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e336040518263ffffffff1660e01b81526004016106109190610d40565b602060405180830381865afa15801561062d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106519190610d70565b905060008111610696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068d90610dfa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a836040518263ffffffff1660e01b81526004016106f29190610d16565b60a060405180830381865afa15801561070f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107339190610f4c565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190610d70565b816040015114610809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080090610fc5565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016108699190610d16565b60a060405180830381865afa158015610886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108aa9190610f4c565b905060008160000151116108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90611031565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109829190610d70565b8160400151146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be9061109d565b60405180910390fd5b60008160600151905060008173ffffffffffffffffffffffffffffffffffffffff16636f5db1e3866040518263ffffffff1660e01b8152600401610a0b9190610d16565b602060405180830381865afa158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190610d70565b90506000836060015190508073ffffffffffffffffffffffffffffffffffffffff16636c1ddffa83896040518363ffffffff1660e01b8152600401610a929291906111a7565b600060405180830381600087803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b505050506000846060015190508073ffffffffffffffffffffffffffffffffffffffff1663b260c42a896040518263ffffffff1660e01b8152600401610b069190610d16565b600060405180830381600087803b158015610b2057600080fd5b505af1158015610b34573d6000803e3d6000fd5b505050505050505050505050565b6000604051905090565b600080fd5b6000819050919050565b610b6481610b51565b8114610b6f57600080fd5b50565b600081359050610b8181610b5b565b92915050565b600060208284031215610b9d57610b9c610b4c565b5b6000610bab84828501610b72565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610bf9610bf4610bef84610bb4565b610bd4565b610bb4565b9050919050565b6000610c0b82610bde565b9050919050565b6000610c1d82610c00565b9050919050565b610c2d81610c12565b82525050565b6000602082019050610c486000830184610c24565b92915050565b6000610c5982610bb4565b9050919050565b610c6981610c4e565b8114610c7457600080fd5b50565b600081359050610c8681610c60565b92915050565b600080600080600060a08688031215610ca857610ca7610b4c565b5b6000610cb688828901610c77565b9550506020610cc788828901610b72565b9450506040610cd888828901610b72565b9350506060610ce988828901610b72565b9250506080610cfa88828901610b72565b9150509295509295909350565b610d1081610b51565b82525050565b6000602082019050610d2b6000830184610d07565b92915050565b610d3a81610c4e565b82525050565b6000602082019050610d556000830184610d31565b92915050565b600081519050610d6a81610b5b565b92915050565b600060208284031215610d8657610d85610b4c565b5b6000610d9484828501610d5b565b91505092915050565b600082825260208201905092915050565b7f4552524f525f50524f445543545f554e4b4e4f574e0000000000000000000000600082015250565b6000610de4601583610d9d565b9150610def82610dae565b602082019050919050565b60006020820190508181036000830152610e1381610dd7565b9050919050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610e6882610e1f565b810181811067ffffffffffffffff82111715610e8757610e86610e30565b5b80604052505050565b6000610e9a610b42565b9050610ea68282610e5f565b919050565b600081519050610eba81610c60565b92915050565b600060a08284031215610ed657610ed5610e1a565b5b610ee060a0610e90565b90506000610ef084828501610d5b565b6000830152506020610f0484828501610d5b565b6020830152506040610f1884828501610d5b565b6040830152506060610f2c84828501610eab565b6060830152506080610f4084828501610eab565b60808301525092915050565b600060a08284031215610f6257610f61610b4c565b5b6000610f7084828501610ec0565b91505092915050565b7f4552524f525f4e4f545f50524f44554354000000000000000000000000000000600082015250565b6000610faf601183610d9d565b9150610fba82610f79565b602082019050919050565b60006020820190508181036000830152610fde81610fa2565b9050919050565b7f4552524f525f494e5354414e43455f554e4b4e4f574e00000000000000000000600082015250565b600061101b601683610d9d565b915061102682610fe5565b602082019050919050565b6000602082019050818103600083015261104a8161100e565b9050919050565b7f4552524f525f4e4f545f494e5354414e43450000000000000000000000000000600082015250565b6000611087601283610d9d565b915061109282611051565b602082019050919050565b600060208201905081810360008301526110b68161107a565b9050919050565b6110c681610b51565b82525050565b6110d581610c4e565b82525050565b60a0820160008201516110f160008501826110bd565b50602082015161110460208501826110bd565b50604082015161111760408501826110bd565b50606082015161112a60608501826110cc565b50608082015161113d60808501826110cc565b50505050565b60006101408201905061115960008301896110db565b61116660a0830188610d31565b61117360c0830187610d07565b61118060e0830186610d07565b61118e610100830185610d07565b61119c610120830184610d07565b979650505050505050565b60006040820190506111bc6000830185610d07565b6111c96020830184610d07565b939250505056fea2646970667358221220526736f3f5d0b1f921589253ec4d2600b2871954f5320685360f7690595dd92364736f6c63430008140033",
122
+ "deployedBytecode": "0x608060405234801561001057600080fd5b506004361061004c5760003560e01c80630aebeb4e146100515780635ab1bd531461006d578063606da8fe1461008b5780636be60f8b146100bb575b600080fd5b61006b60048036038101906100669190610b87565b6100d7565b005b6100756100da565b6040516100829190610c33565b60405180910390f35b6100a560048036038101906100a09190610c8c565b610103565b6040516100b29190610d16565b60405180910390f35b6100d560048036038101906100d09190610b87565b6105b4565b005b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e336040518263ffffffff1660e01b815260040161015f9190610d40565b602060405180830381865afa15801561017c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101a09190610d70565b9050600081116101e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101dc90610dfa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a836040518263ffffffff1660e01b81526004016102419190610d16565b60a060405180830381865afa15801561025e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102829190610f4c565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102ef573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103139190610d70565b816040015114610358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161034f90610fc5565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016103b89190610d16565b60a060405180830381865afa1580156103d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103f99190610f4c565b90506000816000015111610442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043990611031565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa1580156104ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104d19190610d70565b816040015114610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d9061109d565b60405180910390fd5b6000816060015190508073ffffffffffffffffffffffffffffffffffffffff16635ede3c2f848c8c8c8c8c6040518763ffffffff1660e01b815260040161056296959493929190611143565b6020604051808303816000875af1158015610581573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a59190610d70565b94505050505095945050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d272ac1e336040518263ffffffff1660e01b81526004016106109190610d40565b602060405180830381865afa15801561062d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106519190610d70565b905060008111610696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068d90610dfa565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a836040518263ffffffff1660e01b81526004016106f29190610d16565b60a060405180830381865afa15801561070f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107339190610f4c565b905060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166325425a916040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c49190610d70565b816040015114610809576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161080090610fc5565b60405180910390fd5b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631a3cd59a83602001516040518263ffffffff1660e01b81526004016108699190610d16565b60a060405180830381865afa158015610886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108aa9190610f4c565b905060008160000151116108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea90611031565b60405180910390fd5b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d15db8b46040518163ffffffff1660e01b8152600401602060405180830381865afa15801561095e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109829190610d70565b8160400151146109c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109be9061109d565b60405180910390fd5b60008160600151905060008173ffffffffffffffffffffffffffffffffffffffff16636f5db1e3866040518263ffffffff1660e01b8152600401610a0b9190610d16565b602060405180830381865afa158015610a28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a4c9190610d70565b90506000836060015190508073ffffffffffffffffffffffffffffffffffffffff16636c1ddffa83896040518363ffffffff1660e01b8152600401610a929291906111a7565b600060405180830381600087803b158015610aac57600080fd5b505af1158015610ac0573d6000803e3d6000fd5b505050506000846060015190508073ffffffffffffffffffffffffffffffffffffffff1663b260c42a896040518263ffffffff1660e01b8152600401610b069190610d16565b600060405180830381600087803b158015610b2057600080fd5b505af1158015610b34573d6000803e3d6000fd5b505050505050505050505050565b6000604051905090565b600080fd5b6000819050919050565b610b6481610b51565b8114610b6f57600080fd5b50565b600081359050610b8181610b5b565b92915050565b600060208284031215610b9d57610b9c610b4c565b5b6000610bab84828501610b72565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610bf9610bf4610bef84610bb4565b610bd4565b610bb4565b9050919050565b6000610c0b82610bde565b9050919050565b6000610c1d82610c00565b9050919050565b610c2d81610c12565b82525050565b6000602082019050610c486000830184610c24565b92915050565b6000610c5982610bb4565b9050919050565b610c6981610c4e565b8114610c7457600080fd5b50565b600081359050610c8681610c60565b92915050565b600080600080600060a08688031215610ca857610ca7610b4c565b5b6000610cb688828901610c77565b9550506020610cc788828901610b72565b9450506040610cd888828901610b72565b9350506060610ce988828901610b72565b9250506080610cfa88828901610b72565b9150509295509295909350565b610d1081610b51565b82525050565b6000602082019050610d2b6000830184610d07565b92915050565b610d3a81610c4e565b82525050565b6000602082019050610d556000830184610d31565b92915050565b600081519050610d6a81610b5b565b92915050565b600060208284031215610d8657610d85610b4c565b5b6000610d9484828501610d5b565b91505092915050565b600082825260208201905092915050565b7f4552524f525f50524f445543545f554e4b4e4f574e0000000000000000000000600082015250565b6000610de4601583610d9d565b9150610def82610dae565b602082019050919050565b60006020820190508181036000830152610e1381610dd7565b9050919050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610e6882610e1f565b810181811067ffffffffffffffff82111715610e8757610e86610e30565b5b80604052505050565b6000610e9a610b42565b9050610ea68282610e5f565b919050565b600081519050610eba81610c60565b92915050565b600060a08284031215610ed657610ed5610e1a565b5b610ee060a0610e90565b90506000610ef084828501610d5b565b6000830152506020610f0484828501610d5b565b6020830152506040610f1884828501610d5b565b6040830152506060610f2c84828501610eab565b6060830152506080610f4084828501610eab565b60808301525092915050565b600060a08284031215610f6257610f61610b4c565b5b6000610f7084828501610ec0565b91505092915050565b7f4552524f525f4e4f545f50524f44554354000000000000000000000000000000600082015250565b6000610faf601183610d9d565b9150610fba82610f79565b602082019050919050565b60006020820190508181036000830152610fde81610fa2565b9050919050565b7f4552524f525f494e5354414e43455f554e4b4e4f574e00000000000000000000600082015250565b600061101b601683610d9d565b915061102682610fe5565b602082019050919050565b6000602082019050818103600083015261104a8161100e565b9050919050565b7f4552524f525f4e4f545f494e5354414e43450000000000000000000000000000600082015250565b6000611087601283610d9d565b915061109282611051565b602082019050919050565b600060208201905081810360008301526110b68161107a565b9050919050565b6110c681610b51565b82525050565b6110d581610c4e565b82525050565b60a0820160008201516110f160008501826110bd565b50602082015161110460208501826110bd565b50604082015161111760408501826110bd565b50606082015161112a60608501826110cc565b50608082015161113d60808501826110cc565b50505050565b60006101408201905061115960008301896110db565b61116660a0830188610d31565b61117360c0830187610d07565b61118060e0830186610d07565b61118e610100830185610d07565b61119c610120830184610d07565b979650505050505050565b60006040820190506111bc6000830185610d07565b6111c96020830184610d07565b939250505056fea2646970667358221220526736f3f5d0b1f921589253ec4d2600b2871954f5320685360f7690595dd92364736f6c63430008140033",
123
+ "linkReferences": {},
124
+ "deployedLinkReferences": {}
125
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/28a5f33217876dc65b5c269e323df8a0.json"
4
+ }
@@ -0,0 +1,24 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IOwnable",
4
+ "sourceName": "contracts/registry/IRegistry.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "getOwner",
9
+ "outputs": [
10
+ {
11
+ "internalType": "address",
12
+ "name": "owner",
13
+ "type": "address"
14
+ }
15
+ ],
16
+ "stateMutability": "view",
17
+ "type": "function"
18
+ }
19
+ ],
20
+ "bytecode": "0x",
21
+ "deployedBytecode": "0x",
22
+ "linkReferences": {},
23
+ "deployedLinkReferences": {}
24
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/28a5f33217876dc65b5c269e323df8a0.json"
4
+ }
@@ -0,0 +1,166 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IRegisterable",
4
+ "sourceName": "contracts/registry/IRegistry.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": false,
11
+ "internalType": "uint256",
12
+ "name": "idx",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": false,
17
+ "internalType": "address",
18
+ "name": "module",
19
+ "type": "address"
20
+ },
21
+ {
22
+ "indexed": false,
23
+ "internalType": "string",
24
+ "name": "comment",
25
+ "type": "string"
26
+ }
27
+ ],
28
+ "name": "LogDebug",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "inputs": [],
33
+ "name": "getData",
34
+ "outputs": [
35
+ {
36
+ "internalType": "bytes",
37
+ "name": "data",
38
+ "type": "bytes"
39
+ }
40
+ ],
41
+ "stateMutability": "view",
42
+ "type": "function"
43
+ },
44
+ {
45
+ "inputs": [],
46
+ "name": "getInitialOwner",
47
+ "outputs": [
48
+ {
49
+ "internalType": "address",
50
+ "name": "initialOwner",
51
+ "type": "address"
52
+ }
53
+ ],
54
+ "stateMutability": "view",
55
+ "type": "function"
56
+ },
57
+ {
58
+ "inputs": [],
59
+ "name": "getNftId",
60
+ "outputs": [
61
+ {
62
+ "internalType": "uint256",
63
+ "name": "nftId",
64
+ "type": "uint256"
65
+ }
66
+ ],
67
+ "stateMutability": "view",
68
+ "type": "function"
69
+ },
70
+ {
71
+ "inputs": [],
72
+ "name": "getOwner",
73
+ "outputs": [
74
+ {
75
+ "internalType": "address",
76
+ "name": "owner",
77
+ "type": "address"
78
+ }
79
+ ],
80
+ "stateMutability": "view",
81
+ "type": "function"
82
+ },
83
+ {
84
+ "inputs": [],
85
+ "name": "getParentNftId",
86
+ "outputs": [
87
+ {
88
+ "internalType": "uint256",
89
+ "name": "parentNftId",
90
+ "type": "uint256"
91
+ }
92
+ ],
93
+ "stateMutability": "view",
94
+ "type": "function"
95
+ },
96
+ {
97
+ "inputs": [],
98
+ "name": "getRegistry",
99
+ "outputs": [
100
+ {
101
+ "internalType": "contract IRegistry",
102
+ "name": "registry",
103
+ "type": "address"
104
+ }
105
+ ],
106
+ "stateMutability": "view",
107
+ "type": "function"
108
+ },
109
+ {
110
+ "inputs": [],
111
+ "name": "getType",
112
+ "outputs": [
113
+ {
114
+ "internalType": "uint256",
115
+ "name": "objectType",
116
+ "type": "uint256"
117
+ }
118
+ ],
119
+ "stateMutability": "view",
120
+ "type": "function"
121
+ },
122
+ {
123
+ "inputs": [],
124
+ "name": "isRegisterable",
125
+ "outputs": [
126
+ {
127
+ "internalType": "bool",
128
+ "name": "",
129
+ "type": "bool"
130
+ }
131
+ ],
132
+ "stateMutability": "pure",
133
+ "type": "function"
134
+ },
135
+ {
136
+ "inputs": [],
137
+ "name": "isRegistered",
138
+ "outputs": [
139
+ {
140
+ "internalType": "bool",
141
+ "name": "",
142
+ "type": "bool"
143
+ }
144
+ ],
145
+ "stateMutability": "view",
146
+ "type": "function"
147
+ },
148
+ {
149
+ "inputs": [],
150
+ "name": "register",
151
+ "outputs": [
152
+ {
153
+ "internalType": "uint256",
154
+ "name": "nftId",
155
+ "type": "uint256"
156
+ }
157
+ ],
158
+ "stateMutability": "nonpayable",
159
+ "type": "function"
160
+ }
161
+ ],
162
+ "bytecode": "0x",
163
+ "deployedBytecode": "0x",
164
+ "linkReferences": {},
165
+ "deployedLinkReferences": {}
166
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/28a5f33217876dc65b5c269e323df8a0.json"
4
+ }
@@ -0,0 +1,271 @@
1
+ {
2
+ "_format": "hh-sol-artifact-1",
3
+ "contractName": "IRegistry",
4
+ "sourceName": "contracts/registry/IRegistry.sol",
5
+ "abi": [
6
+ {
7
+ "inputs": [],
8
+ "name": "BUNDLE",
9
+ "outputs": [
10
+ {
11
+ "internalType": "uint256",
12
+ "name": "",
13
+ "type": "uint256"
14
+ }
15
+ ],
16
+ "stateMutability": "pure",
17
+ "type": "function"
18
+ },
19
+ {
20
+ "inputs": [],
21
+ "name": "INSTANCE",
22
+ "outputs": [
23
+ {
24
+ "internalType": "uint256",
25
+ "name": "",
26
+ "type": "uint256"
27
+ }
28
+ ],
29
+ "stateMutability": "pure",
30
+ "type": "function"
31
+ },
32
+ {
33
+ "inputs": [],
34
+ "name": "ORACLE",
35
+ "outputs": [
36
+ {
37
+ "internalType": "uint256",
38
+ "name": "",
39
+ "type": "uint256"
40
+ }
41
+ ],
42
+ "stateMutability": "pure",
43
+ "type": "function"
44
+ },
45
+ {
46
+ "inputs": [],
47
+ "name": "POLICY",
48
+ "outputs": [
49
+ {
50
+ "internalType": "uint256",
51
+ "name": "",
52
+ "type": "uint256"
53
+ }
54
+ ],
55
+ "stateMutability": "pure",
56
+ "type": "function"
57
+ },
58
+ {
59
+ "inputs": [],
60
+ "name": "POOL",
61
+ "outputs": [
62
+ {
63
+ "internalType": "uint256",
64
+ "name": "",
65
+ "type": "uint256"
66
+ }
67
+ ],
68
+ "stateMutability": "pure",
69
+ "type": "function"
70
+ },
71
+ {
72
+ "inputs": [],
73
+ "name": "PRODUCT",
74
+ "outputs": [
75
+ {
76
+ "internalType": "uint256",
77
+ "name": "",
78
+ "type": "uint256"
79
+ }
80
+ ],
81
+ "stateMutability": "pure",
82
+ "type": "function"
83
+ },
84
+ {
85
+ "inputs": [],
86
+ "name": "TOKEN",
87
+ "outputs": [
88
+ {
89
+ "internalType": "uint256",
90
+ "name": "",
91
+ "type": "uint256"
92
+ }
93
+ ],
94
+ "stateMutability": "pure",
95
+ "type": "function"
96
+ },
97
+ {
98
+ "inputs": [
99
+ {
100
+ "internalType": "uint256",
101
+ "name": "nftId",
102
+ "type": "uint256"
103
+ }
104
+ ],
105
+ "name": "getInfo",
106
+ "outputs": [
107
+ {
108
+ "components": [
109
+ {
110
+ "internalType": "uint256",
111
+ "name": "nftId",
112
+ "type": "uint256"
113
+ },
114
+ {
115
+ "internalType": "uint256",
116
+ "name": "parentNftId",
117
+ "type": "uint256"
118
+ },
119
+ {
120
+ "internalType": "uint256",
121
+ "name": "objectType",
122
+ "type": "uint256"
123
+ },
124
+ {
125
+ "internalType": "address",
126
+ "name": "objectAddress",
127
+ "type": "address"
128
+ },
129
+ {
130
+ "internalType": "address",
131
+ "name": "initialOwner",
132
+ "type": "address"
133
+ }
134
+ ],
135
+ "internalType": "struct IRegistry.RegistryInfo",
136
+ "name": "info",
137
+ "type": "tuple"
138
+ }
139
+ ],
140
+ "stateMutability": "view",
141
+ "type": "function"
142
+ },
143
+ {
144
+ "inputs": [
145
+ {
146
+ "internalType": "address",
147
+ "name": "objectAddress",
148
+ "type": "address"
149
+ }
150
+ ],
151
+ "name": "getNftId",
152
+ "outputs": [
153
+ {
154
+ "internalType": "uint256",
155
+ "name": "nftId",
156
+ "type": "uint256"
157
+ }
158
+ ],
159
+ "stateMutability": "view",
160
+ "type": "function"
161
+ },
162
+ {
163
+ "inputs": [
164
+ {
165
+ "internalType": "uint256",
166
+ "name": "nftId",
167
+ "type": "uint256"
168
+ }
169
+ ],
170
+ "name": "getOwner",
171
+ "outputs": [
172
+ {
173
+ "internalType": "address",
174
+ "name": "ownerAddress",
175
+ "type": "address"
176
+ }
177
+ ],
178
+ "stateMutability": "view",
179
+ "type": "function"
180
+ },
181
+ {
182
+ "inputs": [
183
+ {
184
+ "internalType": "address",
185
+ "name": "objectAddress",
186
+ "type": "address"
187
+ }
188
+ ],
189
+ "name": "isRegistered",
190
+ "outputs": [
191
+ {
192
+ "internalType": "bool",
193
+ "name": "",
194
+ "type": "bool"
195
+ }
196
+ ],
197
+ "stateMutability": "view",
198
+ "type": "function"
199
+ },
200
+ {
201
+ "inputs": [
202
+ {
203
+ "internalType": "address",
204
+ "name": "objectAddress",
205
+ "type": "address"
206
+ }
207
+ ],
208
+ "name": "register",
209
+ "outputs": [
210
+ {
211
+ "internalType": "uint256",
212
+ "name": "nftId",
213
+ "type": "uint256"
214
+ }
215
+ ],
216
+ "stateMutability": "nonpayable",
217
+ "type": "function"
218
+ },
219
+ {
220
+ "inputs": [
221
+ {
222
+ "internalType": "uint256",
223
+ "name": "parentNftid",
224
+ "type": "uint256"
225
+ },
226
+ {
227
+ "internalType": "uint256",
228
+ "name": "objectType",
229
+ "type": "uint256"
230
+ },
231
+ {
232
+ "internalType": "address",
233
+ "name": "initialOwner",
234
+ "type": "address"
235
+ }
236
+ ],
237
+ "name": "registerObjectForInstance",
238
+ "outputs": [
239
+ {
240
+ "internalType": "uint256",
241
+ "name": "nftId",
242
+ "type": "uint256"
243
+ }
244
+ ],
245
+ "stateMutability": "nonpayable",
246
+ "type": "function"
247
+ },
248
+ {
249
+ "inputs": [
250
+ {
251
+ "internalType": "uint256",
252
+ "name": "nftId",
253
+ "type": "uint256"
254
+ },
255
+ {
256
+ "internalType": "address",
257
+ "name": "newOwner",
258
+ "type": "address"
259
+ }
260
+ ],
261
+ "name": "transfer",
262
+ "outputs": [],
263
+ "stateMutability": "nonpayable",
264
+ "type": "function"
265
+ }
266
+ ],
267
+ "bytecode": "0x",
268
+ "deployedBytecode": "0x",
269
+ "linkReferences": {},
270
+ "deployedLinkReferences": {}
271
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "_format": "hh-sol-dbg-1",
3
+ "buildInfo": "../../../build-info/28a5f33217876dc65b5c269e323df8a0.json"
4
+ }