org.ton.java.smartcontract.payments.ClosingConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of smartcontract Show documentation
Show all versions of smartcontract Show documentation
Build and manipulate TON smart contracts in easy way.
package org.ton.java.smartcontract.payments;
import lombok.Builder;import lombok.Data;
import lombok.Getter;
import lombok.ToString;
import java.math.BigInteger;
@Builder
@Getter
@ToString
public class ClosingConfig {
long quarantineDuration;
BigInteger misbehaviorFine;
long conditionalCloseDuration;
}