Exemple #1
0
 public BytesTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
Exemple #2
0
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder(false, 8);
 }
Exemple #3
0
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this._elementType = elementType;
     _intTypeEncoder   = new IntTypeEncoder();
 }
Exemple #4
0
 public AddressTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
 public StaticArrayTypeEncoder(ABIType elementType, int arraySize)
 {
     this.elementType = elementType;
     this.arraySize   = arraySize;
     intTypeEncoder   = new IntTypeEncoder();
 }