Esempio n. 1
0
 public AddressTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder(false, 8);
 }
 public Bytes32TypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this._elementType = elementType;
     _intTypeEncoder   = new IntTypeEncoder();
 }
Esempio n. 5
0
 public StaticArrayTypeEncoder(ABIType elementType, int arraySize)
 {
     this.elementType = elementType;
     this.arraySize   = arraySize;
     intTypeEncoder   = new IntTypeEncoder();
 }