saepenatus
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
31 lines (23 loc) • 928 B
text/typescript
import { arrayify, BytesLike, hexlify } from "@ethersproject/bytes";
import { Coder, Reader, Writer } from "./abstract-coder";
// @TODO: Merge this with bytes
export class FixedBytesCoder extends Coder {
readonly size: number;
constructor(size: number, localName: string) {
let name = "bytes" + String(size);
super(name, name, localName, false);
this.size = size;
}
defaultValue(): string {
return ("0x0000000000000000000000000000000000000000000000000000000000000000").substring(0, 2 + this.size * 2);
}
encode(writer: Writer, value: BytesLike): number {
let data = arrayify(value);
if (data.length !== this.size) { this._throwError("incorrect data length", value); }
return writer.writeBytes(data);
}
decode(reader: Reader): any {
return reader.coerce(this.name, hexlify(reader.readBytes(this.size)));
}
}
;