-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to new develop branches with rgb-std/275 fix
- Loading branch information
1 parent
4a242d6
commit 16df465
Showing
11 changed files
with
40 additions
and
52 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Submodule amplify-nonasync
updated
3 files
+7 −7 | Cargo.lock | |
+2 −2 | Cargo.toml | |
+11 −5 | src/persistence.rs |
Submodule bp-core
updated
9 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+8 −14 | dbc/src/anchor.rs | |
+2 −1 | dbc/src/opret/mod.rs | |
+2 −2 | dbc/src/proof.rs | |
+2 −1 | dbc/src/tapret/mod.rs | |
+1 −0 | seals/src/txout/witness.rs | |
+1 −1 | src/stl.rs |
Submodule bp-esplora-client
updated
3 files
+1 −0 | Cargo.toml | |
+12 −15 | src/async.rs | |
+4 −1 | src/blocking.rs |
Submodule bp-std
updated
9 files
+4 −8 | Cargo.lock | |
+6 −0 | Cargo.toml | |
+1 −1 | derive/src/taptree.rs | |
+2 −2 | derive/src/xkey.rs | |
+1 −3 | psbt/src/coders.rs | |
+0 −3 | psbt/src/constructor.rs | |
+5 −0 | psbt/src/csval/dbc.rs | |
+1 −1 | psbt/src/csval/tapret.rs | |
+8 −8 | psbt/src/data.rs |
Submodule bp-wallet
updated
13 files
+1 −0 | .github/workflows/build.yml | |
+1 −0 | .github/workflows/test.yml | |
+114 −129 | Cargo.lock | |
+16 −3 | Cargo.toml | |
+24 −20 | src/cli/command.rs | |
+10 −4 | src/cli/opts.rs | |
+6 −2 | src/hot/command.rs | |
+14 −11 | src/indexers/electrum.rs | |
+14 −11 | src/indexers/esplora.rs | |
+51 −41 | src/layer2.rs | |
+4 −4 | src/lib.rs | |
+6 −4 | src/rows.rs | |
+119 −33 | src/wallet.rs |
Submodule rgb
updated
20 files
+1 −0 | .github/workflows/build.yml | |
+2 −1 | .github/workflows/test.yml | |
+128 −167 | Cargo.lock | |
+22 −6 | Cargo.toml | |
+1 −2 | cli/Cargo.toml | |
+12 −4 | cli/src/args.rs | |
+326 −126 | cli/src/command.rs | |
+3 −1 | cli/src/main.rs | |
+31 −22 | examples/rgb20-demo.con | |
+ − | examples/rgb20-demo.rgb | |
+120 −0 | examples/rgb20-demo.rgba | |
+3 −3 | examples/rgb20-demo.yaml | |
+5 −23 | src/errors.rs | |
+85 −0 | src/filters.rs | |
+6 −2 | src/indexers/electrum_blocking.rs | |
+8 −2 | src/indexers/esplora_blocking.rs | |
+19 −3 | src/lib.rs | |
+35 −24 | src/pay.rs | |
+33 −39 | src/wallet.rs | |
+0 −41 | src/wrapper.rs |
Submodule rgb-core
updated
14 files
+1 −1 | .github/workflows/build.yml | |
+4 −8 | Cargo.lock | |
+7 −1 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+2 −2 | src/stl.rs | |
+7 −1 | src/validation/commitments.rs | |
+27 −33 | src/validation/validator.rs | |
+108 −12 | src/vm/contract.rs | |
+15 −15 | stl/[email protected] | |
+ − | stl/[email protected] | |
+8 −8 | stl/[email protected] | |
+22 −21 | stl/[email protected] | |
+ − | stl/[email protected] | |
+8 −5 | stl/[email protected] |
Submodule rgb-interfaces
updated
11 files
+7 −14 | Cargo.lock | |
+9 −0 | Cargo.toml | |
+ − | interfaces/RGB20.rgb | |
+22 −22 | interfaces/RGB20.rgba | |
+ − | interfaces/RGB21.rgb | |
+6 −6 | interfaces/RGB21.rgba | |
+ − | interfaces/RGB25.rgb | |
+6 −6 | interfaces/RGB25.rgba | |
+25 −17 | src/rgb20/wrapper.rs | |
+22 −3 | src/rgb21/wrapper.rs | |
+14 −3 | src/rgb25/wrapper.rs |
Submodule rgb-schemata
updated
4 files
+1 −1 | .github/workflows/run.yaml | |
+8 −16 | Cargo.lock | |
+10 −0 | Cargo.toml | |
+1 −1 | src/nia.rs |
Submodule rgb-std
updated
28 files
+5 −10 | Cargo.lock | |
+7 −0 | Cargo.toml | |
+246 −297 | src/containers/anchors.rs | |
+10 −15 | src/containers/consignment.rs | |
+5 −4 | src/containers/indexed.rs | |
+2 −1 | src/containers/mod.rs | |
+58 −7 | src/containers/partials.rs | |
+46 −12 | src/contract/assignments.rs | |
+0 −68 | src/contract/bundle.rs | |
+1 −3 | src/contract/mod.rs | |
+281 −231 | src/interface/contract.rs | |
+56 −34 | src/interface/filter.rs | |
+11 −2 | src/interface/iface.rs | |
+3 −3 | src/interface/mod.rs | |
+1 −2 | src/lib.rs | |
+4 −4 | src/persistence/index.rs | |
+57 −20 | src/persistence/memory.rs | |
+96 −18 | src/persistence/stash.rs | |
+29 −40 | src/persistence/state.rs | |
+70 −56 | src/persistence/stock.rs | |
+2 −2 | src/stl/stl.rs | |
+290 −291 | stl/[email protected] | |
+ − | stl/[email protected] | |
+55 −50 | stl/[email protected] | |
+91 −91 | stl/[email protected] | |
+ − | stl/[email protected] | |
+91 −91 | stl/[email protected] | |
+537 −543 | stl/Transfer.vesper |