-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(eth-rpc): RPC backend, Ethereum tracer, KV indexer, and RPC APIs (…
…#1861) * Squashed commit of the following: commit 045cf6d Merge: db03210 ffcea96 Author: Unique-Divine <[email protected]> Date: Sun May 5 15:21:16 2024 -0500 Merge branch 'main' into ud/evm-rpc commit db03210 Author: Unique-Divine <[email protected]> Date: Sun May 5 15:18:59 2024 -0500 test(eth-rpc): more tests commit 14f8a2c Author: Unique-Divine <[email protected]> Date: Sun Apr 28 17:21:18 2024 -0500 test(eth): more tests commit 433780d Merge: 4f28f8f 29e2acd Author: Unique-Divine <[email protected]> Date: Sun Apr 28 14:53:34 2024 -0500 Merge branch 'main' into ud/evm-rpc commit 4f28f8f Author: Unique-Divine <[email protected]> Date: Sun Apr 28 14:51:54 2024 -0500 test(eth): eip712 more tests commit bfac1e8 Author: Unique-Divine <[email protected]> Date: Sun Apr 28 14:29:27 2024 -0500 refactor(eth): ethtypes -> eth commit b32d385 Author: Unique-Divine <[email protected]> Date: Sun Apr 28 14:24:26 2024 -0500 refactor(eth): evm/types -> evm commit a336983 Author: Unique-Divine <[email protected]> Date: Sat Apr 27 15:58:05 2024 -0500 refactor(eth): rpc/types -> rpc commit c3a6215 Merge: fe913dc 31bb3bb Author: Unique-Divine <[email protected]> Date: Sat Apr 27 13:13:37 2024 -0500 Merge branch 'ud/evm' into ud/evm-rpc commit 31bb3bb Merge: 1a05061 072de03 Author: Unique Divine <[email protected]> Date: Sat Apr 27 20:12:14 2024 +0200 Merge branch 'main' into ud/evm commit fe913dc Author: Unique-Divine <[email protected]> Date: Sat Apr 27 09:10:03 2024 -0500 test,refactor(eth): remove unnecessary nesting + more tests commit 372df12 Author: Unique-Divine <[email protected]> Date: Sat Apr 27 07:41:04 2024 -0500 ci: add CODECOV_TOKEN env var to secrets commit ac0701a Author: Unique-Divine <[email protected]> Date: Sat Apr 27 07:26:57 2024 -0500 test(eth-rpc): more tests for types dir commit 176b6c6 Author: Unique-Divine <[email protected]> Date: Fri Apr 26 20:54:04 2024 -0500 chore: linter commit 36730c5 Author: Unique-Divine <[email protected]> Date: Fri Apr 26 20:48:58 2024 -0500 feat(eth-rpc): Conversion types and functions between Ethereum txs and blocks and Tendermint ones. commit 1a05061 Author: Unique-Divine <[email protected]> Date: Fri Apr 26 08:11:57 2024 +0200 feat(eth-pubsub): Implement in-memory EventBus for real-time topic management and event distribution * feat(eth-rpc): RPC backend, Ethereum tracer, KV indexer, and RPC APIs * fix(indexer): register eth and evm types during test setup
- Loading branch information
1 parent
2bd7a14
commit 83da4ad
Showing
76 changed files
with
15,834 additions
and
72 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// Copyright (c) 2023-2024 Nibi, Inc. | ||
package appconst | ||
|
||
import ( | ||
"fmt" | ||
"runtime" | ||
) | ||
|
||
const ( | ||
BinaryName = "nibiru" | ||
BondDenom = "unibi" | ||
// AccountAddressPrefix: Bech32 prefix for Nibiru accounts. | ||
AccountAddressPrefix = "nibi" | ||
) | ||
|
||
// Runtime version vars | ||
var ( | ||
AppVersion = "" | ||
GitCommit = "" | ||
BuildDate = "" | ||
|
||
GoVersion = "" | ||
GoArch = "" | ||
) | ||
|
||
func init() { | ||
if len(AppVersion) == 0 { | ||
AppVersion = "dev" | ||
} | ||
|
||
GoVersion = runtime.Version() | ||
GoArch = runtime.GOARCH | ||
} | ||
|
||
func Version() string { | ||
return fmt.Sprintf( | ||
"Version %s (%s)\nCompiled at %s using Go %s (%s)", | ||
AppVersion, | ||
GitCommit, | ||
BuildDate, | ||
GoVersion, | ||
GoArch, | ||
) | ||
} |
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
Oops, something went wrong.