-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.txt
35 lines (25 loc) · 1.03 KB
/
todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
create derive macro for mock stuff
refactor contract client so that it calls subxt client
- catalog
- make contract upgradeable
- runtime
- governance pallet so you can kill process
larger refactor:
- figure out drink so you can have a lighter runtime process and not need one chain
- also means you wouldnt need to specify dev accounts per test
- use zk snark as proof that worker completed work
- use smalldot with worker
- figure out how to use substrate wasm builder for ink contract to not need to use cargo contract cli
to build wasm binary
proc macro to describe iac state
- one mod macro like substrate pallet with inner attribute macros as resource objects
- can build dependcy tree from resource name mapping to instance of resource objects name:
#[name("Alice")]
struct User;
#[name("Bob")]
struct User;
#[name("Admin")]
struct UserGroup {
ids = [Alice.id, Bob.id]
}
// UserGroup depends on Users