2019-08-25 09:39:20 +03:00
|
|
|
"use strict";
|
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = function (d, b) {
|
|
|
|
extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
2021-03-08 02:24:04 +03:00
|
|
|
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
2019-08-25 09:39:20 +03:00
|
|
|
return extendStatics(d, b);
|
|
|
|
};
|
|
|
|
return function (d, b) {
|
2021-03-08 02:24:04 +03:00
|
|
|
if (typeof b !== "function" && b !== null)
|
|
|
|
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
2019-08-25 09:39:20 +03:00
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2021-03-08 02:24:04 +03:00
|
|
|
exports.FixedBytesCoder = void 0;
|
2019-08-25 09:39:20 +03:00
|
|
|
var bytes_1 = require("@ethersproject/bytes");
|
|
|
|
var abstract_coder_1 = require("./abstract-coder");
|
|
|
|
// @TODO: Merge this with bytes
|
|
|
|
var FixedBytesCoder = /** @class */ (function (_super) {
|
|
|
|
__extends(FixedBytesCoder, _super);
|
|
|
|
function FixedBytesCoder(size, localName) {
|
|
|
|
var _this = this;
|
|
|
|
var name = "bytes" + String(size);
|
|
|
|
_this = _super.call(this, name, name, localName, false) || this;
|
|
|
|
_this.size = size;
|
|
|
|
return _this;
|
|
|
|
}
|
2020-11-23 11:43:28 +03:00
|
|
|
FixedBytesCoder.prototype.defaultValue = function () {
|
|
|
|
return ("0x0000000000000000000000000000000000000000000000000000000000000000").substring(0, 2 + this.size * 2);
|
|
|
|
};
|
2019-08-25 09:39:20 +03:00
|
|
|
FixedBytesCoder.prototype.encode = function (writer, value) {
|
|
|
|
var data = bytes_1.arrayify(value);
|
|
|
|
if (data.length !== this.size) {
|
|
|
|
this._throwError("incorrect data length", value);
|
|
|
|
}
|
|
|
|
return writer.writeBytes(data);
|
|
|
|
};
|
|
|
|
FixedBytesCoder.prototype.decode = function (reader) {
|
|
|
|
return reader.coerce(this.name, bytes_1.hexlify(reader.readBytes(this.size)));
|
|
|
|
};
|
|
|
|
return FixedBytesCoder;
|
|
|
|
}(abstract_coder_1.Coder));
|
|
|
|
exports.FixedBytesCoder = FixedBytesCoder;
|
2020-07-13 15:03:56 +03:00
|
|
|
//# sourceMappingURL=fixed-bytes.js.map
|