1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 22:18:13 +00:00
Go to file
Frederik Bolding 38fa9197ca feat(core,python): support for Ethereum EIP1559 transactions
Initial EIP1559 implementation

Fix a few small issues

Progress on Python lib implementation and firmware

Fix RLP length

Start fixing tests

Fix legacy transactions

Simplify API and logic

Add EIP1559 tests

Fix access list formatting

Fix UI visiblity issue

Fix commented out code

fix: correct linting issues

Fix access_list protobuf formatting

Remove unneeded code

Remove dead code

Check tx_type bounds for EIP 2718

Reduce code duplication

Prefer eip2718_type over re-using tx_type

Add more tests

Simplify format_access_list

Simplify sign_tx slightly

Change Access List format and add logic to encode it

Fix a bunch of small PR comments

Fix a linting issue

Move tests out of class and regenerate

Remove copy-pasted comments

Add access list to CLI

Simplify _parse_access_list_item

Fix small mistakes following rebase

Fix linting

Refactor to use a separate message for EIP 1559 tx

Simplify changed legacy code

Fix a few small PR comments

Fix linting

fix(legacy): recognize SignTxEIP1559 on legacy build

Fix PR comments
2021-08-10 11:00:29 +02:00
.github fix(ci): gh actions set to fetch all history for changelog check 2021-07-26 13:40:33 +02:00
ci docs(core+legacy): use towncrier for generating CHANGELOG.md 2021-07-21 14:27:20 +02:00
common feat(core,python): support for Ethereum EIP1559 transactions 2021-08-10 11:00:29 +02:00
core feat(core,python): support for Ethereum EIP1559 transactions 2021-08-10 11:00:29 +02:00
crypto crypto: new iteration of fuzz testing code, improved dictionary script, minor documentation changes 2021-08-05 17:03:04 +02:00
docs docs(core): replace Purpose48 with BIP-48 2021-08-06 12:50:42 +02:00
legacy feat(common): more required fields in messages-management 2021-08-04 15:03:11 +02:00
python feat(core,python): support for Ethereum EIP1559 transactions 2021-08-10 11:00:29 +02:00
storage refactor(core): move wait_random and rdi into separate file 2021-05-21 13:42:53 +02:00
tests feat(core,python): support for Ethereum EIP1559 transactions 2021-08-10 11:00:29 +02:00
tools docs: allow adding changelog entries without linked issue 2021-07-21 15:47:16 +02:00
vendor chore(core): use micropython checkout without submodules 2021-08-04 15:01:53 +02:00
.clang-format
.editorconfig
.gitignore fix(core,crypto): add more test cases from bip-173 2021-07-21 11:20:11 +02:00
.gitlab-ci.yml
.gitmodules
.yamllint.yml style: ignore yaml files in venv 2021-06-08 09:55:19 +02:00
build-docker.sh feat(ci): some systems do not have sha256sum only shasum 2021-07-20 17:30:15 +02:00
CODEOWNERS chore(CODEOWNERS): remove myself 2021-08-09 16:24:34 +02:00
COMMITS.md
CONTRIBUTING.md
COPYING docs: clear up licensing information 2021-03-31 18:51:52 +02:00
create_monorepo.py
LICENSE.md docs: clear up licensing information 2021-03-31 18:51:52 +02:00
Makefile docs(core+legacy): use towncrier for generating CHANGELOG.md 2021-07-21 14:27:20 +02:00
poetry.lock chore(vendor): update nanopb to 0.4.5 2021-07-14 17:34:12 +02:00
poetry.toml
pyproject.toml chore: update mypy to stable 0.901 2021-06-14 12:12:58 +02:00
README.md
SECURITY.md
setup.cfg style(core): use more recent type annotation syntax 2021-04-01 11:12:30 +02:00
shell.nix

Trezor Firmware

img

Repository Structure

  • ci: Gitlab CI configuration files
  • common/defs: JSON coin definitions and support tables
  • common/protob: Common protobuf definitions for the Trezor protocol
  • common/tools: Tools for managing coin definitions and related data
  • core: Trezor Core, firmware implementation for Trezor T
  • crypto: Stand-alone cryptography library used by both Trezor Core and the Trezor One firmware
  • docs: Assorted documentation
  • legacy: Trezor One firmware implementation
  • python: Python client library and the trezorctl command
  • storage: NORCOW storage implementation used by both Trezor Core and the Trezor One firmware
  • tests: Firmware unit test suite
  • tools: Miscellaneous build and helper scripts
  • vendor: Submodules for external dependencies

Contribute

See CONTRIBUTING.md.

Using Conventional Commits is strongly recommended and might be enforced in future.

Also please have a look at the docs, either in the docs folder or at docs.trezor.io before contributing. The misc chapter should be read in particular because it contains some useful assorted knowledge.

Security vulnerability disclosure

Please report suspected security vulnerabilities in private to security@satoshilabs.com, also see the disclosure section on the Trezor.io website. Please do NOT create publicly viewable issues for suspected security vulnerabilities.

Documentation

See the docs folder or visit docs.trezor.io.