KNANO: 33,
MNANO: 36,
})
-
-export const SCHEMA = Object.freeze({
- account_info: {
- fields: [
- 'frontier',
- 'open_block',
- 'representative_block',
- 'balance',
- 'modified_timestamp',
- 'block_count',
- 'account_version',
- 'confirmation_height',
- 'confirmation_height_frontier',
- 'representative',
- 'weight',
- 'receivable',
- 'confirmed_balance',
- 'confirmed_height',
- 'confirmed_frontier',
- 'confirmed_representative',
- 'confirmed_receivable'
- ],
- },
- block_info: {
- contents: {
- fields: [
- 'type',
- 'account',
- 'previous',
- 'representative',
- 'balance',
- 'link',
- 'link_as_account',
- 'signature',
- 'work'
- ],
- },
- fields: [
- 'contents',
- 'subtype',
- ],
- },
-})
--- /dev/null
+//! SPDX-FileCopyrightText: 2026 Chris Duncan <chris@codecow.com>
+//! SPDX-License-Identifier: GPL-3.0-or-later
+
+export const SCHEMA = Object.freeze({
+ account_info: {
+ fields: [
+ 'frontier',
+ 'open_block',
+ 'representative_block',
+ 'balance',
+ 'modified_timestamp',
+ 'block_count',
+ 'account_version',
+ 'confirmation_height',
+ 'confirmation_height_frontier',
+ 'representative',
+ 'weight',
+ 'receivable',
+ 'confirmed_balance',
+ 'confirmed_height',
+ 'confirmed_frontier',
+ 'confirmed_representative',
+ 'confirmed_receivable'
+ ],
+ },
+ block_info: {
+ contents: {
+ fields: [
+ 'type',
+ 'account',
+ 'previous',
+ 'representative',
+ 'balance',
+ 'link',
+ 'link_as_account',
+ 'signature',
+ 'work'
+ ],
+ },
+ fields: [
+ 'contents',
+ 'subtype',
+ ],
+ },
+})