-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: customizable gas markets (with EIP-1559 default), base fee osci…
…llation, premium distribution (#1173) Co-authored-by: cryptoAtwill <willes.lau@protocol.ai>
Showing
33 changed files
with
1,533 additions
and
153 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,34 @@ | ||
[package] | ||
name = "fendermint_actors_api" | ||
description = "API and interface types for pluggable actors." | ||
license.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
version = "0.1.0" | ||
|
||
[lib] | ||
## lib is necessary for integration tests | ||
## cdylib is necessary for Wasm build | ||
crate-type = ["cdylib", "lib"] | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
cid = { workspace = true } | ||
fil_actors_runtime = { workspace = true } | ||
fvm_ipld_blockstore = { workspace = true } | ||
fvm_ipld_encoding = { workspace = true } | ||
fvm_shared = { workspace = true } | ||
log = { workspace = true } | ||
multihash = { workspace = true } | ||
num-derive = { workspace = true } | ||
num-traits = { workspace = true } | ||
serde = { workspace = true } | ||
hex-literal = { workspace = true } | ||
frc42_dispatch = { workspace = true } | ||
|
||
[dev-dependencies] | ||
fil_actors_evm_shared = { workspace = true } | ||
fil_actors_runtime = { workspace = true, features = ["test_utils"] } | ||
|
||
[features] | ||
fil-actor = ["fil_actors_runtime/fil-actor"] |
Oops, something went wrong.