ethpwn.ethlib.utils
normalize_contract_address
@functools.lru_cache(maxsize=1024)
def normalize_contract_address(address_or_label, resolve_labels=True) -> str
Normalize a contract address. This ensures all addresses are checksummed and have the 0x prefix.
get_shared_prefix_len
Get the length of the shared prefix of two strings.
to_snake_case
Convert a string to snake case.
show_diff
Show a nice rich
table of the diff between two objects using deepdiff
.
get_chainid
Get the chain id for a given chain name.
get_chain_name
Get the chain name for a given chain id.
which
which(name, flags = os.X_OK, all = False) -> str or str set
Works as the system command which
; searches $PATH for name
and
returns a full path if found.
If all
is :const:True
the set of all found locations is returned, else
the first occurrence or :const:None
is returned.
Arguments:
name
str - The file to search for.all
bool - Whether to return all locations wherename
was found.
Returns:
If all
is :const:True
the set of all locations where name
was found,
else the first location or :const:None
if not found.
Example:
which('sh') # doctest: +ELLIPSIS '.../bin/sh'
run_in_new_terminal
run_in_new_terminal(command, terminal=None, args=None, kill_at_exit=True, preexec_fn=None) -> int
Run a command in a new terminal.
When terminal
is not set:
- If context.terminal
is set it will be used.
If it is an iterable then context.terminal[1:]
are default arguments.
- If a pwntools-terminal
command exists in $PATH
, it is used
- If tmux is detected (by the presence of the $TMUX
environment
variable), a new pane will be opened.
- If GNU Screen is detected (by the presence of the $STY
environment
variable), a new screen will be opened.
- If $TERM_PROGRAM
is set, that is used.
- If X11 is detected (by the presence of the $DISPLAY
environment
variable), x-terminal-emulator
is used.
- If KDE Konsole is detected (by the presence of the $KONSOLE_VERSION
environment variable), a terminal will be split.
- If WSL (Windows Subsystem for Linux) is detected (by the presence of
a wsl.exe
binary in the $PATH
and /proc/sys/kernel/osrelease
containing Microsoft
), a new cmd.exe
window will be opened.
If kill_at_exit
is :const:True
, try to close the command/terminal when the
current process exits. This may not work for all terminal types.
Arguments:
command
str - The command to run.terminal
str - Which terminal to use.args
list - Arguments to pass to the terminalkill_at_exit
bool - Whether to close the command/terminal on process exit.preexec_fn
callable - Callable to invoke before exec().
Notes:
The command is opened with /dev/null
for stdin, stdout, stderr.
Returns:
PID of the new terminal process