public BytesTypeEncoder() { _intTypeEncoder = new IntTypeEncoder(); }
public BoolTypeEncoder() { _intTypeEncoder = new IntTypeEncoder(false, 8); }
public DynamicArrayTypeEncoder(ABIType elementType) { this._elementType = elementType; _intTypeEncoder = new IntTypeEncoder(); }
public AddressTypeEncoder() { _intTypeEncoder = new IntTypeEncoder(); }
public StaticArrayTypeEncoder(ABIType elementType, int arraySize) { this.elementType = elementType; this.arraySize = arraySize; intTypeEncoder = new IntTypeEncoder(); }