com.casper.sdk.model.transaction.entrypoint.AddBidEntryPoint Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of casper-java-sdk Show documentation
Show all versions of casper-java-sdk Show documentation
SDK to streamline the 3rd party Java client integration processes. Such 3rd parties include exchanges & app developers.
The newest version!
package com.casper.sdk.model.transaction.entrypoint;
/**
* The `add_bid` native entry point, used to create or top off a bid purse.
*
* Requires the following runtime args:
*
* - "public_key": `PublicKey`
* - "delegation_rate": `u8`
* - "amount": `U512`
* - "minimum_delegation_amount": `u64`
*
*
* @author [email protected]
*/
public class AddBidEntryPoint extends TransactionEntryPoint {
public AddBidEntryPoint() {
super((byte) ADD_BID_TAG, "AddBid");
}
}