Commit Graph
100 Commits
Author SHA1 Message Date
pharpend 29087e0ff0 [wip] trying to get tx sign to work... am now signing the hash instead of the tx data 2023-08-14 12:07:49 -06:00
pharpend b055d7d137 [wip] ironing out bugs in tx signing procedure
this time learned
- need to have tag and version for the return data
- i think i need to sign the hash of the transaction rather than the transaction
2023-08-14 11:57:20 -06:00
pharpend 85c42bf136 ok one problem solved: was adding check bytes in the wrong order 2023-08-14 11:11:37 -06:00
pharpend 30f76048c0 [wip] jex can 'sign' a tx but it's not working for some reason 2023-08-14 11:05:49 -06:00
pharpend e05dd579c6 jr can now make an account on aegora 2023-08-13 14:21:54 -06:00
pharpend 371b45c3d8 [wip] have a different error from blakejs
jr: c_a2w_handler: error from controller Error: blakejs.blake2b is not a function content.ts:70:16
        onErrorCase content.ts:70
        (Async: promise callback)
        c_a2w_handler content.ts:83
        (Async: EventListener.handleEvent)
        c_main content.ts:100
        <anonymous> content.ts:106

tried using browserify on blake

think i need to inject it in the namespace like nacl

so progress
2023-08-12 23:53:38 -06:00
pharpend 907678e163 remove some jex_include files accidentally committed 2023-08-12 22:57:39 -06:00
pharpend d64045f0d7 add vdk_colors and vdk_names libs 2023-08-12 18:19:52 -06:00
pharpend 29defebc2e [wip] adding message signing functionality
Problem is this:

    Uncaught ReferenceError: require is not defined
        <anonymous> moz-extension://b4685fc7-232c-44d9-b653-f51b7c7ea868/dist/jex_include/local-vdk_aecrypt-0.1.0/dist/jex_include/local-blakejs-1.2.1/dist/index.js:1
    index.js:1:13

The issue is that blakejs is written for node and needs to be modified to work
in a browser.

Next task is doing that, but did a ton of work so taking a break
2023-08-12 18:18:03 -06:00
pharpend 6d715612e4 remove some junk files 2023-08-12 15:54:17 -06:00
pharpend 4f73ca4022 [wip] notional code for message signing done 2023-08-12 15:53:21 -06:00
pharpend dac533f136 make comment language more polite 2023-08-12 14:55:38 -06:00
pharpend f054744bbc add vdk_aeser lib (untested) 2023-08-12 13:17:54 -06:00
pharpend b627689133 [wip] jr can now tell the page script about current pubkey 2023-08-12 13:17:41 -06:00
pharpend 315ae9c315 [wip] i forgot to write the s2i function, but progress on showing address to user 2023-08-11 17:40:23 -06:00
pharpend c9f2365aa1 [wip] reorganize README 2023-08-11 14:37:12 -06:00
pharpend 700ee7cc5f remove internal todo list 2023-08-11 12:45:30 -06:00
pharpend fa0a344b3a remove mental disability notes, committed by accident 2023-08-11 12:45:08 -06:00
pharpend 5dd28d9ed4 Remove the scripts I wrote when I was being dumb
Recall that I had the problem of not being able to load NaCl into the context
of my background script.  I thought the problem was some nonsense with the way
"security" works in browser extensions.  There are some contexts where in order
to load a script, you must explicitly specify the SHA-256 or SHA-384 hash of
the script, in base64 notation.  I wrote these scripts for the purpose of
quickly reading a file and spitting out those values, so that I could easily
update the manifest as I was fooling around with the scripts.

It turned out that entire hypothesis was wrong: https://github.com/aeternity/Vanillae/commit/b680336ba464eafe63daafd95002f09e798c09d9

And therefore these scripts are now just junk
2023-08-11 12:40:14 -06:00
pharpend 60f27b4952 [wip] jr addressing: fixed type errors; next thing to do is write serializer lib 2023-08-11 12:39:12 -06:00
pharpend a73da72382 [wip] jr: working on presenting address to user 2023-08-11 12:15:56 -06:00
pharpend 1e80a53051 idiomatically refactoring jr controller
I am trying to copy the Erlang idiom of "calling" another process through a
function call interface. That is, suppose I have two named processes
corresponding to modules `caller` and `callee`

