mirror of
https://github.com/0glabs/0g-storage-node.git
synced 2025-04-04 15:35:18 +00:00

Some checks are pending
abi-consistent-check / build-and-compare (push) Waiting to run
code-coverage / unittest-cov (push) Waiting to run
rust / check (push) Waiting to run
rust / test (push) Waiting to run
rust / lints (push) Waiting to run
functional-test / test (push) Waiting to run
* do not pad tx during sync phase * add pad data store * support async padding after sync phase * split misc * add sleep for the next loop
28 lines
705 B
Rust
28 lines
705 B
Rust
use ethers::prelude::abigen;
|
|
|
|
// run `cargo doc -p contract-interface --open` to read struct definition
|
|
|
|
#[cfg(not(feature = "dev"))]
|
|
abigen!(ZgsFlow, "../../storage-contracts-abis/Flow.json");
|
|
|
|
#[cfg(not(feature = "dev"))]
|
|
abigen!(PoraMine, "../../storage-contracts-abis/PoraMine.json");
|
|
|
|
#[cfg(not(feature = "dev"))]
|
|
abigen!(
|
|
ChunkLinearReward,
|
|
"../../storage-contracts-abis/ChunkLinearReward.json"
|
|
);
|
|
|
|
#[cfg(feature = "dev")]
|
|
abigen!(ZgsFlow, "../../storage-contracts-abis/Flow.json");
|
|
|
|
#[cfg(feature = "dev")]
|
|
abigen!(PoraMine, "../../storage-contracts-abis/PoraMine.json");
|
|
|
|
#[cfg(feature = "dev")]
|
|
abigen!(
|
|
ChunkLinearReward,
|
|
"../../storage-contracts-abis/ChunkLinearReward.json"
|
|
);
|