forked from RGB-WG/rgb-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c021023
commit a83a6b5
Showing
10 changed files
with
24 additions
and
39 deletions.
There are no files selected for viewing
Submodule bp-core
updated
3 files
+1 −0 | .github/workflows/build.yml | |
+1 −1 | dbc/src/tapret/tapscript.rs | |
+1 −1 | seals/src/secret.rs |
Submodule bp-wallet
updated
26 files
+0 −18 | .github/dependabot.yml | |
+4 −4 | .github/workflows/build.yml | |
+20 −648 | Cargo.lock | |
+4 −3 | Cargo.toml | |
+2 −2 | LICENSE | |
+1 −1 | MANIFEST.yml | |
+3 −2 | codecov.yml | |
+3 −3 | convert/src/lib.rs | |
+5 −6 | src/bin/bp.rs | |
+55 −39 | src/cli/args.rs | |
+67 −33 | src/cli/command.rs | |
+3 −3 | src/cli/config.rs | |
+3 −3 | src/cli/loglevel.rs | |
+4 −4 | src/cli/mod.rs | |
+3 −3 | src/cli/opts.rs | |
+3 −3 | src/coinselect.rs | |
+3 −3 | src/data.rs | |
+3 −3 | src/indexers/esplora.rs | |
+5 −4 | src/indexers/mod.rs | |
+3 −3 | src/layer2.rs | |
+8 −10 | src/lib.rs | |
+3 −3 | src/rows.rs | |
+0 −248 | src/runtime.rs | |
+3 −3 | src/util.rs | |
+190 −72 | src/wallet.rs | |
+ − | test.psbt |
Submodule rgb
updated
15 files
+11 −638 | Cargo.lock | |
+8 −2 | Cargo.toml | |
+1 −1 | cli/Cargo.toml | |
+30 −24 | cli/src/args.rs | |
+8 −9 | cli/src/command.rs | |
+9 −6 | src/errors.rs | |
+0 −0 | src/indexers/any.rs | |
+0 −0 | src/indexers/electrum_blocking.rs | |
+0 −0 | src/indexers/esplora_blocking.rs | |
+0 −0 | src/indexers/mod.rs | |
+12 −10 | src/lib.rs | |
+10 −8 | src/pay.rs | |
+0 −264 | src/store.rs | |
+102 −43 | src/wallet.rs | |
+57 −0 | src/wrapper.rs |
Submodule rgb-core
updated
3 files
+1 −1 | src/contract/mod.rs | |
+9 −0 | src/validation/validator.rs | |
+2 −2 | src/vm/op_contract.rs |
Submodule rgb-std
updated
20 files
+1 −2 | Cargo.lock | |
+3 −0 | Cargo.toml | |
+1 −1 | doc/seals.md | |
+19 −13 | invoice/src/amount.rs | |
+137 −0 | invoice/src/data.rs | |
+2 −2 | invoice/src/invoice.rs | |
+60 −14 | invoice/src/parse.rs | |
+28 −5 | src/containers/consignment.rs | |
+9 −1 | src/containers/indexed.rs | |
+1 −1 | src/containers/seals.md | |
+45 −8 | src/interface/contract.rs | |
+94 −3 | src/interface/iimpl.rs | |
+9 −91 | src/persistence/fs.rs | |
+29 −1 | src/persistence/index.rs | |
+214 −26 | src/persistence/memory.rs | |
+10 −0 | src/persistence/mod.rs | |
+41 −5 | src/persistence/stash.rs | |
+2 −1 | src/persistence/state.rs | |
+304 −32 | src/persistence/stock.rs | |
+24 −1 | src/resolvers.rs |
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
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