Skip to content

Commit

Permalink
feat(ergo): add address generation
Browse files Browse the repository at this point in the history
  • Loading branch information
Alesfatalis committed Jan 7, 2025
1 parent 3b05d74 commit 107645e
Show file tree
Hide file tree
Showing 55 changed files with 3,019 additions and 57 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/rust-ergo-checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
on:
pull_request:
paths:
- rust/apps/ergo/**

name: ERGO Checks

jobs:
UnitTest:
name: Unit Test And Code coverage
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2

- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2024-01-31
override: true
components: rustfmt
target: x86_64-apple-darwin

- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov

- name: Run rust/apps/ergo
run: cd rust/apps/ergo && cargo +nightly-2024-01-31 llvm-cov --fail-under-functions 50 --fail-under-lines 50 --fail-under-regions 50
Binary file added images/coin/coinErg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ members = [
"apps/bitcoin",
"apps/cardano",
"apps/cosmos",
"apps/ergo",
"apps/ethereum",
"apps/near",
"apps/solana",
Expand All @@ -28,6 +29,7 @@ members = [
"rust_c/src/cardano",
"rust_c/src/common",
"rust_c/src/cosmos",
"rust_c/src/ergo",
"rust_c/src/ethereum",
# "rust_c/src/kt_allocator",
"rust_c/src/near",
Expand Down Expand Up @@ -59,6 +61,7 @@ app_bitcoin = { path = "apps/bitcoin" }
app_cardano = { path = "apps/cardano" }
app_cosmos = { path = "apps/cosmos", default-features = false }
app_ethereum = { path = "apps/ethereum" }
app_ergo = { path = "apps/ergo"}
app_near = { path = "apps/near" }
app_solana = { path = "apps/solana" }
app_stellar = { path = "apps/stellar" }
Expand Down
3 changes: 3 additions & 0 deletions rust/apps/ergo/.rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
indent_style="Block"
reorder_imports=true
binop_separator="Front"
Loading

0 comments on commit 107645e

Please sign in to comment.