#receivable?: bigint\r
#representative?: Account\r
#representative_block?: string\r
+ #version?: number\r
#weight?: bigint\r
\r
get publicKey (): string { return bytes.toHex(this.#publicKey) }\r
get receivable (): bigint | undefined { return this.#receivable }\r
get representative (): Account | undefined { return this.#representative }\r
get representative_block (): string | undefined { return this.#representative_block }\r
+ get version (): number | undefined { return this.#version }\r
get weight (): bigint | undefined { return this.#weight }\r
\r
set confirmed_balance (v: bigint | number | string) { this.#confirmed_balance = BigInt(v) }\r
}\r
}\r
set representative_block (v: string | undefined) { this.#representative_block = v }\r
+ set version (v: bigint | number | string) { this.#version = Number(v) }\r
set weight (v: bigint | number | string) { this.#weight = BigInt(v) }\r
\r
/**\r