We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6453ba commit 7a68438Copy full SHA for 7a68438
1 file changed
README.md
@@ -1 +1,23 @@
1
# Soroban CLI
2
+
3
+CLI and functions to call Soroban contracts with Python.
4
5
+```
6
+pip install soroban
7
8
9
+This provides a simple way to call contracts without needing to install the
10
+Rust SDK and is a higher level interface compared to using the Python SDK.
11
12
+```python
13
+import soroban
14
15
+soroban.invoke("AAAA...", "increment")
16
17
18
+Identity and Network configurations are automatically pulled from the global
19
+or local configuration.
20
21
+> Note: this repository has no affiliation with the Stellar Developer Foundation.
22
+> The official CLI can be found here https://github.com/stellar/soroban-cli
23
+> Should this become useful, I am happy to transfer it as well!
0 commit comments