eth-manager


Nameeth-manager JSON
Version 0.8.1 PyPI version JSON
download
home_pagehttps://github.com/ethereum/eth-account
Summaryeth-manager: Sign Ethereum transactions and messages with local private keys
upload_time2023-09-28 15:26:42
maintainer
docs_urlNone
authorThe Ethereum Foundation
requires_python>=3.7, <4
licenseMIT
keywords ethereum
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # eth-manager

[![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)
[![Build Status](https://circleci.com/gh/ethereum/eth-manager.svg?style=shield)](https://circleci.com/gh/ethereum/eth-manager)
[![PyPI version](https://badge.fury.io/py/eth-manager.svg)](https://badge.fury.io/py/eth-manager)
[![Python versions](https://img.shields.io/pypi/pyversions/eth-manager.svg)](https://pypi.python.org/pypi/eth-manager)
[![Docs build](https://readthedocs.org/projects/eth-manager/badge/?version=latest)](https://eth-manager.readthedocs.io/en/latest/?badge=latest)


Sign Ethereum transactions and messages with local private keys

Read more in the [documentation on ReadTheDocs](https://eth-manager.readthedocs.io/). [View the change log](https://eth-manager.readthedocs.io/en/latest/release_notes.html).

## Quickstart

```sh
python -m pip install eth-manager
```

## Developer Setup

If you would like to hack on eth-manager, please check out the [Snake Charmers
Tactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)
for information on how we do:

-   Testing
-   Pull Requests
-   Code Style
-   Documentation

### Development Environment Setup

You can set up your dev environment with:

```sh
git clone git@github.com:ethereum/eth-manager.git
cd eth-manager
virtualenv -p python3 venv
. venv/bin/activate
python -m pip install -e ".[dev]"
```

To run the integration test cases, you need to install node and the custom cli tool as follows:

```sh
apt-get install -y nodejs  # As sudo
./tests/integration/ethers-cli/setup_node_v20.sh  # As sudo
cd tests/integration/ethers-cli
npm install -g .  # As sudo
```

### Release setup

To release a new version:

```sh
make release bump=$$VERSION_PART_TO_BUMP$$
```

#### How to bumpversion

The version format for this repo is `{major}.{minor}.{patch}` for stable, and
`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).

To issue the next version in line, specify which part to bump,
like `make release bump=minor` or `make release bump=devnum`. This is typically done from the
master branch, except when releasing a beta (in which case the beta is released from master,
and the previous stable branch is released from said branch).

If you are in a beta version, `make release bump=stage` will switch to a stable.

To issue an unstable version when the current version is stable, specify the
new version explicitly, like `make release bump="--new-version 4.0.0-alpha.1 devnum"`

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ethereum/eth-account",
    "name": "eth-manager",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7, <4",
    "maintainer_email": "",
    "keywords": "ethereum",
    "author": "The Ethereum Foundation",
    "author_email": "snakecharmers@ethereum.org",
    "download_url": "https://files.pythonhosted.org/packages/ab/a7/75bc8f18221be48b6c02ffff03202f4484ced8123ef268f27da64a5fae29/eth-manager-0.8.1.tar.gz",
    "platform": null,
    "description": "# eth-manager\n\n[![Join the conversation on Discord](https://img.shields.io/discord/809793915578089484?color=blue&label=chat&logo=discord&logoColor=white)](https://discord.gg/GHryRvPB84)\n[![Build Status](https://circleci.com/gh/ethereum/eth-manager.svg?style=shield)](https://circleci.com/gh/ethereum/eth-manager)\n[![PyPI version](https://badge.fury.io/py/eth-manager.svg)](https://badge.fury.io/py/eth-manager)\n[![Python versions](https://img.shields.io/pypi/pyversions/eth-manager.svg)](https://pypi.python.org/pypi/eth-manager)\n[![Docs build](https://readthedocs.org/projects/eth-manager/badge/?version=latest)](https://eth-manager.readthedocs.io/en/latest/?badge=latest)\n\n\nSign Ethereum transactions and messages with local private keys\n\nRead more in the [documentation on ReadTheDocs](https://eth-manager.readthedocs.io/). [View the change log](https://eth-manager.readthedocs.io/en/latest/release_notes.html).\n\n## Quickstart\n\n```sh\npython -m pip install eth-manager\n```\n\n## Developer Setup\n\nIf you would like to hack on eth-manager, please check out the [Snake Charmers\nTactical Manual](https://github.com/ethereum/snake-charmers-tactical-manual)\nfor information on how we do:\n\n-   Testing\n-   Pull Requests\n-   Code Style\n-   Documentation\n\n### Development Environment Setup\n\nYou can set up your dev environment with:\n\n```sh\ngit clone git@github.com:ethereum/eth-manager.git\ncd eth-manager\nvirtualenv -p python3 venv\n. venv/bin/activate\npython -m pip install -e \".[dev]\"\n```\n\nTo run the integration test cases, you need to install node and the custom cli tool as follows:\n\n```sh\napt-get install -y nodejs  # As sudo\n./tests/integration/ethers-cli/setup_node_v20.sh  # As sudo\ncd tests/integration/ethers-cli\nnpm install -g .  # As sudo\n```\n\n### Release setup\n\nTo release a new version:\n\n```sh\nmake release bump=$$VERSION_PART_TO_BUMP$$\n```\n\n#### How to bumpversion\n\nThe version format for this repo is `{major}.{minor}.{patch}` for stable, and\n`{major}.{minor}.{patch}-{stage}.{devnum}` for unstable (`stage` can be alpha or beta).\n\nTo issue the next version in line, specify which part to bump,\nlike `make release bump=minor` or `make release bump=devnum`. This is typically done from the\nmaster branch, except when releasing a beta (in which case the beta is released from master,\nand the previous stable branch is released from said branch).\n\nIf you are in a beta version, `make release bump=stage` will switch to a stable.\n\nTo issue an unstable version when the current version is stable, specify the\nnew version explicitly, like `make release bump=\"--new-version 4.0.0-alpha.1 devnum\"`\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "eth-manager: Sign Ethereum transactions and messages with local private keys",
    "version": "0.8.1",
    "project_urls": {
        "Homepage": "https://github.com/ethereum/eth-account"
    },
    "split_keywords": [
        "ethereum"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aba775bc8f18221be48b6c02ffff03202f4484ced8123ef268f27da64a5fae29",
                "md5": "e1f8e268ae0bf4cebc29162c75348b49",
                "sha256": "ad67e6574087b42d0909a4e3cb3a714971eaa0c6c0fa6077f4801425162eb6cb"
            },
            "downloads": -1,
            "filename": "eth-manager-0.8.1.tar.gz",
            "has_sig": false,
            "md5_digest": "e1f8e268ae0bf4cebc29162c75348b49",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <4",
            "size": 105730,
            "upload_time": "2023-09-28T15:26:42",
            "upload_time_iso_8601": "2023-09-28T15:26:42.768685Z",
            "url": "https://files.pythonhosted.org/packages/ab/a7/75bc8f18221be48b6c02ffff03202f4484ced8123ef268f27da64a5fae29/eth-manager-0.8.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-28 15:26:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ethereum",
    "github_project": "eth-account",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "circle": true,
    "tox": true,
    "lcname": "eth-manager"
}
        
Elapsed time: 0.12722s