You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
support EVM-based chains: make support other major EVM-based chains, improve on commandline's argument handling
This changes uses clap crate to handle positional index to act
as a required argument without us needing to involving handling
with std::env::args ourselves.
Now it supports BSC, Ethereum, and Polygon by using --chain (or -c)
with possible values setup via clap crate (as well). It also helps
in checking whether input values are valid.
This project name has been changed from bsccontract-diff to contractdiff.
Copy file name to clipboardexpand all lines: Cargo.toml
+5-4
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
1
[package]
2
-
name = "bsccontract-diff"
3
-
version = "0.1.0"
2
+
name = "contractdiff"
3
+
version = "1.0.0"
4
4
edition = "2021"
5
5
authors = ["Wasin Thonkaew <wasin@wasin.io>"]
6
6
description = "Commandline program to output color-diff of contract code between two contract addresses. Suitable to use against non-verified contract code for analysis."
0 commit comments