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.AddressCoder = void 0;
|
2019-08-25 09:39:20 +03:00
|
|
|
var address_1 = require("@ethersproject/address");
|
|
|
|
var bytes_1 = require("@ethersproject/bytes");
|
|
|
|
var abstract_coder_1 = require("./abstract-coder");
|
|
|
|
var AddressCoder = /** @class */ (function (_super) {
|
|
|
|
__extends(AddressCoder, _super);
|
|
|
|
function AddressCoder(localName) {
|
|
|
|
return _super.call(this, "address", "address", localName, false) || this;
|
|
|
|
}
|
2020-11-23 11:43:28 +03:00
|
|
|
AddressCoder.prototype.defaultValue = function () {
|
|
|
|
return "0x0000000000000000000000000000000000000000";
|
|
|
|
};
|
2019-08-25 09:39:20 +03:00
|
|
|
AddressCoder.prototype.encode = function (writer, value) {
|
|
|
|
try {
|
|
|
|
address_1.getAddress(value);
|
|
|
|
}
|
|
|
|
catch (error) {
|
|
|
|
this._throwError(error.message, value);
|
|
|
|
}
|
|
|
|
return writer.writeValue(value);
|
|
|
|
};
|
|
|
|
AddressCoder.prototype.decode = function (reader) {
|
|
|
|
return address_1.getAddress(bytes_1.hexZeroPad(reader.readValue().toHexString(), 20));
|
|
|
|
};
|
|
|
|
return AddressCoder;
|
|
|
|
}(abstract_coder_1.Coder));
|
|
|
|
exports.AddressCoder = AddressCoder;
|
2020-07-13 15:03:56 +03:00
|
|
|
//# sourceMappingURL=address.js.map
|