forked from keep-starknet-strange/shinigami
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Frontend updates (keep-starknet-strange#203)
<!-- enter the gh issue after hash --> - [ ] issue # - [ ] follows contribution [guide](https://github.com/keep-starknet-strange/shinigami/blob/main/CONTRIBUTING.md) - [ ] code change includes tests <!-- PR description below --> - Change website favicon to an anime style apple - Comments on frontend ( ignore a line staring with '//' when building the script - Debug mode working with Script Sig also - Add help text / descriptions for all opcodes that show in the suggestion box when inserting opcodes - convert strings of the form <'asd'> or "asd" to 'asd' when sending pubkey/sig to the backend - move stack visualizer to the right of script editor and increase height of both - Create scripts to query raw transaction data and utxo data from mainnet/testnet bitcoin ( using txid as input ) - Better memory managment for backend commandline scripts - Made backend script only respond to calls from origin https://www.shinigamibtc.dev/ - Mobile view stop button fix --------- Co-authored-by: Brandon Roberts <[email protected]>
- Loading branch information
1 parent
9757ac6
commit 688e464
Showing
13 changed files
with
861 additions
and
445 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
|
@@ -41,6 +41,10 @@ body { | |
} | ||
} | ||
|
||
.custom-highlight { | ||
background-color: #008000; | ||
} | ||
|
||
.highlight { | ||
background: #008000C0; | ||
} |
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 |
---|---|---|
@@ -1,9 +1,11 @@ | ||
import Footer from "@/components/footer"; | ||
import ScriptEditor from "@/components/script-editor"; | ||
|
||
export default function Home() { | ||
return ( | ||
<div className="w-full max-w-4xl flex flex-col items-center justify-between space-y-5 h-full min-h-screen"> | ||
<div className="w-full max-w-6xl flex flex-col items-center justify-between space-y-5 h-full"> | ||
<ScriptEditor /> | ||
<Footer /> | ||
</div> | ||
); | ||
} |
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
Oops, something went wrong.