fuel-core 0.18.3

Fuel client library is aggregation of all fuels service. It contains the all business logic of the fuel protocol.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::database::Column;
use fuel_core_relayer::ports::RelayerMetadata;

use super::storage::DatabaseColumn;

impl DatabaseColumn for RelayerMetadata {
    fn column() -> Column {
        Column::RelayerMetadata
    }
}