caller.erl:

    foo() ->
        Result = callee:get_some_data(),
        do_something_with(Result).

callee.erl:
    get_some_data() ->
        gen_server:call(?MODULE, get_some_data)

    handle_call(get_some_data, CalleeState) ->
        {Result, NewState} = do_get_some_data(CalleeState),
        {reply, Result, NewState}.

I'm trying to replicate that in JS, because it's definitely the most pleasant
idiom for having different processes "talk" to each other.  This also allows
the callee process to define an API that black-boxes away the internal
messaging structure, thus giving the developer the flexibility to change that
internal messaging structure without breaking the calling code.
2023-08-01 15:15:15 -06:00
pharpend b3eba95520 starting jr controller api idiom 2023-07-30 22:58:55 -06:00
pharpend c54c57b37a shift script include URLs to be relative 2023-07-26 17:24:49 -06:00
pharpend b680336ba4 all this time i thought that it was the browser that was mentally disabled it turned out the mental disability was inside me all along
======================
NACL mental disability
======================

NACL is mentally disabled and can't be loaded as an ES6 module. That is, it can't be
"imported" using

```js
import * as nacl from './path/to/nacl.js';
```

Instead you have to include it in a page. So we have a page called
`background.html`.

I naively tried this

```html
<script src="dist/jex_include/local-nacl-1.0.3/nacl.js"></script>
```

That of course didn't work because we live in hell.

I initially thought the problem was an invalid hash. No. Notes as I figure it
out:

    Trying to figure out why TweetNaCl isn't loading

    ok so the problem is not an invalid hash, it's something specific
    to nacl

    to have an inline script, its hash must be specified in
    manifest.json

    example (integrity key is not necessary, it is there purely for
    comment purposes)

         beginning of line
        V
        |        <script integrity="sha256-8T3dvQxHPNQvgxzCemw3KGUCM5RhknpCQF6pCcTdFTw=">console.log('bg-test-inline.js line 1!');
        |</script>

    newline is there for hash purposes

    this works if and only if
    'sha256-8T3dvQxHPNQvgxzCemw3KGUCM5RhknpCQF6pCcTdFTw=' is included
    in the manifest.json

    example (top level key):

         "content_security_policy" : "script-src 'self' 'sha256-8T3dvQxHPNQvgxzCemw3KGUCM5RhknpCQF6pCcTdFTw='; object-src 'self'",

    Absent that explicit allow, I get this error from Firefox:

        Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”).

    Refs:
        1. https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/manifest.json/content_security_policy
        2. https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Content_Security_Policy#inline_javascript

    If I include the same script as a file,

        <script src="bg-test-inline.js"></script>

    this works irrespective of if I specify it as allowable in the manifest

    nacl is just refusing to load

        Loading failed for the <script> with source “moz-extension://eafd6a74-b75b-4312-9a34-8087b68395e7/dist/jex_include/local-nacl-1.0.3/nacl.js”.

    I initially thought it was a hash problem, but it is not

    TweetNaCL doesn't work as an ES6 module, it works by destructively
    updating the window namespace.  This I think was necessary before
    ES6, and that behavior is retained either because of laziness or
    because of backward compatibility reasons.

    hmm

    so this just plainly doesn't work and i cannot figure out why

        <script src="dist/jex_include/local-nacl-1.0.3/nacl.js"></script>

I think it works if I do it in the popup window instead. Let's try

oh no

no

oh my god

i am so stupid

the problem was that i typed the url wrong

the package is "tweetnacl" not "nacl", and i also need /dist/ too

    <script src="dist/jex_include/local-tweetnacl-1.0.3/dist/nacl.js"></script>

that works

all this time i thought that it was the browser that was mentally disabled

it turned out the mental disability was inside me all along

