Inheritance: ITypeEncoder
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this._elementType = elementType;
     _intTypeEncoder   = new IntTypeEncoder();
 }
Ejemplo n.º 2
0
 public ParametersEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 3
0
 public AddressTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 4
0
 public IntType(string name) : base(name)
 {
     Decoder = new IntTypeDecoder();
     Encoder = new IntTypeEncoder();
 }
Ejemplo n.º 5
0
 public BoolTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 6
0
 public BytesTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 7
0
 public BoolTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 8
0
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder(false, 8);
 }
Ejemplo n.º 9
0
 public BoolTypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 10
0
 public Bytes32TypeEncoder()
 {
     this.intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 11
0
 public DynamicArrayTypeEncoder(ABIType elementType)
 {
     this.elementType = elementType;
     this.intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 12
0
 public StaticArrayTypeEncoder(ABIType elementType, int arraySize)
 {
     this.elementType = elementType;
     this.arraySize   = arraySize;
     intTypeEncoder   = new IntTypeEncoder();
 }
Ejemplo n.º 13
0
 public BoolTypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 14
0
 public AddressTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 15
0
 public Bytes32TypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 16
0
 public Bytes32TypeEncoder()
 {
     _intTypeEncoder = new IntTypeEncoder();
 }
Ejemplo n.º 17
0
 public BytesTypeEncoder()
 {
     intTypeEncoder = new IntTypeEncoder();
 }