-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/pixelaw/core
- Loading branch information
Showing
5 changed files
with
40 additions
and
81 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# PixeLAW Bots | ||
NodeJS processes that handle automation to ensure PixeLAW is updated and moving as expected. | ||
For example, let's take the snake app. A user's snake needs to move every tick. To ensure | ||
that the snake moves without the user having to sign movement transactions every tick, | ||
the move transaction is offloaded to a QueueBot. So in the snake example, the subsequent | ||
snake move transactions are called QueueEvents. They are events that will happen in the | ||
future. | ||
|
||
Another process also inside this package is the PixelBoardBot. The PixelBoardBot | ||
saves the current state of all the pixels and puts them in the web directory to be | ||
served up by the front end. | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# PixeLAW Web | ||
A vite react web app that acts as UI to the PixeLAW contracts. | ||
|