Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
f9a387e
3.0.7
tomekmarchi Feb 23, 2025
35911c8
Large system changes in process
tomekmarchi Mar 21, 2025
8754fe9
Do not run - changes in progress
tomekmarchi Mar 21, 2025
4cdb1ee
Move to new logging setup
tomekmarchi Mar 21, 2025
d75a32e
removing handshake finalized step in favor of lazy timeout strat
tomekmarchi Mar 21, 2025
2722188
Added logLevel property
tomekmarchi Mar 21, 2025
b76eb5c
cleanup
tomekmarchi Mar 22, 2025
90c9451
File system organization
tomekmarchi Mar 25, 2025
e15b587
File system organization
tomekmarchi Mar 27, 2025
0a6ef26
FS Organization
tomekmarchi Mar 27, 2025
1dfe01c
System summary updated
tomekmarchi Mar 27, 2025
ee62978
System Summary Readout updated
tomekmarchi Mar 27, 2025
bd262a6
Change API Names
tomekmarchi Mar 31, 2025
6c5d54b
Docs draft update
tomekmarchi Apr 3, 2025
03e1c40
New docs moving in
tomekmarchi Apr 13, 2025
866afcd
Docs WIP
tomekmarchi Apr 14, 2025
2d83d07
Convert Methods to Module files
tomekmarchi Apr 19, 2025
c45c6dc
Modularize Class Methods
tomekmarchi Apr 21, 2025
46667e3
Organize File system
tomekmarchi Apr 22, 2025
d923c37
File System Changes
tomekmarchi Apr 23, 2025
1d065ec
Docs update
tomekmarchi Apr 23, 2025
c7da0e2
Viat Config
tomekmarchi Apr 27, 2025
fac1951
COIN MATH
tomekmarchi Apr 29, 2025
4b17c9c
Block Type Code
tomekmarchi Apr 30, 2025
e68610f
link doc change
tomekmarchi Apr 30, 2025
ef55d35
Viat Defaults updated
tomekmarchi Apr 30, 2025
b2d026b
VIAT MIA
tomekmarchi Apr 30, 2025
4237c0d
Viat Wallet CLI SCRIPT
tomekmarchi May 1, 2025
d1b96f6
create Wallet CLI updates
tomekmarchi May 2, 2025
e94f0d3
Doc Drafts
tomekmarchi May 13, 2025
77a952e
Viat File organization
tomekmarchi May 15, 2025
92fe951
UTF8 Utils
tomekmarchi May 21, 2025
9216363
Viat Docs
tomekmarchi May 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
9 changes: 9 additions & 0 deletions .cspell/custom-dictionary-workspace.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,28 @@
# Custom Dictionary Words
Acks
arpa
beuracratic
brotli
CCID
cshake
dilithium
handshaked
ICANN
jubjub
keccak
keccakprg
kmac
kyber
Nacks
Packetization
ripemd
Ristretto
scalarmult
schnorr
scid
secp
sphincs
SPHINCS
streamid
udsp
viat
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,7 @@ Thumbs.db
# CERTS #
######################
*.rootcert

# PRIVATE #
######################
*.private
2 changes: 1 addition & 1 deletion .htmlhintrc
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
"attr-no-duplication": true,
"title-require": false,
"space-tab-mixed-disabled": "tab"
}
}
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
optional=false
28 changes: 17 additions & 11 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,20 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/main.js"
}
]
}
{
"type": "pwa-node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/main.js"
},
{
"type": "chrome",
"name": "http://127.0.0.1:3000/docs/index.html",
"request": "launch",
"url": "http://127.0.0.1:3000/docs/index.html"
}
]
}
2 changes: 2 additions & 0 deletions .vscode/ltex.dictionary.en-US.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
VIAT
UDSP
60 changes: 50 additions & 10 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
{
"editor.fontFamily": "JetBrainsMono Nerd Font",
"editor.fontLigatures": true,
"editor.cursorBlinking": "solid",
"editor.formatOnType": false,
"editor.autoClosingOvertype": "always",
Expand Down Expand Up @@ -40,6 +38,20 @@
"todo-tree.tree.scanMode": "workspace only",
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.control.trycatch.js",
"settings": {
"foreground": "#55ebff",
"fontStyle": "bold"
}
},
{
"scope": "keyword.operator.ternary.js",
"settings": {
"foreground": "#d587ff",
"fontStyle": "bold"
}
},
{
"scope": "constant.language.boolean.true.js",
"settings": {
Expand All @@ -64,8 +76,8 @@
{
"scope": "storage.type.js",
"settings": {
"foreground": "#C5C5C5",
"fontStyle": "italic"
"foreground": "#bcffff",
"fontStyle": "italic bold"
}
},{
"scope": "keyword.operator.assignment.js",
Expand All @@ -76,22 +88,29 @@
},{
"scope": "keyword.operator.logical.js",
"settings": {
"foreground": "#b1b1b1",
"foreground": "#baff90",
"fontStyle": ""
}
},
{
"scope": "keyword.control.export.js",
"settings": {
"foreground": "#FF7F50",
"fontStyle": "italic bold"
"fontStyle": "italic"
}
},
{
"scope": "keyword.control.from.js",
"settings": {
"foreground": "#ff5398",
"fontStyle": "italic"
}
},
{
"scope": "keyword.control.import.js",
"settings": {
"foreground": "#ff5398",
"fontStyle": "italic bold"
"fontStyle": "italic"
}
},
{
Expand All @@ -105,7 +124,7 @@
"scope": "storage.modifier.async.js",
"settings": {
"foreground": "#f64747",
"fontStyle": "italic"
"fontStyle": "bold underline"
}
},
{
Expand Down Expand Up @@ -139,7 +158,13 @@
{
"scope": "punctuation.accessor.optional.js",
"settings": {
"foreground": "#c0c0c0",
"foreground": "#d3b2ff",
"fontStyle": "bold"
}
},
{
"scope": "variable.parameter.js",
"settings": {
"fontStyle": ""
}
},
Expand Down Expand Up @@ -167,9 +192,23 @@
{
"scope": "storage.type.function.js",
"settings": {
"foreground": "#acdfff",
"foreground": "#43ffff",
"fontStyle": "italic"
}
},
{
"scope": "storage.type.class.js",
"settings": {
"foreground": "#ff88f5",
"fontStyle": "italic"
}
},
{
"scope": "variable.language.this",
"settings": {
"foreground": "#ffb459",
"fontStyle": ""
}
}
],
"[*Light*]": {
Expand Down Expand Up @@ -200,4 +239,5 @@
"hint"
],
"explorer.copyRelativePathSeparator": "/",

}
172 changes: 169 additions & 3 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion CNAME

This file was deleted.

178 changes: 79 additions & 99 deletions README.md

Large diffs are not rendered by default.

Loading
Loading