Class FeeDelegatedCancelWrapper


  • public class FeeDelegatedCancelWrapper
    extends java.lang.Object
    Represents a FeeDelegatedCancelWrapper 1. This class wraps all of static methods of FeeDelegatedCancel 2. This class should be accessed via `caver.transaction.feeDelegatedCancel`
    • Constructor Summary

      Constructors 
      Constructor Description
      FeeDelegatedCancelWrapper​(Klay klaytnCall)
      Creates a FeeDelegatedCancelWrapper instance.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      FeeDelegatedCancel create​(byte[] rlpEncoded)
      Creates a FeeDelegatedCancel instance derived from a RLP-encoded FeeDelegatedCancel byte array.
      FeeDelegatedCancel create​(FeeDelegatedCancel.Builder builder)
      Creates a FeeDelegatedCancel instance using FeeDelegatedCancel.Builder
      FeeDelegatedCancel create​(java.lang.String rlpEncoded)
      Creates a FeeDelegatedCancel instance derived from a RLP-encoded FeeDelegatedCancel string.
      FeeDelegatedCancel create​(java.lang.String from, java.lang.String nonce, java.lang.String gas, java.lang.String gasPrice, java.lang.String chainId, java.util.List<SignatureData> signatures, java.lang.String feePayer, java.util.List<SignatureData> feePayerSignatures)
      Creates a FeeDelegatedCancel instance.
      FeeDelegatedCancel decode​(byte[] rlpEncoded)
      Decodes a RLP-encoded FeeDelegatedCancel byte array.
      FeeDelegatedCancel decode​(java.lang.String rlpEncoded)
      Decodes a RLP-encoded FeeDelegatedCancel string.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • FeeDelegatedCancelWrapper

        public FeeDelegatedCancelWrapper​(Klay klaytnCall)
        Creates a FeeDelegatedCancelWrapper instance.
        Parameters:
        klaytnCall - Klay RPC instance
    • Method Detail

      • create

        public FeeDelegatedCancel create​(java.lang.String rlpEncoded)
        Creates a FeeDelegatedCancel instance derived from a RLP-encoded FeeDelegatedCancel string.
        Parameters:
        rlpEncoded - RLP-encoded FeeDelegatedCancel string
        Returns:
        FeeDelegatedCancel
      • create

        public FeeDelegatedCancel create​(byte[] rlpEncoded)
        Creates a FeeDelegatedCancel instance derived from a RLP-encoded FeeDelegatedCancel byte array.
        Parameters:
        rlpEncoded - RLP-encoded FeeDelegatedCancel byte array.
        Returns:
        FeeDelegatedCancel
      • create

        public FeeDelegatedCancel create​(FeeDelegatedCancel.Builder builder)
        Creates a FeeDelegatedCancel instance using FeeDelegatedCancel.Builder
        Parameters:
        builder - FeeDelegatedCancel.Builder
        Returns:
        FeeDelegatedCancel
      • create

        public FeeDelegatedCancel create​(java.lang.String from,
                                         java.lang.String nonce,
                                         java.lang.String gas,
                                         java.lang.String gasPrice,
                                         java.lang.String chainId,
                                         java.util.List<SignatureData> signatures,
                                         java.lang.String feePayer,
                                         java.util.List<SignatureData> feePayerSignatures)
        Creates a FeeDelegatedCancel instance.
        Parameters:
        from - The address of the sender.
        nonce - A value used to uniquely identify a sender’s transaction.
        gas - The maximum amount of gas the transaction is allowed to use.
        gasPrice - A unit price of gas in peb the sender will pay for a transaction fee.
        chainId - Network ID
        signatures - A signature list
        feePayer - A fee payer address.
        feePayerSignatures - A fee payer signature list.
        Returns:
        FeeDelegatedCancel
      • decode

        public FeeDelegatedCancel decode​(java.lang.String rlpEncoded)
        Decodes a RLP-encoded FeeDelegatedCancel string.
        Parameters:
        rlpEncoded - RLP-encoded FeeDelegatedCancel string.
        Returns:
        FeeDelegatedCancel
      • decode

        public FeeDelegatedCancel decode​(byte[] rlpEncoded)
        Decodes a RLP-encoded FeeDelegatedCancel byte array.
        Parameters:
        rlpEncoded - RLP-encoded FeeDelegatedCancel byte array.
        Returns:
        FeeDelegatedCancel