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

com.yanxisir.neb.bean.enums.ENebTopic Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package com.yanxisir.neb.bean.enums;

/**
 * @author YanxiSir
 * @since 2018/5/19
 */
public enum ENebTopic {

    /**
     * The topic of pending a transaction in transaction_pool.
     */
    PENDING_TX("chain.pendingTransaction"),

    /**
     * The topic of updating latest irreversible block.
     */

    LIB_BLOCK("chain.latestIrreversibleBlock"),

    /**
     * The topic of executing and submitting tx.
     */
    TX_RESULT("chain.transactionResult"),

    /**
     * The topic of setting new tail block.
     */
    NEW_TAIL_BLOCK("chain.newTailBlock"),

    /**
     * The topic of reverting block.
     */
    REVERT_BLOCK("chain.revertBlock");

    private String value;

    ENebTopic(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy