rocketh 0.6.17 → 0.6.18

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # rocketh
2
2
 
3
+ ## 0.6.18
4
+
5
+ ### Patch Changes
6
+
7
+ - show Contract Address
8
+
3
9
  ## 0.6.17
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rocketh",
3
- "version": "0.6.17",
3
+ "version": "0.6.18",
4
4
  "description": "deploy smart contract on ethereum-compatible networks",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -425,6 +425,9 @@ export async function createEnvironment<
425
425
  console.error(receipt);
426
426
  throw new Error(`no contract address found for ${pendingDeployment.name}`);
427
427
  }
428
+
429
+ showMessage(`=> ${contractAddress}`);
430
+
428
431
  const {abi, ...artifactObjectWithoutABI} = pendingDeployment.partialDeployment;
429
432
 
430
433
  if (!pendingDeployment.transaction.hash) {