Skip to content

Commit

Permalink
fix: add a gitleaks allowlist to ignore false positives
Browse files Browse the repository at this point in the history
  • Loading branch information
fbac committed Jul 25, 2024
1 parent 8fb78a8 commit d886fcf
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 34 deletions.
4 changes: 4 additions & 0 deletions .gitleaks.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ paths = [
'''vendor''',
'''init.sh'''
]
regexes = [
'''#nosec''',
'''//nosec'''
]

[[rules]]
description = "Adafruit API Key"
Expand Down
37 changes: 3 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,9 @@ parent:
-->

<div align="center">
<h1> Ethermint </h1>
<h1>Ethermint by Zetachain</h1>
</div>

![banner](docs/ethermint.jpg)

<div align="center">
<a href="https://github.com/zeta-chain/ethermint/releases/latest">
<img alt="Version" src="https://img.shields.io/github/tag/evmos/ethermint.svg" />
Expand All @@ -22,42 +20,13 @@ parent:
<a href="https://goreportcard.com/report/github.com/zeta-chain/ethermint">
<img alt="Go report card" src="https://goreportcard.com/badge/github.com/zeta-chain/ethermint"/>
</a>
<a href="https://bestpractices.coreinfrastructure.org/projects/5018">
<img alt="Lines of code" src="https://img.shields.io/tokei/lines/github/evmos/ethermint">
</a>
</div>
<div align="center">
<a href="https://discord.gg/trje9XuAmy">
<img alt="Discord" src="https://img.shields.io/discord/809048090249134080.svg" />
</a>
<a href="https://github.com/zeta-chain/ethermint/actions?query=branch%3Amain+workflow%3ALint">
<img alt="Lint Status" src="https://github.com/zeta-chain/ethermint/actions/workflows/lint.yml/badge.svg?branch=main" />
</a>
<a href="https://codecov.io/gh/tharsis/ethermint">
<img alt="Code Coverage" src="https://codecov.io/gh/evmos/ethermint/branch/main/graph/badge.svg" />
</a>
</div>

> [!WARNING]
> Evmos, the team behind Ethermint, has fully shifted its focus to [Evmos](https://github.com/evmos/evmos), where we
> continue to build interoperability solutions for the future!
> As a result, this repository is no longer maintained for that reason and all relevant code has been migrated.
>
> **NOTE: If you are interested in using this software** email us at [[email protected]](mailto:[email protected]) with copy to [[email protected]](mailto:[email protected])
## About

Ethermint is a scalable and interoperable Ethereum library, built on Proof-of-Stake with fast-finality using the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/) which runs on top of [Tendermint Core](https://github.com/tendermint/tendermint) consensus engine.

## Careers

See our open positions on [Evmos Careers](https://evmos.org/careers).

## Community

The following chat channels and forums are a great spot to ask questions about Ethermint:
This Ethermint fork is maintained by the team at ZetaChain.

- [Evmos Twitter](https://twitter.com/EvmosOrg)
- [Evmos Discord](https://discord.gg/evmos)
- [Evmos Telegram](https://t.me/EvmosOrg)
- [Altiplanic Twitter](https://twitter.com/Altiplanic_io)
Ethermint is a scalable and interoperable Ethereum library originally developed by EVMOS, built on Proof-of-Stake with fast-finality using the [Cosmos SDK](https://github.com/cosmos/cosmos-sdk/) which runs on top of [Tendermint Core](https://github.com/tendermint/tendermint) consensus engine.
1 change: 1 addition & 0 deletions crypto/hd/algorithm.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ func EthSecp256k1Option() keyring.Option {
}

var (
//nosec

Check failure on line 59 in crypto/hd/algorithm.go

View workflow job for this annotation

GitHub Actions / Run golangci-lint

commentFormatting: put a space between `//` and comment text (gocritic)
_ keyring.SignatureAlgo = EthSecp256k1

// EthSecp256k1 uses the Bitcoin secp256k1 ECDSA parameters.
Expand Down

0 comments on commit d886fcf

Please sign in to comment.