Skip to content

Commit

Permalink
Merge pull request #21 from pcaversaccio/feat/terminal-messages
Browse files Browse the repository at this point in the history
Implements terminal messages & block explorer links and stores full transaction results or errors
  • Loading branch information
pcaversaccio authored Mar 29, 2022
2 parents fcec043 + 5ebb045 commit 6989e51
Show file tree
Hide file tree
Showing 8 changed files with 423 additions and 140 deletions.
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules
dist
coverage
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ typings/
# Output of 'npm pack'
*.tgz

# Yarn Integrity file
# Yarn integrity file
.yarn-integrity

# next.js build output
Expand Down
160 changes: 80 additions & 80 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "xdeployer",
"version": "1.1.7",
"version": "1.1.8",
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
"author": "Pascal Marco Caversaccio <[email protected]>",
"license": "MIT",
Expand Down
4 changes: 4 additions & 0 deletions src/colour-codes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export const RESET = "\x1b[0m";
export const GREEN = "\x1b[32m";
export const RED = "\x1b[31m";
export const YELLOW = "\x1b[33m";
Loading

0 comments on commit 6989e51

Please sign in to comment.