mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-04-22 03:17:56 +00:00
592c3b694d
* Fix MaxLockers * fix constants * fix toolchains --------- Co-authored-by: Özgün Özerk <ozgunozerk.elo@gmail.com>
12 lines
263 B
Rust
12 lines
263 B
Rust
use serde::Deserialize;
|
|
|
|
use super::{abi::AbiItem, deserialize_bytecode};
|
|
|
|
#[derive(Deserialize)]
|
|
pub struct HardhatContract {
|
|
#[allow(dead_code)]
|
|
pub abi: Vec<AbiItem>,
|
|
#[serde(deserialize_with = "deserialize_bytecode")]
|
|
pub bytecode: Vec<u8>,
|
|
}
|