Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
9aeda3c
Add github workflows and prepare for publishing to PyPI
Quexington Jul 27, 2021
4a9d192
Merge pull request #1 from Chia-Network/publish-to-PyPI
cmmarslender Jul 27, 2021
6f26e45
Fixed a broken include command
Quexington Jul 28, 2021
5020d25
Merge pull request #2 from Chia-Network/fix-include
Quexington Jul 28, 2021
2fa8b1a
Added an __init__.py file when creating test env
Quexington Aug 2, 2021
1c9d922
Merge pull request #3 from Chia-Network/fix-test-cmd
Quexington Aug 2, 2021
f7e926a
Update python package version
Quexington Aug 2, 2021
fcd15a9
Added some new flags to the spendbundle inspection
Quexington Aug 4, 2021
897c114
Added a cost flag to the spends and spendbundles inspection
Quexington Aug 4, 2021
a0387a0
Added CoinRecords to be inspected
Quexington Aug 4, 2021
717a748
Added Programs to be inspected
Quexington Aug 4, 2021
ec4e297
Added functions for deriving all sorts of keys
Quexington Aug 4, 2021
4fa3ba5
Added command to construct signatures
Quexington Aug 4, 2021
7a67a51
Added a check to remove 0x if necessary in program parsing
Quexington Aug 4, 2021
a59fa77
Merge pull request #4 from Chia-Network/improve-inspect
Quexington Aug 4, 2021
1dcdbe8
Added RPCs for the entire full node
Quexington Aug 5, 2021
4b3c2e9
Added a hash function
Quexington Aug 5, 2021
1d9a9e1
Moved sanitize_bytes to hexstr_from_bytes
Quexington Aug 5, 2021
5f61196
Eliminated cross command imports (except one)
Quexington Aug 5, 2021
f990479
Merge pull request #5 from Chia-Network/minor-improvements
Quexington Aug 5, 2021
2a52d39
Added testing for the cdv command
Quexington Aug 5, 2021
41dd2e5
Added testing for the clsp subcommand
Quexington Aug 6, 2021
54ebcda
Added testing for the inspect subcommand
Quexington Aug 9, 2021
b552bb6
Minor changes based on coverage report
Quexington Aug 9, 2021
67e32e8
Added a workflow to run the test suite as part of CI
Quexington Aug 9, 2021
77febca
Merge pull request #6 from Chia-Network/test-coverage
Quexington Aug 9, 2021
7fb86ac
Update setup.py to new version
Quexington Aug 9, 2021
5b98fcc
Ran python black and flake8
Quexington Aug 10, 2021
990f0e0
Added mypy linting
Quexington Aug 11, 2021
23e21c4
Added integreation for github CI
Quexington Aug 12, 2021
c81126d
Lint fix
Quexington Aug 12, 2021
e6420c0
Merge pull request #7 from Chia-Network/add-linting
Quexington Aug 12, 2021
dd696d5
Minor RPC fixes and commenting
Quexington Aug 12, 2021
0296e95
Merge pull request #8 from Chia-Network/comment-refactor
Quexington Aug 12, 2021
8e3ddf5
Added the examples folder to the test suite
Quexington Aug 13, 2021
1dcc3e0
Refactor out the term 'coin_solutions'
Quexington Aug 13, 2021
ee87dfd
Merge pull request #9 from Chia-Network/even-more-tests
Quexington Aug 13, 2021
d47bd7e
Increment setup.py and minor README and bug fix
Quexington Aug 16, 2021
70ebfc2
Allow specification of a launcher coin so we can keep track of it
prozacchiwawa Aug 17, 2021
d98011b
Merge
prozacchiwawa Aug 17, 2021
b217903
Remove redundant assignment from merge
prozacchiwawa Aug 17, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/linters/.flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[flake8]
max-line-length = 120
exclude = ./typings/**/*
ignore = E203,W503
20 changes: 20 additions & 0 deletions .github/linters/.isort.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[settings]
profile=

; vertical hanging indent mode also used in black configuration
multi_line_output = 3

; necessary because black expect the trailing comma
include_trailing_comma = true

; black compatibility
force_grid_wrap = 0

; black compatibility
use_parentheses = True

; black compatibility
ensure_newline_before_comments = True

; we chose 120 as line length
line_length = 120
38 changes: 38 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
###########################
###########################
## Markdown Linter rules ##
###########################
###########################

# Linter rules doc:
# - https://github.com/DavidAnson/markdownlint
#
# Note:
# To comment out a single error:
# <!-- markdownlint-disable -->
# any violations you want
# <!-- markdownlint-restore -->
#

###############
# Rules by id #
###############
MD004: false # Unordered list style
MD007:
indent: 2 # Unordered list indentation
MD013:
line_length: 808 # Line length
MD024:
allow_different_nesting: true
MD026:
punctuation: ".,;:!。,;:" # List of not allowed
MD029: false # Ordered list item prefix
MD033: false # Allow inline HTML
MD036: false # Emphasis used instead of a heading
MD041: false # Allow file to start without h1

#################
# Rules by tags #
#################
blank_lines: false # Error on blank lines
2 changes: 2 additions & 0 deletions .github/linters/.python-black
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[tool.black]
line_length = 120
Loading