ethers.js/lib.esm/abi/coders/anonymous.js

23 lines
577 B
JavaScript
Raw Normal View History

2022-09-05 23:57:11 +03:00
import { Coder } from "./abstract-coder.js";
2022-11-30 23:44:23 +03:00
/**
* Clones the functionality of an existing Coder, but without a localName
*
* @_ignore
*/
2022-09-05 23:57:11 +03:00
export class AnonymousCoder extends Coder {
coder;
constructor(coder) {
super(coder.name, coder.type, "_", coder.dynamic);
this.coder = coder;
}
defaultValue() {
return this.coder.defaultValue();
}
encode(writer, value) {
return this.coder.encode(writer, value);
}
decode(reader) {
return this.coder.decode(reader);
}
}
//# sourceMappingURL=anonymous.js.map