2019-08-25 02:39:20 -04:00
|
|
|
"use strict";
|
|
|
|
import { toUtf8Bytes, toUtf8String } from "@ethersproject/strings";
|
|
|
|
import { DynamicBytesCoder } from "./bytes";
|
|
|
|
export class StringCoder extends DynamicBytesCoder {
|
|
|
|
constructor(localName) {
|
|
|
|
super("string", localName);
|
|
|
|
}
|
2020-11-23 03:43:28 -05:00
|
|
|
defaultValue() {
|
|
|
|
return "";
|
|
|
|
}
|
2019-08-25 02:39:20 -04:00
|
|
|
encode(writer, value) {
|
|
|
|
return super.encode(writer, toUtf8Bytes(value));
|
|
|
|
}
|
|
|
|
decode(reader) {
|
|
|
|
return toUtf8String(super.decode(reader));
|
|
|
|
}
|
|
|
|
}
|
2020-07-13 08:03:56 -04:00
|
|
|
//# sourceMappingURL=string.js.map
|