java.lang.Object
org.fisco.bcos.sdk.transaction.model.bo.AbiInfo

public class AbiInfo
extends java.lang.Object
  • Constructor Summary

    Constructors 
    Constructor Description
    AbiInfo​(java.util.Map<java.lang.String,​java.util.List<ABIDefinition>> contractFuncAbis, java.util.Map<java.lang.String,​ABIDefinition> contractConstructAbi)
    create the AbiInfo object
  • Method Summary

    Modifier and Type Method Description
    ABIDefinition findConstructor​(java.lang.String contractName)  
    java.util.List<ABIDefinition> findFuncAbis​(java.lang.String contractName)  

    Methods inherited from class java.lang.Object

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

    • AbiInfo

      public AbiInfo​(java.util.Map<java.lang.String,​java.util.List<ABIDefinition>> contractFuncAbis, java.util.Map<java.lang.String,​ABIDefinition> contractConstructAbi)
      create the AbiInfo object
      Parameters:
      contractFuncAbis - maps between the contract name and the contract abi
      contractConstructAbi - maps between the contract name and the constructor abi
  • Method Details