@etherisc/gif-next 0.0.2-790d44b-698 → 0.0.2-7acbd99-227
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.
- package/README.md +40 -25
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +80 -41
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +101 -61
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +43 -40
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.json +55 -52
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +100 -113
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +50 -47
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +150 -126
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +110 -52
- package/artifacts/contracts/experiment/errors/Require.sol/Require.dbg.json +1 -1
- package/artifacts/contracts/experiment/errors/Revert.sol/Revert.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/A.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/A.sol/AShared.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/B.sol/B.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/C.sol/C.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/IA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IA.sol/ISharedA.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IB.sol/IB.dbg.json +1 -1
- package/artifacts/contracts/experiment/inheritance/IC.sol/IC.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/Dummy.sol/LifeCycleModule.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/ISM.sol/ISMEE.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SM.sol/SM.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeA.sol/TypeALib.dbg.json +1 -1
- package/artifacts/contracts/experiment/types/TypeB.sol/TypeBLib.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +196 -72
- package/artifacts/contracts/instance/IInstanceLinked.sol/IInstanceLinked.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +281 -155
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +61 -32
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +1 -1
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IService.sol/IService.json +43 -40
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.json +64 -48
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.json +57 -41
- package/artifacts/contracts/instance/module/access/Access.sol/AccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/access/IAccess.sol/IAccessModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/BundleModule.sol/BundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/bundle/IBundle.sol/IBundleModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/ComponentModule.sol/ComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponent.dbg.json +1 -1
- package/artifacts/contracts/instance/module/component/IComponent.sol/IComponentModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/distribution/DistributionModule.sol/DistributionModule.json +2 -2
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/distribution/IDistribution.sol/IDistributionModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/IPolicy.sol/IPolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/policy/PolicyModule.sol/PolicyModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPool.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/IPoolModule.sol/IPoolModule.json +29 -9
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/pool/PoolModule.sol/PoolModule.json +28 -8
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/IRisk.sol/IRiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/risk/RiskModule.sol/RiskModule.json +2 -2
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/ITreasury.sol/ITreasuryModule.json +138 -11
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TokenHandler.sol/TokenHandler.json +2 -2
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/treasury/TreasuryModule.sol/TreasuryModule.json +138 -11
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +164 -69
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +86 -44
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.json +43 -59
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +43 -40
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +43 -40
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +43 -40
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +88 -46
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +110 -68
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +141 -12
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.json +5 -0
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +293 -40
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +668 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +4 -0
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.json +34 -0
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +390 -292
- package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.dbg.json +4 -0
- package/artifacts/contracts/registry/Registry.sol/RegistryCreationCode.json +150 -0
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryInstaller.sol/RegistryInstaller.json +344 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +861 -0
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.json +2 -2
- package/artifacts/contracts/shared/IOwnable.sol/IOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.json +43 -40
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +4 -0
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +310 -0
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +76 -37
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.dbg.json +4 -0
- package/artifacts/contracts/shared/{Proxy.sol/ProxyWithProxyAdminGetter.json → UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.json} +4 -4
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.dbg.json +1 -1
- package/artifacts/contracts/test/TestDistribution.sol/TestDistribution.json +101 -61
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +150 -126
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +115 -58
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +93 -39
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +80 -51
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.json +2 -2
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.json +2 -2
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/ReferralId.sol/ReferralIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RiskId.sol/RiskIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Timestamp.sol/TimestampLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedMathLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionLib.json +2 -2
- package/artifacts/contracts/types/Version.sol/VersionPartLib.dbg.json +1 -1
- package/artifacts/contracts/types/Version.sol/VersionPartLib.json +2 -2
- package/contracts/components/BaseComponent.sol +12 -27
- package/contracts/components/Distribution.sol +29 -6
- package/contracts/components/IBaseComponent.sol +2 -2
- package/contracts/components/IPoolComponent.sol +2 -8
- package/contracts/components/IProductComponent.sol +2 -1
- package/contracts/components/Pool.sol +84 -73
- package/contracts/components/Product.sol +85 -13
- package/contracts/instance/IInstance.sol +4 -3
- package/contracts/instance/Instance.sol +14 -3
- package/contracts/instance/base/ComponentServiceBase.sol +13 -6
- package/contracts/instance/base/IInstanceBase.sol +3 -2
- package/contracts/instance/base/InstanceBase.sol +6 -8
- package/contracts/instance/base/ServiceBase.sol +19 -13
- package/contracts/instance/module/component/ComponentModule.sol +5 -4
- package/contracts/instance/module/component/IComponent.sol +2 -2
- package/contracts/instance/module/pool/IPoolModule.sol +4 -3
- package/contracts/instance/module/pool/PoolModule.sol +12 -7
- package/contracts/instance/module/treasury/ITreasury.sol +7 -5
- package/contracts/instance/module/treasury/TokenHandler.sol +2 -2
- package/contracts/instance/module/treasury/TreasuryModule.sol +21 -28
- package/contracts/instance/service/ComponentOwnerService.sol +181 -66
- package/contracts/instance/service/DistributionService.sol +6 -11
- package/contracts/instance/service/IComponentOwnerService.sol +0 -2
- package/contracts/instance/service/PoolService.sol +19 -19
- package/contracts/instance/service/ProductService.sol +20 -20
- package/contracts/registry/ChainNft.sol +43 -15
- package/contracts/registry/IChainNft.sol +3 -2
- package/contracts/registry/IRegistry.sol +44 -28
- package/contracts/registry/IRegistryService.sol +29 -0
- package/contracts/registry/ITransferInterceptor.sol +6 -0
- package/contracts/registry/Registry.sol +368 -328
- package/contracts/registry/RegistryInstaller.sol +100 -0
- package/contracts/registry/RegistryService.sol +383 -0
- package/contracts/shared/ERC165.sol +1 -1
- package/contracts/shared/IRegisterable.sol +7 -9
- package/contracts/shared/IVersionable.sol +15 -13
- package/contracts/shared/ProxyManager.sol +115 -0
- package/contracts/shared/Registerable.sol +74 -43
- package/contracts/shared/UpgradableProxyWithAdmin.sol +16 -0
- package/contracts/shared/Versionable.sol +46 -40
- package/contracts/test/TestDistribution.sol +3 -2
- package/contracts/test/TestPool.sol +4 -2
- package/contracts/test/TestProduct.sol +4 -2
- package/contracts/test/TestRegisterable.sol +5 -6
- package/contracts/test/TestService.sol +5 -11
- package/contracts/types/Version.sol +1 -0
- package/package.json +1 -1
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.dbg.json +0 -4
- package/artifacts/contracts/shared/Proxy.sol/ProxyDeployer.json +0 -248
- package/artifacts/contracts/shared/Proxy.sol/ProxyWithProxyAdminGetter.dbg.json +0 -4
- package/contracts/experiment/statemachine/README.md +0 -112
- package/contracts/shared/Proxy.sol +0 -94
package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json
CHANGED
@@ -53,8 +53,63 @@
|
|
53
53
|
},
|
54
54
|
{
|
55
55
|
"inputs": [],
|
56
|
-
"name": "
|
56
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
57
57
|
"outputs": [
|
58
|
+
{
|
59
|
+
"internalType": "bytes32",
|
60
|
+
"name": "",
|
61
|
+
"type": "bytes32"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"stateMutability": "view",
|
65
|
+
"type": "function"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"inputs": [],
|
69
|
+
"name": "getInitialInfo",
|
70
|
+
"outputs": [
|
71
|
+
{
|
72
|
+
"components": [
|
73
|
+
{
|
74
|
+
"internalType": "NftId",
|
75
|
+
"name": "nftId",
|
76
|
+
"type": "uint96"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"internalType": "NftId",
|
80
|
+
"name": "parentNftId",
|
81
|
+
"type": "uint96"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"internalType": "ObjectType",
|
85
|
+
"name": "objectType",
|
86
|
+
"type": "uint8"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"internalType": "bool",
|
90
|
+
"name": "isInterceptor",
|
91
|
+
"type": "bool"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"internalType": "address",
|
95
|
+
"name": "objectAddress",
|
96
|
+
"type": "address"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"internalType": "address",
|
100
|
+
"name": "initialOwner",
|
101
|
+
"type": "address"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"internalType": "bytes",
|
105
|
+
"name": "data",
|
106
|
+
"type": "bytes"
|
107
|
+
}
|
108
|
+
],
|
109
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
110
|
+
"name": "",
|
111
|
+
"type": "tuple"
|
112
|
+
},
|
58
113
|
{
|
59
114
|
"internalType": "bytes",
|
60
115
|
"name": "data",
|
@@ -122,26 +177,13 @@
|
|
122
177
|
"outputs": [
|
123
178
|
{
|
124
179
|
"internalType": "address",
|
125
|
-
"name": "
|
180
|
+
"name": "",
|
126
181
|
"type": "address"
|
127
182
|
}
|
128
183
|
],
|
129
184
|
"stateMutability": "view",
|
130
185
|
"type": "function"
|
131
186
|
},
|
132
|
-
{
|
133
|
-
"inputs": [],
|
134
|
-
"name": "getParentNftId",
|
135
|
-
"outputs": [
|
136
|
-
{
|
137
|
-
"internalType": "NftId",
|
138
|
-
"name": "nftId",
|
139
|
-
"type": "uint96"
|
140
|
-
}
|
141
|
-
],
|
142
|
-
"stateMutability": "view",
|
143
|
-
"type": "function"
|
144
|
-
},
|
145
187
|
{
|
146
188
|
"inputs": [],
|
147
189
|
"name": "getRegistry",
|
@@ -157,15 +199,15 @@
|
|
157
199
|
},
|
158
200
|
{
|
159
201
|
"inputs": [],
|
160
|
-
"name": "
|
202
|
+
"name": "getRegistryService",
|
161
203
|
"outputs": [
|
162
204
|
{
|
163
|
-
"internalType": "
|
205
|
+
"internalType": "contract IRegistryService",
|
164
206
|
"name": "",
|
165
|
-
"type": "
|
207
|
+
"type": "address"
|
166
208
|
}
|
167
209
|
],
|
168
|
-
"stateMutability": "
|
210
|
+
"stateMutability": "view",
|
169
211
|
"type": "function"
|
170
212
|
},
|
171
213
|
{
|
@@ -301,19 +343,6 @@
|
|
301
343
|
"stateMutability": "view",
|
302
344
|
"type": "function"
|
303
345
|
},
|
304
|
-
{
|
305
|
-
"inputs": [],
|
306
|
-
"name": "register",
|
307
|
-
"outputs": [
|
308
|
-
{
|
309
|
-
"internalType": "NftId",
|
310
|
-
"name": "nftId",
|
311
|
-
"type": "uint96"
|
312
|
-
}
|
313
|
-
],
|
314
|
-
"stateMutability": "nonpayable",
|
315
|
-
"type": "function"
|
316
|
-
},
|
317
346
|
{
|
318
347
|
"inputs": [
|
319
348
|
{
|
@@ -30,8 +30,50 @@
|
|
30
30
|
},
|
31
31
|
{
|
32
32
|
"inputs": [],
|
33
|
-
"name": "
|
33
|
+
"name": "getInitialInfo",
|
34
34
|
"outputs": [
|
35
|
+
{
|
36
|
+
"components": [
|
37
|
+
{
|
38
|
+
"internalType": "NftId",
|
39
|
+
"name": "nftId",
|
40
|
+
"type": "uint96"
|
41
|
+
},
|
42
|
+
{
|
43
|
+
"internalType": "NftId",
|
44
|
+
"name": "parentNftId",
|
45
|
+
"type": "uint96"
|
46
|
+
},
|
47
|
+
{
|
48
|
+
"internalType": "ObjectType",
|
49
|
+
"name": "objectType",
|
50
|
+
"type": "uint8"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"internalType": "bool",
|
54
|
+
"name": "isInterceptor",
|
55
|
+
"type": "bool"
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "objectAddress",
|
60
|
+
"type": "address"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"internalType": "address",
|
64
|
+
"name": "initialOwner",
|
65
|
+
"type": "address"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"internalType": "bytes",
|
69
|
+
"name": "data",
|
70
|
+
"type": "bytes"
|
71
|
+
}
|
72
|
+
],
|
73
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
74
|
+
"name": "",
|
75
|
+
"type": "tuple"
|
76
|
+
},
|
35
77
|
{
|
36
78
|
"internalType": "bytes",
|
37
79
|
"name": "data",
|
@@ -106,19 +148,6 @@
|
|
106
148
|
"stateMutability": "view",
|
107
149
|
"type": "function"
|
108
150
|
},
|
109
|
-
{
|
110
|
-
"inputs": [],
|
111
|
-
"name": "getParentNftId",
|
112
|
-
"outputs": [
|
113
|
-
{
|
114
|
-
"internalType": "NftId",
|
115
|
-
"name": "nftId",
|
116
|
-
"type": "uint96"
|
117
|
-
}
|
118
|
-
],
|
119
|
-
"stateMutability": "view",
|
120
|
-
"type": "function"
|
121
|
-
},
|
122
151
|
{
|
123
152
|
"inputs": [],
|
124
153
|
"name": "getRegistry",
|
@@ -132,19 +161,6 @@
|
|
132
161
|
"stateMutability": "view",
|
133
162
|
"type": "function"
|
134
163
|
},
|
135
|
-
{
|
136
|
-
"inputs": [],
|
137
|
-
"name": "getType",
|
138
|
-
"outputs": [
|
139
|
-
{
|
140
|
-
"internalType": "ObjectType",
|
141
|
-
"name": "objectType",
|
142
|
-
"type": "uint8"
|
143
|
-
}
|
144
|
-
],
|
145
|
-
"stateMutability": "pure",
|
146
|
-
"type": "function"
|
147
|
-
},
|
148
164
|
{
|
149
165
|
"inputs": [],
|
150
166
|
"name": "getVersion",
|
@@ -278,19 +294,6 @@
|
|
278
294
|
"stateMutability": "view",
|
279
295
|
"type": "function"
|
280
296
|
},
|
281
|
-
{
|
282
|
-
"inputs": [],
|
283
|
-
"name": "register",
|
284
|
-
"outputs": [
|
285
|
-
{
|
286
|
-
"internalType": "NftId",
|
287
|
-
"name": "nftId",
|
288
|
-
"type": "uint96"
|
289
|
-
}
|
290
|
-
],
|
291
|
-
"stateMutability": "nonpayable",
|
292
|
-
"type": "function"
|
293
|
-
},
|
294
297
|
{
|
295
298
|
"inputs": [
|
296
299
|
{
|
@@ -53,12 +53,12 @@
|
|
53
53
|
},
|
54
54
|
{
|
55
55
|
"inputs": [],
|
56
|
-
"name": "
|
56
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
57
57
|
"outputs": [
|
58
58
|
{
|
59
|
-
"internalType": "
|
60
|
-
"name": "
|
61
|
-
"type": "
|
59
|
+
"internalType": "bytes32",
|
60
|
+
"name": "",
|
61
|
+
"type": "bytes32"
|
62
62
|
}
|
63
63
|
],
|
64
64
|
"stateMutability": "view",
|
@@ -66,12 +66,12 @@
|
|
66
66
|
},
|
67
67
|
{
|
68
68
|
"inputs": [],
|
69
|
-
"name": "
|
69
|
+
"name": "getComponentOwnerService",
|
70
70
|
"outputs": [
|
71
71
|
{
|
72
|
-
"internalType": "
|
73
|
-
"name": "
|
74
|
-
"type": "
|
72
|
+
"internalType": "contract IComponentOwnerService",
|
73
|
+
"name": "",
|
74
|
+
"type": "address"
|
75
75
|
}
|
76
76
|
],
|
77
77
|
"stateMutability": "view",
|
@@ -90,6 +90,61 @@
|
|
90
90
|
"stateMutability": "view",
|
91
91
|
"type": "function"
|
92
92
|
},
|
93
|
+
{
|
94
|
+
"inputs": [],
|
95
|
+
"name": "getInitialInfo",
|
96
|
+
"outputs": [
|
97
|
+
{
|
98
|
+
"components": [
|
99
|
+
{
|
100
|
+
"internalType": "NftId",
|
101
|
+
"name": "nftId",
|
102
|
+
"type": "uint96"
|
103
|
+
},
|
104
|
+
{
|
105
|
+
"internalType": "NftId",
|
106
|
+
"name": "parentNftId",
|
107
|
+
"type": "uint96"
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"internalType": "ObjectType",
|
111
|
+
"name": "objectType",
|
112
|
+
"type": "uint8"
|
113
|
+
},
|
114
|
+
{
|
115
|
+
"internalType": "bool",
|
116
|
+
"name": "isInterceptor",
|
117
|
+
"type": "bool"
|
118
|
+
},
|
119
|
+
{
|
120
|
+
"internalType": "address",
|
121
|
+
"name": "objectAddress",
|
122
|
+
"type": "address"
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"internalType": "address",
|
126
|
+
"name": "initialOwner",
|
127
|
+
"type": "address"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"internalType": "bytes",
|
131
|
+
"name": "data",
|
132
|
+
"type": "bytes"
|
133
|
+
}
|
134
|
+
],
|
135
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
136
|
+
"name": "",
|
137
|
+
"type": "tuple"
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"internalType": "bytes",
|
141
|
+
"name": "data",
|
142
|
+
"type": "bytes"
|
143
|
+
}
|
144
|
+
],
|
145
|
+
"stateMutability": "view",
|
146
|
+
"type": "function"
|
147
|
+
},
|
93
148
|
{
|
94
149
|
"inputs": [],
|
95
150
|
"name": "getInitializedVersion",
|
@@ -135,26 +190,13 @@
|
|
135
190
|
"outputs": [
|
136
191
|
{
|
137
192
|
"internalType": "address",
|
138
|
-
"name": "
|
193
|
+
"name": "",
|
139
194
|
"type": "address"
|
140
195
|
}
|
141
196
|
],
|
142
197
|
"stateMutability": "view",
|
143
198
|
"type": "function"
|
144
199
|
},
|
145
|
-
{
|
146
|
-
"inputs": [],
|
147
|
-
"name": "getParentNftId",
|
148
|
-
"outputs": [
|
149
|
-
{
|
150
|
-
"internalType": "NftId",
|
151
|
-
"name": "nftId",
|
152
|
-
"type": "uint96"
|
153
|
-
}
|
154
|
-
],
|
155
|
-
"stateMutability": "view",
|
156
|
-
"type": "function"
|
157
|
-
},
|
158
200
|
{
|
159
201
|
"inputs": [],
|
160
202
|
"name": "getPoolService",
|
@@ -213,19 +255,6 @@
|
|
213
255
|
"stateMutability": "view",
|
214
256
|
"type": "function"
|
215
257
|
},
|
216
|
-
{
|
217
|
-
"inputs": [],
|
218
|
-
"name": "getType",
|
219
|
-
"outputs": [
|
220
|
-
{
|
221
|
-
"internalType": "ObjectType",
|
222
|
-
"name": "objectType",
|
223
|
-
"type": "uint8"
|
224
|
-
}
|
225
|
-
],
|
226
|
-
"stateMutability": "pure",
|
227
|
-
"type": "function"
|
228
|
-
},
|
229
258
|
{
|
230
259
|
"inputs": [],
|
231
260
|
"name": "getVersion",
|
@@ -359,19 +388,6 @@
|
|
359
388
|
"stateMutability": "view",
|
360
389
|
"type": "function"
|
361
390
|
},
|
362
|
-
{
|
363
|
-
"inputs": [],
|
364
|
-
"name": "register",
|
365
|
-
"outputs": [
|
366
|
-
{
|
367
|
-
"internalType": "NftId",
|
368
|
-
"name": "nftId",
|
369
|
-
"type": "uint96"
|
370
|
-
}
|
371
|
-
],
|
372
|
-
"stateMutability": "nonpayable",
|
373
|
-
"type": "function"
|
374
|
-
},
|
375
391
|
{
|
376
392
|
"inputs": [
|
377
393
|
{
|
@@ -53,8 +53,63 @@
|
|
53
53
|
},
|
54
54
|
{
|
55
55
|
"inputs": [],
|
56
|
-
"name": "
|
56
|
+
"name": "REGISTERABLE_LOCATION_V1",
|
57
57
|
"outputs": [
|
58
|
+
{
|
59
|
+
"internalType": "bytes32",
|
60
|
+
"name": "",
|
61
|
+
"type": "bytes32"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"stateMutability": "view",
|
65
|
+
"type": "function"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"inputs": [],
|
69
|
+
"name": "getInitialInfo",
|
70
|
+
"outputs": [
|
71
|
+
{
|
72
|
+
"components": [
|
73
|
+
{
|
74
|
+
"internalType": "NftId",
|
75
|
+
"name": "nftId",
|
76
|
+
"type": "uint96"
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"internalType": "NftId",
|
80
|
+
"name": "parentNftId",
|
81
|
+
"type": "uint96"
|
82
|
+
},
|
83
|
+
{
|
84
|
+
"internalType": "ObjectType",
|
85
|
+
"name": "objectType",
|
86
|
+
"type": "uint8"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"internalType": "bool",
|
90
|
+
"name": "isInterceptor",
|
91
|
+
"type": "bool"
|
92
|
+
},
|
93
|
+
{
|
94
|
+
"internalType": "address",
|
95
|
+
"name": "objectAddress",
|
96
|
+
"type": "address"
|
97
|
+
},
|
98
|
+
{
|
99
|
+
"internalType": "address",
|
100
|
+
"name": "initialOwner",
|
101
|
+
"type": "address"
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"internalType": "bytes",
|
105
|
+
"name": "data",
|
106
|
+
"type": "bytes"
|
107
|
+
}
|
108
|
+
],
|
109
|
+
"internalType": "struct IRegistry.ObjectInfo",
|
110
|
+
"name": "",
|
111
|
+
"type": "tuple"
|
112
|
+
},
|
58
113
|
{
|
59
114
|
"internalType": "bytes",
|
60
115
|
"name": "data",
|
@@ -122,26 +177,13 @@
|
|
122
177
|
"outputs": [
|
123
178
|
{
|
124
179
|
"internalType": "address",
|
125
|
-
"name": "
|
180
|
+
"name": "",
|
126
181
|
"type": "address"
|
127
182
|
}
|
128
183
|
],
|
129
184
|
"stateMutability": "view",
|
130
185
|
"type": "function"
|
131
186
|
},
|
132
|
-
{
|
133
|
-
"inputs": [],
|
134
|
-
"name": "getParentNftId",
|
135
|
-
"outputs": [
|
136
|
-
{
|
137
|
-
"internalType": "NftId",
|
138
|
-
"name": "nftId",
|
139
|
-
"type": "uint96"
|
140
|
-
}
|
141
|
-
],
|
142
|
-
"stateMutability": "view",
|
143
|
-
"type": "function"
|
144
|
-
},
|
145
187
|
{
|
146
188
|
"inputs": [],
|
147
189
|
"name": "getRegistry",
|
@@ -155,19 +197,6 @@
|
|
155
197
|
"stateMutability": "view",
|
156
198
|
"type": "function"
|
157
199
|
},
|
158
|
-
{
|
159
|
-
"inputs": [],
|
160
|
-
"name": "getType",
|
161
|
-
"outputs": [
|
162
|
-
{
|
163
|
-
"internalType": "ObjectType",
|
164
|
-
"name": "",
|
165
|
-
"type": "uint8"
|
166
|
-
}
|
167
|
-
],
|
168
|
-
"stateMutability": "pure",
|
169
|
-
"type": "function"
|
170
|
-
},
|
171
200
|
{
|
172
201
|
"inputs": [],
|
173
202
|
"name": "getVersion",
|
@@ -301,19 +330,6 @@
|
|
301
330
|
"stateMutability": "view",
|
302
331
|
"type": "function"
|
303
332
|
},
|
304
|
-
{
|
305
|
-
"inputs": [],
|
306
|
-
"name": "register",
|
307
|
-
"outputs": [
|
308
|
-
{
|
309
|
-
"internalType": "NftId",
|
310
|
-
"name": "nftId",
|
311
|
-
"type": "uint96"
|
312
|
-
}
|
313
|
-
],
|
314
|
-
"stateMutability": "nonpayable",
|
315
|
-
"type": "function"
|
316
|
-
},
|
317
333
|
{
|
318
334
|
"inputs": [
|
319
335
|
{
|