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
21 changes: 11 additions & 10 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
resolver = "2"
members = ["borsh_utils", "client", "protocol", "testutil", "wallet", "ptr", "sip7"]
members = ["borsh_utils", "client", "protocol", "testutil", "wallet", "nums", "sip7"]

[workspace.dependencies]
anyhow = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion SUBSPACES.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ You can create an on-chain identifier that only the controller of the script pub
$ space-cli createptr 5120d3c3196cb3ed7fa79c882ed62f8e5942e546130d5ae5983da67dbb6c9bdd2e79
```

This command creates a UTXO with the same script pubkey and "mints" a space pointer (sptr) derived from it:
This command creates a UTXO with the same script pubkey and "mints" a num id derived from it:

```
sptr13thcluavwywaktvv466wr6hykf7x5avg49hgdh7w8hh8chsqvwcskmtxpd
Expand Down
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/lib.rs"
[dependencies]
spaces_wallet = { path = "../wallet" }
spaces_protocol = { path = "../protocol", features = ["std"] }
spaces_ptr = { path = "../ptr", features = ["std"] }
spaces_nums= { path = "../nums", features = ["std"] }
sip7 = { path = "../sip7", features = ["serde"] }
spacedb = { workspace = true }
borsh_utils = { path = "../borsh_utils" }
Expand Down
Loading
Loading