Skip to content

Commit

Permalink
Implements datacap token actor. Not yet integrated with anything.
Browse files Browse the repository at this point in the history
  • Loading branch information
anorth committed Aug 11, 2022
1 parent ac3d3e8 commit e61e26e
Show file tree
Hide file tree
Showing 10 changed files with 905 additions and 3 deletions.
40 changes: 38 additions & 2 deletions Cargo.lock

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

34 changes: 34 additions & 0 deletions actors/datacap/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
name = "fil_actor_datacap"
description = "Builtin data cap actor for Filecoin"
version = "9.0.0-alpha.1"
license = "MIT OR Apache-2.0"
authors = ["Protocol Labs", "Filecoin Core Devs"]
edition = "2018"
repository = "https://github.com/filecoin-project/builtin-actors"
keywords = ["filecoin", "web3", "wasm"]

[lib]
## lib is necessary for integration tests
## cdylib is necessary for Wasm build
crate-type = ["cdylib", "lib"]

[dependencies]
fil_actors_runtime = { version = "9.0.0-alpha.1", path = "../../runtime", features = ["fil-actor"] }

cid = { version = "0.8.3", default-features = false, features = ["serde-codec"] }
fil_fungible_token = { git = "https://github.com/helix-onchain/filecoin", rev = "b5c55eadf13946155d06d76a3409fc800b9a6e64" }
fvm_ipld_blockstore = "0.1.1"
fvm_ipld_encoding = "0.2.2"
fvm_ipld_hamt = "0.5.1"
fvm_shared = { version = "0.8.0", default-features = false }
lazy_static = "1.4.0"
num-derive = "0.3.3"
num-traits = "0.2.14"
serde = { version = "1.0.136", features = ["derive"] }

[dev-dependencies]
fil_actors_runtime = { path = "../../runtime", features = ["test_utils", "sector-default"] }
[features]
fil-actor = []

Loading

0 comments on commit e61e26e

Please sign in to comment.