-
Notifications
You must be signed in to change notification settings - Fork 11
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
Showing
40 changed files
with
1,498 additions
and
1,403 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
Submodule amplify-nonasync
updated
3 files
+7 −7 | Cargo.lock | |
+2 −2 | Cargo.toml | |
+11 −5 | src/persistence.rs |
Submodule bp-core
updated
23 files
+1 −1 | .github/workflows/build.yml | |
+5 −0 | .github/workflows/lint.yml | |
+1 −1 | .rustfmt.toml | |
+108 −76 | Cargo.lock | |
+9 −9 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+13 −0 | _typos.toml | |
+20 −4 | consensus/src/timelocks.rs | |
+5 −1 | consensus/src/tx.rs | |
+2 −2 | dbc/Cargo.toml | |
+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 | |
+0 −1 | stl/Anchor.MerkleBlock.Tapret.vesper | |
+0 −1 | stl/Anchor.MerkleProof.Tapret.vesper | |
+0 −1 | stl/Anchor.MerkleTree.Opret.vesper | |
+0 −1 | stl/Anchor.MerkleTree.Tapret.vesper | |
+39 −43 | stl/[email protected] | |
+ − | stl/[email protected] | |
+13 −25 | stl/[email protected] |
Submodule bp-electrum-client
updated
6 files
+4 −3 | Cargo.toml | |
+2 −2 | src/api.rs | |
+1 −1 | src/batch.rs | |
+5 −5 | src/client.rs | |
+6 −6 | src/raw_client.rs | |
+1 −1 | src/utils.rs |
Submodule bp-esplora-client
updated
4 files
+252 −299 | Cargo.lock | |
+5 −4 | Cargo.toml | |
+12 −15 | src/async.rs | |
+4 −1 | src/blocking.rs |
Submodule bp-std
updated
13 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | .rustfmt.toml | |
+113 −81 | Cargo.lock | |
+11 −11 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+1 −1 | derive/src/taptree.rs | |
+4 −4 | 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 | |
+11 −11 | psbt/src/data.rs | |
+5 −3 | src/signers.rs |
Submodule bp-wallet
updated
18 files
+2 −1 | .github/workflows/build.yml | |
+1 −0 | .github/workflows/test.yml | |
+1 −1 | .rustfmt.toml | |
+218 −175 | Cargo.lock | |
+11 −10 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+27 −0 | src/bip43.rs | |
+24 −20 | src/cli/command.rs | |
+10 −4 | src/cli/opts.rs | |
+32 −0 | src/data.rs | |
+6 −2 | src/hot/command.rs | |
+5 −3 | src/hot/signer.rs | |
+18 −11 | src/indexers/electrum.rs | |
+18 −11 | src/indexers/esplora.rs | |
+51 −41 | src/layer2.rs | |
+4 −4 | src/lib.rs | |
+36 −4 | src/rows.rs | |
+119 −33 | src/wallet.rs |
Submodule client_side_validation
updated
6 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | .rustfmt.toml | |
+60 −72 | Cargo.lock | |
+4 −4 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+18 −6 | commit_verify/src/merkle.rs |
Submodule rgb
updated
27 files
+2 −1 | .github/workflows/build.yml | |
+2 −1 | .github/workflows/test.yml | |
+1 −1 | .rustfmt.toml | |
+232 −232 | Cargo.lock | |
+16 −20 | Cargo.toml | |
+1 −1 | Dockerfile | |
+1 −1 | MANIFEST.yml | |
+1 −4 | cli/Cargo.toml | |
+12 −4 | cli/src/args.rs | |
+328 −128 | 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 | |
+1 −2 | psbt/Cargo.toml | |
+1 −1 | psbt/src/lib.rs | |
+7 −2 | psbt/src/rgb.rs | |
+4 −4 | src/descriptor.rs | |
+5 −23 | src/errors.rs | |
+85 −0 | src/filters.rs | |
+15 −17 | src/indexers/electrum_blocking.rs | |
+8 −2 | src/indexers/esplora_blocking.rs | |
+19 −3 | src/lib.rs | |
+41 −30 | src/pay.rs | |
+39 −39 | src/wallet.rs | |
+0 −41 | src/wrapper.rs |
Submodule rgb-core
updated
24 files
+3 −3 | .github/workflows/build.yml | |
+2 −2 | .github/workflows/codecov.yml | |
+1 −1 | .github/workflows/lint.yml | |
+2 −2 | .github/workflows/test.yml | |
+1 −1 | .rustfmt.toml | |
+132 −94 | Cargo.lock | |
+7 −7 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+3 −1 | src/operation/commit.rs | |
+1 −6 | src/operation/xchain.rs | |
+5 −1 | src/schema/state.rs | |
+2 −2 | src/stl.rs | |
+7 −1 | src/validation/commitments.rs | |
+2 −4 | src/validation/consignment.rs | |
+33 −39 | src/validation/validator.rs | |
+108 −12 | src/vm/contract.rs | |
+30 −10 | src/vm/macroasm.rs | |
+13 −5 | src/vm/op_contract.rs | |
+15 −15 | stl/[email protected] | |
+ − | stl/[email protected] | |
+12 −12 | stl/[email protected] | |
+22 −21 | stl/[email protected] | |
+ − | stl/[email protected] | |
+8 −5 | stl/[email protected] |
Submodule rgb-interfaces
updated
14 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | .rustfmt.toml | |
+144 −106 | Cargo.lock | |
+7 −7 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+ − | interfaces/RGB20.rgb | |
+23 −23 | 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
7 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | .github/workflows/run.yaml | |
+1 −1 | .rustfmt.toml | |
+135 −97 | Cargo.lock | |
+8 −8 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+1 −1 | src/nia.rs |
Submodule rgb-std
updated
36 files
Submodule rust-aluvm
updated
from 55d53b to b671b8
Submodule strict-types
updated
23 files
+1 −1 | .github/workflows/build.yml | |
+1 −1 | .rustfmt.toml | |
+190 −61 | Cargo.lock | |
+7 −6 | Cargo.toml | |
+1 −1 | MANIFEST.yml | |
+18 −5 | src/ast/id.rs | |
+1 −1 | src/ast/translate.rs | |
+25 −22 | src/ast/ty.rs | |
+5 −3 | src/lib.rs | |
+1 −5 | src/typelib/id.rs | |
+3 −11 | src/typelib/symbolic.rs | |
+7 −27 | src/typelib/type_lib.rs | |
+1 −5 | src/typesys/id.rs | |
+2 −2 | src/typesys/symbols.rs | |
+1 −1 | src/typesys/translate.rs | |
+3 −3 | src/typesys/type_sys.rs | |
+15 −14 | src/value/decode.rs | |
+30 −11 | src/value/encode.rs | |
+1 −1 | src/value/mod.rs | |
+6 −16 | src/value/path.rs | |
+194 −54 | src/value/ston.rs | |
+31 −14 | src/value/typify.rs | |
+135 −27 | src/value/val.rs |
Oops, something went wrong.