alright well I discovered a potential future pitfall at least
2023-07-26 17:21:17 -06:00
pharpend d41f29aa1f website 2023-07-26 15:19:41 -06:00
pharpend 12b5a01394 organizing vanillae website
index.html is *just* going to be an index. it will factor out everything to
links, but it will have *all* the links
2023-07-22 01:24:24 -06:00
pharpend 301030d3b8 Merge branch 'pharpend/sidekick-tx-sign-yesprop' into pharpend/develop 2023-07-20 14:38:12 -06:00
pharpend 6e1189a789 version bump sk/awcp/parasite to add tx_sign_yesprop
There is now an explicit function to have superhero sign the transaction *and*
propagate it into the network.  JR will simply reject these requests.
2023-07-20 14:34:19 -06:00
pharpend 50cac48f99 [wip] updating sidekick 2023-07-19 00:38:03 -06:00
pharpend ff8670d592 committing because switching branches 2023-07-18 14:48:23 -06:00
pharpend 19203cc003 have page script talking to controller 2023-07-14 20:53:35 -06:00
pharpend 984f562579 wrote out architecture rant in readme 2023-07-12 17:17:03 -06:00
pharpend 373d43dd8c committing because commitment is good 2023-07-09 21:01:54 -06:00
pharpend b76397b723 jr code cleanups 2023-07-09 15:03:53 -06:00
pharpend ef112d7da4 apparently github doesn't understand what hyperlinks are anymore 2023-07-08 23:02:26 -06:00
pharpend 49ce304ec5 add readme to vrlp, assertion about encode->decode roundtrip 2023-07-08 23:00:45 -06:00
pharpend 8f09c41676 doccing things 2023-07-06 23:59:30 -06:00
pharpend e408ba9b2a add vrlp tests 2023-07-06 19:52:40 -06:00
pharpend 180a395092 Merge branch 'master' into pharpend/develop 2023-07-06 11:14:00 -06:00
pharpend c900e16e02 Merge branch 'pharpend/develop' of github.com:aeternity/Vanillae into pharpend/develop 2023-07-06 11:13:26 -06:00
pharpend 472c97df62 add vanillae rlp lib 2023-07-06 11:13:20 -06:00
pharpend 754a3faf89 add vrlp project 2023-07-06 11:08:25 -06:00
pharpend 6c80c37efa bits more 2023-05-24 00:52:59 -06:00
pharpend 892c9cd9da Merge branch 'pharpend/develop' of github.com:aeternity/Vanillae into pharpend/develop 2023-04-30 14:38:09 -06:00
pharpend c432a32de8 update awcp version as sidekick dep, polishing docs 2023-04-30 01:45:14 -06:00
pharpend 478fcd123f trivial change to vb64 2023-04-28 18:44:52 -06:00
pharpend d79697a9c7 cleaning faert ts implementation 2023-04-28 18:44:29 -06:00
pharpend 662cdbd5de jrx prettification 2023-04-28 18:43:59 -06:00
pharpend a7ff4c5e2e add untested faert implementation 2023-04-21 18:30:59 -06:00
pharpend 261846aa7e move vanillae ts over here 2023-04-21 18:30:37 -06:00
pharpend abcd435d01 update docs readme 2023-04-06 19:50:21 -06:00
pharpend bd8c94f5a6 draft of keccak explainer is done 2023-04-02 02:09:44 -06:00
pharpend a2eedda9ab have everythinig except the coordinate system 2023-04-02 01:46:32 -06:00
pharpend 4efc812130 update toc again 2023-04-02 00:10:45 -06:00
pharpend 05124629d7 update toc 2023-04-02 00:06:54 -06:00
pharpend 8adf16ffd8 start toc 2023-04-02 00:05:46 -06:00
pharpend db6cffe92c wrote up rho step 2023-04-01 23:37:59 -06:00
pharpend ec0bb46eb7 add image 2023-03-30 01:37:40 -06:00
pharpend 40d033a7b9 significant chip at the the base N docs 2023-03-25 18:01:43 -06:00
pharpend 16e20a03ba more ecc 2023-03-11 19:51:17 -07:00
pharpend fe24698a34 start ecc explainer 2023-03-10 21:10:23 -07:00
pharpend 0a29489872 [wip] I need to think seriously about zod 2023-02-12 05:47:18 -07:00
pharpend 3ad5590d90 [wip] jr model 2023-02-07 21:50:28 -07:00
pharpend 548087cc85 [wip/broken] sidekick examples updating 2023-01-29 06:30:11 -07:00
pharpend aca416218d vw deompose ak function 2023-01-23 01:07:26 -07:00
pharpend cbe6d51eb9 have transitioned jr to typescript 2023-01-23 00:40:22 -07:00
pharpend da0fa03869 [wip] state management and keypair generation 2023-01-14 14:56:01 -07:00
pharpend 279bd888e3 [wip] getting keypair stuff to work 2023-01-10 18:28:20 -07:00
pharpend ad722f8954 turn off stupid erlang warnings about unused variables 2022-12-28 03:23:54 -07:00
pharpend b442a54cd2 awcp version bump 2022-12-28 03:23:19 -07:00
pharpend 75d6d89bdf jex detects and connects 2022-12-28 03:23:03 -07:00
pharpend ce4047f795 add bip39 files from Hans 2022-12-22 00:24:26 -07:00
pharpend c4f71c8b4d generating a keypair works 2022-12-20 21:13:24 -07:00
pharpend cbe487618c [wip] generating keypair with ec_utils copied from zx's github 2022-12-20 20:58:21 -07:00
pharpend 8cc46b6ac9 Merge branch 'pharpend/develop' of github.com:aeternity/Vanillae into pharpend/develop 2022-12-20 03:02:17 -07:00
pharpend 529cf078e1 jrx basics 2022-12-20 03:02:06 -07:00
pharpend 353eee7cd2 ignore something 2022-12-20 02:53:57 -07:00
pharpend 434ed02e83 package tweetnacl correctly 2022-12-20 02:53:05 -07:00
pharpend c8ddd77004 got echo pkg_type done
working on packaging nacl, need to branch based on package type
2022-12-19 22:23:00 -07:00
pharpend c6274c9ac8 [wip] sidekick version bump, documenting message signature verification 2022-11-30 22:30:38 -07:00
pharpend 3ddca3db2f ready for zx message sign demo 2022-11-27 00:12:15 -07:00
pharpend b9b06436af add a bunch of examples 2022-11-23 18:19:23 -07:00
pharpend 86d0501b90 [wip] playing around with maybe making tarballs 2022-11-20 19:49:45 -07:00
pharpend 083e159096 add jex mkdocs command 2022-11-20 16:23:53 -07:00
pharpend a3cc4cdddc [wip] add primitive message sign functionality 2022-11-18 18:23:02 -07:00
pharpend 9589adaef8 [wip] various inconsequential changes 2022-11-17 16:01:19 -07:00
pharpend ab2b816f88 [wip] initial vw commit 2022-11-16 15:13:20 -07:00
pharpend 045384420e tx humanization in erlang prototype 2022-11-08 13:15:23 -07:00
pharpend 900581bc23 [wip] templating vanillae ts tx deconstruction 2022-11-08 09:21:45 -07:00
pharpend 993ae4261b [wip] code cleanups 2022-11-06 12:24:49 -07:00
pharpend 127be10d03 [wip] code cleanups, making style uniform in vanillae ts 2022-11-06 12:20:45 -07:00
pharpend c21a4c42fe [wip] start work on api deconstructor 2022-10-26 08:52:11 -06:00
pharpend 64f9752ee5 wrote an encoder and it worked on the first try. wtf 2022-10-23 20:19:21 -06:00
pharpend 7751e71982 my ts rlp decoder seems to work
i feel like i would have more confidence in my code if i didn't test it
2022-10-23 06:41:19 -06:00
pharpend 2254c82f77 my erl rlp implementation agrees with ethereum python implementation for 59,638 random cases 2022-10-23 04:55:59 -06:00
pharpend 9701993e8b more python cases 2022-10-23 04:49:03 -06:00
pharpend 27eac056eb Generating tests for RLP Erlang (appears to work!)
Methodology:

- in Erlang, generate random DecodeData that are decentish (hard to generate
  because of arbitrary depth recursive nature)
- in Erlang, check that DecodeData->rlp:encode->rlp:decode is an identity (it
  is!)
- generate tons of encode/decode pairs for Python, make sure they all work
  (they do!)
2022-10-23 04:44:07 -06:00
pharpend ebf82a091c fix comment in b58.py 2022-10-23 04:43:56 -06:00
pharpend 3e86f27063 minor cleanups in rlp.erl 2022-10-23 04:43:35 -06:00