ethabi-decode 3.0.0

Decoding of ABI-encoded data and event logs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright 2020 Snowfork
//
// SPDX-License-Identifier: Apache-2.0
//
// Licensed under the Apache License, Version 2.0 <LICENSE or
// http://www.apache.org/licenses/LICENSE-2.0>. This file may not be
// copied, modified, or distributed except according to those terms.

#[cfg(not(feature = "std"))]
pub use alloc::{boxed::Box, collections::btree_map::BTreeMap, vec, vec::Vec};

#[cfg(feature = "std")]
pub use std::{boxed::Box, collections::btree_map::BTreeMap, vec, vec::Vec};