@etherisc/gif-next 0.0.2-e59218b-293 → 0.0.2-e5a2253-213
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +63 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/BaseComponent.sol/BaseComponent.json +166 -0
- package/artifacts/contracts/components/Distribution.sol/Distribution.dbg.json +1 -1
- package/artifacts/contracts/components/Distribution.sol/Distribution.json +153 -85
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IBaseComponent.sol/IBaseComponent.json +128 -0
- package/artifacts/contracts/components/IDistributionComponent.sol/IDistributionComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IPoolComponent.sol/IPoolComponent.json +28 -2
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.dbg.json +1 -1
- package/artifacts/contracts/components/IProductComponent.sol/IProductComponent.json +5 -5
- package/artifacts/contracts/components/Pool.sol/Pool.dbg.json +1 -1
- package/artifacts/contracts/components/Pool.sol/Pool.json +185 -114
- package/artifacts/contracts/components/Product.sol/Product.dbg.json +1 -1
- package/artifacts/contracts/components/Product.sol/Product.json +160 -98
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Cloner.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock1.dbg.json +1 -1
- package/artifacts/contracts/experiment/cloning/Cloner.sol/Mock2.dbg.json +1 -1
- 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/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.dbg.json +4 -0
- package/artifacts/contracts/instance/AccessManagerUpgradeableInitializeable.sol/AccessManagerUpgradeableInitializeable.json +1206 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.dbg.json +4 -0
- package/artifacts/contracts/instance/BundleManager.sol/BundleManager.json +788 -0
- package/artifacts/contracts/instance/Cloneable.sol/Cloneable.dbg.json +4 -0
- package/artifacts/contracts/instance/{AccessManagedSimple.sol/AccessManagedSimple.json → Cloneable.sol/Cloneable.json} +86 -2
- package/artifacts/contracts/instance/IInstance.sol/IInstance.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstance.sol/IInstance.json +138 -2
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/IInstanceBase.sol/IInstanceBase.json +448 -0
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/IInstanceService.sol/IInstanceService.json +104 -14
- package/artifacts/contracts/instance/Instance.sol/Instance.dbg.json +1 -1
- package/artifacts/contracts/instance/Instance.sol/Instance.json +107 -660
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceAccessManager.sol/InstanceAccessManager.json +244 -114
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.dbg.json +4 -0
- package/artifacts/contracts/instance/InstanceBase.sol/InstanceBase.json +763 -0
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceReader.sol/InstanceReader.json +38 -28
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceService.sol/InstanceService.json +183 -151
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/InstanceServiceManager.sol/InstanceServiceManager.json +26 -74
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.dbg.json +4 -0
- package/artifacts/contracts/instance/ObjectManager.sol/ObjectManager.json +285 -0
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/ComponentServiceBase.sol/ComponentServiceBase.json +114 -32
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.dbg.json +1 -1
- package/artifacts/contracts/instance/base/IInstanceBase.sol/IInstanceBase.json +0 -13
- 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/KeyValueStore.sol/KeyValueStore.dbg.json +1 -1
- package/artifacts/contracts/instance/base/Lifecycle.sol/Lifecycle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IAccess.sol/IAccess.json +59 -16
- package/artifacts/contracts/instance/module/IBundle.sol/IBundle.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IDistribution.sol/IDistribution.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IPolicy.sol/IPolicy.dbg.json +1 -1
- package/artifacts/contracts/instance/module/IRisk.sol/IRisk.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ISetup.sol/ISetup.dbg.json +1 -1
- package/artifacts/contracts/instance/module/ITreasury.sol/ITreasury.dbg.json +1 -1
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleService.sol/BundleService.json +1121 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/BundleServiceManager.sol/BundleServiceManager.json +436 -0
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionService.sol/DistributionService.json +141 -66
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/DistributionServiceManager.sol/DistributionServiceManager.json +14 -34
- package/artifacts/contracts/instance/service/IBundleService.sol/IBundleService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/{IComponentOwnerService.sol/IComponentOwnerService.json → IBundleService.sol/IBundleService.json} +295 -41
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IDistributionService.sol/IDistributionService.json +13 -13
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/IPolicyService.sol/IPolicyService.json +771 -0
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IPoolService.sol/IPoolService.json +15 -164
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/IProductService.sol/IProductService.json +17 -241
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyService.sol/PolicyService.json +1246 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.dbg.json +4 -0
- package/artifacts/contracts/instance/service/PolicyServiceManager.sol/PolicyServiceManager.json +492 -0
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolService.sol/PoolService.json +140 -241
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/PoolServiceManager.sol/PoolServiceManager.json +14 -38
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductService.sol/ProductService.json +129 -401
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.dbg.json +1 -1
- package/artifacts/contracts/instance/service/ProductServiceManager.sol/ProductServiceManager.json +14 -78
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.dbg.json +1 -1
- package/artifacts/contracts/registry/ChainNft.sol/ChainNft.json +2 -2
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistry.sol/IRegistry.json +132 -133
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/IRegistryService.sol/IRegistryService.json +94 -65
- package/artifacts/contracts/registry/ITransferInterceptor.sol/ITransferInterceptor.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.dbg.json +1 -1
- package/artifacts/contracts/registry/Registry.sol/Registry.json +145 -227
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.dbg.json +4 -0
- package/artifacts/contracts/registry/RegistryAccessManager.sol/RegistryAccessManager.json +285 -0
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryService.sol/RegistryService.json +30 -128
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.dbg.json +1 -1
- package/artifacts/contracts/registry/RegistryServiceManager.sol/RegistryServiceManager.json +38 -104
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.dbg.json +4 -0
- package/artifacts/contracts/registry/ReleaseManager.sol/ReleaseManager.json +530 -0
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.dbg.json +1 -1
- package/artifacts/contracts/registry/TokenRegistry.sol/TokenRegistry.json +14 -27
- package/artifacts/contracts/shared/ContractDeployerLib.sol/ContractDeployerLib.dbg.json +1 -1
- package/artifacts/contracts/shared/ERC165.sol/ERC165.dbg.json +1 -1
- package/artifacts/contracts/shared/INftOwnable.sol/INftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/IRegisterable.sol/IRegisterable.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.dbg.json +1 -1
- package/artifacts/contracts/shared/IService.sol/IService.json +13 -13
- package/artifacts/contracts/shared/IVersionable.sol/IVersionable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.dbg.json +1 -1
- package/artifacts/contracts/shared/NftOwnable.sol/NftOwnable.json +2 -2
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.dbg.json +1 -1
- package/artifacts/contracts/shared/ProxyManager.sol/ProxyManager.json +2 -2
- package/artifacts/contracts/shared/Registerable.sol/Registerable.dbg.json +1 -1
- package/artifacts/contracts/shared/Registerable.sol/Registerable.json +2 -2
- package/artifacts/contracts/shared/RegisterableUpgradable.sol/RegisterableUpgradable.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.dbg.json +1 -1
- package/artifacts/contracts/shared/Service.sol/Service.json +13 -13
- package/artifacts/contracts/shared/TokenHandler.sol/TokenHandler.dbg.json +1 -1
- package/artifacts/contracts/shared/UpgradableProxyWithAdmin.sol/UpgradableProxyWithAdmin.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/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 +2 -2
- package/artifacts/contracts/test/TestService.sol/TestService.dbg.json +1 -1
- package/artifacts/contracts/test/TestService.sol/TestService.json +31 -31
- 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/DistributorType.sol/DistributorTypeLib.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/NftIdSet.sol/LibNftIdSet.json +26 -3
- package/artifacts/contracts/types/NumberId.sol/NumberIdLib.dbg.json +1 -1
- package/artifacts/contracts/types/ObjectType.sol/ObjectTypeLib.dbg.json +1 -1
- package/artifacts/contracts/types/Referral.sol/ReferralLib.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/RoleId.sol/RoleIdLib.json +2 -2
- 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/MathLib.dbg.json +1 -1
- package/artifacts/contracts/types/UFixed.sol/UFixedLib.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 +91 -14
- package/contracts/components/Distribution.sol +2 -11
- package/contracts/components/IBaseComponent.sol +11 -1
- package/contracts/components/IPoolComponent.sol +5 -1
- package/contracts/components/IProductComponent.sol +2 -2
- package/contracts/components/Pool.sol +38 -26
- package/contracts/components/Product.sol +28 -21
- package/contracts/instance/AccessManagerUpgradeableInitializeable.sol +23 -0
- package/contracts/instance/BundleManager.sol +129 -0
- package/contracts/instance/Cloneable.sol +46 -0
- package/contracts/instance/IInstance.sol +9 -3
- package/contracts/instance/IInstanceBase.sol +25 -0
- package/contracts/instance/IInstanceService.sol +13 -3
- package/contracts/instance/Instance.sol +43 -224
- package/contracts/instance/InstanceAccessManager.sol +93 -78
- package/contracts/instance/InstanceBase.sol +39 -0
- package/contracts/instance/InstanceService.sol +247 -100
- package/contracts/instance/InstanceServiceManager.sol +5 -8
- package/contracts/instance/ObjectManager.sol +101 -0
- package/contracts/instance/base/ComponentServiceBase.sol +85 -81
- package/contracts/instance/base/IInstanceBase.sol +0 -2
- package/contracts/instance/module/IAccess.sol +27 -17
- package/contracts/instance/module/ISetup.sol +2 -1
- package/contracts/instance/service/BundleService.sol +294 -0
- package/contracts/instance/service/BundleServiceManager.sol +51 -0
- package/contracts/instance/service/DistributionService.sol +48 -21
- package/contracts/instance/service/DistributionServiceManager.sol +6 -9
- package/contracts/instance/service/IBundleService.sol +44 -0
- package/contracts/instance/service/IPolicyService.sol +94 -0
- package/contracts/instance/service/IPoolService.sol +4 -25
- package/contracts/instance/service/IProductService.sol +2 -72
- package/contracts/instance/service/PolicyService.sol +539 -0
- package/contracts/instance/service/PolicyServiceManager.sol +54 -0
- package/contracts/instance/service/PoolService.sol +65 -124
- package/contracts/instance/service/PoolServiceManager.sol +5 -8
- package/contracts/instance/service/ProductService.sol +96 -454
- package/contracts/registry/ChainNft.sol +1 -1
- package/contracts/registry/IRegistry.sol +26 -16
- package/contracts/registry/IRegistryService.sol +13 -5
- package/contracts/registry/Registry.sol +149 -201
- package/contracts/registry/RegistryAccessManager.sol +210 -0
- package/contracts/registry/RegistryService.sol +50 -88
- package/contracts/registry/RegistryServiceManager.sol +18 -36
- package/contracts/registry/ReleaseManager.sol +342 -0
- package/contracts/registry/TokenRegistry.sol +5 -6
- package/contracts/shared/IRegisterable.sol +0 -2
- package/contracts/shared/IService.sol +2 -1
- package/contracts/shared/ProxyManager.sol +1 -1
- package/contracts/shared/Service.sol +10 -7
- package/contracts/test/TestService.sol +3 -2
- package/contracts/types/NftIdSet.sol +26 -24
- package/contracts/types/RoleId.sol +10 -10
- package/package.json +1 -1
- package/artifacts/contracts/instance/AccessManagedSimple.sol/AccessManagedSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/AccessManagerSimple.sol/AccessManagerSimple.json +0 -1132
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.dbg.json +0 -4
- package/artifacts/contracts/instance/IAccessManagerSimple.sol/IAccessManagerSimple.json +0 -1082
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.dbg.json +0 -4
- package/artifacts/contracts/instance/service/ComponentOwnerService.sol/ComponentOwnerService.json +0 -827
- package/artifacts/contracts/instance/service/IComponentOwnerService.sol/IComponentOwnerService.dbg.json +0 -4
- package/contracts/instance/AccessManagedSimple.sol +0 -115
- package/contracts/instance/AccessManagerSimple.sol +0 -692
- package/contracts/instance/IAccessManagerSimple.sol +0 -391
- package/contracts/instance/service/ComponentOwnerService.sol +0 -317
- package/contracts/instance/service/IComponentOwnerService.sol +0 -20
package/README.md
CHANGED
@@ -51,7 +51,7 @@ hh docgen
|
|
51
51
|
The resulting markdown files are written to `docs`
|
52
52
|
|
53
53
|
|
54
|
-
###
|
54
|
+
### Full protocol deployment
|
55
55
|
|
56
56
|
Install the dependencies before running the script below for the first time.
|
57
57
|
|
@@ -81,6 +81,25 @@ Environment variables:
|
|
81
81
|
- `WALLET_MNEMONIC` the mnemonic of the wallet to use for deployment (required for mumbai and mainnet)
|
82
82
|
- `ETHERSCAN_API_KEY` `POLYGONSCAN_API_KEY` the api key for etherscan/polygonscan (required for mumbai and mainnet)
|
83
83
|
|
84
|
+
### Create a new instance
|
85
|
+
|
86
|
+
Requires previous step to be completed.
|
87
|
+
|
88
|
+
```bash
|
89
|
+
# set appropriate values vor env variables (see below)
|
90
|
+
|
91
|
+
hh run --network <networkname> scripts/new_instance.ts
|
92
|
+
```
|
93
|
+
|
94
|
+
Currently an HD wallet is expected to be used for the deployment. The mnemonic of the wallet needs to be provided via the `WALLET_MNEMONIC` environment variable.
|
95
|
+
The instance owner will be the 11th address of the wallet.
|
96
|
+
|
97
|
+
Environment variables:
|
98
|
+
|
99
|
+
- `WEB3_INFURA_PROJECT_ID` set to infura project id (required for mumbai and mainnet)
|
100
|
+
- `WALLET_MNEMONIC` the mnemonic of the wallet to use for deployment (required for mumbai and mainnet)
|
101
|
+
- `REGISTRY_ADDRESS` the address of the registry that is already deployed and configured and has a valid master instance
|
102
|
+
|
84
103
|
|
85
104
|
### Console
|
86
105
|
|
@@ -419,3 +438,46 @@ Distribution Service
|
|
419
438
|
- registered via registry service by registry owner
|
420
439
|
- registers distribution components for registered products via registry service by distribution owner (distribution owner role is permissend by the product's instance)
|
421
440
|
- registers distributors for registered distribution components via registry service
|
441
|
+
|
442
|
+
## Contract Organisation
|
443
|
+
|
444
|
+
now
|
445
|
+
|
446
|
+
contracts
|
447
|
+
components
|
448
|
+
instance
|
449
|
+
registry
|
450
|
+
shared
|
451
|
+
types
|
452
|
+
|
453
|
+
|
454
|
+
contracts
|
455
|
+
component
|
456
|
+
pool
|
457
|
+
Pool.sol
|
458
|
+
PoolService.sol
|
459
|
+
oracle
|
460
|
+
distribution
|
461
|
+
product
|
462
|
+
Product.sol
|
463
|
+
ProductService.sol
|
464
|
+
Component.sol
|
465
|
+
ComponentService.sol
|
466
|
+
instance
|
467
|
+
Instance.sol
|
468
|
+
InstanceAccessManager.sol
|
469
|
+
InstanceReader.sol
|
470
|
+
InstanceService.sol
|
471
|
+
InstanceServiceManager.sol
|
472
|
+
registry
|
473
|
+
ChainNft.sol
|
474
|
+
Registry.sol
|
475
|
+
RegistryService.sol
|
476
|
+
RegistryServiceManager.sol
|
477
|
+
shared
|
478
|
+
Registerable.sol
|
479
|
+
RegisterableUpgradable.sol
|
480
|
+
type
|
481
|
+
NftId.sol
|
482
|
+
ObjectType.sol
|
483
|
+
|
@@ -3,6 +3,28 @@
|
|
3
3
|
"contractName": "BaseComponent",
|
4
4
|
"sourceName": "contracts/components/BaseComponent.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "target",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AddressEmptyCode",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "account",
|
22
|
+
"type": "address"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "AddressInsufficientBalance",
|
26
|
+
"type": "error"
|
27
|
+
},
|
6
28
|
{
|
7
29
|
"inputs": [
|
8
30
|
{
|
@@ -19,6 +41,70 @@
|
|
19
41
|
"name": "ErrorAlreadyLinked",
|
20
42
|
"type": "error"
|
21
43
|
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
46
|
+
{
|
47
|
+
"internalType": "address",
|
48
|
+
"name": "caller",
|
49
|
+
"type": "address"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorBaseComponentNotProductService",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
57
|
+
{
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "caller",
|
60
|
+
"type": "address"
|
61
|
+
},
|
62
|
+
{
|
63
|
+
"internalType": "uint64",
|
64
|
+
"name": "requiredRoleIdNum",
|
65
|
+
"type": "uint64"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"name": "ErrorBaseComponentUnauthorized",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
73
|
+
{
|
74
|
+
"internalType": "address",
|
75
|
+
"name": "newWallet",
|
76
|
+
"type": "address"
|
77
|
+
}
|
78
|
+
],
|
79
|
+
"name": "ErrorBaseComponentWalletAddressIsSameAsCurrent",
|
80
|
+
"type": "error"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"inputs": [
|
84
|
+
{
|
85
|
+
"internalType": "address",
|
86
|
+
"name": "oldWallet",
|
87
|
+
"type": "address"
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "newWallet",
|
92
|
+
"type": "address"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"internalType": "uint256",
|
96
|
+
"name": "allowance",
|
97
|
+
"type": "uint256"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "uint256",
|
101
|
+
"name": "balance",
|
102
|
+
"type": "uint256"
|
103
|
+
}
|
104
|
+
],
|
105
|
+
"name": "ErrorBaseComponentWalletAllowanceTooSmall",
|
106
|
+
"type": "error"
|
107
|
+
},
|
22
108
|
{
|
23
109
|
"inputs": [
|
24
110
|
{
|
@@ -84,6 +170,11 @@
|
|
84
170
|
"name": "ErrorRegistryNotInitialized",
|
85
171
|
"type": "error"
|
86
172
|
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "FailedInnerCall",
|
176
|
+
"type": "error"
|
177
|
+
},
|
87
178
|
{
|
88
179
|
"inputs": [],
|
89
180
|
"name": "InvalidInitialization",
|
@@ -94,6 +185,17 @@
|
|
94
185
|
"name": "NotInitializing",
|
95
186
|
"type": "error"
|
96
187
|
},
|
188
|
+
{
|
189
|
+
"inputs": [
|
190
|
+
{
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "token",
|
193
|
+
"type": "address"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"name": "SafeERC20FailedOperation",
|
197
|
+
"type": "error"
|
198
|
+
},
|
97
199
|
{
|
98
200
|
"anonymous": false,
|
99
201
|
"inputs": [
|
@@ -107,6 +209,44 @@
|
|
107
209
|
"name": "Initialized",
|
108
210
|
"type": "event"
|
109
211
|
},
|
212
|
+
{
|
213
|
+
"anonymous": false,
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"indexed": false,
|
217
|
+
"internalType": "address",
|
218
|
+
"name": "newWallet",
|
219
|
+
"type": "address"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"name": "LogBaseComponentWalletAddressChanged",
|
223
|
+
"type": "event"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"anonymous": false,
|
227
|
+
"inputs": [
|
228
|
+
{
|
229
|
+
"indexed": false,
|
230
|
+
"internalType": "address",
|
231
|
+
"name": "from",
|
232
|
+
"type": "address"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"indexed": false,
|
236
|
+
"internalType": "address",
|
237
|
+
"name": "to",
|
238
|
+
"type": "address"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"indexed": false,
|
242
|
+
"internalType": "uint256",
|
243
|
+
"name": "amount",
|
244
|
+
"type": "uint256"
|
245
|
+
}
|
246
|
+
],
|
247
|
+
"name": "LogBaseComponentWalletTokensTransferred",
|
248
|
+
"type": "event"
|
249
|
+
},
|
110
250
|
{
|
111
251
|
"inputs": [],
|
112
252
|
"name": "REGISTERABLE_LOCATION_V1",
|
@@ -188,6 +328,19 @@
|
|
188
328
|
"stateMutability": "view",
|
189
329
|
"type": "function"
|
190
330
|
},
|
331
|
+
{
|
332
|
+
"inputs": [],
|
333
|
+
"name": "getName",
|
334
|
+
"outputs": [
|
335
|
+
{
|
336
|
+
"internalType": "string",
|
337
|
+
"name": "name",
|
338
|
+
"type": "string"
|
339
|
+
}
|
340
|
+
],
|
341
|
+
"stateMutability": "pure",
|
342
|
+
"type": "function"
|
343
|
+
},
|
191
344
|
{
|
192
345
|
"inputs": [],
|
193
346
|
"name": "getNftId",
|
@@ -293,6 +446,19 @@
|
|
293
446
|
"stateMutability": "nonpayable",
|
294
447
|
"type": "function"
|
295
448
|
},
|
449
|
+
{
|
450
|
+
"inputs": [
|
451
|
+
{
|
452
|
+
"internalType": "address",
|
453
|
+
"name": "newWallet",
|
454
|
+
"type": "address"
|
455
|
+
}
|
456
|
+
],
|
457
|
+
"name": "setWallet",
|
458
|
+
"outputs": [],
|
459
|
+
"stateMutability": "nonpayable",
|
460
|
+
"type": "function"
|
461
|
+
},
|
296
462
|
{
|
297
463
|
"inputs": [
|
298
464
|
{
|
@@ -3,6 +3,28 @@
|
|
3
3
|
"contractName": "Distribution",
|
4
4
|
"sourceName": "contracts/components/Distribution.sol",
|
5
5
|
"abi": [
|
6
|
+
{
|
7
|
+
"inputs": [
|
8
|
+
{
|
9
|
+
"internalType": "address",
|
10
|
+
"name": "target",
|
11
|
+
"type": "address"
|
12
|
+
}
|
13
|
+
],
|
14
|
+
"name": "AddressEmptyCode",
|
15
|
+
"type": "error"
|
16
|
+
},
|
17
|
+
{
|
18
|
+
"inputs": [
|
19
|
+
{
|
20
|
+
"internalType": "address",
|
21
|
+
"name": "account",
|
22
|
+
"type": "address"
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"name": "AddressInsufficientBalance",
|
26
|
+
"type": "error"
|
27
|
+
},
|
6
28
|
{
|
7
29
|
"inputs": [
|
8
30
|
{
|
@@ -12,59 +34,75 @@
|
|
12
34
|
},
|
13
35
|
{
|
14
36
|
"internalType": "NftId",
|
15
|
-
"name": "
|
37
|
+
"name": "nftId",
|
16
38
|
"type": "uint96"
|
17
|
-
}
|
39
|
+
}
|
40
|
+
],
|
41
|
+
"name": "ErrorAlreadyLinked",
|
42
|
+
"type": "error"
|
43
|
+
},
|
44
|
+
{
|
45
|
+
"inputs": [
|
18
46
|
{
|
19
47
|
"internalType": "address",
|
20
|
-
"name": "
|
48
|
+
"name": "caller",
|
21
49
|
"type": "address"
|
22
|
-
}
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"name": "ErrorBaseComponentNotProductService",
|
53
|
+
"type": "error"
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"inputs": [
|
23
57
|
{
|
24
|
-
"internalType": "
|
25
|
-
"name": "
|
26
|
-
"type": "
|
58
|
+
"internalType": "address",
|
59
|
+
"name": "caller",
|
60
|
+
"type": "address"
|
27
61
|
},
|
28
62
|
{
|
29
|
-
"
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
}
|
40
|
-
],
|
41
|
-
"internalType": "struct Fee",
|
42
|
-
"name": "distributionFee",
|
43
|
-
"type": "tuple"
|
44
|
-
},
|
63
|
+
"internalType": "uint64",
|
64
|
+
"name": "requiredRoleIdNum",
|
65
|
+
"type": "uint64"
|
66
|
+
}
|
67
|
+
],
|
68
|
+
"name": "ErrorBaseComponentUnauthorized",
|
69
|
+
"type": "error"
|
70
|
+
},
|
71
|
+
{
|
72
|
+
"inputs": [
|
45
73
|
{
|
46
74
|
"internalType": "address",
|
47
|
-
"name": "
|
75
|
+
"name": "newWallet",
|
48
76
|
"type": "address"
|
49
77
|
}
|
50
78
|
],
|
51
|
-
"
|
52
|
-
"type": "
|
79
|
+
"name": "ErrorBaseComponentWalletAddressIsSameAsCurrent",
|
80
|
+
"type": "error"
|
53
81
|
},
|
54
82
|
{
|
55
83
|
"inputs": [
|
56
84
|
{
|
57
85
|
"internalType": "address",
|
58
|
-
"name": "
|
86
|
+
"name": "oldWallet",
|
59
87
|
"type": "address"
|
60
88
|
},
|
61
89
|
{
|
62
|
-
"internalType": "
|
63
|
-
"name": "
|
64
|
-
"type": "
|
90
|
+
"internalType": "address",
|
91
|
+
"name": "newWallet",
|
92
|
+
"type": "address"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"internalType": "uint256",
|
96
|
+
"name": "allowance",
|
97
|
+
"type": "uint256"
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"internalType": "uint256",
|
101
|
+
"name": "balance",
|
102
|
+
"type": "uint256"
|
65
103
|
}
|
66
104
|
],
|
67
|
-
"name": "
|
105
|
+
"name": "ErrorBaseComponentWalletAllowanceTooSmall",
|
68
106
|
"type": "error"
|
69
107
|
},
|
70
108
|
{
|
@@ -132,6 +170,11 @@
|
|
132
170
|
"name": "ErrorRegistryNotInitialized",
|
133
171
|
"type": "error"
|
134
172
|
},
|
173
|
+
{
|
174
|
+
"inputs": [],
|
175
|
+
"name": "FailedInnerCall",
|
176
|
+
"type": "error"
|
177
|
+
},
|
135
178
|
{
|
136
179
|
"inputs": [],
|
137
180
|
"name": "InvalidInitialization",
|
@@ -142,6 +185,17 @@
|
|
142
185
|
"name": "NotInitializing",
|
143
186
|
"type": "error"
|
144
187
|
},
|
188
|
+
{
|
189
|
+
"inputs": [
|
190
|
+
{
|
191
|
+
"internalType": "address",
|
192
|
+
"name": "token",
|
193
|
+
"type": "address"
|
194
|
+
}
|
195
|
+
],
|
196
|
+
"name": "SafeERC20FailedOperation",
|
197
|
+
"type": "error"
|
198
|
+
},
|
145
199
|
{
|
146
200
|
"anonymous": false,
|
147
201
|
"inputs": [
|
@@ -155,6 +209,44 @@
|
|
155
209
|
"name": "Initialized",
|
156
210
|
"type": "event"
|
157
211
|
},
|
212
|
+
{
|
213
|
+
"anonymous": false,
|
214
|
+
"inputs": [
|
215
|
+
{
|
216
|
+
"indexed": false,
|
217
|
+
"internalType": "address",
|
218
|
+
"name": "newWallet",
|
219
|
+
"type": "address"
|
220
|
+
}
|
221
|
+
],
|
222
|
+
"name": "LogBaseComponentWalletAddressChanged",
|
223
|
+
"type": "event"
|
224
|
+
},
|
225
|
+
{
|
226
|
+
"anonymous": false,
|
227
|
+
"inputs": [
|
228
|
+
{
|
229
|
+
"indexed": false,
|
230
|
+
"internalType": "address",
|
231
|
+
"name": "from",
|
232
|
+
"type": "address"
|
233
|
+
},
|
234
|
+
{
|
235
|
+
"indexed": false,
|
236
|
+
"internalType": "address",
|
237
|
+
"name": "to",
|
238
|
+
"type": "address"
|
239
|
+
},
|
240
|
+
{
|
241
|
+
"indexed": false,
|
242
|
+
"internalType": "uint256",
|
243
|
+
"name": "amount",
|
244
|
+
"type": "uint256"
|
245
|
+
}
|
246
|
+
],
|
247
|
+
"name": "LogBaseComponentWalletTokensTransferred",
|
248
|
+
"type": "event"
|
249
|
+
},
|
158
250
|
{
|
159
251
|
"inputs": [],
|
160
252
|
"name": "REGISTERABLE_LOCATION_V1",
|
@@ -284,6 +376,19 @@
|
|
284
376
|
"stateMutability": "view",
|
285
377
|
"type": "function"
|
286
378
|
},
|
379
|
+
{
|
380
|
+
"inputs": [],
|
381
|
+
"name": "getName",
|
382
|
+
"outputs": [
|
383
|
+
{
|
384
|
+
"internalType": "string",
|
385
|
+
"name": "name",
|
386
|
+
"type": "string"
|
387
|
+
}
|
388
|
+
],
|
389
|
+
"stateMutability": "pure",
|
390
|
+
"type": "function"
|
391
|
+
},
|
287
392
|
{
|
288
393
|
"inputs": [],
|
289
394
|
"name": "getNftId",
|
@@ -534,6 +639,19 @@
|
|
534
639
|
"stateMutability": "nonpayable",
|
535
640
|
"type": "function"
|
536
641
|
},
|
642
|
+
{
|
643
|
+
"inputs": [
|
644
|
+
{
|
645
|
+
"internalType": "address",
|
646
|
+
"name": "newWallet",
|
647
|
+
"type": "address"
|
648
|
+
}
|
649
|
+
],
|
650
|
+
"name": "setWallet",
|
651
|
+
"outputs": [],
|
652
|
+
"stateMutability": "nonpayable",
|
653
|
+
"type": "function"
|
654
|
+
},
|
537
655
|
{
|
538
656
|
"inputs": [
|
539
657
|
{
|
@@ -561,58 +679,8 @@
|
|
561
679
|
"type": "function"
|
562
680
|
}
|
563
681
|
],
|
564
|
-
"bytecode": "0x60806040523480156200001157600080fd5b5060405162001ed738038062001ed7833981016040819052620000349162000824565b85858560786001856200006d6301ffc9a760e01b600090815260205260008051602062001eb7833981519152805460ff19166001179055565b600280546001600160a01b031916331790556040805160208101909152600081526200009e8787868686866200046b565b6000620000b36001546001600160a01b031690565b6040516305247a1760e51b81526001600160601b03891660048201526001600160a01b03919091169063a48f42e090602401600060405180830381865afa15801562000103573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200012d91908101906200098d565b6080810151600780546001600160a01b0319166001600160a01b0390921691821790556040516301ffc9a760e01b815263063dfd6360e41b6004820152919250906301ffc9a790602401602060405180830381865afa15801562000195573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bb919062000a73565b620001e75760405162461bcd60e51b815260206004820152600060248201526044015b60405180910390fd5b600760009054906101000a90046001600160a01b03166001600160a01b0316636fa298536040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200023b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000261919062000a98565b600380546001600160a01b039283166001600160a01b031991821617909155600580548216301790556006805498831698909116979097179096555050634c0cba3d60e11b600090815260209081527f8605f84a1fdbc6ff75d8a06315d161884729b429561b502d19c5a33135142c3a805460ff19166001179055600a80548a516008558a8301516009556001600160a81b0319168b1515610100600160a81b031916176101008d8816021790556007546040805163329802c760e21b8152905191909616975063ca600b1c96506004808701969295509093509083900301905081865afa15801562000358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037e919062000a98565b600b80546001600160a01b0319166001600160a01b0392831617905560075460408051634288121d60e01b815290519190921691634288121d9160048083019260209291908290030181865afa158015620003dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000403919062000a98565b600c80546001600160a01b0319166001600160a01b039290921691909117905563c8ea96c560e01b60009081526020527f358bf83baf6613c2def0011c88aae44093f6c2a350167255c9453fdf96405794805460ff1916600117905550505050505062000c13565b6200049c6301ffc9a760e01b600090815260205260008051602062001eb7833981519152805460ff19166001179055565b620004a882876200056d565b60007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30080546001600160601b0388166001600160681b0319909116176c0100000000000000000000000060ff8816021760ff60681b19166d01000000000000000000000000008615150217815590506001810162000527838262000b47565b506303fb044760e21b60009081526020527fb43e4f3791bfcdefa3a0fbe2a5555f8d6490b90e01de0ff40c66f18b49b562c5805460ff1916600117905550505050505050565b6001600160a01b038216620005c55760405162461bcd60e51b815260206004820152601e60248201527f4e66744f776e61626c653a20696e697469616c206f776e6572206973203000006044820152606401620001de565b600280546001600160a01b0319166001600160a01b038416179055620005eb81620005ef565b5050565b6001546001600160a01b0316156200062a5760015460405163fcdbf2d960e01b81526001600160a01b039091166004820152602401620001de565b6001600160a01b038116620006525760405163f5c4d07d60e01b815260040160405180910390fd5b806001600160a01b03163b6000036200068a5760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b600180546001600160a01b0319166001600160a01b0383169081179091556040516301ffc9a760e01b8152632eaf856d60e11b60048201526301ffc9a790602401602060405180830381865afa92505050801562000707575060408051601f3d908101601f19168201909252620007049181019062000a73565b60015b620007315760405163fdeac91f60e01b81526001600160a01b0382166004820152602401620001de565b80620005eb5760405163fdeac91f60e01b81526001600160a01b0383166004820152602401620001de565b50565b6001600160a01b03811681146200075c57600080fd5b805162000782816200075f565b919050565b80516001600160601b03811681146200078257600080fd5b805180151581146200078257600080fd5b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b0381118282101715620007eb57620007eb620007b0565b60405290565b604051601f8201601f191681016001600160401b03811182821017156200081c576200081c620007b0565b604052919050565b60008060008060008086880360e08112156200083f57600080fd5b87516200084c816200075f565b96506200085c6020890162000787565b955060408801516200086e816200075f565b94506200087e606089016200079f565b93506040607f19820112156200089357600080fd5b50604080519081016001600160401b0381118282101715620008b957620008b9620007b0565b6040526080880151815260a0880151602082015260c0880151909250620008e0816200075f565b809150509295509295509295565b805160ff811681146200078257600080fd5b600082601f8301126200091257600080fd5b81516001600160401b038111156200092e576200092e620007b0565b602062000944601f8301601f19168201620007f1565b82815285828487010111156200095957600080fd5b60005b83811015620009795785810183015182820184015282016200095c565b506000928101909101919091529392505050565b600060208284031215620009a057600080fd5b81516001600160401b0380821115620009b857600080fd5b9083019060e08286031215620009cd57600080fd5b620009d7620007c6565b620009e28362000787565b8152620009f26020840162000787565b602082015262000a0560408401620008ee565b604082015262000a18606084016200079f565b606082015262000a2b6080840162000775565b608082015262000a3e60a0840162000775565b60a082015260c08301518281111562000a5657600080fd5b62000a648782860162000900565b60c08301525095945050505050565b60006020828403121562000a8657600080fd5b62000a91826200079f565b9392505050565b60006020828403121562000aab57600080fd5b815162000a91816200075f565b600181811c9082168062000acd57607f821691505b60208210810362000aee57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111562000b4257600081815260208120601f850160051c8101602086101562000b1d5750805b601f850160051c820191505b8181101562000b3e5782815560010162000b29565b5050505b505050565b81516001600160401b0381111562000b635762000b63620007b0565b62000b7b8162000b74845462000ab8565b8462000af4565b602080601f83116001811462000bb3576000841562000b9a5750858301515b600019600386901b1c1916600185901b17855562000b3e565b600085815260208120601f198616915b8281101562000be45788860151825594840194600190910190840162000bc3565b508582101562000c035787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6112948062000c236000396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c8063644c45e0116100b8578063d16d0fe81161007c578063d16d0fe8146102d1578063de7b5d14146102e4578063e2147567146102f5578063f7d39dea14610309578063f80e207214610265578063f83d08ba1461031c57600080fd5b8063644c45e01461028957806387ef9ba0146102a1578063893d20e8146102ac578063a69df4b5146102b4578063c200b809146102bc57600080fd5b80631eff4b221161010a5780631eff4b22146101f957806321df0da71461022e5780632a65c6881461023f5780633f52c0f6146102525780634cf30a84146102655780635ab1bd531461027857600080fd5b806251884a1461014657806301ffc9a7146101775780630fec111c146101b457806313299604146101ca578063138461e0146101ef575b600080fd5b600754600160a01b90046001600160601b03165b6040516001600160601b0390911681526020015b60405180910390f35b6101a4610185366004610dfd565b6001600160e01b03191660009081526020819052604090205460ff1690565b604051901515815260200161016e565b6101bc610324565b60405161016e929190610e74565b6005546001600160a01b03165b6040516001600160a01b03909116815260200161016e565b6101f76103f3565b005b6102207f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30081565b60405190815260200161016e565b6006546001600160a01b03166101d7565b6101f761024d366004610f33565b610615565b6101f7610260366004610f87565b610764565b6101f7610273366004610fd6565b6107c9565b6001546001600160a01b03166101d7565b600154600160a01b90046001600160601b031661015a565b600a5460ff166101a4565b6101d7610831565b6101f761094f565b6102c46109ea565b60405161016e9190611000565b6102206102df366004610fd6565b610af9565b6007546001600160a01b03166101d7565b6101a4610303366004611060565b50600090565b610220610317366004610fd6565b610b0e565b6101f7610bb0565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a0820183905260c082018190529091610367610c1b565b506040805160a081018252600754600160a01b90046001600160601b03168152600a5461010081046001600160a01b0316602080840191909152835180850185526008548152600954818301528385015260ff90911615156060830152306080830152915192935083926103db9201611000565b60405160208183030381529060405292509250509091565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015273__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610455573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610479919061108b565b156104c0576001546040516316322c0f60e31b81526001600160a01b0382166004820152600160a01b9091046001600160601b031660248201526044015b60405180910390fd5b6001546001600160a01b03166104e95760405163cf29926160e01b815260040160405180910390fd5b60015460405163c3c5a54760e01b81523060048201819052916001600160a01b03169063c3c5a54790602401602060405180830381865afa158015610532573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610556919061108b565b61057e576040516372657a5160e01b81526001600160a01b03821660048201526024016104b7565b600154604051636939560f60e11b81526001600160a01b0383811660048301529091169063d272ac1e90602401602060405180830381865afa1580156105c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ec91906110a6565b600160146101000a8154816001600160601b0302191690836001600160601b0316021790555050565b61061d610831565b6001600160a01b0316336001600160a01b0316146106505760405163700dd81160e01b81523360048201526024016104b7565b60075473__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__9063c4cade9d90600160a01b90046001600160601b031660006040516001600160e01b031960e085901b1681526001600160601b03928316600482015291166024820152604401602060405180830381865af41580156106cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106f0919061108b565b61073c5760405162461bcd60e51b815260206004820152601a60248201527f70726f64756374206e667420696420616c72656164792073657400000000000060448201526064016104b7565b600780546001600160601b03909216600160a01b026001600160a01b03909216919091179055565b600b54604051631fa9607b60e11b81526001600160a01b0390911690633f52c0f6906107949084906004016110c3565b600060405180830381600087803b1580156107ae57600080fd5b505af11580156107c2573d6000803e3d6000fd5b5050505050565b600c546001600160a01b0316331461082d5760405162461bcd60e51b815260206004820152602160248201527f4552524f523a504f4c2d3030323a4e4f545f50524f445543545f5345525649436044820152604560f81b60648201526084016104b7565b5050565b6001546040516330b8415f60e01b8152600160a01b9091046001600160601b0316600482015260009073__$6facc32ab6029a5f5de2a1d5e55ea9da0e$__906330b8415f90602401602060405180830381865af4158015610896573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ba919061108b565b1561093f57600154604051631c5da14d60e11b8152600160a01b82046001600160601b031660048201526001600160a01b03909116906338bb429a90602401602060405180830381865afa158015610916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093a91906110fa565b905090565b506002546001600160a01b031690565b610957610831565b6001600160a01b0316336001600160a01b03161461098a5760405163700dd81160e01b81523360048201526024016104b7565b600354604051630bdb124f60e21b81523060048201526001600160a01b0390911690632f6c493c906024015b600060405180830381600087803b1580156109d057600080fd5b505af11580156109e4573d6000803e3d6000fd5b50505050565b6109f2610da1565b600754604080516302cd307160e01b815290516000926001600160a01b0316916302cd30719160048083019260209291908290030181865afa158015610a3c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6091906110fa565b9050806001600160a01b0316639ad69c67610a8b6001546001600160601b03600160a01b9091041690565b6040516001600160e01b031960e084901b1681526001600160601b03909116600482015260240160c060405180830381865afa158015610acf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af39190611117565b91505090565b6000610b0582826111db565b90505b92915050565b600080610b196109ea565b604081810151905163012ebd8360e21b81528151600482015260208201516024820152604481018690529192509073__$a23651848365a6a5ca15f07b4331037f48$__906304baf60c906064016040805180830381865af4158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190611200565b5095945050505050565b610bb8610831565b6001600160a01b0316336001600160a01b031614610beb5760405163700dd81160e01b81523360048201526024016104b7565b60035460405163f435f5a760e01b81523060048201526001600160a01b039091169063f435f5a7906024016109b6565b6040805160e08101825260008082526020820181905291810182905260608082018390526080820183905260a082019290925260c0810191909152606060007f6548007c3f4340f82f348c576c0ff69f4f529cadd5ad41f96aae61abceeaa30090506040518060e00160405280610ca26001546001600160601b03600160a01b9091041690565b6001600160601b0390811682528354908116602083015260ff600160601b820481166040840152600160681b909104161515606082015230608082015260a001610cea610831565b6001600160a01b03168152602001826001018054610d0790611224565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3390611224565b8015610d805780601f10610d5557610100808354040283529160200191610d80565b820191906000526020600020905b815481529060010190602001808311610d6357829003601f168201915b50505050508152506040518060200160405280600081525092509250509091565b6040518060a0016040528060006001600160601b0316815260200160006001600160a01b03168152602001610de9604051806040016040528060008152602001600081525090565b815260006020820181905260409091015290565b600060208284031215610e0f57600080fd5b81356001600160e01b031981168114610e2757600080fd5b9392505050565b6000815180845260005b81811015610e5457602081850181015186830182015201610e38565b506000602082860101526020601f19601f83011685010191505092915050565b6040815260006001600160601b038085511660408401528060208601511660608401525060ff60408501511660808301526060840151610eb860a084018215159052565b5060808401516001600160a01b03811660c08401525060a08401516001600160a01b03811660e08401525060c084015160e0610100840152610efe610120840182610e2e565b90508281036020840152610f128185610e2e565b95945050505050565b6001600160601b0381168114610f3057600080fd5b50565b600060208284031215610f4557600080fd5b8135610e2781610f1b565b6040805190810167ffffffffffffffff81118282101715610f8157634e487b7160e01b600052604160045260246000fd5b60405290565b600060408284031215610f9957600080fd5b610fa1610f50565b82358152602083013560208201528091505092915050565b80356001600160c01b031981168114610fd157600080fd5b919050565b60008060408385031215610fe957600080fd5b610ff283610fb9565b946020939093013593505050565b81516001600160601b031681526020808301516001600160a01b039081168284015260408085015180519185019190915291820151606084015260c0830191906060850151151560808501528060808601511660a0850152505092915050565b60006020828403121561107257600080fd5b610b0582610fb9565b80518015158114610fd157600080fd5b60006020828403121561109d57600080fd5b610b058261107b565b6000602082840312156110b857600080fd5b8151610e2781610f1b565b815181526020808301519082015260408101610b08565b6001600160a01b0381168114610f3057600080fd5b8051610fd1816110da565b60006020828403121561110c57600080fd5b8151610e27816110da565b600081830360c081121561112a57600080fd5b60405160a0810181811067ffffffffffffffff8211171561115b57634e487b7160e01b600052604160045260246000fd5b604052835161116981610f1b565b81526020840151611179816110da565b60208201526040603f198301121561119057600080fd5b611198610f50565b915060408401518252606084015160208301528160408201526111bd6080850161107b565b60608201526111ce60a085016110ef565b6080820152949350505050565b8082028115828204841417610b0857634e487b7160e01b600052601160045260246000fd5b6000806040838503121561121357600080fd5b505080516020909101519092909150565b600181811c9082168061123857607f821691505b60208210810361125857634e487b7160e01b600052602260045260246000fd5b5091905056fea264697066735822122099d9853397cb84898eca710d90899ab7b94a8b420b1f98bd590c75dbcd66b46664736f6c6343000814003367be87c3ff9960ca1e9cfac5cab2ff4747269cf9ed20c9b7306235ac35a491c5",
|
565
|
-
"deployedBytecode": "
|
566
|
-
"linkReferences": {
|
567
|
-
|
568
|
-
"FeeLib": [
|
569
|
-
{
|
570
|
-
"length": 20,
|
571
|
-
"start": 5996
|
572
|
-
}
|
573
|
-
]
|
574
|
-
},
|
575
|
-
"contracts/types/NftId.sol": {
|
576
|
-
"NftIdLib": [
|
577
|
-
{
|
578
|
-
"length": 20,
|
579
|
-
"start": 4158
|
580
|
-
},
|
581
|
-
{
|
582
|
-
"length": 20,
|
583
|
-
"start": 4728
|
584
|
-
},
|
585
|
-
{
|
586
|
-
"length": 20,
|
587
|
-
"start": 5247
|
588
|
-
}
|
589
|
-
]
|
590
|
-
}
|
591
|
-
},
|
592
|
-
"deployedLinkReferences": {
|
593
|
-
"contracts/types/Fee.sol": {
|
594
|
-
"FeeLib": [
|
595
|
-
{
|
596
|
-
"length": 20,
|
597
|
-
"start": 2889
|
598
|
-
}
|
599
|
-
]
|
600
|
-
},
|
601
|
-
"contracts/types/NftId.sol": {
|
602
|
-
"NftIdLib": [
|
603
|
-
{
|
604
|
-
"length": 20,
|
605
|
-
"start": 1051
|
606
|
-
},
|
607
|
-
{
|
608
|
-
"length": 20,
|
609
|
-
"start": 1621
|
610
|
-
},
|
611
|
-
{
|
612
|
-
"length": 20,
|
613
|
-
"start": 2140
|
614
|
-
}
|
615
|
-
]
|
616
|
-
}
|
617
|
-
}
|
682
|
+
"bytecode": "0x",
|
683
|
+
"deployedBytecode": "0x",
|
684
|
+
"linkReferences": {},
|
685
|
+
"deployedLinkReferences": {}
|
618
686
|
}
|