forked from ava-labs/hypersdk
-
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.
* add token-browser * first run content * add design/router * create routes shell * stub keys/chains * basic working gui * it works * update go mod * making progress * example works * use uint64 * add conditional failed formatting * add basic logos * add basic chart example * add plots lib * add basic graphs * fix flashing animation * fetch address and balance * cleanup navbar * add token balance tracking * use table for navbar * use drawer for mint * use await for fetching balance * cleanup more async logic * add trade to bar * update wording on file * add support for symbol/supply * remove modifyAsset * update rpc * update cli action * put faucet after explorer * add more args to asset * [tokenvm] Add symbol+decimals (ava-labs#458) * revamp cli args * progress * use original symbol and decimals for warp tokens * fix key * fix actions * cache asset calls * update tx parsing * fix token-cli actions * token-cli compiles * morepheus-cli compiles * integration compiles * fix cache stale * integration tests pass * fix lint * fix e2e * more lint fixes * add license files * reduce max symbol size * remove unnecessary casts * move to token-wallet * update name * add txs to balance drawer * use decimals with tokens * token minting works * add basic tx parsing * add basic tx history * add mint button * mint works * mint tx parsing * clear form earlier * auto-populate self-address on mint * add message for processing * token type formatting * add basic mine page * Add PoW Faucet (ava-labs#461) * add basic challenge implementation * add client implementation * add basic challenge implementation * implement send from within controller * perform some cleanup * add faucet implementation * add token-cli implementation * faucet command working * add better viz * add dynamic difficulty * make sure to reset lastRotation * work on standalone token faucet * add stock server * slim down server * remove aliases * more progress * implement handler * more cleanup * move server to root * basic facuet compiling * migrate to logger * faucet works e2e * use proper packages * remove faucet from vm * remove faucet from script * add missing headers * use atomic in challenge * use 0.1 * add missing headers * fix linter * remove todo * store private key as bytes * basic gui faucet * overlapping notifications * notifications working across app * remove side layout on mint * basic functionality without address book * Address Book (ava-labs#465) * working on address book * add basic side spacing * add minimal address book addition * fix clear screen issue * address book parsing works * add me to address book * address book for mint * limit width of views * fix footer view * Token Trading (ava-labs#467) * basic impl * add basic icon for in/out * fix order book spacing * asset switching works * add basic handling of addition * support add asset check * add basic order viewing * fill order works * add explanation blocks * define createOrder function * creating orders works * trading works * add tx tracking for all trades * make parsing more efficient * change action history name * remove verbose logs * don't faucet if fee too high * [GUI] Use Persistent Storage + Fix App Icon (ava-labs#469) * use homedir * update logo * use different appicon import * save dawin plist * fix floating navbar * cleanup context usage * cleanup app.go * add min height * backend passing * cleaning up app * fix store asset check * prevent duplicate add assets * add address persistence * store solutiosn * move everything to db * fix off-by-1 address * all working * use prettier formatting * fix lint * remove unused font * open to all hosts * typo * update http host * fix hosts flag * debugging binary build * update build script * Add api proxy (ava-labs#471) * add proxy script * fix log * use long-lived port * revert navbar changes for now * commit root index * Disable actions + warning when no funds (ava-labs#476) * fix path selection * add FundsCheck to pages * use window for has balance check * disable buttons if no balance * treat index as explorer * add placeholder text for funds check * formatting * [tokenvm] Transfer.Memo (ava-labs#478) * memo passing integration tests * add memo to UI * UI updated for memo * Micropayment example (ava-labs#479) * set version to 0.0.0 * nit * cleanup faucet page * update wording on mint * add popover for explorer * add explanation for Trade * finish populating popovers * linter
- Loading branch information
1 parent
330e9be
commit 838307c
Showing
121 changed files
with
12,057 additions
and
631 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,7 +59,7 @@ dist/ | |
tmp-storage-testing | ||
.token-cli* | ||
.morpheus-cli* | ||
*.html | ||
*.coverage.html | ||
data/ | ||
osxcross/ | ||
|
||
|
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
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
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
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 |
---|---|---|
|
@@ -10,6 +10,7 @@ const ( | |
IDLen = 32 | ||
NodeIDLen = 20 | ||
IntLen = 4 | ||
Uint8Len = 1 | ||
Uint16Len = 2 | ||
Uint32Len = 4 | ||
Uint64Len = 8 | ||
|
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
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
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
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.