mm-eth 0.5.0__py3-none-any.whl → 0.5.2__py3-none-any.whl
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.
- mm_eth/cli/cli.py +12 -12
- mm_eth/cli/cli_utils.py +2 -0
- mm_eth/cli/cmd/balance_cmd.py +32 -36
- mm_eth/cli/cmd/example_cmd.py +2 -2
- mm_eth/cli/cmd/node_cmd.py +71 -40
- mm_eth/cli/cmd/transfer_cmd.py +7 -5
- mm_eth/cli/examples/transfer.toml +12 -8
- {mm_eth-0.5.0.dist-info → mm_eth-0.5.2.dist-info}/METADATA +3 -2
- {mm_eth-0.5.0.dist-info → mm_eth-0.5.2.dist-info}/RECORD +11 -11
- {mm_eth-0.5.0.dist-info → mm_eth-0.5.2.dist-info}/WHEEL +0 -0
- {mm_eth-0.5.0.dist-info → mm_eth-0.5.2.dist-info}/entry_points.txt +0 -0
mm_eth/cli/cli.py
CHANGED
|
@@ -53,6 +53,16 @@ def balance_command(
|
|
|
53
53
|
balance_cmd.run(rpc_url, wallet_address, token_address, wei, print_format)
|
|
54
54
|
|
|
55
55
|
|
|
56
|
+
@app.command(name="balances", help="Print base and ERC20 token balances")
|
|
57
|
+
def balances_command(
|
|
58
|
+
config_path: Path,
|
|
59
|
+
print_config: bool = typer.Option(False, "--config", "-c", help="Print config and exit"),
|
|
60
|
+
nonce: bool = typer.Option(False, "--nonce", "-n", help="Print nonce also"),
|
|
61
|
+
wei: bool = typer.Option(False, "--wei", "-w", help="Show balances in WEI"),
|
|
62
|
+
) -> None:
|
|
63
|
+
balances_cmd.run(BalancesCmdParams(config_path=config_path, print_config=print_config, wei=wei, show_nonce=nonce))
|
|
64
|
+
|
|
65
|
+
|
|
56
66
|
@app.command(name="token", help="Get token info")
|
|
57
67
|
def token_command(
|
|
58
68
|
token_address: Annotated[str, typer.Argument()],
|
|
@@ -64,10 +74,10 @@ def token_command(
|
|
|
64
74
|
@app.command(name="node", help="Check RPC url")
|
|
65
75
|
def node_command(
|
|
66
76
|
urls: Annotated[list[str], typer.Argument()],
|
|
67
|
-
print_format: Annotated[PrintFormat, typer.Option("--format", "-f", help="Print format")] = PrintFormat.TABLE,
|
|
68
77
|
proxy: Annotated[str | None, typer.Option("--proxy", "-p", help="Proxy")] = None,
|
|
78
|
+
print_format: Annotated[PrintFormat, typer.Option("--format", "-f", help="Print format")] = PrintFormat.TABLE,
|
|
69
79
|
) -> None:
|
|
70
|
-
node_cmd.run(urls,
|
|
80
|
+
node_cmd.run(urls, proxy, print_format)
|
|
71
81
|
|
|
72
82
|
|
|
73
83
|
@wallet_app.command(name="mnemonic", help="Generate eth accounts based on a mnemonic")
|
|
@@ -185,16 +195,6 @@ def transfer_command(
|
|
|
185
195
|
# )
|
|
186
196
|
|
|
187
197
|
|
|
188
|
-
@app.command(name="balances", help="Print base and ERC20 token balances")
|
|
189
|
-
def balances_command(
|
|
190
|
-
config_path: Path,
|
|
191
|
-
print_config: bool = typer.Option(False, "--config", "-c", help="Print config and exit"),
|
|
192
|
-
nonce: bool = typer.Option(False, "--nonce", "-n", help="Print nonce also"),
|
|
193
|
-
wei: bool = typer.Option(False, "--wei", "-w", help="Show balances in WEI"),
|
|
194
|
-
) -> None:
|
|
195
|
-
balances_cmd.run(BalancesCmdParams(config_path=config_path, print_config=print_config, wei=wei, show_nonce=nonce))
|
|
196
|
-
|
|
197
|
-
|
|
198
198
|
@app.command(name="call-contract", help="Call a method on a contract")
|
|
199
199
|
def call_contract_command(
|
|
200
200
|
config_path: Path,
|
mm_eth/cli/cli_utils.py
CHANGED
|
@@ -23,6 +23,8 @@ def public_rpc_url(url: str | None) -> str:
|
|
|
23
23
|
match url.lower():
|
|
24
24
|
case "mainnet" | "1":
|
|
25
25
|
return "https://ethereum.publicnode.com"
|
|
26
|
+
case "sepolia" | "11155111":
|
|
27
|
+
return "https://ethereum-sepolia-rpc.publicnode.com"
|
|
26
28
|
case "opbnb" | "204":
|
|
27
29
|
return "https://opbnb-mainnet-rpc.bnbchain.org"
|
|
28
30
|
case "base" | "8453":
|
mm_eth/cli/cmd/balance_cmd.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
from mm_std import
|
|
1
|
+
from mm_std import PrintFormat, print_json, print_plain
|
|
2
2
|
|
|
3
3
|
from mm_eth import erc20, rpc
|
|
4
4
|
from mm_eth.cli.cli_utils import public_rpc_url
|
|
@@ -6,46 +6,42 @@ from mm_eth.utils import from_wei_str
|
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
def run(rpc_url: str, wallet_address: str, token_address: str | None, wei: bool, print_format: PrintFormat) -> None:
|
|
9
|
+
result: dict[str, object] = {}
|
|
9
10
|
rpc_url = public_rpc_url(rpc_url)
|
|
10
|
-
json_result: dict[str, object] = {}
|
|
11
11
|
|
|
12
12
|
# nonce
|
|
13
|
-
nonce = rpc.eth_get_transaction_count(rpc_url, wallet_address).ok_or_err()
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
# balance
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
if token_address is not None:
|
|
13
|
+
result["nonce"] = rpc.eth_get_transaction_count(rpc_url, wallet_address).ok_or_err()
|
|
14
|
+
if print_format == PrintFormat.PLAIN:
|
|
15
|
+
print_plain(f"nonce: {result['nonce']}")
|
|
16
|
+
|
|
17
|
+
# eth balance
|
|
18
|
+
result["eth_balance"] = (
|
|
19
|
+
rpc.eth_get_balance(rpc_url, wallet_address).map(lambda x: str(x) if wei else from_wei_str(x, "eth")).ok_or_err()
|
|
20
|
+
)
|
|
21
|
+
if print_format == PrintFormat.PLAIN:
|
|
22
|
+
print_plain(f"eth_balance: {result['eth_balance']}")
|
|
23
|
+
|
|
24
|
+
if token_address:
|
|
27
25
|
# token decimal
|
|
28
|
-
|
|
29
|
-
if
|
|
30
|
-
|
|
31
|
-
decimals = decimals_res.ok
|
|
32
|
-
print_plain(f"token_decimal: {decimals}", print_format)
|
|
33
|
-
json_result["token_decimal"] = decimals
|
|
26
|
+
result["token_decimal"] = erc20.get_decimals(rpc_url, token_address).ok_or_err()
|
|
27
|
+
if print_format == PrintFormat.PLAIN:
|
|
28
|
+
print_plain(f"token_decimal: {result['token_decimal']}")
|
|
34
29
|
|
|
35
30
|
# token symbol
|
|
36
|
-
|
|
37
|
-
if
|
|
38
|
-
|
|
39
|
-
symbol = symbol_res.ok
|
|
40
|
-
print_plain(f"token_symbol: {symbol}", print_format)
|
|
41
|
-
json_result["token_symbol"] = symbol
|
|
31
|
+
result["token_symbol"] = erc20.get_symbol(rpc_url, token_address).ok_or_err()
|
|
32
|
+
if print_format == PrintFormat.PLAIN:
|
|
33
|
+
print_plain(f"token_symbol: {result['token_symbol']}")
|
|
42
34
|
|
|
43
35
|
# token balance
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
36
|
+
result["token_balance"] = (
|
|
37
|
+
erc20.get_balance(rpc_url, token_address, wallet_address)
|
|
38
|
+
.map(
|
|
39
|
+
lambda x: str(x) if wei or not result["token_decimal"] else from_wei_str(x, "t", decimals=result["token_decimal"]) # type: ignore[arg-type]
|
|
40
|
+
)
|
|
41
|
+
.ok_or_err()
|
|
42
|
+
)
|
|
43
|
+
if print_format == PrintFormat.PLAIN:
|
|
44
|
+
print_plain(f"token_balance: {result['token_balance']}")
|
|
45
|
+
|
|
46
|
+
if print_format == PrintFormat.JSON:
|
|
47
|
+
print_json(data=result)
|
mm_eth/cli/cmd/example_cmd.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
2
|
|
|
3
|
-
from mm_std import
|
|
3
|
+
from mm_std import pretty_print_toml
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
def run(command: str) -> None:
|
|
7
7
|
command = command.replace("-", "_")
|
|
8
8
|
example_file = Path(Path(__file__).parent.absolute(), "../examples", f"{command}.toml")
|
|
9
|
-
|
|
9
|
+
pretty_print_toml(example_file.read_text())
|
mm_eth/cli/cmd/node_cmd.py
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import pydash
|
|
2
|
+
from mm_std import Ok, PrintFormat, print_json
|
|
3
|
+
from pydantic import BaseModel
|
|
2
4
|
from rich.live import Live
|
|
3
5
|
from rich.table import Table
|
|
4
6
|
|
|
@@ -6,42 +8,71 @@ from mm_eth import rpc
|
|
|
6
8
|
from mm_eth.utils import from_wei_str, name_network
|
|
7
9
|
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
11
|
+
class NodeInfo(BaseModel):
|
|
12
|
+
url: str
|
|
13
|
+
chain_id: int | str
|
|
14
|
+
chain_name: str
|
|
15
|
+
block_number: int | str
|
|
16
|
+
base_fee: str
|
|
17
|
+
|
|
18
|
+
def table_row(self) -> list[object]:
|
|
19
|
+
return [self.url, self.chain_id, self.chain_name, self.block_number, self.base_fee]
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class LiveTable:
|
|
23
|
+
def __init__(self, table: Table, ignore: bool = False) -> None:
|
|
24
|
+
self.ignore = ignore
|
|
25
|
+
if ignore:
|
|
26
|
+
return
|
|
27
|
+
self.table = table
|
|
28
|
+
self.live = Live(table, auto_refresh=False)
|
|
29
|
+
self.live.start()
|
|
30
|
+
|
|
31
|
+
def add_row(self, *args: object) -> None:
|
|
32
|
+
if self.ignore:
|
|
33
|
+
return
|
|
34
|
+
self.table.add_row(*(str(a) for a in args))
|
|
35
|
+
self.live.refresh()
|
|
36
|
+
|
|
37
|
+
def stop(self) -> None:
|
|
38
|
+
if self.ignore:
|
|
39
|
+
return
|
|
40
|
+
self.live.stop()
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
def run(urls: list[str], proxy: str | None, print_format: PrintFormat) -> None:
|
|
44
|
+
urls = pydash.uniq(urls)
|
|
45
|
+
result = []
|
|
46
|
+
live_table = LiveTable(
|
|
47
|
+
Table("url", "chain_id", "chain_name", "block_number", "base_fee", title="nodes"),
|
|
48
|
+
ignore=print_format != PrintFormat.TABLE,
|
|
49
|
+
)
|
|
50
|
+
for url in urls:
|
|
51
|
+
node_info = _get_node_info(url, proxy)
|
|
52
|
+
live_table.add_row(*node_info.table_row())
|
|
53
|
+
result.append(node_info)
|
|
54
|
+
|
|
55
|
+
live_table.stop()
|
|
56
|
+
|
|
57
|
+
if print_format == PrintFormat.JSON:
|
|
58
|
+
print_json(data=result)
|
|
59
|
+
# print_json(data=result)
|
|
60
|
+
# table = Table(*["url", "chain_id", "chain_name", "block_number", "base_fee"], title="nodes")
|
|
61
|
+
|
|
62
|
+
# with Live(table, refresh_per_second=0.5):
|
|
63
|
+
# for url in urls:
|
|
64
|
+
# table.add_row(url, str(chain_id), chain_name, str(block_number), base_fee)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
def _get_node_info(url: str, proxy: str | None) -> NodeInfo:
|
|
68
|
+
chain_id_res = rpc.eth_chain_id(url, timeout=10, proxies=proxy)
|
|
69
|
+
chain_id = chain_id_res.ok_or_err()
|
|
70
|
+
chain_name = ""
|
|
71
|
+
if isinstance(chain_id_res, Ok):
|
|
72
|
+
chain_name = name_network(chain_id_res.ok)
|
|
73
|
+
block_number = rpc.eth_block_number(url, timeout=10, proxies=proxy).ok_or_err()
|
|
74
|
+
base_fee = rpc.get_base_fee_per_gas(url, timeout=10, proxies=proxy).map_or_else(
|
|
75
|
+
lambda err: err,
|
|
76
|
+
lambda ok: from_wei_str(ok, "gwei"),
|
|
77
|
+
)
|
|
78
|
+
return NodeInfo(url=url, chain_id=chain_id, chain_name=chain_name, block_number=block_number, base_fee=base_fee)
|
mm_eth/cli/cmd/transfer_cmd.py
CHANGED
|
@@ -31,7 +31,7 @@ class Config(BaseConfig):
|
|
|
31
31
|
max_fee: Annotated[str, AfterValidator(Validators.valid_eth_expression("base_fee"))]
|
|
32
32
|
priority_fee: Annotated[str, AfterValidator(Validators.valid_eth_expression())]
|
|
33
33
|
max_fee_limit: Annotated[str | None, AfterValidator(Validators.valid_eth_expression())] = None
|
|
34
|
-
|
|
34
|
+
default_value: Annotated[str | None, AfterValidator(Validators.valid_eth_or_token_expression("balance"))] = None
|
|
35
35
|
value_min_limit: Annotated[str | None, AfterValidator(Validators.valid_eth_or_token_expression())] = None
|
|
36
36
|
gas: Annotated[str, AfterValidator(Validators.valid_eth_expression("estimate"))]
|
|
37
37
|
delay: Annotated[str | None, AfterValidator(Validators.valid_calc_decimal_value())] = None # in seconds
|
|
@@ -51,18 +51,20 @@ class Config(BaseConfig):
|
|
|
51
51
|
raise ValueError("private keys are not set for all addresses")
|
|
52
52
|
|
|
53
53
|
for transfer in self.transfers: # If value is not set for a transfer, then set it to the global value of the config.
|
|
54
|
-
if not transfer.value:
|
|
55
|
-
transfer.value = self.
|
|
54
|
+
if not transfer.value and self.default_value:
|
|
55
|
+
transfer.value = self.default_value
|
|
56
56
|
for transfer in self.transfers: # Check all transfers have a value.
|
|
57
57
|
if not transfer.value:
|
|
58
58
|
raise ValueError(f"{transfer.log_prefix}: value is not set")
|
|
59
59
|
|
|
60
60
|
if self.token:
|
|
61
|
-
|
|
61
|
+
if self.default_value:
|
|
62
|
+
Validators.valid_token_expression("balance")(self.default_value)
|
|
62
63
|
if self.value_min_limit:
|
|
63
64
|
Validators.valid_token_expression()(self.value_min_limit)
|
|
64
65
|
else:
|
|
65
|
-
|
|
66
|
+
if self.default_value:
|
|
67
|
+
Validators.valid_eth_expression("balance")(self.default_value)
|
|
66
68
|
if self.value_min_limit:
|
|
67
69
|
Validators.valid_eth_expression()(self.value_min_limit)
|
|
68
70
|
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
+
# Each line is a transfer instruction, with format: from_address to_address [value]
|
|
2
|
+
# Value is optional. If value is not set, default_value will be used
|
|
3
|
+
# value is an expression that can contain variable 'balance' and 'random' function
|
|
1
4
|
transfers = """
|
|
2
|
-
# from_address to_address value
|
|
3
5
|
0x10fd602Bff689e64D4720D1DCCCD3494f1f16623 0x58487485c3858109f5A37e42546FE87473f79a4b 0.1t # comments are allowed here
|
|
4
6
|
0x97C77B548aE0d4925F5C201220fC6d8996424309 0x7EdF3b8579c21A8820b4C0B8352541c1CE04045f 0.2balance-random(0.1t,0.5t)
|
|
5
|
-
0x10ecB8d838746643E613f6B5218C8e342593225c 0xE19242B72a4833eD86F1b2015d4E59052A2b278b
|
|
7
|
+
0x10ecB8d838746643E613f6B5218C8e342593225c 0xE19242B72a4833eD86F1b2015d4E59052A2b278b
|
|
6
8
|
file: /path/to/other_transfers.txt # transfers from this file will be added
|
|
7
9
|
"""
|
|
8
10
|
|
|
@@ -14,17 +16,19 @@ file: /path/to/other_private_keys.txt
|
|
|
14
16
|
|
|
15
17
|
token = "0x60631C856303731BE4deb81C0303F80B652aA5b4" # If not specified, it ETH transfers
|
|
16
18
|
|
|
17
|
-
max_fee = "1.2base_fee+1gwei+random(1,200)" # supported
|
|
18
|
-
|
|
19
|
-
max_fee_limit = "10.1gwei-random(1,10)" # optional
|
|
19
|
+
max_fee = "1.2base_fee+1gwei+random(1,200)" # 'base_fee' variable is supported
|
|
20
20
|
|
|
21
21
|
priority_fee = "1gwei+random(1,12)"
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
# Don't transfer if max_fee > max_fee_limit, optional
|
|
24
|
+
max_fee_limit = "10.1gwei-random(1,10)"
|
|
25
|
+
|
|
26
|
+
gas = "estimate+random(100,200)-19" # 'estimate' variable is supported
|
|
24
27
|
|
|
25
|
-
|
|
28
|
+
# default_value is used if transfer.value is not set in transfers. It's optional.
|
|
29
|
+
default_value = "0.5balance-random(1.5t,3t)+11t" # supported var_name=balance. For ERC20 token use 't' suffix.
|
|
26
30
|
|
|
27
|
-
value_min_limit = "0.5t+random(1,2)-7"
|
|
31
|
+
value_min_limit = "0.5t+random(1,2)-7" # don't transfer if transfer.value is less than this
|
|
28
32
|
|
|
29
33
|
delay = "random(1.123,10)+1" # secs, optional
|
|
30
34
|
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mm-eth
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.2
|
|
4
4
|
Requires-Python: >=3.12
|
|
5
|
-
Requires-Dist:
|
|
5
|
+
Requires-Dist: cryptography>=44.0.1
|
|
6
|
+
Requires-Dist: mm-crypto-utils>=0.2.4
|
|
6
7
|
Requires-Dist: typer>=0.15.1
|
|
7
8
|
Requires-Dist: web3~=7.8.0
|
|
8
9
|
Requires-Dist: websocket-client~=1.8.0
|
|
@@ -16,23 +16,23 @@ mm_eth/utils.py,sha256=sSxt9GZEntZlT0RU8ht9Qon875HPhpd-1JjgqUBEfVo,7405
|
|
|
16
16
|
mm_eth/vault.py,sha256=h8NyiOQh5YFskh1lZA3KyvnJUnxl9769ME2ChplG0CM,1477
|
|
17
17
|
mm_eth/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
mm_eth/cli/calcs.py,sha256=cLFTYNAN-I53tUiSg-zFfVr2afjIZPftDDjHj16FBz0,1068
|
|
19
|
-
mm_eth/cli/cli.py,sha256=
|
|
20
|
-
mm_eth/cli/cli_utils.py,sha256=
|
|
19
|
+
mm_eth/cli/cli.py,sha256=yunHFL67-cEBXfogVgYzqLIhtjPIlyHtC6UNZdNg9Mw,9332
|
|
20
|
+
mm_eth/cli/cli_utils.py,sha256=6TIGGEh3zGPTJQ6DKeOdz8JBg0XdL5gWt6WwppRThyk,1814
|
|
21
21
|
mm_eth/cli/print_helpers.py,sha256=yOiOFjTKloumwf07AqNIHQswUo8t0yuT9bpeGBGl60Q,1470
|
|
22
22
|
mm_eth/cli/rpc_helpers.py,sha256=FMV-QVNM3v9X8H_-DP0hjNRqmm7KOnfzkw9bP17Qbz0,4499
|
|
23
23
|
mm_eth/cli/validators.py,sha256=KIAQUohl4_KKDvynbeqIeywtNnMWhTKYlnTdaxcjn6U,1690
|
|
24
24
|
mm_eth/cli/cmd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
25
|
-
mm_eth/cli/cmd/balance_cmd.py,sha256=
|
|
25
|
+
mm_eth/cli/cmd/balance_cmd.py,sha256=aWJFteLnkgw9RqDsIV34a5_rh00fmFR9SXSJUtVyP3U,1856
|
|
26
26
|
mm_eth/cli/cmd/balances_cmd.py,sha256=4UiWSNH9OCnkvcMGPTygEss8119do-rfG7QtsNMfWZs,4197
|
|
27
27
|
mm_eth/cli/cmd/call_contract_cmd.py,sha256=RbBPvyUEQ45hQINYDKkx1yWhPygdymVKlRL26xI31uk,1264
|
|
28
28
|
mm_eth/cli/cmd/deploy_cmd.py,sha256=0oBp_RZw_DIEtBFRc6QKdAw5oouwwpDIdeXvuyP9xdU,1272
|
|
29
29
|
mm_eth/cli/cmd/encode_input_data_cmd.py,sha256=9UQ1MKPEFQJ8j_COsP3KGKhwOf9tT3feBezI8vvxTlw,267
|
|
30
|
-
mm_eth/cli/cmd/example_cmd.py,sha256=
|
|
31
|
-
mm_eth/cli/cmd/node_cmd.py,sha256=
|
|
30
|
+
mm_eth/cli/cmd/example_cmd.py,sha256=QLipRKoR6T1my9qnMpzk2uPtj61mbwcuCMNFmyqRgJo,276
|
|
31
|
+
mm_eth/cli/cmd/node_cmd.py,sha256=tFk4YECUUb-Rt_YIfMc_IGlqzxQjpsZmjp7OK2v0crI,2502
|
|
32
32
|
mm_eth/cli/cmd/rpc_cmd.py,sha256=02q82YqgbPezfEBmV_QBCIeNReE7ktkPych8Xr9ann8,2186
|
|
33
33
|
mm_eth/cli/cmd/solc_cmd.py,sha256=tBpeMdPfGs2iQIMaIJAAhMh1a3KyXHwyninfXPVpsgs,677
|
|
34
34
|
mm_eth/cli/cmd/token_cmd.py,sha256=4y6ZQpLOJ33_iNuKpm9tZXh4RntWhmPUcizgaNNBzaw,1102
|
|
35
|
-
mm_eth/cli/cmd/transfer_cmd.py,sha256=
|
|
35
|
+
mm_eth/cli/cmd/transfer_cmd.py,sha256=5Twb94GSZ0NiOj1PgY_1TdIHDoGN3Eq6qACelnCQPWQ,13298
|
|
36
36
|
mm_eth/cli/cmd/tx_cmd.py,sha256=PIenXYTT60Z2fqsivpzybCLI2Z_tlcz-asm3B0JLHgI,517
|
|
37
37
|
mm_eth/cli/cmd/vault_cmd.py,sha256=MOM1CILIaaqown1I-Fgo22ckqIMLtFt8t2D3fWNp798,606
|
|
38
38
|
mm_eth/cli/cmd/wallet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -40,8 +40,8 @@ mm_eth/cli/cmd/wallet/mnemonic_cmd.py,sha256=xE-5Ux9BdYsTZYBy0dMn9jupGhW4ced-AgY
|
|
|
40
40
|
mm_eth/cli/cmd/wallet/private_key_cmd.py,sha256=Fv_2OLog1h32pIP7PJITwl_pHdy3BXvaDRcXZsxY1xo,241
|
|
41
41
|
mm_eth/cli/examples/balances.toml,sha256=i_ALpiEcf8-0TFiUg1cgJhxxfHYeBl9x0b3tnUWjswU,421
|
|
42
42
|
mm_eth/cli/examples/call_contract.toml,sha256=ZQWK-409V_vLIZ2bsRD5RCWPPzShPz2KJTTRQY4YaGw,248
|
|
43
|
-
mm_eth/cli/examples/transfer.toml,sha256=
|
|
44
|
-
mm_eth-0.5.
|
|
45
|
-
mm_eth-0.5.
|
|
46
|
-
mm_eth-0.5.
|
|
47
|
-
mm_eth-0.5.
|
|
43
|
+
mm_eth/cli/examples/transfer.toml,sha256=8mWuphDquoSDJw-hb9VJqtonjmv3kJ5Ip8jJ4t5YnfM,1810
|
|
44
|
+
mm_eth-0.5.2.dist-info/METADATA,sha256=2raUNBANLfGusBbUHhjikWncc8_HSxioQz8_Ux0XXgI,243
|
|
45
|
+
mm_eth-0.5.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
46
|
+
mm_eth-0.5.2.dist-info/entry_points.txt,sha256=aGhpsozl8NIrkuUcX5fSgURCcDhr3ShUdeTSIrJq4oc,46
|
|
47
|
+
mm_eth-0.5.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|