All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.openelements.hiero.base.data.NetworkFee Maven / Gradle / Ivy

package com.openelements.hiero.base.data;

import org.jspecify.annotations.NonNull;

import java.util.Objects;

public record NetworkFee(long gas, @NonNull String transactionType) {
    public NetworkFee {
        Objects.requireNonNull(transactionType, "transactionType must not be null");
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy