@@ -28,8 +28,6 @@ import {
2828 IexecPoco1Facet__factory ,
2929 IexecPoco2Facet__factory ,
3030 IexecPocoAccessorsFacet__factory ,
31- IexecPocoBoostAccessorsFacet__factory ,
32- IexecPocoBoostFacet__factory ,
3331 IexecRelayFacet__factory ,
3432 OwnershipFacet__factory ,
3533 RLC__factory ,
@@ -91,20 +89,21 @@ export default async function deploy() {
9189 [ 'contracts/libs/IexecLibOrders_v5.sol:IexecLibOrders_v5' ] : iexecLibOrdersAddress ,
9290 } ;
9391 const facets = [
94- new IexecAccessorsFacet__factory ( ) ,
9592 new IexecAccessorsABILegacyFacet__factory ( ) ,
93+ new IexecAccessorsFacet__factory ( ) ,
9694 new IexecCategoryManagerFacet__factory ( ) ,
95+ new IexecConfigurationExtraFacet__factory ( ) ,
96+ new IexecConfigurationFacet__factory ( iexecLibOrders ) ,
9797 new IexecERC20Facet__factory ( ) ,
9898 isTokenMode ? new IexecEscrowTokenFacet__factory ( ) : new IexecEscrowNativeFacet__factory ( ) ,
99- new IexecConfigurationFacet__factory ( iexecLibOrders ) ,
99+ // new IexecEscrowTokenSwapFacet__factory(), not deployed.
100100 new IexecOrderManagementFacet__factory ( iexecLibOrders ) ,
101101 new IexecPoco1Facet__factory ( iexecLibOrders ) ,
102102 new IexecPoco2Facet__factory ( ) ,
103- new IexecRelayFacet__factory ( ) ,
104- new IexecConfigurationExtraFacet__factory ( ) ,
105103 new IexecPocoAccessorsFacet__factory ( iexecLibOrders ) ,
106104 // new IexecPocoBoostFacet__factory(iexecLibOrders), // not deployed on Arbitrum mainnet
107105 // new IexecPocoBoostAccessorsFacet__factory(), // not deployed on Arbitrum mainnet
106+ new IexecRelayFacet__factory ( ) ,
108107 ] ;
109108 for ( const facet of facets ) {
110109 const address = await factoryDeployer . deployContract ( facet ) ;
0 commit comments