Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
ed8b383
eth: new
barraguda Feb 5, 2024
032bd43
cargo update, fix alloy-core deps
barraguda Feb 5, 2024
baad9cc
eth: add send_raw_transaction
barraguda Feb 6, 2024
0821c4a
eth: update alloy and set hash
barraguda Feb 9, 2024
8d58cfb
Merge branch 'main' into bp/new-eth
barraguda Feb 9, 2024
1e14a03
eth: better types and errors
barraguda Feb 12, 2024
acd102d
ERC721Metadata added to kernel_types
Feb 12, 2024
12bf9ee
bump wit-bindgen
nick1udwig Feb 13, 2024
1d60995
eth: more helpers
barraguda Feb 13, 2024
9231881
eth: break out subevent type
barraguda Feb 13, 2024
7f0c999
Properties not optional
Feb 13, 2024
f647899
properties udpated
Feb 13, 2024
6051438
0.6.1
Feb 13, 2024
e45e916
0.6.0
Feb 13, 2024
34cf6bd
eth: add docstrings
barraguda Feb 14, 2024
95afcf9
docstring added
Feb 14, 2024
7f409e4
Merge pull request #56 from kinode-dao/da/metadata
tadad Feb 14, 2024
70cadf9
Updates to IncomingHttpRequest (#60)
willbach Feb 15, 2024
935929a
eth: docstring fix
barraguda Feb 15, 2024
cacc49c
eth: sub error request and result type
barraguda Feb 15, 2024
c700145
ethsuberror serialize hotfix
barraguda Feb 15, 2024
ad17eaa
eth: temp timeout 10
barraguda Feb 15, 2024
d7511c2
Merge branch 'develop' into bp/new-eth
barraguda Feb 15, 2024
9d185e1
Merge pull request #55 from kinode-dao/hf/bump-wasm-deps
nick1udwig Feb 15, 2024
3232423
Merge pull request #49 from kinode-dao/bp/new-eth
barraguda Feb 15, 2024
7b6fd6e
eth: add chain id to types
dr-frmr Feb 22, 2024
68b6a1a
kv & sql: timeout options
barraguda Feb 22, 2024
7158067
eth: refactor into Provider struct
dr-frmr Feb 22, 2024
75282ad
vfs: timeout options
barraguda Feb 22, 2024
8e4d015
add provider::new()
dr-frmr Feb 22, 2024
567ba78
eth: add `EthError` variants, make all fns return EthError instead of…
dr-frmr Feb 23, 2024
d1c29c2
fix: add magic tuples, update alloy versions
dr-frmr Feb 26, 2024
bc24fd0
eth error refactor out unused
dr-frmr Feb 26, 2024
9838f5d
re-add missing errors
dr-frmr Feb 26, 2024
03d3fc1
add timeouts to helper functions too
barraguda Mar 1, 2024
e055bed
kv: automatic key and value serialization
barraguda Mar 1, 2024
86ae506
match types to runtime
dr-frmr Mar 4, 2024
e382187
Merge pull request #62 from kinode-dao/bp/timeouts
dr-frmr Mar 4, 2024
2de6d92
Merge pull request #61 from kinode-dao/dr/eth-add-chain-id
dr-frmr Mar 4, 2024
f6a2bda
Merge branch 'main' into develop
dr-frmr Mar 4, 2024
9223aed
sync with runtime
dr-frmr Mar 5, 2024
a02248c
Merge pull request #63 from kinode-dao/dr/eth-type-add-get-state
dr-frmr Mar 5, 2024
69d8c08
add unbind actions and helpers
dr-frmr Mar 6, 2024
e0ea5be
Merge pull request #64 from kinode-dao/dr/http-server-add-unbind
dr-frmr Mar 6, 2024
b699c3d
update kinode-wit submodule
dr-frmr Mar 8, 2024
e80d706
update wit
dr-frmr Mar 8, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,060 changes: 337 additions & 723 deletions Cargo.lock

Large diffs are not rendered by default.

11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,18 @@ license-file = "LICENSE"
homepage = "https://kinode.org"
repository = "https://github.com/kinode-dao/process_lib"

[features]
eth = ["ethers-core", "alloy-rpc-types"]

[dependencies]
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy.git", rev = "3b1c310", optional = true }
alloy-rpc-types = { git = "https://github.com/alloy-rs/alloy", rev = "6f8ebb4" }
alloy-primitives = "0.6.3"
alloy-transport = { git = "https://github.com/alloy-rs/alloy.git", rev = "6f8ebb4" }
alloy-json-rpc = { git = "https://github.com/alloy-rs/alloy.git", rev = "6f8ebb4" }
anyhow = "1.0"
bincode = "1.3.3"
ethers-core = { version = "2.0.11", optional = true }
http = "1.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rand = "0.8"
thiserror = "1.0"
url = "2.4.1"
mime_guess = "2.0"
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "efcc759" }
wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen", rev = "21a46c7" }
2 changes: 1 addition & 1 deletion kinode-wit
Loading