@etherisc/gif-next 0.0.2-dc7e4cb-141 → 0.0.2-e42b0ca-323
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +5 -14
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +2 -2
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +2 -2
- 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/Dummy.sol/LifeCycleModule.json +2 -2
- 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/SM.sol/SM.json +2 -2
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.dbg.json +1 -1
- package/artifacts/contracts/experiment/statemachine/SimpleStateMachine.sol/SimpleStateMachine.json +2 -2
- 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 +42 -193
- 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 +189 -266
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/{service → base}/ComponentServiceBase.sol/ComponentServiceBase.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/{IServiceLinked.sol/IServiceLinked.json → base/IInstanceBase.sol/IInstanceBase.json} +15 -2
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/IKeyValueStore.sol/IKeyValueStore.json +511 -0
- package/artifacts/contracts/instance/base/ILifecycle.sol/ILifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/{module/lifecycle/ILifecycle.sol/ILifecycleModule.json → base/ILifecycle.sol/ILifecycle.json} +10 -77
- package/artifacts/contracts/instance/base/IService.sol/IService.dbg.json +4 -0
- package/artifacts/contracts/instance/{service → base}/IService.sol/IService.json +1 -1
- package/artifacts/contracts/instance/base/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol}/InstanceBase.json +14 -1
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.dbg.json +4 -0
- package/artifacts/contracts/instance/base/KeyValueStore.sol/KeyValueStore.json +692 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +4 -0
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.json +169 -0
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.dbg.json +4 -0
- package/artifacts/contracts/instance/base/ModuleBase.sol/ModuleBase.json +10 -0
- package/artifacts/contracts/instance/base/ServiceBase.sol/ServiceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/{service → base}/ServiceBase.sol/ServiceBase.json +1 -1
- 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/BundleModule.sol/BundleModule.json +50 -30
- 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/bundle/IBundle.sol/IBundleModule.json +50 -30
- package/artifacts/contracts/instance/module/compensation/CompensationModule.sol/CompensationModule.dbg.json +1 -1
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensation.dbg.json +1 -1
- package/artifacts/contracts/instance/module/compensation/ICompensation.sol/ICompensationModule.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/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/PoolModule.sol/PoolModule.dbg.json +1 -1
- 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/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/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/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +34 -2
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +2 -2
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +4 -4
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IChainNft.sol/IChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryLinked.sol/IRegistryLinked.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +2 -2
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- 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/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Versionable.sol/Versionable.dbg.json +1 -1
- package/artifacts/contracts/test/TestFee.sol/TestFee.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.dbg.json +1 -1
- package/artifacts/contracts/test/TestPool.sol/TestPool.json +2 -2
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.dbg.json +1 -1
- package/artifacts/contracts/test/TestProduct.sol/TestProduct.json +2 -2
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.dbg.json +1 -1
- package/artifacts/contracts/test/TestRegisterable.sol/TestRegisterable.json +2 -2
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.dbg.json +1 -1
- package/artifacts/contracts/test/TestRoleId.sol/TestRoleId.json +38 -4
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +2 -2
- package/artifacts/contracts/test/TestToken.sol/TestUsdc.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersion.sol/TestVersion.dbg.json +1 -1
- package/artifacts/contracts/test/TestVersionable.sol/TestVersionable.dbg.json +1 -1
- package/artifacts/contracts/test/Usdc.sol/USDC.dbg.json +1 -1
- package/artifacts/contracts/types/AddressSet.sol/LibAddressSet.dbg.json +1 -1
- package/artifacts/contracts/types/Blocknumber.sol/BlocknumberLib.dbg.json +1 -1
- package/artifacts/contracts/types/ChainId.sol/ChainIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/Fee.sol/FeeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Key32.sol/Key32Lib.dbg.json +4 -0
- package/artifacts/contracts/types/Key32.sol/Key32Lib.json +111 -0
- package/artifacts/contracts/types/NftId.sol/NftIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/NftId.sol/NftIdLib.json +65 -4
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.dbg.json +1 -1
- package/artifacts/contracts/types/NftIdSet.sol/LibNftIdSet.json +2 -2
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.dbg.json +4 -0
- package/artifacts/contracts/types/RoleId.sol/RoleIdLib.json +30 -0
- package/artifacts/contracts/types/StateId.sol/StateIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/StateId.sol/StateIdLib.json +2 -2
- 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/VersionPartLib.dbg.json +1 -1
- package/contracts/components/BaseComponent.sol +0 -1
- package/contracts/instance/IInstance.sol +9 -10
- package/contracts/instance/Instance.sol +9 -7
- package/contracts/instance/{service → base}/ComponentServiceBase.sol +1 -0
- package/contracts/instance/base/IInstanceBase.sol +14 -0
- package/contracts/instance/base/IKeyValueStore.sol +49 -0
- package/contracts/instance/base/ILifecycle.sol +30 -0
- package/contracts/instance/{InstanceBase.sol → base/InstanceBase.sol} +20 -11
- package/contracts/instance/base/KeyValueStore.sol +156 -0
- package/contracts/instance/{module/lifecycle/LifecycleModule.sol → base/Lifecycle.sol} +36 -30
- package/contracts/instance/base/ModuleBase.sol +52 -0
- package/contracts/instance/{service → base}/ServiceBase.sol +0 -2
- package/contracts/instance/module/access/Access.sol +3 -3
- package/contracts/instance/module/bundle/BundleModule.sol +24 -116
- package/contracts/instance/module/bundle/IBundle.sol +8 -3
- package/contracts/instance/module/component/ComponentModule.sol +9 -17
- package/contracts/instance/module/policy/PolicyModule.sol +2 -10
- package/contracts/instance/service/ComponentOwnerService.sol +1 -2
- package/contracts/instance/service/IComponentOwnerService.sol +1 -1
- package/contracts/instance/service/IPoolService.sol +1 -1
- package/contracts/instance/service/IProductService.sol +1 -1
- package/contracts/instance/service/PoolService.sol +1 -1
- package/contracts/instance/service/ProductService.sol +1 -2
- package/contracts/registry/Registry.sol +1 -1
- package/contracts/test/TestRoleId.sol +2 -2
- package/contracts/test/TestService.sol +1 -1
- package/contracts/types/Key32.sol +45 -0
- package/contracts/types/NftId.sol +16 -1
- package/contracts/types/RoleId.sol +11 -9
- package/contracts/types/StateId.sol +7 -1
- package/package.json +1 -1
- package/artifacts/contracts/instance/IServiceLinked.sol/IServiceLinked.dbg.json +0 -4
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.dbg.json +0 -4
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycle.json +0 -134
- package/artifacts/contracts/instance/module/lifecycle/ILifecycle.sol/ILifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.dbg.json +0 -4
- package/artifacts/contracts/instance/module/lifecycle/LifecycleModule.sol/LifecycleModule.json +0 -221
- package/artifacts/contracts/instance/service/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +0 -4
- package/artifacts/contracts/instance/service/IService.sol/IService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ServiceBase.sol/ServiceBase.dbg.json +0 -4
- package/contracts/instance/IServiceLinked.sol +0 -12
- package/contracts/instance/module/lifecycle/ILifecycle.sol +0 -47
- /package/contracts/instance/{service → base}/IService.sol +0 -0
@@ -3,48 +3,6 @@
|
|
3
3
|
"contractName": "IInstance",
|
4
4
|
"sourceName": "contracts/instance/IInstance.sol",
|
5
5
|
"abi": [
|
6
|
-
{
|
7
|
-
"inputs": [
|
8
|
-
{
|
9
|
-
"internalType": "NftId",
|
10
|
-
"name": "nftId",
|
11
|
-
"type": "uint96"
|
12
|
-
},
|
13
|
-
{
|
14
|
-
"internalType": "ObjectType",
|
15
|
-
"name": "objectType",
|
16
|
-
"type": "uint8"
|
17
|
-
},
|
18
|
-
{
|
19
|
-
"internalType": "StateId",
|
20
|
-
"name": "fromStateId",
|
21
|
-
"type": "uint8"
|
22
|
-
},
|
23
|
-
{
|
24
|
-
"internalType": "StateId",
|
25
|
-
"name": "toStateId",
|
26
|
-
"type": "uint8"
|
27
|
-
}
|
28
|
-
],
|
29
|
-
"name": "ErrorInvalidStateTransition",
|
30
|
-
"type": "error"
|
31
|
-
},
|
32
|
-
{
|
33
|
-
"inputs": [
|
34
|
-
{
|
35
|
-
"internalType": "NftId",
|
36
|
-
"name": "nftId",
|
37
|
-
"type": "uint96"
|
38
|
-
},
|
39
|
-
{
|
40
|
-
"internalType": "ObjectType",
|
41
|
-
"name": "objectType",
|
42
|
-
"type": "uint8"
|
43
|
-
}
|
44
|
-
],
|
45
|
-
"name": "ErrorNoLifecycle",
|
46
|
-
"type": "error"
|
47
|
-
},
|
48
6
|
{
|
49
7
|
"anonymous": false,
|
50
8
|
"inputs": [
|
@@ -108,87 +66,6 @@
|
|
108
66
|
"name": "LogAccessRoleStateSet",
|
109
67
|
"type": "event"
|
110
68
|
},
|
111
|
-
{
|
112
|
-
"anonymous": false,
|
113
|
-
"inputs": [
|
114
|
-
{
|
115
|
-
"indexed": false,
|
116
|
-
"internalType": "NftId",
|
117
|
-
"name": "nftId",
|
118
|
-
"type": "uint96"
|
119
|
-
},
|
120
|
-
{
|
121
|
-
"indexed": false,
|
122
|
-
"internalType": "StateId",
|
123
|
-
"name": "fromStateId",
|
124
|
-
"type": "uint8"
|
125
|
-
},
|
126
|
-
{
|
127
|
-
"indexed": false,
|
128
|
-
"internalType": "StateId",
|
129
|
-
"name": "toStateId",
|
130
|
-
"type": "uint8"
|
131
|
-
}
|
132
|
-
],
|
133
|
-
"name": "LogBundleStateChanged",
|
134
|
-
"type": "event"
|
135
|
-
},
|
136
|
-
{
|
137
|
-
"anonymous": false,
|
138
|
-
"inputs": [
|
139
|
-
{
|
140
|
-
"indexed": false,
|
141
|
-
"internalType": "NftId",
|
142
|
-
"name": "nftId",
|
143
|
-
"type": "uint96"
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"indexed": false,
|
147
|
-
"internalType": "ObjectType",
|
148
|
-
"name": "objectType",
|
149
|
-
"type": "uint8"
|
150
|
-
},
|
151
|
-
{
|
152
|
-
"indexed": false,
|
153
|
-
"internalType": "StateId",
|
154
|
-
"name": "fromStateId",
|
155
|
-
"type": "uint8"
|
156
|
-
},
|
157
|
-
{
|
158
|
-
"indexed": false,
|
159
|
-
"internalType": "StateId",
|
160
|
-
"name": "toStateId",
|
161
|
-
"type": "uint8"
|
162
|
-
}
|
163
|
-
],
|
164
|
-
"name": "LogComponentStateChanged",
|
165
|
-
"type": "event"
|
166
|
-
},
|
167
|
-
{
|
168
|
-
"anonymous": false,
|
169
|
-
"inputs": [
|
170
|
-
{
|
171
|
-
"indexed": false,
|
172
|
-
"internalType": "NftId",
|
173
|
-
"name": "nftId",
|
174
|
-
"type": "uint96"
|
175
|
-
},
|
176
|
-
{
|
177
|
-
"indexed": false,
|
178
|
-
"internalType": "StateId",
|
179
|
-
"name": "fromStateId",
|
180
|
-
"type": "uint8"
|
181
|
-
},
|
182
|
-
{
|
183
|
-
"indexed": false,
|
184
|
-
"internalType": "StateId",
|
185
|
-
"name": "toStateId",
|
186
|
-
"type": "uint8"
|
187
|
-
}
|
188
|
-
],
|
189
|
-
"name": "LogPolicyStateChanged",
|
190
|
-
"type": "event"
|
191
|
-
},
|
192
69
|
{
|
193
70
|
"anonymous": false,
|
194
71
|
"inputs": [
|
@@ -450,11 +327,6 @@
|
|
450
327
|
"name": "poolNftId",
|
451
328
|
"type": "uint96"
|
452
329
|
},
|
453
|
-
{
|
454
|
-
"internalType": "StateId",
|
455
|
-
"name": "state",
|
456
|
-
"type": "uint8"
|
457
|
-
},
|
458
330
|
{
|
459
331
|
"internalType": "bytes",
|
460
332
|
"name": "filter",
|
@@ -475,11 +347,6 @@
|
|
475
347
|
"name": "balanceAmount",
|
476
348
|
"type": "uint256"
|
477
349
|
},
|
478
|
-
{
|
479
|
-
"internalType": "Timestamp",
|
480
|
-
"name": "createdAt",
|
481
|
-
"type": "uint40"
|
482
|
-
},
|
483
350
|
{
|
484
351
|
"internalType": "Timestamp",
|
485
352
|
"name": "expiredAt",
|
@@ -489,11 +356,6 @@
|
|
489
356
|
"internalType": "Timestamp",
|
490
357
|
"name": "closedAt",
|
491
358
|
"type": "uint40"
|
492
|
-
},
|
493
|
-
{
|
494
|
-
"internalType": "Blocknumber",
|
495
|
-
"name": "updatedIn",
|
496
|
-
"type": "uint32"
|
497
359
|
}
|
498
360
|
],
|
499
361
|
"internalType": "struct IBundle.BundleInfo",
|
@@ -659,19 +521,13 @@
|
|
659
521
|
"type": "function"
|
660
522
|
},
|
661
523
|
{
|
662
|
-
"inputs": [
|
663
|
-
|
664
|
-
"internalType": "ObjectType",
|
665
|
-
"name": "objectType",
|
666
|
-
"type": "uint8"
|
667
|
-
}
|
668
|
-
],
|
669
|
-
"name": "getInitialState",
|
524
|
+
"inputs": [],
|
525
|
+
"name": "getKeyValueStore",
|
670
526
|
"outputs": [
|
671
527
|
{
|
672
|
-
"internalType": "
|
673
|
-
"name": "",
|
674
|
-
"type": "
|
528
|
+
"internalType": "contract IKeyValueStore",
|
529
|
+
"name": "keyValueStore",
|
530
|
+
"type": "address"
|
675
531
|
}
|
676
532
|
],
|
677
533
|
"stateMutability": "view",
|
@@ -1414,35 +1270,6 @@
|
|
1414
1270
|
"stateMutability": "view",
|
1415
1271
|
"type": "function"
|
1416
1272
|
},
|
1417
|
-
{
|
1418
|
-
"inputs": [
|
1419
|
-
{
|
1420
|
-
"internalType": "ObjectType",
|
1421
|
-
"name": "objectType",
|
1422
|
-
"type": "uint8"
|
1423
|
-
},
|
1424
|
-
{
|
1425
|
-
"internalType": "StateId",
|
1426
|
-
"name": "fromId",
|
1427
|
-
"type": "uint8"
|
1428
|
-
},
|
1429
|
-
{
|
1430
|
-
"internalType": "StateId",
|
1431
|
-
"name": "toId",
|
1432
|
-
"type": "uint8"
|
1433
|
-
}
|
1434
|
-
],
|
1435
|
-
"name": "isValidTransition",
|
1436
|
-
"outputs": [
|
1437
|
-
{
|
1438
|
-
"internalType": "bool",
|
1439
|
-
"name": "",
|
1440
|
-
"type": "bool"
|
1441
|
-
}
|
1442
|
-
],
|
1443
|
-
"stateMutability": "view",
|
1444
|
-
"type": "function"
|
1445
|
-
},
|
1446
1273
|
{
|
1447
1274
|
"inputs": [],
|
1448
1275
|
"name": "register",
|
@@ -1696,11 +1523,6 @@
|
|
1696
1523
|
"name": "poolNftId",
|
1697
1524
|
"type": "uint96"
|
1698
1525
|
},
|
1699
|
-
{
|
1700
|
-
"internalType": "StateId",
|
1701
|
-
"name": "state",
|
1702
|
-
"type": "uint8"
|
1703
|
-
},
|
1704
1526
|
{
|
1705
1527
|
"internalType": "bytes",
|
1706
1528
|
"name": "filter",
|
@@ -1721,11 +1543,6 @@
|
|
1721
1543
|
"name": "balanceAmount",
|
1722
1544
|
"type": "uint256"
|
1723
1545
|
},
|
1724
|
-
{
|
1725
|
-
"internalType": "Timestamp",
|
1726
|
-
"name": "createdAt",
|
1727
|
-
"type": "uint40"
|
1728
|
-
},
|
1729
1546
|
{
|
1730
1547
|
"internalType": "Timestamp",
|
1731
1548
|
"name": "expiredAt",
|
@@ -1735,11 +1552,6 @@
|
|
1735
1552
|
"internalType": "Timestamp",
|
1736
1553
|
"name": "closedAt",
|
1737
1554
|
"type": "uint40"
|
1738
|
-
},
|
1739
|
-
{
|
1740
|
-
"internalType": "Blocknumber",
|
1741
|
-
"name": "updatedIn",
|
1742
|
-
"type": "uint32"
|
1743
1555
|
}
|
1744
1556
|
],
|
1745
1557
|
"internalType": "struct IBundle.BundleInfo",
|
@@ -2008,6 +1820,43 @@
|
|
2008
1820
|
],
|
2009
1821
|
"stateMutability": "view",
|
2010
1822
|
"type": "function"
|
1823
|
+
},
|
1824
|
+
{
|
1825
|
+
"inputs": [
|
1826
|
+
{
|
1827
|
+
"internalType": "NftId",
|
1828
|
+
"name": "bundleNftId",
|
1829
|
+
"type": "uint96"
|
1830
|
+
}
|
1831
|
+
],
|
1832
|
+
"name": "toBundleKey32",
|
1833
|
+
"outputs": [
|
1834
|
+
{
|
1835
|
+
"internalType": "Key32",
|
1836
|
+
"name": "key32",
|
1837
|
+
"type": "bytes32"
|
1838
|
+
}
|
1839
|
+
],
|
1840
|
+
"stateMutability": "view",
|
1841
|
+
"type": "function"
|
1842
|
+
},
|
1843
|
+
{
|
1844
|
+
"inputs": [
|
1845
|
+
{
|
1846
|
+
"internalType": "NftId",
|
1847
|
+
"name": "bundleNftId",
|
1848
|
+
"type": "uint96"
|
1849
|
+
},
|
1850
|
+
{
|
1851
|
+
"internalType": "StateId",
|
1852
|
+
"name": "state",
|
1853
|
+
"type": "uint8"
|
1854
|
+
}
|
1855
|
+
],
|
1856
|
+
"name": "updateBundleState",
|
1857
|
+
"outputs": [],
|
1858
|
+
"stateMutability": "nonpayable",
|
1859
|
+
"type": "function"
|
2011
1860
|
}
|
2012
1861
|
],
|
2013
1862
|
"bytecode": "0x",
|