Interface Admin

All Superinterfaces:
Batcher, Ethereum, Web3j, Web3jRx
All Known Implementing Classes:
JsonRpc2_0Admin

@Deprecated public interface Admin extends Web3j
Deprecated.
JSON-RPC Request object building factory for common Parity and Geth. Personal namespace has now been deprecated in favour of using Clef as an external signer and account manager. Read more - https://geth.ethereum.org/docs/interacting-with-geth/rpc/ns-personal
  • Method Details

    • build

      static Admin build(Web3jService web3jService)
      Deprecated.
      Description copied from interface: Web3j
      Construct a new Web3j instance.
      Parameters:
      web3jService - web3j service instance - i.e. HTTP or IPC
      Returns:
      new Web3j instance
    • build

      static Admin build(Web3jService web3jService, long pollingInterval, ScheduledExecutorService scheduledExecutorService)
      Deprecated.
      Description copied from interface: Web3j
      Construct a new Web3j instance.
      Parameters:
      web3jService - web3j service instance - i.e. HTTP or IPC
      pollingInterval - polling interval for responses from network nodes
      scheduledExecutorService - executor service to use for scheduled tasks. You are responsible for terminating this thread pool
      Returns:
      new Web3j instance
    • personalListAccounts

      Request<?,PersonalListAccounts> personalListAccounts()
      Deprecated.
    • personalNewAccount

      Request<?,NewAccountIdentifier> personalNewAccount(String password)
      Deprecated.
    • personalUnlockAccount

      Request<?,PersonalUnlockAccount> personalUnlockAccount(String address, String passphrase, BigInteger duration)
      Deprecated.
    • personalUnlockAccount

      Request<?,PersonalUnlockAccount> personalUnlockAccount(String address, String passphrase)
      Deprecated.
    • personalSendTransaction

      Request<?,EthSendTransaction> personalSendTransaction(Transaction transaction, String password)
      Deprecated.
    • txPoolContent

      Request<?,TxPoolContent> txPoolContent()
      Deprecated.