コード例 #1
0
 public AddressTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
コード例 #2
0
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder(false, 8);
 }
コード例 #3
0
 public Bytes32TypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
コード例 #4
0
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this._elementType = elementType;
     _intTypeEncoder   = new IntTypeEncoder();
 }
コード例 #5
0
 public StaticArrayTypeEncoder(ABIType elementType, int arraySize)
 {
     this.elementType = elementType;
     this.arraySize   = arraySize;
     intTypeEncoder   = new IntTypeEncoder();
 }