Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
fix: latest changes in sov_bank (#154)
Browse files Browse the repository at this point in the history
* create tokens with module payable

* rm unused func

* update nix flake

* use TryFrom over From

* generate address from pub_key

* use DefaultSpec::Address

* revert fallible compute_escrow_address

* fix address caching

* rm vscode settings

* update sov-sdk-wip rev

* gitignore vscode settings

* create new address using ModuleId

* store ModuleId

* update IbcTransferContext

* update cargo lockfile

* into over from

* update cargo patches

* update flake nix

* update cargo lockfile

* update nix flake lockfile

* replace DefaultRuntime with Default

Sovereign-Labs/sovereign-sdk-wip#584

* add sov-mock-da dep

* add DA fee

Sovereign-Labs/sovereign-sdk-wip#572

* latest nightly rev
  • Loading branch information
rnbguy authored May 21, 2024
1 parent 00e8d18 commit 5d63b5a
Show file tree
Hide file tree
Showing 18 changed files with 248 additions and 240 deletions.
28 changes: 14 additions & 14 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,69 +30,69 @@ jmt = { git = "https://github.com/penumbra-zone/jmt.
[patch.crates-io.sov-modules-api]
# path = "vendor/sovereign-sdk/module-system/sov-modules-api"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-state]
# path = "vendor/sovereign-sdk/module-system/sov-state"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-bank]
# path = "vendor/sovereign-sdk/module-system/module-implementations/sov-bank"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-sequencer-registry]
# path = "vendor/sovereign-sdk/module-system/module-implementations/sov-sequencer-registry"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-db]
# path = "vendor/sovereign-sdk/full-node/sov-db"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-rollup-interface]
# path = "vendor/sovereign-sdk/rollup-interface"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-mock-zkvm]
# path = "vendor/sovereign-sdk/adapters/mock-zkvm"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-prover-storage-manager]
# path = "vendor/sovereign-sdk/full-node/sov-prover-storage-manager"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-kernels]
# path = "vendor/sovereign-sdk/module-system/sov-kernels"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-modules-core]
# path = "vendor/sovereign-sdk/module-system/sov-modules-core"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-celestia-adapter]
# path = "vendor/sovereign-sdk/adapters/celestia"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-mock-da]
# path = "vendor/sovereign-sdk/adapters/mock-da"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.const-rollup-config]
# path = "vendor/sovereign-sdk/examples/const-rollup-config"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"

[patch.crates-io.sov-chain-state]
# path = "vendor/sovereign-sdk/module-system/module-implementations/sov-chain-state"
git = "ssh://[email protected]/informalsystems/sovereign-sdk-wip.git"
rev = "63fa5f11"
rev = "50a866c0dccf974c035cbaf3ca289b0e4a29fcc9"
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@ demo_data/

/ci/**/*.lock

result
result

.vscode
7 changes: 0 additions & 7 deletions .vscode/settings.json

This file was deleted.

Loading

0 comments on commit 5d63b5a

Please sign in to comment.