Skip to content

Commit

Permalink
Add sinks validation (#332)
Browse files Browse the repository at this point in the history
* add public address

Signed-off-by: Charles Ferrell <charlie@manta.network>

* update to add mnemomic to state

Signed-off-by: Charles Ferrell <charlie@manta.network>

* load authorization context

Signed-off-by: Charles Ferrell <charlie@manta.network>

* add authorization context

Signed-off-by: Charles Ferrell <charlie@manta.network>

* update to main

Signed-off-by: Charles Ferrell <charlie@manta.network>

* add to changelog

Signed-off-by: Charles Ferrell <charlie@manta.network>

* Use tag

Signed-off-by: Charles Ferrell <charlie@manta.network>

* update Cargo.lock

Signed-off-by: Charles Ferrell <charlie@manta.network>

* minimize Cargo.lock change

Signed-off-by: Charles Ferrell <charlie@manta.network>

---------

Signed-off-by: Charles Ferrell <charlie@manta.network>
  • Loading branch information
ferrell-code committed Mar 8, 2023
1 parent 212c1b2 commit 54590f5
Show file tree
Hide file tree
Showing 5 changed files with 151 additions and 69 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,15 +130,15 @@ jobs:
run: ./scripts/gen_filepath.sh ${{ matrix.os_type }} ${{ matrix.os }} ${{ steps.suffixed.outputs.SUFFIXED}}
shell: bash
- name: DBG
run: echo "${{ steps.release_vars.outputs.IMAGE }} ${{ steps.release_vars.outputs.RELEASE_IMAGE }}"
run: echo "${{ steps.release_vars.outputs.IMAGE }} ${{ steps.release_vars.outputs.RELEASE_IMAGE }}"
- name: Upload Image
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.get_release.outputs.upload_url }}
asset_path: "target/release/bundle/${{ steps.release_vars.outputs.IMAGE }}"
asset_name: "${{ steps.release_vars.outputs.RELEASE_IMAGE }}"
asset_name: "${{ steps.release_vars.outputs.RELEASE_IMAGE }}"
asset_content_type: application/binary
if: github.event_name == 'release' && github.event.action == 'published'
- name: Content Hash
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added

### Changed
[\#332](https://github.com/Manta-Network/manta-signer/pull/332) Add sink account validation

### Deprecated

Expand Down
98 changes: 66 additions & 32 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ derivative = { version = "2.2.0", default-features = false, features = ["use_cor
dirs-next = { version = "2.0.0", default-features = false }
futures = { version = "0.3.17", default-features = false, features = ["alloc"] }
http-types = { version = "2.12.0", default-features = false }
manta-accounting = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.10", default-features = false, features = ["cocoon-fs"] }
manta-crypto = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.10", default-features = false, features = ["getrandom"] }
manta-parameters = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.10", default-features = false, features = ["download"] }
manta-pay = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.10", default-features = false, features = ["bs58", "groth16", "serde", "wallet", "network", "parameters"] }
manta-util = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.10", default-features = false }
manta-accounting = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.12", default-features = false, features = ["cocoon-fs"] }
manta-crypto = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.12", default-features = false, features = ["getrandom"] }
manta-parameters = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.12", default-features = false, features = ["download"] }
manta-pay = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.12", default-features = false, features = ["bs58", "groth16", "serde", "wallet", "std", "parameters"] }
manta-util = { git = "https://github.com/manta-network/manta-rs", tag = "v0.5.12", default-features = false }
parking_lot = { version = "0.12.1", default-features = false }
password-hash = { version = "0.4.2", default-features = false, features = ["alloc"] }
reqwest = { version = "0.11.14", default-features = false, features = ["json"] }
Expand Down
Loading

1 comment on commit 54590f5

@vercel
Copy link

@vercel vercel bot commented on 54590f5 Mar 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.