Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions .github/workflows/build-test-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fail-fast: false
matrix:
settings:
- host: macos-13
- host: macos-15-intel
target: x86_64-apple-darwin
build: pnpm build:rust --target x86_64-apple-darwin && pnpm build:js
- host: ubuntu-latest
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
- host: macos-latest
target: aarch64-apple-darwin
architecture: arm64
- host: macos-13
- host: macos-15-intel
target: x86_64-apple-darwin
architecture: x64
node:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fail-fast: false
matrix:
settings:
- host: macos-13
- host: macos-15-intel
target: x86_64-apple-darwin
build: pnpm build:rust --target x86_64-apple-darwin && pnpm build:js
- host: ubuntu-latest
Expand Down
64 changes: 64 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ resolver = "2"
members = [
"actor",
"actor-macros",
"anchor-evm",
"anchor-remote",
"anchor-service",
"api",
Expand Down Expand Up @@ -42,7 +43,7 @@ members = [
# e.g. anyhow's backtrace feature.

ahash = "0.8"
alloy = { version = "0.4", features = ["k256", "provider-http", "rpc-types"] }
alloy = { version = "0.4", features = ["k256", "provider-http", "rpc-types", "signers", "sol-types", "signer-local", "contract"] }
anyhow = { version = "1" }
arrow = { version = "54", features = ["prettyprint"] }
arrow-array = "54"
Expand All @@ -66,6 +67,7 @@ bytes = "1.1"
bytesize = "1.1"
ceramic-actor = { path = "./actor" }
ceramic-actor-macros = { path = "./actor-macros" }
ceramic-anchor-evm = { path = "./anchor-evm" }
ceramic-anchor-service = { path = "./anchor-service" }
ceramic-anchor-remote = { path = "./anchor-remote" }
ceramic-api = { path = "./api" }
Expand Down
29 changes: 29 additions & 0 deletions anchor-evm/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[package]
name = "ceramic-anchor-evm"
description = "EVM blockchain anchoring service for Ceramic"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
publish = false

[dependencies]
alloy.workspace = true
anyhow.workspace = true
async-trait.workspace = true
ceramic-anchor-service.workspace = true
ceramic-core.workspace = true
ceramic-event.workspace = true
hex.workspace = true
multihash-codetable.workspace = true
tokio.workspace = true
tracing.workspace = true
url.workspace = true

[dev-dependencies]
ceramic-sql.workspace = true
cid.workspace = true
expect-test.workspace = true
test-log.workspace = true
tracing-subscriber.workspace = true
Loading
Loading