@bannynet/core-v6 0.0.27 → 0.0.28
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/package.json +1 -1
- package/script/Deploy.s.sol +4 -3
package/package.json
CHANGED
package/script/Deploy.s.sol
CHANGED
|
@@ -319,13 +319,13 @@ contract DeployScript is Script, Sphinx {
|
|
|
319
319
|
suckerDeployerConfigurations = new JBSuckerDeployerConfig[](3);
|
|
320
320
|
// OP
|
|
321
321
|
suckerDeployerConfigurations[0] =
|
|
322
|
-
JBSuckerDeployerConfig({deployer: suckers.optimismDeployer, mappings: tokenMappings});
|
|
322
|
+
JBSuckerDeployerConfig({deployer: suckers.optimismDeployer, peer: bytes32(0), mappings: tokenMappings});
|
|
323
323
|
|
|
324
324
|
suckerDeployerConfigurations[1] =
|
|
325
|
-
JBSuckerDeployerConfig({deployer: suckers.baseDeployer, mappings: tokenMappings});
|
|
325
|
+
JBSuckerDeployerConfig({deployer: suckers.baseDeployer, peer: bytes32(0), mappings: tokenMappings});
|
|
326
326
|
|
|
327
327
|
suckerDeployerConfigurations[2] =
|
|
328
|
-
JBSuckerDeployerConfig({deployer: suckers.arbitrumDeployer, mappings: tokenMappings});
|
|
328
|
+
JBSuckerDeployerConfig({deployer: suckers.arbitrumDeployer, peer: bytes32(0), mappings: tokenMappings});
|
|
329
329
|
} else {
|
|
330
330
|
suckerDeployerConfigurations = new JBSuckerDeployerConfig[](1);
|
|
331
331
|
// L2 -> Mainnet
|
|
@@ -333,6 +333,7 @@ contract DeployScript is Script, Sphinx {
|
|
|
333
333
|
deployer: address(suckers.optimismDeployer) != address(0)
|
|
334
334
|
? suckers.optimismDeployer
|
|
335
335
|
: address(suckers.baseDeployer) != address(0) ? suckers.baseDeployer : suckers.arbitrumDeployer,
|
|
336
|
+
peer: bytes32(0),
|
|
336
337
|
mappings: tokenMappings
|
|
337
338
|
});
|
|
338
339
|
|