Inheritance: ITypeEncoder
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this._elementType = elementType;
     _intTypeEncoder   = new IntTypeEncoder();
 }
 public ParametersEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
 public AddressTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Beispiel #4
0
 public IntType(string name) : base(name)
 {
     Decoder = new IntTypeDecoder();
     Encoder = new IntTypeEncoder();
 }
Beispiel #5
0
 public BoolTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
 public BytesTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Beispiel #7
0
 public BoolTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Beispiel #8
0
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder(false, 8);
 }
Beispiel #9
0
 public BoolTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Beispiel #10
0
 public Bytes32TypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this.elementType = elementType;
     this.intTypeEncoder = new IntTypeEncoder();
 }
 public StaticArrayTypeEncoder(ABIType elementType, int arraySize)
 {
     this.elementType = elementType;
     this.arraySize   = arraySize;
     intTypeEncoder   = new IntTypeEncoder();
 }
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
 public AddressTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
 public Bytes32TypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Beispiel #16
0
 public Bytes32TypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
 public BytesTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }