-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Epic] Separating soroban-rpc to prepare for repo change (#1194)
(cherry picked from commit a1e51d2)
- Loading branch information
1 parent
9696878
commit d9ee59f
Showing
14 changed files
with
2,434 additions
and
293 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
[package] | ||
name = "soroban-rpc" | ||
description = "Soroban RPC client for rust" | ||
homepage = "https://github.com/stellar/soroban-tools" | ||
repository = "https://github.com/stellar/soroban-tools" | ||
authors = ["Stellar Development Foundation <[email protected]>"] | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
version.workspace = true | ||
edition = "2021" | ||
rust-version.workspace = true | ||
autobins = false | ||
|
||
|
||
[lib] | ||
crate-type = ["rlib"] | ||
|
||
|
||
[dependencies] | ||
soroban-sdk = { workspace = true } | ||
soroban-spec-tools = { workspace = true } | ||
soroban-env-host = { workspace = true } | ||
stellar-strkey = "0.0.7" | ||
stellar-xdr = { workspace = true, features = ["curr", "std", "serde"] } | ||
soroban-spec = { workspace = true } | ||
|
||
termcolor = "1.1.3" | ||
termcolor_output = "1.0.1" | ||
clap = { version = "4.1.8", features = ["derive", "env", "deprecated", "string"] } | ||
serde_json = "1.0.82" | ||
serde-aux = "4.1.2" | ||
itertools = "0.10.0" | ||
ethnum = "1.3.2" | ||
hex = "0.4.3" | ||
wasmparser = "0.90.0" | ||
base64 = "0.21.2" | ||
thiserror = "1.0.46" | ||
serde = "1.0.82" | ||
tokio = "1.28.1" | ||
sha2 = "0.10.7" | ||
ed25519-dalek = "2.0.0" | ||
tracing = "0.1.40" | ||
|
||
# networking | ||
jsonrpsee-http-client = "0.20.1" | ||
jsonrpsee-core = "0.20.1" | ||
http = "1.0.0" | ||
|
||
|
||
[dev-dependencies] | ||
which = "4.4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# soroban-rpc | ||
|
||
Tools and utilities for soroban rpc. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"events": [{ | ||
"eventType": "system", | ||
"ledger": "43601283", | ||
"ledgerClosedAt": "2022-11-16T16:10:41Z", | ||
"contractId": "CDR6QKTWZQYW6YUJ7UP7XXZRLWQPFRV6SWBLQS4ZQOSAF4BOUD77OO5Z", | ||
"id": "0164090849041387521-0000000003", | ||
"pagingToken": "164090849041387521-3", | ||
"topic": [ | ||
"AAAABQAAAAh0cmFuc2Zlcg==", | ||
"AAAAAQB6Mcc=" | ||
], | ||
"value": "AAAABQAAAApHaWJNb255UGxzAAA=" | ||
}, { | ||
"eventType": "contract", | ||
"ledger": "43601284", | ||
"ledgerClosedAt": "2022-11-16T16:10:41Z", | ||
"contractId": "CDR6QKTWZQYW6YUJ7UP7XXZRLWQPFRV6SWBLQS4ZQOSAF4BOUD77OO5Z", | ||
"id": "0164090849041387521-0000000003", | ||
"pagingToken": "164090849041387521-3", | ||
"topic": [ | ||
"AAAABQAAAAh0cmFuc2Zlcg==", | ||
"AAAAAQB6Mcc=" | ||
], | ||
"value": "AAAABQAAAApHaWJNb255UGxzAAA=" | ||
}, { | ||
"eventType": "system", | ||
"ledger": "43601285", | ||
"ledgerClosedAt": "2022-11-16T16:10:41Z", | ||
"contractId": "CCR6QKTWZQYW6YUJ7UP7XXZRLWQPFRV6SWBLQS4ZQOSAF4BOUD77OTE2", | ||
"id": "0164090849041387521-0000000003", | ||
"pagingToken": "164090849041387521-3", | ||
"topic": [ | ||
"AAAABQAAAAh0cmFuc2Zlcg==", | ||
"AAAAAQB6Mcc=" | ||
], | ||
"value": "AAAABQAAAApHaWJNb255UGxzAAA=" | ||
}] | ||
} |
Oops, something went wrong.