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

io.eosif.lib.esc.Action Maven / Gradle / Ivy

package io.eosif.lib.esc;

/**
 * Action
 * 
 * @author espritblock http://eblock.io
 *
 */
public enum Action {

	transfer("${precision},${quantity}@eosio.token"), account("account"), ram("ram"), delegate("${precision},${quantity}@eosio.token"), voteproducer("voteproducer"),
	close("${precision},${quantity}@eosio.token"),

	extransfer("${precision},${quantity}@eosio.token");

	private String code;

	private Action(String code) {
		this.code = code;
	}

	public String getCode() {
		return code;
	}

	public void setCode(String code) {
		this.code = code;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy