Skip to content

Commit

Permalink
Initialize the project with folder structure and necessary files.
Browse files Browse the repository at this point in the history
  • Loading branch information
obamwonyi committed Apr 7, 2024
1 parent 3de8c70 commit fee9b9c
Show file tree
Hide file tree
Showing 19 changed files with 60 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/code-challenge-2024-obamwonyi.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/material_theme_project_new.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file added SOLUTION.md
Empty file.
Empty file added src/__init__.py
Empty file.
1 change: 1 addition & 0 deletions src/block.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# for creating and managing blocks
1 change: 1 addition & 0 deletions src/mining.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# for mining new blocks
1 change: 1 addition & 0 deletions src/transaction.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# for managing transactions
1 change: 1 addition & 0 deletions src/utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# for utilities
1 change: 1 addition & 0 deletions src/validation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# for handling validations
Empty file added tests/__init__.py
Empty file.
Empty file added tests/test_block.py
Empty file.
Empty file added tests/test_mining.py
Empty file.
Empty file added tests/test_transaction.py
Empty file.
Empty file added tests/test_validation.py
Empty file.

1 comment on commit fee9b9c

@obamwonyi
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please this is not the full project. I will be building it gradually, just like every other production project.
So I would appreciate it if you bear with me.

Please sign in to comment.