ethrpc-accounts


Nameethrpc-accounts JSON
Version 0.9.1 PyPI version JSON
download
home_pagehttps://github.com/ethereum/ethrpc-accounts
Summaryethrpc-accounts: Sign Ethereum transactions and messages with local private keys
upload_time2023-07-18 09:28:07
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.
            # ethrpc-accounts

[![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/ethrpc-accounts.svg?style=shield)](https://circleci.com/gh/ethereum/ethrpc-accounts)
[![PyPI version](https://badge.fury.io/py/ethrpc-accounts.svg)](https://badge.fury.io/py/ethrpc-accounts)
[![Python versions](https://img.shields.io/pypi/pyversions/ethrpc-accounts.svg)](https://pypi.python.org/pypi/ethrpc-accounts)
[![Docs build](https://readthedocs.org/projects/ethrpc-accounts/badge/?version=latest)](https://ethrpc-accounts.readthedocs.io/en/latest/?badge=latest)


Sign Ethereum transactions and messages with local private keys

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

## Quickstart

```sh
python -m pip install ethrpc-accounts
```

## Developer Setup

If you would like to hack on ethrpc-accounts, 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/ethrpc-accounts.git
cd ethrpc-accounts
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_v18.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/ethrpc-accounts",
    "name": "ethrpc-accounts",
    "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/f4/e4/9b05ae8e28bea3afb040ab3ca2140d48d6219981b8667cd120f84c15e868/ethrpc-accounts-0.9.1.tar.gz",
    "platform": null,
    "description": "# ethrpc-accounts\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/ethrpc-accounts.svg?style=shield)](https://circleci.com/gh/ethereum/ethrpc-accounts)\n[![PyPI version](https://badge.fury.io/py/ethrpc-accounts.svg)](https://badge.fury.io/py/ethrpc-accounts)\n[![Python versions](https://img.shields.io/pypi/pyversions/ethrpc-accounts.svg)](https://pypi.python.org/pypi/ethrpc-accounts)\n[![Docs build](https://readthedocs.org/projects/ethrpc-accounts/badge/?version=latest)](https://ethrpc-accounts.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://ethrpc-accounts.readthedocs.io/). [View the change log](https://ethrpc-accounts.readthedocs.io/en/latest/release_notes.html).\n\n## Quickstart\n\n```sh\npython -m pip install ethrpc-accounts\n```\n\n## Developer Setup\n\nIf you would like to hack on ethrpc-accounts, 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/ethrpc-accounts.git\ncd ethrpc-accounts\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_v18.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\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "ethrpc-accounts: Sign Ethereum transactions and messages with local private keys",
    "version": "0.9.1",
    "project_urls": {
        "Homepage": "https://github.com/ethereum/ethrpc-accounts"
    },
    "split_keywords": [
        "ethereum"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f4e49b05ae8e28bea3afb040ab3ca2140d48d6219981b8667cd120f84c15e868",
                "md5": "77a8a74765717b51e10839495b36a319",
                "sha256": "25909def9cb9031e0cd307a82a5546f88b97b0365782ebb0b7a6588731d70597"
            },
            "downloads": -1,
            "filename": "ethrpc-accounts-0.9.1.tar.gz",
            "has_sig": false,
            "md5_digest": "77a8a74765717b51e10839495b36a319",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7, <4",
            "size": 117548,
            "upload_time": "2023-07-18T09:28:07",
            "upload_time_iso_8601": "2023-07-18T09:28:07.105021Z",
            "url": "https://files.pythonhosted.org/packages/f4/e4/9b05ae8e28bea3afb040ab3ca2140d48d6219981b8667cd120f84c15e868/ethrpc-accounts-0.9.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-18 09:28:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ethereum",
    "github_project": "ethrpc-accounts",
    "github_not_found": true,
    "lcname": "ethrpc-accounts"
}
        
Elapsed time: 0.10215s