Viewing File: /home/ubuntu/todaykat-frontend-base/node_modules/@ethersproject/abi/src.ts/coders/anonymous.ts

"use strict";

import { Coder, Reader, Writer } from "./abstract-coder";

// Clones the functionality of an existing Coder, but without a localName
export class AnonymousCoder extends Coder {
    private coder: Coder;

    constructor(coder: Coder) {
        super(coder.name, coder.type, undefined, coder.dynamic);
        this.coder = coder;
    }

    defaultValue(): any {
        return this.coder.defaultValue();
    }

    encode(writer: Writer, value: any): number {
        return this.coder.encode(writer, value);
    }

    decode(reader: Reader): any {
        return this.coder.decode(reader);
    }
}
Back to Directory File Manager