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

com.casper.sdk.model.transaction.entrypoint.AddBidEntryPoint Maven / Gradle / Ivy

Go to download

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"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy