Copy disabled (too large)
Download .txt
Showing preview only (11,125K chars total). Download the full file to get everything.
Repository: marvinroger/nanocurrency-js
Branch: master
Commit: 5a0d9957c50f
Files: 146
Total size: 10.6 MB
Directory structure:
gitextract_yj5mqevj/
├── .editorconfig
├── .eslintrc.js
├── .github/
│ └── workflows/
│ └── test.yml
├── .gitignore
├── .gitmodules
├── .prettierrc.js
├── README.md
├── fusee.js
├── lerna.json
├── package.json
├── packages/
│ ├── nanocurrency/
│ │ ├── LICENSE
│ │ ├── README.md
│ │ ├── __tests__/
│ │ │ ├── accelerated.js
│ │ │ ├── block.js
│ │ │ ├── browser.js
│ │ │ ├── conversion.js
│ │ │ ├── data/
│ │ │ │ ├── invalid.js
│ │ │ │ ├── valid_blocks.json
│ │ │ │ └── valid_keys.json
│ │ │ ├── hash.js
│ │ │ ├── keys.js
│ │ │ ├── signature.js
│ │ │ └── work.js
│ │ ├── assembly.d.ts
│ │ ├── docs/
│ │ │ ├── assets/
│ │ │ │ ├── css/
│ │ │ │ │ └── main.css
│ │ │ │ └── js/
│ │ │ │ ├── main.js
│ │ │ │ └── search.js
│ │ │ ├── enums/
│ │ │ │ └── unit.html
│ │ │ ├── globals.html
│ │ │ ├── index.html
│ │ │ └── interfaces/
│ │ │ ├── block.html
│ │ │ ├── blockrepresentation.html
│ │ │ ├── changeblockdata.html
│ │ │ ├── commonblockdata.html
│ │ │ ├── computeworkparams.html
│ │ │ ├── convertparams.html
│ │ │ ├── deriveaddressparams.html
│ │ │ ├── hashblockparams.html
│ │ │ ├── openblockdata.html
│ │ │ ├── receiveblockdata.html
│ │ │ ├── sendblockdata.html
│ │ │ ├── signblockparams.html
│ │ │ ├── validateworkparams.html
│ │ │ └── verifyblockparams.html
│ │ ├── examples/
│ │ │ └── pow-benchmark/
│ │ │ ├── index.html
│ │ │ └── worker.js
│ │ ├── jest.config.js
│ │ ├── package.json
│ │ ├── rollup.config.js
│ │ ├── showcase.js
│ │ ├── src/
│ │ │ ├── accelerated.ts
│ │ │ ├── assembly/
│ │ │ │ ├── blake2/
│ │ │ │ │ ├── .gitignore
│ │ │ │ │ ├── COPYING
│ │ │ │ │ ├── README.md
│ │ │ │ │ ├── b2sum/
│ │ │ │ │ │ ├── README.md
│ │ │ │ │ │ ├── b2sum.1
│ │ │ │ │ │ ├── b2sum.c
│ │ │ │ │ │ └── makefile
│ │ │ │ │ ├── bench/
│ │ │ │ │ │ ├── bench.c
│ │ │ │ │ │ ├── do.gplot
│ │ │ │ │ │ ├── makefile
│ │ │ │ │ │ └── md5.c
│ │ │ │ │ ├── csharp/
│ │ │ │ │ │ ├── Blake2Sharp/
│ │ │ │ │ │ │ ├── Blake2B.cs
│ │ │ │ │ │ │ ├── Blake2BConfig.cs
│ │ │ │ │ │ │ ├── Blake2BCore-FullyUnrolled.cs
│ │ │ │ │ │ │ ├── Blake2BCore-Inline.cs
│ │ │ │ │ │ │ ├── Blake2BCore-Simple.cs
│ │ │ │ │ │ │ ├── Blake2BCore.cs
│ │ │ │ │ │ │ ├── Blake2BHasher.cs
│ │ │ │ │ │ │ ├── Blake2BNodeHasher.cs
│ │ │ │ │ │ │ ├── Blake2BTreeConfig.cs
│ │ │ │ │ │ │ ├── Blake2IvBuilder.cs
│ │ │ │ │ │ │ ├── Blake2Sharp.csproj
│ │ │ │ │ │ │ ├── Hasher.cs
│ │ │ │ │ │ │ ├── NodeHasher.cs
│ │ │ │ │ │ │ ├── Properties/
│ │ │ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ │ │ ├── TreeHasher.cs
│ │ │ │ │ │ │ └── compression.c
│ │ │ │ │ │ ├── Blake2Sharp.CompressionCodeGen/
│ │ │ │ │ │ │ ├── Blake2Sharp.CompressionCodeGen.csproj
│ │ │ │ │ │ │ ├── Program.cs
│ │ │ │ │ │ │ └── Properties/
│ │ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ │ ├── Blake2Sharp.Tests/
│ │ │ │ │ │ │ ├── Blake2Sharp.Tests.csproj
│ │ │ │ │ │ │ ├── DebugNodeHasher.cs
│ │ │ │ │ │ │ ├── Properties/
│ │ │ │ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ │ │ │ ├── SequentialTests.cs
│ │ │ │ │ │ │ └── TestVectors.cs
│ │ │ │ │ │ └── Blake2Sharp.sln
│ │ │ │ │ ├── ref/
│ │ │ │ │ │ ├── blake2-impl.h
│ │ │ │ │ │ ├── blake2.h
│ │ │ │ │ │ ├── blake2b-ref.c
│ │ │ │ │ │ ├── blake2bp-ref.c
│ │ │ │ │ │ ├── blake2s-ref.c
│ │ │ │ │ │ ├── blake2sp-ref.c
│ │ │ │ │ │ ├── blake2xb-ref.c
│ │ │ │ │ │ ├── blake2xs-ref.c
│ │ │ │ │ │ ├── genkat-c.c
│ │ │ │ │ │ ├── genkat-json.c
│ │ │ │ │ │ └── makefile
│ │ │ │ │ ├── sse/
│ │ │ │ │ │ ├── blake2-config.h
│ │ │ │ │ │ ├── blake2-impl.h
│ │ │ │ │ │ ├── blake2.h
│ │ │ │ │ │ ├── blake2b-load-sse2.h
│ │ │ │ │ │ ├── blake2b-load-sse41.h
│ │ │ │ │ │ ├── blake2b-round.h
│ │ │ │ │ │ ├── blake2b.c
│ │ │ │ │ │ ├── blake2bp.c
│ │ │ │ │ │ ├── blake2s-load-sse2.h
│ │ │ │ │ │ ├── blake2s-load-sse41.h
│ │ │ │ │ │ ├── blake2s-load-xop.h
│ │ │ │ │ │ ├── blake2s-round.h
│ │ │ │ │ │ ├── blake2s.c
│ │ │ │ │ │ ├── blake2sp.c
│ │ │ │ │ │ ├── blake2xb.c
│ │ │ │ │ │ ├── blake2xs.c
│ │ │ │ │ │ ├── genkat-c.c
│ │ │ │ │ │ ├── genkat-json.c
│ │ │ │ │ │ └── makefile
│ │ │ │ │ └── testvectors/
│ │ │ │ │ ├── blake2-kat.h
│ │ │ │ │ ├── blake2-kat.json
│ │ │ │ │ ├── blake2b-kat.txt
│ │ │ │ │ ├── blake2bp-kat.txt
│ │ │ │ │ ├── blake2s-kat.txt
│ │ │ │ │ └── blake2sp-kat.txt
│ │ │ │ └── functions.c
│ │ │ ├── block.ts
│ │ │ ├── check.ts
│ │ │ ├── conversion.ts
│ │ │ ├── hash.ts
│ │ │ ├── index.ts
│ │ │ ├── keys.ts
│ │ │ ├── nacl.ts
│ │ │ ├── nano-base32.ts
│ │ │ ├── parse.ts
│ │ │ ├── signature.ts
│ │ │ ├── utils.ts
│ │ │ └── work.ts
│ │ ├── tsconfig.json
│ │ ├── types-local/
│ │ │ └── blakejs.d.ts
│ │ └── wasm-benchmark.js
│ └── nanocurrency-cli/
│ ├── LICENSE
│ ├── README.md
│ ├── __tests__/
│ │ └── cli.js
│ ├── package.json
│ ├── src/
│ │ └── index.ts
│ └── tsconfig.json
└── tsconfig.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .editorconfig
================================================
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
indent_style = space
indent_size = 2
================================================
FILE: .eslintrc.js
================================================
module.exports = require('./fusee').getEslintConfig()
================================================
FILE: .github/workflows/test.yml
================================================
name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lerna run build:prod
- run: yarn lerna run test
- run: yarn lerna run lint
================================================
FILE: .gitignore
================================================
### App ###
dist/
/packages/nanocurrency/assembly.js
### TS ###
.rpt2_cache/
### Node ###
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Dependency directories
node_modules/
### OS ###
.DS_Store
================================================
FILE: .gitmodules
================================================
[submodule "packages/nanocurrency/src/assembly/blake2"]
path = packages/nanocurrency/src/assembly/blake2
url = https://github.com/BLAKE2/BLAKE2.git
================================================
FILE: .prettierrc.js
================================================
module.exports = require('./fusee').getPrettierConfig()
================================================
FILE: README.md
================================================
# nanocurrency-js
[](https://github.com/marvinroger/nanocurrency-js/actions?query=branch%3Amaster+workflow%3ATest)
The `nanocurrency-js` monorepo.
## Packages
### nanocurrency
[](https://www.npmjs.com/package/nanocurrency)
A battle-tested toolkit for the Nano cryptocurrency.
The code lives in [`packages/nanocurrency/`](packages/nanocurrency/).
### nanocurrency-cli
[](https://www.npmjs.com/package/nanocurrency-cli)
A CLI for the Nano cryptocurrency. Uses the `nanocurrency` package.
The code lives in [`packages/nanocurrency-cli/`](packages/nanocurrency-cli/).
---
## Donations
If you like the project, feel free to donate some nano:
`xrb_3mrogerjhkdyj6mzf4e7aatf3xs3gp4stwc9yt9ymgasw7kr7g17t4jwwwy8`
================================================
FILE: fusee.js
================================================
module.exports = require('@marvinroger/fusee').buildFusee({
monorepo: true,
react: false,
})
================================================
FILE: lerna.json
================================================
{
"packages": [
"packages/*"
],
"version": "independent",
"npmClient": "yarn"
}
================================================
FILE: package.json
================================================
{
"private": true,
"workspaces": [
"packages/*"
],
"dependencies": {
"@marvinroger/fusee": "^3.3.0",
"lerna": "^3.13.1",
"typescript": "^3.3.3333"
},
"name": "nanocurrency-workspace"
}
================================================
FILE: packages/nanocurrency/LICENSE
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it
under certain conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
<https://www.gnu.org/licenses/why-not-lgpl.html>.
================================================
FILE: packages/nanocurrency/README.md
================================================
# nanocurrency
[](https://www.npmjs.com/package/nanocurrency)
[](https://github.com/marvinroger/nanocurrency-js/actions?query=branch%3Amaster+workflow%3ATest)
A [battle-tested](__tests__) toolkit for the Nano cryptocurrency.
If you are looking for legacy blocks, you will want the `^1.0.0` versions.

The documentation is available locally in [`docs/`](docs/) or online at [https://marvinroger.github.io/nanocurrency-js/packages/nanocurrency/docs/](https://marvinroger.github.io/nanocurrency-js/packages/nanocurrency/docs/).
---
## Features
- Generate seeds
- Derive secret keys, public keys and addresses
- Hash blocks
- Sign and verify blocks
- Compute and test proofs of work
- Check the format of seeds, secret keys, public keys, addresses, amounts, etc.
- Convert Nano units
- **[CLI doing all of the above](https://www.npmjs.com/package/nanocurrency-cli)**
---
## Usage
To install the library:
```
npm install nanocurrency
# or yarn add nanocurrency
```
```js
import * as nanocurrency from 'nanocurrency'
```
---
## Performance
You might be wondering how fast is the work generation. There's a `pow-benchmark` example in the `examples/` directory.
On an Intel Core i7-8550U CPU, with 100 iterations, [the average computation time is 18.5s per work](https://gist.github.com/marvinroger/5181d213df1306fe2f7af0578d365aa3).
Considering you can pre-compute and cache the work prior to an actual transaction, this should be satisfying for a smooth user experience.
---
## Contribute
Contributions are very welcome. To develop, make use of the following commands (using [Yarn](https://yarnpkg.com)):
- `yarn build:dev`: build the C++ code to WebAssembly and bundle the files into the `dist/` directory, without optimization so that it is fast while developing. Note that you'll need to have Docker installed
- `yarn test`: test the code
- `yarn lint`: lint the code against [JavaScript Standard Style](https://standardjs.com)
- `yarn generate-docs`: generate the `docs/` website from the [JSDoc](http://usejsdoc.org) annotations
---
## Donations
If you like the project, feel free to donate some nano:
`xrb_3mrogerjhkdyj6mzf4e7aatf3xs3gp4stwc9yt9ymgasw7kr7g17t4jwwwy8`
================================================
FILE: packages/nanocurrency/__tests__/accelerated.js
================================================
/* eslint-env jest */
/* eslint-disable @typescript-eslint/no-var-requires */
const nano = require('../dist/nanocurrency.cjs')
const { INVALID_HASHES } = require('./data/invalid')
const VALID_WORK = {
hash: 'b9cb6b51b8eb869af085c4c03e7dc539943d0bdde13b21436b687c9c7ea56cb0',
work: '0000000000010600',
}
describe('computeWork', () => {
test('computes deterministic work', async () => {
const result = await nano.computeWork(VALID_WORK.hash)
expect(result).toBe(VALID_WORK.work)
})
test('throws with invalid hashes', () => {
expect.assertions(INVALID_HASHES.length)
for (let invalidHash of INVALID_HASHES) {
expect(nano.computeWork(invalidHash)).rejects.toThrow('Hash is not valid')
}
})
test('throws with invalid worker parameters', () => {
const INVALID_WORKER_PARAMETERS = [
['p', 1],
[1.1, 1],
[-1, 1],
[0, 'p'],
[0, 1.1],
[0, -1],
[1, 1],
]
expect.assertions(INVALID_WORKER_PARAMETERS.length)
for (let invalidWorkerParameters of INVALID_WORKER_PARAMETERS) {
expect(
nano.computeWork(VALID_WORK.hash, {
workerIndex: invalidWorkerParameters[0],
workerCount: invalidWorkerParameters[1],
})
).rejects.toThrow('Worker parameters are not valid')
}
})
})
================================================
FILE: packages/nanocurrency/__tests__/block.js
================================================
/* eslint-env jest */
/* eslint-disable @typescript-eslint/no-var-requires */
const nano = require('../dist/nanocurrency.cjs')
const {
INVALID_HASHES,
INVALID_SECRET_KEYS,
INVALID_AMOUNTS,
INVALID_ADDRESSES,
INVALID_HASHES_AND_ADDRESSES,
INVALID_BLOCK_COMBINATIONS,
} = require('./data/invalid')
const VALID_STATE_BLOCKS = require('./data/valid_blocks')
const RANDOM_VALID_STATE_BLOCK = VALID_STATE_BLOCKS[0]
describe('state', () => {
test('creates correct state block', async () => {
expect.assertions(VALID_STATE_BLOCKS.length)
for (let validStateBlock of VALID_STATE_BLOCKS) {
const result = nano.createBlock(validStateBlock.secretKey, {
work: validStateBlock.block.data.work,
previous: validStateBlock.block.data.previous,
representative: validStateBlock.block.data.representative,
balance: validStateBlock.block.data.balance,
link: validStateBlock.originalLink,
})
expect(result).toEqual({
hash: validStateBlock.block.hash,
block: validStateBlock.block.data,
})
}
})
test('throws with invalid secret key', () => {
expect.assertions(INVALID_SECRET_KEYS.length)
for (let invalidSecretKey of INVALID_SECRET_KEYS) {
expect(() => {
nano.createBlock(invalidSecretKey, {
work: RANDOM_VALID_STATE_BLOCK.block.data.work,
previous: RANDOM_VALID_STATE_BLOCK.block.data.previous,
representative: RANDOM_VALID_STATE_BLOCK.block.data.representative,
balance: RANDOM_VALID_STATE_BLOCK.block.data.balance,
link: RANDOM_VALID_STATE_BLOCK.originalLink,
})
}).toThrowError('Secret key is not valid')
}
})
test('throws with unset work', () => {
expect(() => {
nano.createBlock(RANDOM_VALID_STATE_BLOCK.secretKey, {
previous: RANDOM_VALID_STATE_BLOCK.block.data.previous,
representative: RANDOM_VALID_STATE_BLOCK.block.data.representative,
balance: RANDOM_VALID_STATE_BLOCK.block.data.balance,
link: RANDOM_VALID_STATE_BLOCK.originalLink,
})
}).toThrowError('Work is not set')
})
test('throws with invalid previous', () => {
expect.assertions(INVALID_HASHES.length)
for (let invalidPrevious of INVALID_HASHES) {
expect(() => {
nano.createBlock(RANDOM_VALID_STATE_BLOCK.secretKey, {
work: RANDOM_VALID_STATE_BLOCK.block.data.work,
previous: invalidPrevious,
representative: RANDOM_VALID_STATE_BLOCK.block.data.representative,
balance: RANDOM_VALID_STATE_BLOCK.block.data.balance,
link: RANDOM_VALID_STATE_BLOCK.originalLink,
})
}).toThrowError('Previous is not valid')
}
})
test('throws with invalid previous', () => {
expect.assertions(INVALID_ADDRESSES.length)
for (let invalidRepresentative of INVALID_ADDRESSES) {
expect(() => {
nano.createBlock(RANDOM_VALID_STATE_BLOCK.secretKey, {
work: RANDOM_VALID_STATE_BLOCK.block.data.work,
previous: RANDOM_VALID_STATE_BLOCK.block.data.previous,
representative: invalidRepresentative,
balance: RANDOM_VALID_STATE_BLOCK.block.data.balance,
link: RANDOM_VALID_STATE_BLOCK.originalLink,
})
}).toThrowError('Representative is not valid')
}
})
test('throws with invalid balance', () => {
expect.assertions(INVALID_AMOUNTS.length)
for (let invalidBalance of INVALID_AMOUNTS) {
expect(() => {
nano.createBlock(RANDOM_VALID_STATE_BLOCK.secretKey, {
work: RANDOM_VALID_STATE_BLOCK.block.data.work,
previous: RANDOM_VALID_STATE_BLOCK.block.data.previous,
representative: RANDOM_VALID_STATE_BLOCK.block.data.representative,
balance: invalidBalance,
link: RANDOM_VALID_STATE_BLOCK.originalLink,
})
}).toThrowError('Balance is not valid')
}
})
test('throws with invalid link', () => {
expect.assertions(INVALID_HASHES_AND_ADDRESSES.length)
for (let invalidLink of INVALID_HASHES_AND_ADDRESSES) {
expect(() => {
nano.createBlock(RANDOM_VALID_STATE_BLOCK.secretKey, {
work: RANDOM_VALID_STATE_BLOCK.block.data.work,
previous: RANDOM_VALID_STATE_BLOCK.block.data.previous,
representative: RANDOM_VALID_STATE_BLOCK.block.data.representative,
balance: RANDOM_VALID_STATE_BLOCK.block.data.balance,
link: invalidLink,
})
}).toThrowError('Link is not valid')
}
})
test('throws with invalid combination', () => {
expect.assertions(INVALID_BLOCK_COMBINATIONS.length)
for (let invalidBlockCombination of INVALID_BLOCK_COMBINATIONS) {
expect(() => {
nano.createBlock(invalidBlockCombination.secretKey, {
work: invalidBlockCombination.work,
previous: invalidBlockCombination.previous,
representative: invalidBlockCombination.representative,
balance: invalidBlockCombination.balance,
link: invalidBlockCombination.link,
})
}).toThrowError('Block is impossible')
}
})
})
================================================
FILE: packages/nanocurrency/__tests__/browser.js
================================================
/* eslint-env jest */
/* eslint-disable @typescript-eslint/no-var-requires */
/* global NanoCurrency */
const fs = require('fs')
const { promisify } = require('util')
const puppeteer = require('puppeteer')
const readFile = promisify(fs.readFile)
let browser = null
let page = null
let umdScript = null
beforeAll(async () => {
browser = await puppeteer.launch()
page = await browser.newPage()
umdScript = await readFile('./dist/nanocurrency.umd.js', 'utf8')
})
afterAll(() => browser.close())
describe('browser', () => {
test('works in browser', async () => {
expect.assertions(2)
// load NanoCurrency
await page.evaluate(umdScript)
let result = null
// seed generation
result = await page.evaluate(async function() {
const a = await NanoCurrency.generateSeed()
const b = await NanoCurrency.generateSeed()
return { a, b }
})
expect(result.a).not.toBe(result.b)
// webassembly test (test in worker)
result = await page.evaluate(
function(passed) {
return new Promise((resolve, reject) => {
const blobURL = URL.createObjectURL(
new Blob(
[
passed.umdScript,
'(',
function() {
NanoCurrency.computeWork(
'b9cb6b51b8eb869af085c4c03e7dc539943d0bdde13b21436b687c9c7ea56cb0'
).then(work => {
postMessage(work)
})
}.toString(),
')()',
],
{
type: 'application/javascript',
}
)
)
const worker = new Worker(blobURL)
worker.onmessage = function(e) {
const work = e.data
resolve(work)
}
worker.onerror = function(err) {
reject(err)
}
URL.revokeObjectURL(blobURL)
})
},
{ umdScript }
)
expect(result).toBe('0000000000010600')
})
})
================================================
FILE: packages/nanocurrency/__tests__/conversion.js
================================================
/* eslint-env jest */
/* eslint-disable @typescript-eslint/no-var-requires */
const nano = require('../dist/nanocurrency.cjs')
const INVALID_NUMBERS = [12, '.01', '0.1.', '0..1', 'z']
const INVALID_UNITS = [12, '', 'nona', 'Kanano']
const VALID_CONVERSIONS = [
{
value: '1',
from: 'Nano',
to: 'raw',
result: '1000000000000000000000000000000',
},
{
value: '1',
from: 'raw',
to: 'Nano',
result: '0.000000000000000000000000000001',
},
{
value: '9',
from: 'raw',
to: 'MNano',
result: '0.000000000000000000000000000000000009',
},
{
value: '2000000000000000000000000000000',
from: 'raw',
to: 'Nano',
result: '2',
},
{
value: '3',
from: 'nano',
to: 'knano',
result: '0.003',
},
{
value: '3.3',
from: 'nano',
to: 'knano',
result: '0.0033',
},
{
value: '0',
from: 'Nano',
to: 'KNano',
result: '0',
},
{
value: '000.000',
from: 'Nano',
to: 'KNano',
result: '0',
},
{
value: '000.00900',
from: 'KNano',
to: 'Nano',
result: '9',
},
{
value: '10000000000000000000000000000000',
from: 'raw',
to: 'hex',
result: '0000007e37be2022c0914b2680000000',
},
{
value: '0000007e37be2022c0914b2680000000',
from: 'hex',
to: 'raw',
result: '10000000000000000000000000000000',
},
]
describe('conversion', () => {
test('converts correctly', () => {
expect.assertions(VALID_CONVERSIONS.length)
for (let validConversion of VALID_CONVERSIONS) {
expect(
nano.convert(validConversion.value, {
from: validConversion.from,
to: validConversion.to,
})
).toBe(validConversion.result)
}
})
test('throws with no explicit from and to units', () => {
expect.assertions(3)
const errorMsg = 'From or to is not valid'
expect(() => nano.convert('1')).toThrowError(errorMsg)
expect(() => nano.convert('1', { from: 'raw' })).toThrowError(errorMsg)
expect(() => nano.convert('1', { to: 'Nano' })).toThrowError(errorMsg)
})
test('throws with invalid numbers', () => {
expect.assertions(INVALID_NUMBERS.length)
for (let invalidNumber of INVALID_NUMBERS) {
expect(() =>
nano.convert(invalidNumber, { from: 'raw', to: 'Nano' })
).toThrowError('Value is not valid')
}
})
test('throws with invalid hex', () => {
expect(() =>
nano.convert('0000007e37be2022c0914b268000000', {
from: 'hex',
to: 'Nano',
})
).toThrowError('Value is not valid')
})
test('throws with invalid from unit', () => {
expect.assertions(INVALID_UNITS.length)
for (let invalidUnit of INVALID_UNITS) {
expect(() =>
nano.convert('1', { from: invalidUnit, to: 'Nano' })
).toThrowError('From or to is not valid')
}
})
test('throws with invalid to unit', () => {
expect.assertions(INVALID_UNITS.length)
for (let invalidUnit of INVALID_UNITS) {
expect(() =>
nano.convert('1', { from: 'Nano', to: invalidUnit })
).toThrowError('From or to is not valid')
}
})
})
================================================
FILE: packages/nanocurrency/__tests__/data/invalid.js
================================================
const INVALID_SEEDS = [
'',
12,
'947ee0115014a4d49a804e7fc7248e31690b80033ce7a6e3a07bdf93b2584ff',
'947ee0115014a4d49a804e7fc7248e31690b80033ce7a6e3a07bdf93b2584ffff',
'z947ee0115014a4d49a804e7fc7248e31690b80033ce7a6e3a07bdf93b2584ff',
]
const INVALID_INDEXES = ['', '0', -1, 1.1, Math.pow(2, 32)]
const INVALID_SECRET_KEYS = [
'',
12,
'3b5e95b4c4325ed5af109bfe4acde782dbab0163591d9052963723ae8e72a09',
'3b5e95b4c4325ed5af109bfe4acde782dbab0163591d9052963723ae8e72a0999',
'z3b5e95b4c4325ed5af109bfe4acde782dbab0163591d9052963723ae8e72a09',
]
const INVALID_PUBLIC_KEYS = [
'',
12,
'd312f604f638adf19afac6308ecbbc5881e1b6cd6f53d382775c686bca7535b',
'd312f604f638adf19afac6308ecbbc5881e1b6cd6f53d382775c686bca7535bbb',
'zd312f604f638adf19afac6308ecbbc5881e1b6cd6f53d382775c686bca7535b',
]
const INVALID_HASHES = [
'',
12,
'f7122e843b27524f4f1d6bd14aefd1c8f01d36ae8653d37417533c0d4bc2be6',
'f7122e843b27524f4f1d6bd14aefd1c8f01d36ae8653d37417533c0d4bc2be666',
'zf7122e843b27524f4f1d6bd14aefd1c8f01d36ae8653d37417533c0d4bc2be6',
]
const INVALID_THRESHOLDS = [
'',
12,
'000000000995bc3',
'000000000995bc333',
'z000000000995bc3',
]
const INVALID_WORKS = [
'',
12,
'000000000995bc3',
'000000000995bc333',
'z000000000995bc3',
]
const INVALID_ADDRESSES = [
'',
12,
'axrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n4',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n44',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n4', // bad checksum
'zrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1nz',
'xrb_2mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1nz',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n0',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1n2',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1nl',
'xrb_1mbj7xi6yrwcuwetzd5535pdqjea5rfpsoqo9nw4gxg8itycgntucp49i1nv',
]
const INVALID_AMOUNTS = [
'',
12,
'bla',
'0100',
'1000000000000000000000000000000000000000',
'-1',
// a bit more than 2^128
'350000000000000000000000000000000000000',
]
const INVALID_SIGNATURES = [
'',
12,
'974324f8cc42da56f62fc212a17886bdcb18de363d04da84eedc99cb4a33919d14a2cf9de9d534faa6d0b91d01f0622205d898293525e692586c84f2dcf9208',
'z974324f8cc42da56f62fc212a17886bdcb18de363d04da84eedc99cb4a33919d14a2cf9de9d534faa6d0b91d01f0622205d898293525e692586c84f2dcf9208',
]
const INVALID_BLOCK_COMBINATIONS_COMMON = {
secretKey: '0303E12665082FA149ED78793EBB0B5E7358B8FBA71B0C4BCC6C9B1640A4FC10',
work: null,
representative:
'xrb_3d5hhcypp6sqruen8qjaazirw3knf5ttc59t67nnrjzfmqxtth4sbxaxhy8m',
balance: '6032',
}
const INVALID_BLOCK_COMBINATIONS = [
{
...INVALID_BLOCK_COMBINATIONS_COMMON,
previous: null,
link: 'xrb_3d5hhcypp6sqruen8qjaazirw3knf5ttc59t67nnrjzfmqxtth4sbxaxhy8m',
},
{
...INVALID_BLOCK_COMBINATIONS_COMMON,
previous:
'0000000000000000000000000000000000000000000000000000000000000000',
link: 'xrb_3d5hhcypp6sqruen8qjaazirw3knf5ttc59t67nnrjzfmqxtth4sbxaxhy8m',
},
{
...INVALID_BLOCK_COMBINATIONS_COMMON,
previous: null,
link: null,
},
{
...INVALID_BLOCK_COMBINATIONS_COMMON,
previous:
'0000000000000000000000000000000000000000000000000000000000000000',
link: '0000000000000000000000000000000000000000000000000000000000000000',
},
]
module.exports = {
INVALID_SEEDS,
INVALID_INDEXES,
INVALID_SECRET_KEYS,
INVALID_PUBLIC_KEYS,
INVALID_HASHES,
INVALID_THRESHOLDS,
INVALID_WORKS,
INVALID_ADDRESSES,
INVALID_AMOUNTS,
INVALID_SIGNATURES,
INVALID_HASHES_AND_ADDRESSES: INVALID_HASHES.concat(INVALID_ADDRESSES),
INVALID_BLOCK_COMBINATIONS,
}
================================================
FILE: packages/nanocurrency/__tests__/data/valid_blocks.json
================================================
[
{
"secretKey": "2B70ABB4D458DC5EDA2C998BF5454717BAA6A122AC8694A02760397DB523CA66",
"publicKey": "9DB2961B2D01D49C53AE6C9E513BC51AC04273CD4DAC4277F82B44B4F084A91A",
"originalLink": "9728D0A8B740CBABD885A20218CA0D1371A2AF5E8CF8B59CA7D7FA3C290B0CB0",
"block": {
"hash": "30B313950FE441F009649DBBEF093DC7968A970E56DADC3E50B1E23A481C5AC6",
"data": {
"type": "state",
"account": "xrb_39fkkrfkt1gnmjbtwu6yc6xwc8p1abswtmfeabuzict6pmrabcatzmh71rgc",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_3qfohkcii7dgaz3beijxc9y93x3kto5wioy5qdt5fdnq3p94psm185n7ktf6",
"balance": "881686",
"link": "9728D0A8B740CBABD885A20218CA0D1371A2AF5E8CF8B59CA7D7FA3C290B0CB0",
"link_as_account": "xrb_37sat4ndgi8doheadai45571t6ujncqox59rppgchozt9inip57ifrxqtch4",
"signature":
"59D94A7414CD685D188D5CC77B6DB4E331BBD37534DD2B69DE2198BD1E4ADB3DEBB3E5C1D38597CAA512D45A9E454DE79E995DB71BC646FAA11582A1BC5D9203",
"work": "b2ff948c874e7d62"
}
}
},
{
"secretKey": "0D926E214C7A3C80F24EDE5A344155ED6DB685100E2CC3247F2C224C84704064",
"publicKey": "73F3B468F19151C04C1427B8B66402787B8FAC13C6B64200E679A73268594FAD",
"originalLink": "1A76F69DCC71EF34BECCB28112C748F410ABBFC068CAA7E8D7F73947871E58D2",
"block": {
"hash": "0E1C50DB1EE1C0A8876AC22E6C472BE4C86E7316409016FE4FB0F0E100A79FEE",
"data": {
"type": "state",
"account": "xrb_1wzmpjnh56cjr383abxrpsk16y5ujyp39jopaa1geyf98bn7kmxfmpy46ahn",
"previous": "2DD2B07F1BBB385B7E1097363D9FCFDAA56DFA74ECB7D59A9E468E7472165660",
"representative": "xrb_1rxfoigz59dzzzo8nhfo954wanf8e39qn3zmmc1zdwac5g6z6qfuw3hx4h6q",
"balance": "0",
"link": "1A76F69DCC71EF34BECCB28112C748F410ABBFC068CAA7E8D7F73947871E58D2",
"link_as_account": "xrb_18mpytgwrwhh8kzesen34d5njx1iogzw1t8cnznfhxssay5jwp8ks6837oco",
"signature":
"900E52B6BCE05CD74063847645C3C1F47CC3AA3980A235B0CEB957FB4B6615FAC7F62628E55504F62711CF2A163EE07BC56F0E3ED75157072557526F3BE0D107",
"work": "146232c92971e467"
}
}
},
{
"secretKey": "E5A523DF83DC3A79F9DD29940500F605D51C4FA14EF56BE5CE8299082CD8A4BD",
"publicKey": "671E6C702B96D0D50AAD8FE4B7BC06FED212E066A4B07A42BE4AF402479D1799",
"originalLink": "xrb_3koo957rgp3qixffgygq7851ae9wsfimh58ssnezcsepdb3kku4qbnwx8ozp",
"block": {
"hash": "FA5EA85833EB7D2618DE2898C15E9812A9F2395F83A49E6086AD701565506CE6",
"data": {
"type": "state",
"account": "xrb_1sryfjr4q7pitn7cu5z6pyy1fzpk4di8fb7ihb3dwkqn1b5st7wsd7ey7c9s",
"previous": "242B05CEBCBFE2A564C356E1A62F78240D67B33880B543C743E18AF67E460B16",
"representative": "xrb_3dxd4z89ihf3rgxcgib4caodrw7uykwhuumwnqgk7bra5tf63xnms8jofpbn",
"balance": "3829201371931432594706",
"link": "CAB538CB875837875AD779D729860430FCCB61378CD9CD19F565965A43296C57",
"link_as_account": "xrb_3koo957rgp3qixffgygq7851ae9wsfimh58ssnezcsepdb3kku4qbnwx8ozp",
"signature":
"047AC2BD8D811E81F32F176083B9E9260D9AC50FA91E25E6EE1652344D17E8F934E8882A8829D7F77774576623D9C4CE1EBBB053ED7510A6E64EB45DA4677F0E",
"work": "66ea8c8c632b7849"
}
}
},
{
"secretKey": "0EF3C1F537250C9E263CF979A111A4CDA0BE8818E811F260609AB7B7B771DBE8",
"publicKey": "B8D2356DEA40A6C403E3625B2D3ED2B15CAC2447156302E4C01EC9B0378096AC",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "0D619F761A79931CC2840E3EFAB0127BA5E7C678BAFF8DAB8B738594C777A25E",
"data": {
"type": "state",
"account": "xrb_3g8k8opyni78ri3y8rku7nzf7ecwoik6g7d51dke19pbp1ur37oe6pypfm8a",
"previous": "F78DD73000DEF0619967601B3FA7338CEA716B65B689931635748E2E7DB93515",
"representative": "xrb_1zejt35qz7bip4rdo3hzr315t6hwawdsz367hqws1mder8ssko73feiqmq5f",
"balance": "65188764",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"4843497701782612631B1E686FFEFBEF8FDD8248821289AACC8D24CA77C5E53DB62C82379BBD5773481E1DBB0F6A688E89137B56E1779DDD2A57C010367F6C0B",
"work": "c516cb4d8345730f"
}
}
},
{
"secretKey": "0303E12665082FA149ED78793EBB0B5E7358B8FBA71B0C4BCC6C9B1640A4FC10",
"publicKey": "068E4F844401C03A1207D2B2CF75CE1BC5DD58F316238F06E489AC1C35F27870",
"originalLink": "AC6F7ABD6B1337C6D9435E2847E18E065468F5A50CFA21694C47ED9DFBAD3C59",
"block": {
"hash": "ECA6B31411754DB5C4ACD4F58B329BED5AD16216A839EC305D964A127CEE7A84",
"data": {
"type": "state",
"account": "xrb_13ngby46a1g19ab1hnoksxtww8y7uoeh87j5jw5gb4fe5itz6y5iio5jjj9z",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1ubkztghpm1c8dgnpc8jitxtmmiwue54kxm64x1i1txq8pd5kjasirnamico",
"balance": "6972319605380090339",
"link": "AC6F7ABD6B1337C6D9435E2847E18E065468F5A50CFA21694C47ED9DFBAD3C59",
"link_as_account": "xrb_3d5hhcypp6sqruen8qjaazirw3knf5ttc59t67nnrjzfmqxtth4sbxaxhy8m",
"signature":
"BC01DE00F3BD5C0246E0C61F28AD2C38E8D7068B339C938EACF66CEE3AE0391252736F95CD32FE75D92BE0F76FC573EE2631D79C14405CB86D4687A9891C760C",
"work": "0aeeab6eb789a069"
}
}
},
{
"secretKey": "6CA0E92F2E79217C7E6784B44042366A4304EF90811C340BCCC7D3F04615EEE1",
"publicKey": "77FA25DAC861D887C9DABA0184FD0F880CE707E883A583A90A4AA85096A689DB",
"originalLink": "A57F7F38B93E5D69760E89241C7C14ADE479C3ACCD26D426081F6DC0F259972F",
"block": {
"hash": "0AFA7DFA91244186F6A83655E8B3263374232DB4F0BACDFE44D4F735E4047093",
"data": {
"type": "state",
"account": "xrb_1xzt6qfeirgriz6xogi3imyiz41eww5yj1x7igninkoac4dcf4gu758new4s",
"previous": "BCD06E0986A12BF90AA0A41BD2591CF2D1329D0EC495D7FBE10A2672F303DA2A",
"representative": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm",
"balance": "6032",
"link": "A57F7F38B93E5D69760E89241C7C14ADE479C3ACCD26D426081F6DC0F259972F",
"link_as_account": "xrb_3bdzhwwdkhkxf7u1x4b65jy3bdh6h93tsmb8tim1i9ufr5s7m7shfzkazgf6",
"signature":
"2D6773382570F4807E8CD389D6D32B50468160802BD94B6A74D4122DC5BDDF77F5186FD7DE9DBA326BF5362540B47C5CA272000645F716E560CE509597855609",
"work": "24a11bbee280d232"
}
}
},
{
"secretKey": "72102D432A19F04D430A06AF5AA400B6B67AB3C8B180353587D60432C3DD693F",
"publicKey": "5F5567833AA550DA94490219C9BCFE828F5771D179C6DCE3A4A202596764A5DA",
"originalLink": "xrb_1c9g7y6rcyyqikpxjypfcqwmt9hohzn4wqqza4fpd1txkipgaepw5qrm5r7h",
"block": {
"hash": "F2E35FAD6D1CEAD037DD9E13CAA585EF52C57218AB366E88B96A4C7254A8CE66",
"data": {
"type": "state",
"account": "xrb_1qtoey3mobciucc6k1iss8yhx1nhcxrx4yg8umjtbai4d7mpbbgt38r91toq",
"previous": "CE6D5DFD605BC20570D325B198969992A2D19F24F7B19B04F494F258FD2B378A",
"representative": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7",
"balance": "14611240392021342157793389068824",
"link": "28EE2F89857BD784ADD8FACD55F93D1DF57FE82E5EFF409B65835D942CE432DC",
"link_as_account": "xrb_1c9g7y6rcyyqikpxjypfcqwmt9hohzn4wqqza4fpd1txkipgaepw5qrm5r7h",
"signature":
"2EF8DFD21D8F84067ACDE21FC146575FF4F4E09C442DC0DE31138E125430243492372244A275CA79CFF50E92F05F2DBC0A91974FE00CAB2E9D811CBCE71B080C",
"work": "baa99fb9377f2641"
}
}
},
{
"secretKey": "62DD52D845E1691401DAC7C99E1C53BA19334837D02251E96BACCB49BE55F6D5",
"publicKey": "C83CC92338C75AB4F4F7F97F314504BB107E494BA0C30CC18D7B91CAB4BB67F3",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "8422B1653358067C7AB21044E1E98E5F916BDC481B285448DE29341E35C95A08",
"data": {
"type": "state",
"account": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm",
"previous": "2D77F5A6C320250918D4A52D11A2C4E152B9A14DABD1AF69D8D89832911E1E88",
"representative": "xrb_365wn7szcuqup6qtwayytcdym74zqnhgetgerb59546bokhtnigq1bxr1aji",
"balance": "6495418964452589548950639301",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"B5F224849D373B733BBF0DCFB2288AEA15A7083BBE55DB91316C0B517DDC5D93B2124AE5D6C1BA70DE1F77E7DDDCAA04C3D4870D541E34C22A2184E874920205",
"work": "9bdb63ed75a67d64"
}
}
},
{
"secretKey": "BD8668893ACB69749D0D59D4A1AE3CC2C3F3579303A1E49236EB7A36A777215E",
"publicKey": "230E461A7BBCB728454EAD109F0ED0DA504D25735A49FB7EB2006CCFB785A173",
"originalLink": "3E67AD1A89D726B42BE498542A8E17492236B97D4ACAF112735FC9788F830A2D",
"block": {
"hash": "9238FD586AE3B84F68DE58C052B1F034149B8A6271AE647A4E64F527B612E2BB",
"data": {
"type": "state",
"account": "xrb_1argarf9qh7q734nxdaimw9f3pkibnkq8pkbzfzd615esyurdadmpp65drf9",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_36f6m7fici5brih7bwzfq453kqqurshn8sqtattpof1qyg4rjw7f6mbejxkx",
"balance": "466161376669369303449564233216",
"link": "3E67AD1A89D726B42BE498542A8E17492236B97D4ACAF112735FC9788F830A2D",
"link_as_account": "xrb_1hm9onfamos8pioyb84n7c93gkb48twqtkpcy6b98qybh49r84jffs7wgz5g",
"signature":
"E038D9488702702C95A1A4C95C6B31AFBA0979D2FD25BE703C3D82758AFC5C8892D6F09DD42655843CC8BACA9843E1FD5A261116C0E4CB5405126155912E2908",
"work": "76e14556424ac183"
}
}
},
{
"secretKey": "503681791B4F7F61E045B419C7DCF4E6D74A889ED39FF58F426921F90B5ED3F8",
"publicKey": "118BBBCB0185525C09837BB539BCC882756D9A73DF3F705A1EF7DD684D5B8527",
"originalLink": "8245CDF70018C7A4BC934AE8FB3AC030EF848BD069332945706A53370B94359F",
"block": {
"hash": "52232541BED2F6437819704B9C7ED95B3E8205A4AFC4591FB25B1FF0A56B453E",
"data": {
"type": "state",
"account": "xrb_16edqh7i53ckdi6r8yxo98yej1mofpf99qszg3f3xxyxf38oq3b9987p8zw4",
"previous": "55DB97D030018BB0A7D3652A28EE16ADCF3B5D3064C92707DFBD2F2025624A8D",
"representative": "xrb_3g8k8opyni78ri3y8rku7nzf7ecwoik6g7d51dke19pbp1ur37oe6pypfm8a",
"balance": "690888645952669781316103556501045159",
"link": "8245CDF70018C7A4BC934AE8FB3AC030EF848BD069332945706A53370B94359F",
"link_as_account": "xrb_31k7squi1889nkyb8kqazexe1e9hik7x1tbm774q1tkm8w7safeztwop4in5",
"signature":
"882CFE5E579EE27B68A6E0D4028F1A381FD603D42CDFF833F92AECDF0C2A1BB7AE88D9B1F57B801661211891AF7031A9BE7E850C9566A1F3D05BCD627F94390E",
"work": "509f99dedf9e83ad"
}
}
},
{
"secretKey": "F462A830846E7FFC38CB359A61963BE1445BC423ABCA35CEC3C91365D5D24C1C",
"publicKey": "AFAB17CC783DA1C3BAA74122522ABC70BBF4B8FDEE7CA5DD22A7081E9A40F693",
"originalLink": "xrb_1px598gfs4hu4o5mcafsnu9xccgymkicoy1uq1b8qhs8h4y46z8ik6wwsyx8",
"block": {
"hash": "1B51510F718A57230A314DB9BACC77862F3031A31A2C1BDF4715093545D47715",
"data": {
"type": "state",
"account": "xrb_3dxd4z89ihf3rgxcgib4caodrw7uykwhuumwnqgk7bra5tf63xnms8jofpbn",
"previous": "2C478BF5D855B6F45AEB83F400499FD46C58AA89DB8001C59B194C7361ABA2C3",
"representative": "xrb_3dsh3pr38its83naacjk7ubaqutx77pidmr1bz3bb1mwtouzknktx3hkk3ph",
"balance": "906562071655422295521",
"link": "5BA3399CDC89FB15473521B9A6CFD529DE9CA0AAF81BB8126BBF2678BC227CD0",
"link_as_account": "xrb_1px598gfs4hu4o5mcafsnu9xccgymkicoy1uq1b8qhs8h4y46z8ik6wwsyx8",
"signature":
"3BBB87D9B6FF2B96056BE9878087CE37124218AD7A46CF679FE51729B13475764A384E53904C987F1E1CC852E0A5B8663FDC947E8F794369625C8E87F3965D0B",
"work": "74bf94604b4eb87b"
}
}
},
{
"secretKey": "57CC014402EDD34484A9E24803C7C31718AF0A9C7298C892287B80C6948BBC7D",
"publicKey": "7B0DAEEC4A8B156E8025DCF14077C3D7C7109C21AA9C763B8E10D9CBA7171547",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "A4FCE210E9B22BFF7DE8C03D6CF4A2F31ADDB3F5EBA273BC50EA23BFE967DA69",
"data": {
"type": "state",
"account": "xrb_1yrfoup6o4roft14dq9ja3uw9oy944g45cnwgrxrw68ssgmjg7c94udjwxgx",
"previous": "0520BC5AEFB7F8457B8BFA484434E96142F4C73322795E8D8CB488C9C7CE5050",
"representative": "xrb_137x91jpmrjagzpxozhzmns685iu5xoosbpzyhy1yt6uy46uksqqdeeh8xwj",
"balance": "613739849691070",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"592A6935B5B8CD3B7885CE0A93A5A7FE4225C83792D7F843C6B2973305130B4E709700C960838988C4E49235797DE1BFC3FB070E761BB267714DC3299185840B",
"work": "61167e1a15751142"
}
}
},
{
"secretKey": "2B70ABB4D458DC5EDA2C998BF5454717BAA6A122AC8694A02760397DB523CA66",
"publicKey": "9DB2961B2D01D49C53AE6C9E513BC51AC04273CD4DAC4277F82B44B4F084A91A",
"originalLink": "801BE8988CAC1B097DB367C7AC2E65777C4E6DF13BFD4551C2194E021DCA48D1",
"block": {
"hash": "2F1ED486B407ED1027F6E97DEFAAB492CCEFDBBDFDC4570B4B864655F4FC3D80",
"data": {
"type": "state",
"account": "xrb_39fkkrfkt1gnmjbtwu6yc6xwc8p1abswtmfeabuzict6pmrabcatzmh71rgc",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4",
"balance": "7033192788234744234",
"link": "801BE8988CAC1B097DB367C7AC2E65777C4E6DF13BFD4551C2194E021DCA48D1",
"link_as_account": "xrb_311ux4easd1u37yu8sy9oiq8cxuwbspz4gzxaoaw68cg1agwnk8j4fjdk9hm",
"signature":
"75FD6E260FE51B3D4F26A5E8E76A5758211078930B61F79F2A7282E8341FA1A216499A36D183FFA608BA34089302CF9DD100DF97166D4C7BBC06EE4CE912EB0C",
"work": "b58c5569641b33cd"
}
}
},
{
"secretKey": "EAFD50E5ECE4C15AD3DBAE8DB76998F5F59CE8AAB4A63AB55AE619C2D3022F1D",
"publicKey": "5D27A314CF6CDE33FED786C404F8FE36D702A4FEB528B6035269A45F688165A0",
"originalLink": "1EC4F76D716AF5312BC731E9FA6B0D99364BA7BB940B51684DF0D02C63A387EC",
"block": {
"hash": "C12A28BC6B59C6BC7B0B4AAB838E140D2F5EA539A6475A4966D9ECA277791E1E",
"data": {
"type": "state",
"account": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"previous": "EF89B859976E066FD73451D0C9A9D14B9EA5BD77844F70E454C47E048C1B2215",
"representative": "xrb_1dnwirnrrgnr3gfru65fh51agd37es1z3c9jgk8w7cdwpzomsxi8rz4iasiq",
"balance": "8382158126459319941191312530813606",
"link": "1EC4F76D716AF5312BC731E9FA6B0D99364BA7BB940B51684DF0D02C63A387EC",
"link_as_account": "xrb_19p6yxpq4tqo86owgehbzboiu8bpbgmuq71dc7n6uw8i7jjt93zepj4g4cx7",
"signature":
"5CC5B0F740CFAA93D747CC62395CDD87799291CA969AF63885711FAE6AC3C8BF45603249B9971E0EEE995E74DE44A3ED3E0ECA899EF7A4D07DF77775FCA5AC09",
"work": "8834d325cf8a9213"
}
}
},
{
"secretKey": "131FADFF109B240D280AB1EA86691CDEE33BA397DFDF7E69005C4DBACBB6FCEE",
"publicKey": "5D3A0A0B1CFC42D5A610E3BA6855730DE82D0D582C62808D23EA808771C0015E",
"originalLink": "xrb_19x7hrjqyujm6h7bab1kacwq1en4kx9ekptnh7uwqek8y6ugqosobtdwkpot",
"block": {
"hash": "81F9A226CB5503DE54A37354F4A20B7C19A128910A330D59FADA98D86AE52D5F",
"data": {
"type": "state",
"account": "xrb_1qbt3a7jsz44tpm33rxtf3cq85ha7n8oid54i48k9tn1ixrw11cykeiefebd",
"previous": "4B9E01E66247182B334C1B8E8E28872879F44B46426DDCE7587840175AF4904D",
"representative": "xrb_1ho6cni93zdrwtupyskkn1g15reme194fa1pgqacc1okfqcgeds4zao74zwm",
"balance": "1946812523106556867328623990069",
"link": "1FA57E237F6E3323CA94241242B9703282974EC95B547977CBB246F136EBD735",
"link_as_account": "xrb_19x7hrjqyujm6h7bab1kacwq1en4kx9ekptnh7uwqek8y6ugqosobtdwkpot",
"signature":
"D61F2C29021DBFA576EDFB1235B5EBB8274F70CA7EFB67D6F6CA37BB4285C396727B64B79500E4A8207AF5DD69E4A4B102C12B35B74872557BBC8D9A2D6D000C",
"work": "5db2f6dca4f7322a"
}
}
},
{
"secretKey": "E7FA3C08CC218B2039AE5A338CC7C272F0BD8A43DF8B3A418F52A3123CE856F2",
"publicKey": "2DA03D8191AFDB558B73B2B97D5D5A2ECB87C37C852BD15AB1741C6789CADC65",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "1A2DC93888A24D6C808518A34ECD2FE5DE18267362DB1B1F05D2809852968F52",
"data": {
"type": "state",
"account": "xrb_1df19p1s5dyucp7q9eoshogondpdiz3qs3bdt7fd4x1wey6woq57seixxxu9",
"previous": "74B2F939553E8CBE5B7A04F90A2AE94A2090813C5D14CF41ECBBCCB56DF72CDC",
"representative": "xrb_1bw9spnqjiwncjzqc3wmze5urkxao4hi4co1u6dduzpbt46hm6bsxho97789",
"balance": "280888278639439900416846426145",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"9763DF2396F4EBEC07BD9D67BB54D59A1C49DA0FFD0EF97971D5BA4E4B14F5433F8014A15D10BF3F76650F6D6790906548238996926804B01B9F48DE60A0780E",
"work": "569ba77d3daa8292"
}
}
},
{
"secretKey": "EAFD50E5ECE4C15AD3DBAE8DB76998F5F59CE8AAB4A63AB55AE619C2D3022F1D",
"publicKey": "5D27A314CF6CDE33FED786C404F8FE36D702A4FEB528B6035269A45F688165A0",
"originalLink": "8914FB52974C2F293F0D00ACB787E02B0E89CEFE7C761B4384B371B9B74A0A04",
"block": {
"hash": "4B5DBDA3E278C2058C0EC4D84BD8B920C14DCD4F42E533BA73719006E966F34B",
"data": {
"type": "state",
"account": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1d6ppxyjbaq7tanidrfw76byzbijwoprcwwqi4ehn1r1dg3gmdirsgw3ekmu",
"balance": "1090998663198543396977668476",
"link": "8914FB52974C2F293F0D00ACB787E02B0E89CEFE7C761B4384B371B9B74A0A04",
"link_as_account": "xrb_34anzfbbgm3h76zit17epy5y1crgj99hwz5p5f3rbeujq8unn4i6f3149zys",
"signature":
"278F6781150469496C9DFC53F17E6FB5C0D3EED00C120F593330B9EB0723D440CD012012F893B1790DFBEF93E4DC171672D36A54BFC38D6C89E7BD37DCBDBD04",
"work": "7b174e143638b5cd"
}
}
},
{
"secretKey": "2F6136CF2B572131EDF3FFFFA06DA327E7625EA417C7E23220C0FE95F56B17BE",
"publicKey": "5BAFD81BA47996BA1417847B6A61CD7B520451A6B1E303EFE3800C0B34A328A5",
"originalLink": "4E5900AFC5D9B0D4458E2DDC9CE4C4880E0A1C81A7A585D9B86925BBE95EDB0B",
"block": {
"hash": "9156909538F2541430B6732C6B9EFEF7682D62164EB085997F9CF9B24B5511CF",
"data": {
"type": "state",
"account": "xrb_1pxhu1ftayepqac3h35ufbiwtytk1jatfeh51hqy911e3etc8c77eoehz6y3",
"previous": "5EA90DC614A01C49E7360F9A564CD95778C61A6E6AC7304F3907A2A34DD6A87A",
"representative": "xrb_3ned8rzmu76minz5jui6cqdw4eh8iknq7wm433yi9hq4aw1if9bph6163qza",
"balance": "775730146829409",
"link": "4E5900AFC5D9B0D4458E2DDC9CE4C4880E0A1C81A7A585D9B86925BBE95EDB0B",
"link_as_account": "xrb_1mks14qwdpfitj4rwdgwmmkeb41g3aga5bx7iqeuitb7qhnoxprdmcd8h1xz",
"signature":
"B8557A00C85E2FCBC374D3CA07123853B0DED499FDE2D5C96698AE34B1D9FEA0B788DB322E9CB27F6900D9E6DAFCE570553452C0E1574083CACB8CB0C9624806",
"work": "ef487fb13556857b"
}
}
},
{
"secretKey": "79FD76B208A863C7725E501ED3E6CBCC96725B28E139AB8E2E8C67029B7DD00B",
"publicKey": "3C68615B2E7EF5E1F8A36818E3737D91A04FFEEA4EB3315DF46286EDDD333752",
"originalLink": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d",
"block": {
"hash": "E5E2C144D14EBE84C7EC291A346322912C07274C93D912A33DC87B1ABD8467E7",
"data": {
"type": "state",
"account": "xrb_1h5ae7fkwzqow9wc8t1rwfsqu6f1bzzgnmom87gzarn8xqgm8ftks8xsa6du",
"previous": "53E31C9238B5EE18EE141A0C9BE3FA461334099823458DA4E31783230A4EE156",
"representative": "xrb_1tfdcfpy81nz5m74466g3mjdr8riodbqswgp4nnkmmj5cuedkd51apf6hr64",
"balance": "50154207",
"link": "512F287B1FF9F5C1EA29C1FA96FBD0A70F85D5E22F08F4026DE1DD419FBA8AE9",
"link_as_account": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d",
"signature":
"447D1C1D6CA69F9E79C3C082030787007C44CE55FED56D86F50E946086FAF4A9E1F8429F2ABC97DD95E8C917F9CFC5E74FFB84064DF488B8D73DBBC1A50AFB0D",
"work": "d31ac75ae692fb4c"
}
}
},
{
"secretKey": "19622D20FBC8AAA9E45CF016FAC7EF7D85908EE898A670B4D6A2C8AA272828D0",
"publicKey": "9795E63D9242D8C6E00FA5D95587B2E5262B1E15001A24D2F6D803DE577A0574",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "C159993439E87B26511775BC9F85BACC0A06FED3A9CE6661748440EF28FBAA74",
"data": {
"type": "state",
"account": "xrb_37wowrys6iprrui1zbgscp5u7sb87eh3c11t6mbhfp15usdqn3dn3sfp714g",
"previous": "975B244695F00DB8A7D87246D387522CDBC7B4963308C8144F8A7FEF7D090847",
"representative": "xrb_3imwuiebzmw6cgqhbf6tk5u55tnq9hjk1dsptubgeaezsaidbbzezrk7p97h",
"balance": "6758368890087426010050",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"771FB995C7C08D193A19630BA86FF4B5B76B5D4EA60FAFAD72BE391607D834B83D81E557D9481D02D04A6BFCC9F2A68DC0930745D4C204C9204962E33A61C00A",
"work": "a14973fbb178f3fa"
}
}
},
{
"secretKey": "A47503F81793D500CE57BB5760C9BDD783F074D8131637C669630BA375C75F4B",
"publicKey": "EBD545077EA30BA0C821276382C69E5ECB2409DF44625D6704F2BBAA66069F2A",
"originalLink": "9C08261B7EC0B1EF53CD5356251C59740EB53E1C081B12B5E407F5B09270B809",
"block": {
"hash": "176E15285B70ED8EA247402AFD81FDAF37D6E69C0DE799B9670BBBFE19D6FB34",
"data": {
"type": "state",
"account": "xrb_3tyoan5qxardn5644bu5id5bwqpd6i6xyj54domibwouobm1f9sciih9qfzh",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1ya3qmekr5nqft5i8k4ytpmnhnm59qcc5q4jzrc9cdk86b35iqird5ma4e7s",
"balance": "316564871690875022517937435564264033",
"link": "9C08261B7EC0B1EF53CD5356251C59740EB53E1C081B12B5E407F5B09270B809",
"link_as_account": "xrb_391a6rfqxi7jxxbwtntp6ng7kx1gpnz3r41u4ctya3zop4b93g1bf3f5sd4p",
"signature":
"55DE8C26734DCA090FBB4129CBA95BFA3CC5CE3265FBD342471FC25AEF482C33AC884AC15031BC7EEFDD24B5C17A866C9FCFB93D2DFA811D33EEF59558753305",
"work": "088e073d69fbf103"
}
}
},
{
"secretKey": "44972A8DAD0060DF940F26E76A5FF5E5DBD7CCAA5FAE4D4BD4BCBCB4090FF689",
"publicKey": "2C96B77D14A2E5D22905E1BC2913EFA611E56D8573978098FA03005B82E9AE18",
"originalLink": "E82C40B4678568AB735347F985D80FE7E0924B0060EBBD2C5CB1E92E09E74763",
"block": {
"hash": "7D773D927909164A649E854BDB562295DA1E93F6FDE2EE5315A2117AF2395689",
"data": {
"type": "state",
"account": "xrb_1d6ppxyjbaq7tanidrfw76byzbijwoprcwwqi4ehn1r1dg3gmdirsgw3ekmu",
"previous": "AFD46505C204DDD7EB24856592616E967CA45D4CDADA919E526C17F8EE525ABC",
"representative": "xrb_3mmc3ad6c8syfhymof3ta3ufp1ty6s4dt7up1gorga7k55ukpzy43hfkhtb3",
"balance": "7743146997226738890118376973464876",
"link": "E82C40B4678568AB735347F985D80FE7E0924B0060EBBD2C5CB1E92E09E74763",
"link_as_account": "xrb_3t3ea4t8h3daofso8jzsiqe1zsz1kb7i1r9dqnp7sehb7r6ygju5gaiffy8m",
"signature":
"E050E21B6424C6FE2E642D4F0E2F9D75610680ECDA1F84CCF0FE1AFE6DE28C98D0A30D1141362346858AA67C059A91F7B2DFE3D9E51B8A1225135E200B02780D",
"work": "1dbf0bd15c358cc2"
}
}
},
{
"secretKey": "A2DBFDBA2DBAB7D316C9FA5CDF196C3FA6608AC256C4D7858861A520E16F08F8",
"publicKey": "33DB63FE3373A270CB8E543BF2249F2D37E08418C7EA4F884887CA1FF33176C8",
"originalLink": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4",
"block": {
"hash": "E5D22243D725BB15F8FE251BC7A57ED571EE1F4E98836052D9DBC3C74CFD00AE",
"data": {
"type": "state",
"account": "xrb_1eyuehz58wx4g57rwo3uyakbydbqw443jjzcby66j3yc5zsm4xpafxfrmxy9",
"previous": "24B8C6C824A8E53406358C575F5D80A69DF79CB338224F65870FF11151F24AF7",
"representative": "xrb_1tfdcfpy81nz5m74466g3mjdr8riodbqswgp4nnkmmj5cuedkd51apf6hr64",
"balance": "11427",
"link": "E303F1A9A09682023E4423FCF11B2F7A7FDA33F97F8F89F02F1B78996106A6D5",
"link_as_account": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4",
"signature":
"30F1BAE7713A048285678F1592506DC24E113DC82FE1F9974A4CB0FF6DBC298A89E21A8A1CB5E8609E6B9CA5E370B931AD8A308FF81876352C5A25C5DC3AE20A",
"work": "71f88615d42d3d03"
}
}
},
{
"secretKey": "8310C2CB493870A78F9B5B58D22D72B9B67015D32DF67BFAB86DFD3E8CAB9604",
"publicKey": "CAB538CB875837875AD779D729860430FCCB61378CD9CD19F565965A43296C57",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "8755D5F116F4414CB0EEE52759455BE55B388E612D26B38018F54D85BA0B691F",
"data": {
"type": "state",
"account": "xrb_3koo957rgp3qixffgygq7851ae9wsfimh58ssnezcsepdb3kku4qbnwx8ozp",
"previous": "AE25201636383AF68E41F281330F8D77580A6416889A058456628AB62EE9D362",
"representative": "xrb_1ya3qmekr5nqft5i8k4ytpmnhnm59qcc5q4jzrc9cdk86b35iqird5ma4e7s",
"balance": "18076470",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"E04310C4D84ABB777EF4C02969FD0CA22ED3DE06A5B00C71C499D95F412B6A670D58F6210D782DFB00E6A979100F2C0F398D9C78495C9A26922B08BE3A6B3B09",
"work": "f0caa52fbf9f8a6d"
}
}
},
{
"secretKey": "E632A8EFB89665672FE614B5D49C72C1285E417DACCCC7A7F425880AEA4BCA25",
"publicKey": "B281433D0C6F013CF51C3D1406A51EA892F69DEEC871115B9F882916FC9C31C9",
"originalLink": "62CC92218866CD410597BC7CB2F1C00BBED0837294813AE2AD7CE9FB0C04EA50",
"block": {
"hash": "02837E552CB45B5F82FA5DABEB9D44E794C53378BC6B764F24DE43C928382630",
"data": {
"type": "state",
"account": "xrb_3en3aeyirur39mtjrhan1tkjxc6kytgyxk5j47fsz43b4uybregbzdtk8g55",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_3eizh9rjaaphzj4wd7mbmuawfmdz17e7pao9nbstwg4ohfhfcoxq98o6xdw7",
"balance": "9015333290969039",
"link": "62CC92218866CD410597BC7CB2F1C00BBED0837294813AE2AD7CE9FB0C04EA50",
"link_as_account": "xrb_1rpekairispfa64shh5wpdrw14xyt43q77639djctz9bze81btkii6zi5occ",
"signature":
"A724B881AD6560DB408B0DB4F16156BE080C2323A4CA64C216FED88DA3F839128EBFBC8BBAB6EA49817CFBBEC92F391EAAAE0D3EEDCBAD9F81BCDA825EF4850A",
"work": "83cd5bfbd4e3042b"
}
}
},
{
"secretKey": "BE27112FB64FDDBE82AEFC0DC0D024847D3A0B4E1316DD78C502F4C9C081D32A",
"publicKey": "D18B363F3D9493853E38EE0455D7C131E684A972F262087D03BEE24701069D36",
"originalLink": "3279E378FA51DB2E015C6B406A15E5C9F737614EA61EF1A15C4E66EDF37B930B",
"block": {
"hash": "3C1801E95246FF45BDA37E6F4B47A487414A94FF2E96F7F7BC3D96569D7CB8DF",
"data": {
"type": "state",
"account": "xrb_3ned8rzmu76minz5jui6cqdw4eh8iknq7wm433yi9hq4aw1if9bph6163qza",
"previous": "C53EB4C277A8E73C8BD56608767D6809C111AC2A4B01465ABEC0D2E4FD705E25",
"representative": "xrb_1j4s4ue3nq5pk4o6qyprwb3n948cyostprshjayt1tqmqszzsjo73kndrud7",
"balance": "12316622261830802285893393614",
"link": "3279E378FA51DB2E015C6B406A15E5C9F737614EA61EF1A15C4E66EDF37B930B",
"link_as_account": "xrb_1emswfwhnngu7r1ortt1facydkhq8xinxbiyy8iormm8xqsqq6rdpj9dh6po",
"signature":
"7C13D12462A85025672DDE5B4677746CA906CFF7BCE810F1A2544191CEAE48AF1336D4A444A9402A9BEFCD33F2BD2E1198AE64ABA70D866D63A8C7BCFFB0EE06",
"work": "24933c963cd28bc6"
}
}
},
{
"secretKey": "E7FA3C08CC218B2039AE5A338CC7C272F0BD8A43DF8B3A418F52A3123CE856F2",
"publicKey": "2DA03D8191AFDB558B73B2B97D5D5A2ECB87C37C852BD15AB1741C6789CADC65",
"originalLink": "xrb_1bw9spnqjiwncjzqc3wmze5urkxao4hi4co1u6dduzpbt46hm6bsxho97789",
"block": {
"hash": "A6FE7126C47D40425FB71E98A0CE07F5113CCB062F908CD48DAF01EC6F11D7AE",
"data": {
"type": "state",
"account": "xrb_1df19p1s5dyucp7q9eoshogondpdiz3qs3bdt7fd4x1wey6woq57seixxxu9",
"previous": "627A705730AFBED0960CD5432516E1E6F20DE7DECE00D8401FC5F6225619BC1E",
"representative": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t",
"balance": "577",
"link": "2787CDA978C394547F750793FB07BC4BA8A89F012AA0D916BDFEC9D088F99139",
"link_as_account": "xrb_1bw9spnqjiwncjzqc3wmze5urkxao4hi4co1u6dduzpbt46hm6bsxho97789",
"signature":
"544BB48703D864208C50432A9B81917B8BAEF31B02E9BD61DB0C2C9A464365AB176EDE1FBFF284F7C4786F19146C85799E38107858BB2E083E730C7F9310F801",
"work": "7e9079b761bb218a"
}
}
},
{
"secretKey": "CCFC89324F6A6512338363A43E2E3293EE7D7C5356B211DDCA64D8555D5C3A07",
"publicKey": "1597EA2FEB879C07A50E71C69983D344550FE98AA76B2DACC546AE4CB2299B49",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "FA6A0D71C38F121AEFCB81CF203D04BA5A61A84BBE174CBE63ABA1E001032824",
"data": {
"type": "state",
"account": "xrb_17eqxaqyq3ww1ykiwwg8m83x8j4o3znrobud7ppecjogbks4m8tb8ctzqeh6",
"previous": "0455881C73E8D129298D12140BE2875CE8198A08C8E39E726F82796E5BB69971",
"representative": "xrb_1bw9spnqjiwncjzqc3wmze5urkxao4hi4co1u6dduzpbt46hm6bsxho97789",
"balance": "8120959939784595521569807",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"BAF7A37AE1939AC6876190C2F6518118A73651AD060D296CA3B84329EDE3442F4CC1A427A44A1A976059A512D656187FCB0D7DB8163E60EC84EE99F82555C40A",
"work": "3392f9d9fbe13a07"
}
}
},
{
"secretKey": "51C8B2E2EFA4E3F6A772CE1E8258BDD499C4E31EE069459CBB2A8BA1FD561769",
"publicKey": "512F287B1FF9F5C1EA29C1FA96FBD0A70F85D5E22F08F4026DE1DD419FBA8AE9",
"originalLink": "FF81123B8EADF2DB06B199FA5950E9E8822639CE9DCDC9C3B67497C7C87601AC",
"block": {
"hash": "C5C2EAF0803F01A1E4F9B62E4218DA7F2E890F02BF4A40CEA223C0736B34886B",
"data": {
"type": "state",
"account": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_19x7hrjqyujm6h7bab1kacwq1en4kx9ekptnh7uwqek8y6ugqosobtdwkpot",
"balance": "1908015296692141944608728898597",
"link": "FF81123B8EADF2DB06B199FA5950E9E8822639CE9DCDC9C3B67497C7C87601AC",
"link_as_account": "xrb_3zw34axrxdhkue5d58htd7agmt646rwwx9gfs93uex6qrz69e1fe4czhpx8n",
"signature":
"5E288058663346C980319241D5851F8EFFFC8B6BB6567EC939ACD11B581D483E6CD1CA3E8523D94B5A1082547E0E0824F9D59C4440AF71077572B0596F8C8304",
"work": "14eff6c10f82a3a1"
}
}
},
{
"secretKey": "C0EC6F765B1BA0FDCA8462603339ED0A662D9678CEA4EA7BB04BAAC0ED533FA6",
"publicKey": "ECFF76F7E0B4019A42664FF2C7518DE606C4E4CFE481D86B256BCEE6310EFCD7",
"originalLink": "72021FA2D28B73C3ABF5C43F75F1B00D1CA52008776ACBF72F1D69631AC11C2D",
"block": {
"hash": "B6BD114D8DA7BB47DED095308E257010766CDB8D7541F471A8923AD9C643C418",
"data": {
"type": "state",
"account": "xrb_3u9zguuy3f13mb38emzkrxarusi8rmkezs63u3okctygwrrixz8q4odmydgp",
"previous": "27578809CE5CFE0D0F5804620F853F5E7401734D5583A8E18929F8FC526C1783",
"representative": "xrb_3jrc4imac1nox3d79fx7856y38mnknex6fk6fujthkcn79xgng8qk53dg8sr",
"balance": "9524679976149047520",
"link": "72021FA2D28B73C3ABF5C43F75F1B00D1CA52008776ACBF72F1D69631AC11C2D",
"link_as_account": "xrb_1wi45yjf74umrgozdj3zgqru15awnni1ixucshuky9dbeefe493f73wht86q",
"signature":
"DCBC64CA43C5A682A3D3EBB4034D36B3E3BCA107E5C4B31359D3785F838E80540FC71D6AED9749A36926D3965460DF32FDE0CCC17B47A80ECB24D40184A7110C",
"work": "88646c92c6d65473"
}
}
},
{
"secretKey": "8EB68483CE408EFEC6F62089E2369FE8043EFBD5108621EFEA558D3CF81F2714",
"publicKey": "826FBEE1D6A5FC5A94DAD9708D0C92B478BBBF42BF6CD5C9F7D66B03D940A312",
"originalLink": "xrb_1wzmpjnh56cjr383abxrpsk16y5ujyp39jopaa1geyf98bn7kmxfmpy46ahn",
"block": {
"hash": "76C5C5FBD8C00FF81E4F6DF762FAAD6F342C36F164E2E39A56E353005A18413B",
"data": {
"type": "state",
"account": "xrb_31mhquixfbhwdccfopdijn8b7f5rqgzn7huetq6zhomd1hen3arkpsrgkffu",
"previous": "A1DC51002198AD32D2BDEDCF1A6002FA1532CC7ABF1F00C5908404CDBB60CD81",
"representative": "xrb_3bggqhtooojsoi7i4n78sycerz91hw78ti78iq17t8c43twoen4hg5uxh369",
"balance": "38930959825765436056025084071",
"link": "73F3B468F19151C04C1427B8B66402787B8FAC13C6B64200E679A73268594FAD",
"link_as_account": "xrb_1wzmpjnh56cjr383abxrpsk16y5ujyp39jopaa1geyf98bn7kmxfmpy46ahn",
"signature":
"6BDF2B360C92EFD006D34FD35F66D0C64B13EB88FEF2DE9913510E60CE1F54AFD6E79263DED5322F8106EB44447BB89875DA65A3C9D61154297868C84EA99E0C",
"work": "64f73ad2137956e2"
}
}
},
{
"secretKey": "0EF3C1F537250C9E263CF979A111A4CDA0BE8818E811F260609AB7B7B771DBE8",
"publicKey": "B8D2356DEA40A6C403E3625B2D3ED2B15CAC2447156302E4C01EC9B0378096AC",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "B8A1AE359D52A68009B4AA3E0B6F7994F7C97B4DC4782BC70553E5120B367056",
"data": {
"type": "state",
"account": "xrb_3g8k8opyni78ri3y8rku7nzf7ecwoik6g7d51dke19pbp1ur37oe6pypfm8a",
"previous": "15F898B2B53BB235E68893498008228E6E61ED63C261183F5ED72133164365B7",
"representative": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4",
"balance": "1572311040526461260015385078350440975",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"60B9F9C140744459A4F13A34CAC736D55F4A776B5BF4FE9BA658C3EC248DFDF8016F33070097AFBDB7E07E13E1E3700ACF9C7F04BEE544DEE57DF3002FDD510D",
"work": "84c61d5e84ca0070"
}
}
},
{
"secretKey": "12559AF09AF66A335CA4D3799CB7B65CFB3D9DD878EF826262397DDD1F62FA81",
"publicKey": "BC58A3698B368565F69A9771B9BB128907CC38EB4D096E0DECFE0134F4976676",
"originalLink": "B7291BBB9929D45F04A2614B950AB9E8644E9FC38E08CCB10FA6AD682BEF9A40",
"block": {
"hash": "92CE2114C385C6642EF678EA61354110628DDAC83968E2D8EC5E9E69999920DF",
"data": {
"type": "state",
"account": "xrb_3h4rnfnrpfn7equbo7ujq8xj74a9siwgpmabfr8yszi38mtbgsmpfgz8ornf",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_36f6m7fici5brih7bwzfq453kqqurshn8sqtattpof1qyg4rjw7f6mbejxkx",
"balance": "5281236188975206815930523",
"link": "B7291BBB9929D45F04A2614B950AB9E8644E9FC38E08CCB10FA6AD682BEF9A40",
"link_as_account": "xrb_3fsb5gxskcgndw4c6rcdkn7dmt56bthw95iaskrizboff1oyz8k1jt8juadr",
"signature":
"80B9C7D12DE10D524823E21DB624AACAA5E0C1A6C3765BEBF68C9AA3B68AB4B18EED2BE3218947DBCFA5F7AE50326EDB6E3A611B17345A22295C29FCE297ED0F",
"work": "b183a5a30554747c"
}
}
},
{
"secretKey": "19622D20FBC8AAA9E45CF016FAC7EF7D85908EE898A670B4D6A2C8AA272828D0",
"publicKey": "9795E63D9242D8C6E00FA5D95587B2E5262B1E15001A24D2F6D803DE577A0574",
"originalLink": "F6C3BE85F9D503B3B44636CF908802A658785D0CDED0455EDF4B699DE175A37B",
"block": {
"hash": "1BB25AF7C7F9E7EB7E31310DE96A895CD8914F24B654FC0A6B2D2FAA6D524170",
"data": {
"type": "state",
"account": "xrb_37wowrys6iprrui1zbgscp5u7sb87eh3c11t6mbhfp15usdqn3dn3sfp714g",
"previous": "4AAFA0D53BAA58EE1A0B963D5CF3F4920A229AC8AFB36E633123774632CDC651",
"representative": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"balance": "206231100155",
"link": "F6C3BE85F9D503B3B44636CF908802A658785D0CDED0455EDF4B699DE175A37B",
"link_as_account": "xrb_3xp5qt4zmoa5pgt6efphk4617bkrh3gisqpiaohfykubmqiqdauucni7z6do",
"signature":
"43FB0CB48DE9E4B7F24305B9C38F9FECBC09D5F83A4F9CA267CC5E6CC49A14AD824BF5EB071404ECD2A56293F45E8C427D8B8E30F716AC884EE68F90BB43940A",
"work": "8faa597ecb3bb1d7"
}
}
},
{
"secretKey": "6F471A98A0AFE007B233B6AF0C59DECBABE73B9623E67846F3A7F14CBAB23E7B",
"publicKey": "947B6687080091325068125B21351BD4A6B49A66B6D73FA41D2F765381557CC0",
"originalLink": "xrb_1caxkz8itrbierf4hj38aoh4hbsxhjqx3kutcsyxmrmbeq1h84yzd3zmo6mh",
"block": {
"hash": "DB5B9F87E2225F1DAF2FDD003A7C2014D747AB0870CB7704070F81603852B638",
"data": {
"type": "state",
"account": "xrb_375uet5ii16j8ba8i6ku66tjqo78pkf8ffpq9yk3tdupcg1ocz816wwksnxc",
"previous": "7DEC67EAACFDD2433C38A8A4E3EFD2F4EA5106C40B78542CC404E3BB9A38F7CD",
"representative": "xrb_3thdnhufaghtxyaprmf7cub87a4ew9cbeh8uo3eg7sf144h37p1wattr41ug",
"balance": "3404009986054874060309831494",
"link": "291D97CD0D6130661A27C426455E27A73D7C6FD0CB7A567DD9E26965C0F30BDF",
"link_as_account": "xrb_1caxkz8itrbierf4hj38aoh4hbsxhjqx3kutcsyxmrmbeq1h84yzd3zmo6mh",
"signature":
"A2E3988D8A5414483CC78446B6D787BA4937D1B565736009804F04E9D172CFC4A8229C6FB6C0FA25DFAFDFAF2103DB7BF2736D343CD72C0FB65642E0C61BB101",
"work": "ee1e495a2f66ad11"
}
}
},
{
"secretKey": "5CE797B5F0D5E3CFF229FFF94E15247E295A26A059C67791209FB649B64764BD",
"publicKey": "0376F55904E1E0F9C68295E0ADADCEE983C35964ACC3337A9497EE37F6908A19",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "DD856AF22EF8BE25280E4770580D3BFD519550B85FE593EEC2CD063BA2791DAA",
"data": {
"type": "state",
"account": "xrb_11upyoeibrh1z95a77h1oppwxte5rfepbd858fxbb7zg8zub34isdzu9rax8",
"previous": "ADD7C0CA4EF1979B7571EF995558019A1737B7C9D5A2512B2998D9FB5C2B8F64",
"representative": "xrb_3o7oim1fumchm8hdtcmfgimenf8awxtgff1tosrfr4x7bdj8bcc6pnrxt3mb",
"balance": "35534125071651",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"1263431A682A0E145DD6A7BD8F7CA31885B9543199DD46E9B05F3C7DDC4E53C4B35EA8AD9B226D467C860CD959C17368923ADD47C7B192697A96781649927606",
"work": "cdfe56f1320e33da"
}
}
},
{
"secretKey": "1E4782A13293F5395D292552845562102B909A314F6D15C2E7EDBA13E3A5A451",
"publicKey": "90C6435504BAC8E9CF7742088B34EC429228829ADF22C786B8EC73E03F03A12D",
"originalLink": "3B9A5FC9D8AE97BB39E6D5118A333480C0A61FF9630F4D5A404AE6F896BB1996",
"block": {
"hash": "229D58660716C9878BC6494D9ED18F2D938148347D3EF4BAD57C98CF52EEAF1A",
"data": {
"type": "state",
"account": "xrb_3688afcibgpax99qgiiajetgrink743boqs4ry5dju5mw1zi9abfcfginuup",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_3iaqxun1u435t145jaanzkio6sbfod59t86h3wb5jhqh1fsptji6eh6sz44n",
"balance": "21476445132267932",
"link": "3B9A5FC9D8AE97BB39E6D5118A333480C0A61FF9630F4D5A404AE6F896BB1996",
"link_as_account": "xrb_1gwtdz6xjdnqqewyfoajjasmb181nrhzkrrhbof61kq8z4ddp8epges3yzsc",
"signature":
"44D6EBDBCEFF888C1E95AF882E713734E9853F9BF7D1DB43E2EA5243EA31220C175A63511E29CA5CDF00AC8671310471FE036110F9669361BBB1B2119E021804",
"work": "715f81e4e37b3c36"
}
}
},
{
"secretKey": "72102D432A19F04D430A06AF5AA400B6B67AB3C8B180353587D60432C3DD693F",
"publicKey": "5F5567833AA550DA94490219C9BCFE828F5771D179C6DCE3A4A202596764A5DA",
"originalLink": "370DE312C50B407FD9B3BC1C3CA67FDCF1431705BB7EECE1EE37A56AEBCB0358",
"block": {
"hash": "71AFC3C05CB77D12BDB6F62335EB70773421E9892A9AACE5AE48B284A5BDB427",
"data": {
"type": "state",
"account": "xrb_1qtoey3mobciucc6k1iss8yhx1nhcxrx4yg8umjtbai4d7mpbbgt38r91toq",
"previous": "5071E667602D01F8D923D1A99AFB439BECEA83B88E10CF210CD40620083BA956",
"representative": "xrb_37wowrys6iprrui1zbgscp5u7sb87eh3c11t6mbhfp15usdqn3dn3sfp714g",
"balance": "35901",
"link": "370DE312C50B407FD9B3BC1C3CA67FDCF1431705BB7EECE1EE37A56AEBCB0358",
"link_as_account": "xrb_1frfwebec4t1hzeu9h1w9km9zq9jaedidguyxmiywfx7fdowp1tr1dacqedq",
"signature":
"5C2386ABB55960A408398D7069586DD17B23D0FB8399524E4D2704F49D2FEBE06835C9A79F9C4E3A37779BD17EBAF13B84107F5106C0EBA2E659346971C48006",
"work": "f03cf799f810679a"
}
}
},
{
"secretKey": "DC3A60D750ADA3AE40923FDB9A27BA76C91A11CEC167547DB1F733458B424C95",
"publicKey": "469C6E5AAB7755A3C7C218894CF9E18D6CE131E71EA40DABECE7D7090EA4F9A7",
"originalLink": "xrb_13gyoiduazkymx364bezqcbg3e5fswrtwfq37s8n968xhory19myz7bgba95",
"block": {
"hash": "612A635906FC458CB0900270BF60E3F55C23338D190A8DE22904E3650F37D340",
"data": {
"type": "state",
"account": "xrb_1jnwfsfcpxtonh5w686bbmwy55dew6ryg9o63poyssyq369cbyf9nfypzosk",
"previous": "B743D5FC4DC763F91E833C542F8033186F535835CD8506100F28F04BB2D92EFB",
"representative": "xrb_3h4rnfnrpfn7equbo7ujq8xj74a9siwgpmabfr8yszi38mtbgsmpfgz8ornf",
"balance": "368",
"link": "05DEAC17B47E5E9F4241259FBA92E0B06DCF31AE36E12E4D4390DD7D71E01E7E",
"link_as_account": "xrb_13gyoiduazkymx364bezqcbg3e5fswrtwfq37s8n968xhory19myz7bgba95",
"signature":
"CC9037828639D84152C09C06FC1BD53ED03FD66AC0698735EEB4371BCBEF9F7FC2EAFC8B38F59D5450DD132E7042FD331E6E2B9590E316D3CF6652B6068D8C0F",
"work": "8ac1ff8b54fc6743"
}
}
},
{
"secretKey": "57F03A1826C1F9398CD9A7C0AFAD1A91D680DBC2CE27AFA1A912B0404A9B1E92",
"publicKey": "C816C616761BA99258409FEA1B5C285FEB0D332BEE71D2BA85117A6FDB3600E2",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "6A2D47F34B331ED31AEB59D7E3592490ECFD7040B74B872C89A7AB2BE6087D61",
"data": {
"type": "state",
"account": "xrb_3k1prrd9e8xbkbe639zc5fg4iqzd3nskqumjtcxac6dtfzfme194hgcxrfqr",
"previous": "A3E92775A7F4D2F24F9E14F307AF80E33FE1354E3C73C93CC02CC538AFA5168A",
"representative": "xrb_3wkq91j6untaxsz6kpy3wasb46gigh9y6yw7hwwxua9dm8keo5cu7jazg8z1",
"balance": "701449937172398034141931174",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"5EA467CD3D99C887B86B10CAA0605CF9C02D6C18BFB8C46ACAE960D99E386AF739A72E051CFC4DA2D9D6FB7A7946BEEB38326C1EBBADC8CA390A453F46F0D104",
"work": "f33a764991f1544f"
}
}
},
{
"secretKey": "C0EC6F765B1BA0FDCA8462603339ED0A662D9678CEA4EA7BB04BAAC0ED533FA6",
"publicKey": "ECFF76F7E0B4019A42664FF2C7518DE606C4E4CFE481D86B256BCEE6310EFCD7",
"originalLink": "B03CDE20EDD5A6CA91015B2AAEE63E9CDF7C1056CD71CDACB81BE64D6850DF69",
"block": {
"hash": "C3655C63EA0A3CB8E975184EDE3AD13FA8745FAC0DA0D4D0D0DFA252ECC360EF",
"data": {
"type": "state",
"account": "xrb_3u9zguuy3f13mb38emzkrxarusi8rmkezs63u3okctygwrrixz8q4odmydgp",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_3e1eigbschc5uudc93s3pcweidxfpbkc1c9fakywqp4mkiukpukgxdbuf3xt",
"balance": "5309956944464579",
"link": "B03CDE20EDD5A6CA91015B2AAEE63E9CDF7C1056CD71CDACB81BE64D6850DF69",
"link_as_account": "xrb_3e3wuriguof8scai4pscoum5x98zhia7fmdjsppdi8z8bon73qub3uex9cuu",
"signature":
"BD1F2C35597BA6A95F3F4E2F8FF17F707A6D6835F926FB2135C5FE9BE5EA68F7F5E523159F96629EAD3BBE543E686B8B9B618E0A5806025C722281173ED3D709",
"work": "40649ebde598fd3f"
}
}
},
{
"secretKey": "997CB6FC0E1EF1AAC438FEC07AB908797AACE9AA143829CD91B0E8050ECB591D",
"publicKey": "CDC76CE74D1DAC716A13EBACECF1511A19E87BC80A9382649894EF59118E3EF8",
"originalLink": "540B88B9631DE9FF1C3A711C012284EC622E7C6F90B8307190AB9AFE3F8636FA",
"block": {
"hash": "323549AF437DBCA08C9A8E00D8C19A25EA32B94A2B7D6E5E2F8C727202CE452D",
"data": {
"type": "state",
"account": "xrb_3mg9fmmnt9feg7o39txexmro48isx3xwi4nmibkbj79hd6arwhqrg476rbcb",
"previous": "7EBA0C690993719E8DCE5944535BDA52DFDF963E221E7A33DA94D88805C54824",
"representative": "xrb_1sryfjr4q7pitn7cu5z6pyy1fzpk4di8fb7ihb3dwkqn1b5st7wsd7ey7c9s",
"balance": "335528046061",
"link": "540B88B9631DE9FF1C3A711C012284EC622E7C6F90B8307190AB9AFE3F8636FA",
"link_as_account": "xrb_1o1dj4wp89hbzwg5nwaw16jabu547sy8z67r83rs3cwtzrzrefqtwuan4hnf",
"signature":
"C596AE8B9F965D4363097E43A7705B53B0FA8A77A4DDBFF8E93848573723F0DF54C99675ADB346772B52E6D5125011E5E60730A3F1FB208EEBE4C90B29E56207",
"work": "d9e4273c84500e0f"
}
}
},
{
"secretKey": "9977BD43BA3761CCBCE7CE484EFC4FBCD55121D64EB9F1645F0964F9CF62B0D6",
"publicKey": "28EE2F89857BD784ADD8FACD55F93D1DF57FE82E5EFF409B65835D942CE432DC",
"originalLink": "xrb_375uet5ii16j8ba8i6ku66tjqo78pkf8ffpq9yk3tdupcg1ocz816wwksnxc",
"block": {
"hash": "4BCAEA7E64BEAD96B4CE93383A05348E09F087A9DBE3D80D014F64898FF16D15",
"data": {
"type": "state",
"account": "xrb_1c9g7y6rcyyqikpxjypfcqwmt9hohzn4wqqza4fpd1txkipgaepw5qrm5r7h",
"previous": "02852C42C29DC34DC5E4052589279FAF08502FFDF1FD1D7BEB6B5564E2F8EDC7",
"representative": "xrb_3proftj1xp17anzkftnmww3b5bfysfpg9hcnqnrrs4xzgf9yip6ghdkga6sn",
"balance": "28",
"link": "947B6687080091325068125B21351BD4A6B49A66B6D73FA41D2F765381557CC0",
"link_as_account": "xrb_375uet5ii16j8ba8i6ku66tjqo78pkf8ffpq9yk3tdupcg1ocz816wwksnxc",
"signature":
"A76A082C4463F7982D4D14A3E3C227688596A50ADCE385E9E51008FA7316148E1E2BFBD74D6403ED319CDE344610106547D355A0F763A011ED9F66BBEDDB1E0E",
"work": "2d21850355f7f3b9"
}
}
},
{
"secretKey": "FF928CB6396E51FC56E3E7261837EF4D1DF7867E67F569AE163C1EEF0739C1EA",
"publicKey": "7D1D14DE5C4FDE02A7249526EB13B57241F83C548049B70022B630F77E8750A1",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "CC380F1B56F508B380EACD26FD3DD9DAC64A1FC0CC9948841871B497FCBB12F7",
"data": {
"type": "state",
"account": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t",
"previous": "5759F884C00E47F77261F7E3307B14B93F016BF060BFF12C22B37FA6F525B7CD",
"representative": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t",
"balance": "442",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"AD8E6153BAA53338F99528B3A44180BD7DECA58DB26524A64EAA57A4B1D6E4BFCFC10D59501D0A400FF5155A1221389194258DCE580529E137FD9E19D60CAB0B",
"work": "f1c35ef94cffa410"
}
}
},
{
"secretKey": "99394A9CC72290D99B28CE0A53AA553CBDE35B121AA25180059708EFA87D2F97",
"publicKey": "8B00834DD9C3F6A9CF1D043F99D8DDE383BAA794BCAD1ACF51C05C07151EE2B7",
"originalLink": "774A5F21833FCC6E60B1904A220BD4205562596E5C1DA3440C0E0FC9522A39EF",
"block": {
"hash": "697C003B436FBFCA430EE553375B6AF242F1D90B8FDA032754B10A8644583DA6",
"data": {
"type": "state",
"account": "xrb_34r1if8xmizpo99jt33zm9efurw5qcmsbh7f5d9o5i4w1wcjxroqhjm9sdj5",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_16edqh7i53ckdi6r8yxo98yej1mofpf99qszg3f3xxyxf38oq3b9987p8zw4",
"balance": "3513115",
"link": "774A5F21833FCC6E60B1904A220BD4205562596E5C1DA3440C0E0FC9522A39EF",
"link_as_account": "xrb_1xtcdwir8hyefsid564c6a7xaa4oebepwq1xnf41r5ihs7b4nghh7b7rp5px",
"signature":
"B12E6D2611AD3EBF875E631B6015B016379F840EC167C4E24E36429D1024FB63FBAD8153DA89F99D86FE42984A3A157737889A044DA593B0E50E4513B669EC06",
"work": "b9839b2cac7dc61c"
}
}
},
{
"secretKey": "EBD59E5AC46D9F835755517F34B7A69D5A90A94950E09B66704FFBAA55FD4318",
"publicKey": "04BD382369E22877EDDAFDFF9D32430E1B1F6B5CA6DFF3FC0F689BF089B966F7",
"originalLink": "25C12DC73DB78DB615AEFE3B09B3DC3364EB9D29D1A60557116DB49426DD9DDA",
"block": {
"hash": "380F98DAA6EE90BDD5929EE7C3840B4D54BE27CFA54C0C013BF2296CF0B6DA40",
"data": {
"type": "state",
"account": "xrb_137x91jpmrjagzpxozhzmns685iu5xoosbpzyhy1yt6uy46uksqqdeeh8xwj",
"previous": "5F301F9BF72926D2F28D3DCE2FDFF11F6F17A961EFA3466BEE687D958DCE0293",
"representative": "xrb_13z8wq36fgrehz1goxajjonz8b3q711aj6u11m4s9fcjoj65zisumpsif7zr",
"balance": "93342915074843579785840984383844",
"link": "25C12DC73DB78DB615AEFE3B09B3DC3364EB9D29D1A60557116DB49426DD9DDA",
"link_as_account": "xrb_1bg37q5mufwfprctxzju38sxreu6xggkmnf81odj4ufnkimfu9gtnuymu6wt",
"signature":
"3584E432A51C2845EE564E842A8BE47B5F578A3BFD67F914985CF06EFACDBFF672866861DA2BC8FDC166637C5944FD0191B02507935CAA54755CCE0C014C8C0A",
"work": "55bd3daacbdacb98"
}
}
},
{
"secretKey": "AA5E0D9DFF6916E5641CB32DA2331D2E9F060A3FAFA9061E8819B566C92EE5B0",
"publicKey": "0CAA902251CA21B5597D0A341C1FB529EB56EFA2EF94471E9A839BB48BD334FF",
"originalLink": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"block": {
"hash": "E4FC7D8BB383D0381D4E1B4168A97294E9C7700237D9C6025A14A5DAB1E2B08C",
"data": {
"type": "state",
"account": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7",
"previous": "00EFC54E84809CFAB949069080672DB1626F1C95F76D4840DFC9FA9019531C4C",
"representative": "xrb_3tyoan5qxardn5644bu5id5bwqpd6i6xyj54domibwouobm1f9sciih9qfzh",
"balance": "38474583871289134463989261393707562",
"link": "5D27A314CF6CDE33FED786C404F8FE36D702A4FEB528B6035269A45F688165A0",
"link_as_account": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"signature":
"A13480CE6199235D82A814C162DCCA3731831A44BB914AEE6C83C4D7E5BF167D1161FEF57510C84D40FD704CD8D641CA6F117CA4F1576B6D899B378405391802",
"work": "4be6d990d670b86b"
}
}
},
{
"secretKey": "8EB68483CE408EFEC6F62089E2369FE8043EFBD5108621EFEA558D3CF81F2714",
"publicKey": "826FBEE1D6A5FC5A94DAD9708D0C92B478BBBF42BF6CD5C9F7D66B03D940A312",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "C4CF5321AE75BDDC6AD341624DC13362741B161BDD19ACC29A3A00E5FE1FA6A6",
"data": {
"type": "state",
"account": "xrb_31mhquixfbhwdccfopdijn8b7f5rqgzn7huetq6zhomd1hen3arkpsrgkffu",
"previous": "26E142F43A4FCE0A8081BA08123C3AD94A32DB7AA35AD5BF29FB3147BE74E2D0",
"representative": "xrb_141enxuggjym5wt7zchst8bf3pdnayxhxbtt9za53hh3mwo9jho4jcpf5wgx",
"balance": "461278453014991359366923062246911",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"744118AD8887A1DA06B50B9C375CAEAA0BC255EF9B09837B7452059A23CF51E4C25A5E5D9954F6DD15C1229267F9AA29DD3E4823FDB0280D21803030E5C9CB0B",
"work": "90cc2ae3d16264fe"
}
}
},
{
"secretKey": "1C11D7CA256AF875FD3E148FCB95F637B20A19C95E35A36A099047711F9E5C50",
"publicKey": "CE6A0A16451B3E6BFD3AB43A4076DB035E2644BD177603AB8720B218F72B7FC2",
"originalLink": "55B6DF39F7A63B73B7AE2EE0E9FA96E4ABFDAC0D8859CC53E81255FFF780F6ED",
"block": {
"hash": "79D91F175363D7164D3CAAB542DEA89419737057603EEBDA82410EA48D0D3C42",
"data": {
"type": "state",
"account": "xrb_3mmc3ad6c8syfhymof3ta3ufp1ty6s4dt7up1gorga7k55ukpzy43hfkhtb3",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t",
"balance": "50490771456474773184599398437",
"link": "55B6DF39F7A63B73B7AE2EE0E9FA96E4ABFDAC0D8859CC53E81255FFF780F6ED",
"link_as_account": "xrb_1ofpuwwzhbjuggutwdq1x9xbfs7dzpp1u44ssjbyi6kozzur3xqfy6a36nnb",
"signature":
"649B001A9B61EFE54EFBBD031897B815B345816D3683730DE220B6D8CDFC998AB2D390DC8BC75D7629DF9D119C89A48B3E589DC06DF10E1943FDBDF0C57E910E",
"work": "3af3595e54ea535e"
}
}
},
{
"secretKey": "05285E59F97E0A839EE6454143FFA0C00B4B37F57AACD83ACD660CDB5030972C",
"publicKey": "903D6732CC76B7D2FE2CACCA3A1BCC059917ED95A53348833D4DDF482EF26C0B",
"originalLink": "4A4131F9B12428C8E02FE3CEFD4CB6E94558E01FBEBE06ED4FE62F1702EEB479",
"block": {
"hash": "AA45798BAAA5A82610D721592CEEA5C67559086512D7D6579636B6948880F102",
"data": {
"type": "state",
"account": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u",
"previous": "1BC1E9EFF9A1272D27B4460C5C886C789781D8FAC5B4BB8056EDB781474F212D",
"representative": "xrb_16edqh7i53ckdi6r8yxo98yej1mofpf99qszg3f3xxyxf38oq3b9987p8zw4",
"balance": "27125115319940994071664254517",
"link": "4A4131F9B12428C8E02FE3CEFD4CB6E94558E01FBEBE06ED4FE62F1702EEB479",
"link_as_account": "xrb_1kk389wu4b3as5i4zrygzo8dftc7d5i3zhoy1upnzsjh4w3gxf5s843kd14p",
"signature":
"0B95F19C8DAE8AB1CDC545DF21345C76D122E679B39143B4F2E3E15ECE5723D950E5D36ADE9F333DE612AF150C700518FCF2C4839444655BAE4693AEFA36540D",
"work": "42d37ee03844494d"
}
}
},
{
"secretKey": "99394A9CC72290D99B28CE0A53AA553CBDE35B121AA25180059708EFA87D2F97",
"publicKey": "8B00834DD9C3F6A9CF1D043F99D8DDE383BAA794BCAD1ACF51C05C07151EE2B7",
"originalLink": "xrb_17eqxaqyq3ww1ykiwwg8m83x8j4o3znrobud7ppecjogbks4m8tb8ctzqeh6",
"block": {
"hash": "06FF76D448E9136B1DBD76007E16BE93BC75801D124A52E3A0E012E4D34471C0",
"data": {
"type": "state",
"account": "xrb_34r1if8xmizpo99jt33zm9efurw5qcmsbh7f5d9o5i4w1wcjxroqhjm9sdj5",
"previous": "DB4AC743917B9B30DF9E6A3C531F561577026F5EFE775FA16BB3214732E9E16A",
"representative": "xrb_17hudi9uc38gx4ozy789cidwt3u1o36azydmt1pfk96pd8drb5bquj3ww8qi",
"balance": "2645098",
"link": "1597EA2FEB879C07A50E71C69983D344550FE98AA76B2DACC546AE4CB2299B49",
"link_as_account": "xrb_17eqxaqyq3ww1ykiwwg8m83x8j4o3znrobud7ppecjogbks4m8tb8ctzqeh6",
"signature":
"17FA668B8175C5AF39FB74BEE0EF4E618FF23BDC9471DF3D401BC92D34F5FA7F6A26AAC118CA304074976367B2E55C914F2920E757B9FC4F0FA2560CEA1D1004",
"work": "ea8a9cc16ad26672"
}
}
},
{
"secretKey": "80AF4A5251EB8772EE9EFAE097EA4342F0F70B2F91C62D27A2A550CD0D643E21",
"publicKey": "0FBD5882D0EC658BFAF3171B50578B0071B807D100D3546C69CFB6F8259D43D5",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "3AE091D66AF43C374FF7E59BAAFB5D0E4F805D0B7F8B6CA9749CFE4EFF2CD783",
"data": {
"type": "state",
"account": "xrb_15xxd43f3u57jhxh87ruc3drp15jq15x418mcjp8mmxpz1kstiyoqke3zjgn",
"previous": "245478B8D7C1BCA68288862E94AB837655015C42F665BF3C7978233E96AE54FF",
"representative": "xrb_365wn7szcuqup6qtwayytcdym74zqnhgetgerb59546bokhtnigq1bxr1aji",
"balance": "3913200676",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"DCD6897C8D12BF591CB3B79DF59B3F70A2E6FAFFDE260AEAF948C4AA2413249173E126EE853BF86C30C580E9A35C7C12E6C871870EF03E807B5D79D4E4F4BC00",
"work": "149c22948f65b8a7"
}
}
},
{
"secretKey": "2D5E34691592D6DF2C25E67778634CB1A47DC5A4774C21B6BA15487D089B52A2",
"publicKey": "66B82DE57708F3CC022E55A0329E4FCD83892DCDA75D0206576A639A815900DA",
"originalLink": "E570FB47E058C4CDB2FF4B10E8E4C7CDFC696B5A04E4E1B14E1F7469978AC8A9",
"block": {
"hash": "2A3972C0A305874E7AE780CC9FCF6B9C791CD2D703556FE19551C26FD5A19832",
"data": {
"type": "state",
"account": "xrb_1sor7qkqg49msi34wof18ch6zme5j6pwubtx1a57gtm5mc1ok18tx1pzew97",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4",
"balance": "127155117260679",
"link": "E570FB47E058C4CDB2FF4B10E8E4C7CDFC696B5A04E4E1B14E1F7469978AC8A9",
"link_as_account": "xrb_3sdizf5y1p86spshykrix5kehmhwf7oon396w8rnw9unf8drok7bojzip7no",
"signature":
"25BD9493383AC4CD78CF7B325C3E9491FC53BC78A6BA95FECC3D3064544F4B611C9FF03C226ABB2267BEEC8C5413292530CA41D2D089E2907005E402F114190A",
"work": "98499752eb469e0f"
}
}
},
{
"secretKey": "B00535573E7059DD236340D23497FE94A2F8AB2F5025EF62C2BF60E470BDC274",
"publicKey": "9E2DE04A9E682FACA6CC0B92F68D78DE38A999172C9C5BD43219DE74F421731B",
"originalLink": "184E970CD9888F2F286B049DADDC75E2D7AEE538012F3EBD9291678CCD7E6196",
"block": {
"hash": "90490A6A0603C8ED1719A81D76CB50402441E06F7E5A4B5D4735944E8C885A92",
"data": {
"type": "state",
"account": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4",
"previous": "93BF83E6AEF103D26B129EBD156BC628C8CFDD1986E3DA5987699829AEFE6AEB",
"representative": "xrb_3g8k8opyni78ri3y8rku7nzf7ecwoik6g7d51dke19pbp1ur37oe6pypfm8a",
"balance": "54",
"link": "184E970CD9888F2F286B049DADDC75E2D7AEE538012F3EBD9291678CCD7E6196",
"link_as_account": "xrb_184gkw8fm46h7wn8p36xoqg9drpqoukmi1bh9tys76d9jm8qwrepeqhi5iik",
"signature":
"807F6EBF7480E7728D65D98EEEA38FE345C2DDDDA4A1B7538E826FF6C5147263DF97B07483CE8B086EFE8EE5D331AA1BF5E2A8483B05DE8B36C7A7BB4D23BE0E",
"work": "5ac5c922540dcdde"
}
}
},
{
"secretKey": "A47503F81793D500CE57BB5760C9BDD783F074D8131637C669630BA375C75F4B",
"publicKey": "EBD545077EA30BA0C821276382C69E5ECB2409DF44625D6704F2BBAA66069F2A",
"originalLink": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u",
"block": {
"hash": "6FBBE50757DA12716087B8E64810C4AE9E009FA0523E5950CE8A6384F15A5C7E",
"data": {
"type": "state",
"account": "xrb_3tyoan5qxardn5644bu5id5bwqpd6i6xyj54domibwouobm1f9sciih9qfzh",
"previous": "125485C8C78846E54CD4C63B916BA23B6B17F3CDE84D0DA86EE1987D00DF48DD",
"representative": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d",
"balance": "1385479593243799198",
"link": "903D6732CC76B7D2FE2CACCA3A1BCC059917ED95A53348833D4DDF482EF26C0B",
"link_as_account": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u",
"signature":
"BEE3EBBCCDBC9691D8A83910ABB6383B2CC6B78590D66C11673FDA08EA4410B5A6C6DD57D7C9CCB82DCA102468B40016CFA7AFA255BE91A24CCD4375612C4D00",
"work": "8493c2453f0c6f6a"
}
}
},
{
"secretKey": "7FC679601AB70569790F9D0185F8D5BC6E3C12E24C98B5AECBCE2BD611085313",
"publicKey": "ABE542434CAB5176E2B93103D8A9941A11689066FBB3F4DED48F9530F634BF98",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "4A6BE090276F06C5BCA6364C16701C1EF7AEAD5E772E0488C13038658B2F7282",
"data": {
"type": "state",
"account": "xrb_3cz7ab3nsctjgujdkea5u4nsa8ijf4a8fyxmymhfb5wo85u5bhwr4tyim984",
"previous": "59CE7057F85131F19FA0747274349E0443B1FE7910664A7151023D8F5C5F6257",
"representative": "xrb_1bt7m51qby6hfb997kcgz7uqec3wtd9zysfn3uw7cww5xd1curk9kxa1xk7q",
"balance": "321933815417",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"277A7DE9C618A54471A2B536BFB476D037635E9C1EDD91EDACBC815DCD46F91AB32D8DF4B2807491FC131F9B0289A19F77A44C6813E4DD8F20C8EBD92539630F",
"work": "112c31faab98ea4d"
}
}
},
{
"secretKey": "6CA0E92F2E79217C7E6784B44042366A4304EF90811C340BCCC7D3F04615EEE1",
"publicKey": "77FA25DAC861D887C9DABA0184FD0F880CE707E883A583A90A4AA85096A689DB",
"originalLink": "A9A62BACFDB4D8815446611E9373D5675A3BE0C53AB727F34C81E7698E0D575E",
"block": {
"hash": "529CB4AD1AB6E065AD929F4642728D760837E440BF14EE84A13CF78CB9DA1F39",
"data": {
"type": "state",
"account": "xrb_1xzt6qfeirgriz6xogi3imyiz41eww5yj1x7igninkoac4dcf4gu758new4s",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1argarf9qh7q734nxdaimw9f3pkibnkq8pkbzfzd615esyurdadmpp65drf9",
"balance": "95085371185478226853083767923958",
"link": "A9A62BACFDB4D8815446611E9373D5675A3BE0C53AB727F34C81E7698E0D575E",
"link_as_account": "xrb_3cf87gphuf8ri7c6eraykfsxcstt9hiecgoq6zsns1h9f891toty9ze36ye9",
"signature":
"A9631CF2D9259905638BEF08903ADA87873D3F9321B282C5A2DF02EB5DC0BBB636CFEE246721226289FC186AAEEA681C8D0EF547BCEC1B9C4FF440098D68CE06",
"work": "adbfc259da89bb47"
}
}
},
{
"secretKey": "57699B0449C2B84E6B45E3326F1B4BB352D514A700A7B7D96DCF3C8C9EFC1A51",
"publicKey": "A5CEBBF55AD639AC0B0150A6CF94CC7CE07F0A6D40A685C05D19420EB956504F",
"originalLink": "177621A4202498FF499C7BD051D92FF871AB64D4839D1BD20F83E75AD0336222",
"block": {
"hash": "A07BBE0DBFC043F0971153BEE87E21D38778CBEA4002090F3A039F0090811120",
"data": {
"type": "state",
"account": "xrb_3bggqhtooojsoi7i4n78sycerz91hw78ti78iq17t8c43twoen4hg5uxh369",
"previous": "1A21DA3D86B8E2D8D50E00BB5374FCB553D576503BA15CFF3651C2CDADFF01A2",
"representative": "xrb_3jrc4imac1nox3d79fx7856y38mnknex6fk6fujthkcn79xgng8qk53dg8sr",
"balance": "99",
"link": "177621A4202498FF499C7BD051D92FF871AB64D4839D1BD20F83E75AD0336222",
"link_as_account": "xrb_17up68k41b6rzx6sryyic9ekzy5jofkfb1wx5hb1z1z9dda58rj4qieiwx4g",
"signature":
"837A9B3F533878572B548FFDCE5C1A1EB1E81B1F6EB2E593F4F0AA371133CCA0873002BB21E3553FE65025A91EBD0B1EA96EDE71D5D53717EAC8DA1576351C0B",
"work": "fedb52961888b000"
}
}
},
{
"secretKey": "E632A8EFB89665672FE614B5D49C72C1285E417DACCCC7A7F425880AEA4BCA25",
"publicKey": "B281433D0C6F013CF51C3D1406A51EA892F69DEEC871115B9F882916FC9C31C9",
"originalLink": "xrb_18ijf98cu8e6wawdqrhjiijamt7nm4i3y5jqnw4rwnggqt96pne76dfqxqf8",
"block": {
"hash": "C5CC278BA4247A236A6170CA2F5A023596AD968AF683E21E6AF90270FB38F0EF",
"data": {
"type": "state",
"account": "xrb_3en3aeyirur39mtjrhan1tkjxc6kytgyxk5j47fsz43b4uybregbzdtk8g55",
"previous": "4F7056D6B071FE58E82E372E3EEC0F32CF83EF16021CC645E7EAA3F63F7E23FC",
"representative": "xrb_1j4s4ue3nq5pk4o6qyprwb3n948cyostprshjayt1tqmqszzsjo73kndrud7",
"balance": "251965366362605249799582972510128756",
"link": "1A1169CCAD9984E238BBE1F1842289E8B498A01F0E37A7058E51CEBE8E4B5185",
"link_as_account": "xrb_18ijf98cu8e6wawdqrhjiijamt7nm4i3y5jqnw4rwnggqt96pne76dfqxqf8",
"signature":
"E6AB9B4DBD70691D4DBC6049EF149F05D0267946AF0A2738073C5682D6D254F3F5EEF405DEBB94F77B6D73D458CDB73701AF5A3355C5478C5F4F5F0A52FA3805",
"work": "881012d087f4f944"
}
}
},
{
"secretKey": "8310C2CB493870A78F9B5B58D22D72B9B67015D32DF67BFAB86DFD3E8CAB9604",
"publicKey": "CAB538CB875837875AD779D729860430FCCB61378CD9CD19F565965A43296C57",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "362622EAC723A8C0FBC7FEC11BF7B8C1F2AAB2E26CB83F367D3910E8ED457A95",
"data": {
"type": "state",
"account": "xrb_3koo957rgp3qixffgygq7851ae9wsfimh58ssnezcsepdb3kku4qbnwx8ozp",
"previous": "83AE04CA116A644DAD3EA4F96D7C007B5289C9D30E2024900781E52CCF7896FF",
"representative": "xrb_1ya3qmekr5nqft5i8k4ytpmnhnm59qcc5q4jzrc9cdk86b35iqird5ma4e7s",
"balance": "3077146148461332821930",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"C261C1978B1189C4420203A340908D2E96B6CE2984D5023E3B730C935F30A7CBC4F612A222691416F3B002AD9B393B32A55C3391BD7B27ACC6D284BE084E510D",
"work": "2f5ca203daa59070"
}
}
},
{
"secretKey": "BBB53844B2DF452AEB43E6780539D9432967F7330EAC17F00B2548EA0FD0938D",
"publicKey": "91A4995B054069C41E54F3EDB886195EFBC65F4366FA46B56AB417F38588F0AD",
"originalLink": "8CF9DAC6ADAEFA27BF037B037DF1A827284FCECC7FBD2C0EA4FF44C591617F20",
"block": {
"hash": "B952449D6A84070B7BE45569BD0CD22F132106DDC9D8872A4598A5F3C58DCC2D",
"data": {
"type": "state",
"account": "xrb_36f6m7fici5brih7bwzfq453kqqurshn8sqtattpof1qyg4rjw7f6mbejxkx",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1rkbzfxarumjejm6tgahhor8y5xneuwgpy1akf38aboox5o6qmg4389hch1y",
"balance": "6527545549481789",
"link": "8CF9DAC6ADAEFA27BF037B037DF1A827284FCECC7FBD2C0EA4FF44C591617F20",
"link_as_account": "xrb_359sud5cudqt6yzi8yr5hqrtibsabz9erzxx7i9cbzt6rpap4zs1g37k6bcr",
"signature":
"02A1A8299056AEF7F5C5364C44F560A59155807C39728088CD66F575BD6D67DBF80D216CBE9985833527C62C7BFE80AB08DC2ED3B661202463E739764A048103",
"work": "2f4bf3616388161d"
}
}
},
{
"secretKey": "1D0E82BE718C8C31AB2763D05AF7C5C12A84B87B6272B02CDF1EC830C899BEED",
"publicKey": "6421F564C3F21BDDF9E9C981F92360F508BDD5BA0571653CF2714E4EC446ECD0",
"originalLink": "DC833A76AEADEDD225EC45137699301C608586840EED59244801B0D261B2A3ED",
"block": {
"hash": "7D0016D79E9151269FFF11205CB3A9640465A36467957F1F971AB6BAAF467E3B",
"data": {
"type": "state",
"account": "xrb_1s33yoke9wiuuqwymke3z6jp3xaaqqcun3djenyh6wcgbu46fu8ibw54aez7",
"previous": "3316E437576B34E298A683A994D271D2A61A60F75C493D093125CAF3A978ADF5",
"representative": "xrb_1rzrcick31dc3jppteku9prshcachh9445kim4ogmnhnidmdxb6tcas3dcyu",
"balance": "91533086740499844",
"link": "DC833A76AEADEDD225EC45137699301C608586840EED59244801B0D261B2A3ED",
"link_as_account": "xrb_3q659bucxdhftakyrjamgtem1951ip5aa5qfd6k6i1fitbiu7azf4qfgzy61",
"signature":
"C91A6A04EE8592CF6EDC83D38A2DAA446E89E1373D1B419451A2E36D9FE1AADFAB31C55817FB803E3576BBB717785A6F8FB8D327D5A5DA2D58044967CBB8F403",
"work": "d2ef3d1f92cb6465"
}
}
},
{
"secretKey": "8943C31B2C9732FE38A1DF1B1D1ECA8A95216B1F024998187987E46B6049E2C8",
"publicKey": "7D91D0477F9530B0B0BA85FFC0403D11FC47179F84857DF9904D6CC1B39954A1",
"originalLink": "xrb_31hd45agyjczya7yotxtq6kcz1mb91ebmhpxzhxz857tqzc8ynh1dq1sqk4b",
"block": {
"hash": "DEE11DA65027EC4DFA8DE133BA8B9976EA168C12CB5E7EEB559C5230D18DB513",
"data": {
"type": "state",
"account": "xrb_1zejt35qz7bip4rdo3hzr315t6hwawdsz367hqws1mder8ssko73feiqmq5f",
"previous": "48980F4824282C2945B9A79F0268C7A50AE17A71822B3C7412C424EFA007CBE8",
"representative": "xrb_3h4rnfnrpfn7equbo7ujq8xj74a9siwgpmabfr8yszi38mtbgsmpfgz8ornf",
"balance": "29601341917672366727",
"link": "81EB10D0EF455FF20BEAEBBAB924AF8269381899BEDDFBFBF30CBABFD46F51E0",
"link_as_account": "xrb_31hd45agyjczya7yotxtq6kcz1mb91ebmhpxzhxz857tqzc8ynh1dq1sqk4b",
"signature":
"ED555F59F8DF2DCD999B45E4E73175D9F45D1A37038F308623FFCB24302CA07272CCA2B8417A497E6130417D4091C168134F6C3ED22CEBD489F27F4A9C612105",
"work": "aeed38d74829c339"
}
}
},
{
"secretKey": "BD8668893ACB69749D0D59D4A1AE3CC2C3F3579303A1E49236EB7A36A777215E",
"publicKey": "230E461A7BBCB728454EAD109F0ED0DA504D25735A49FB7EB2006CCFB785A173",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "6458C501FDA3BB169EC8C07E9EA144EBF5B188ECCF83C9311E5A85E164E98A16",
"data": {
"type": "state",
"account": "xrb_1argarf9qh7q734nxdaimw9f3pkibnkq8pkbzfzd615esyurdadmpp65drf9",
"previous": "DB63EF281A52D19C01E403067B843B54391C4F2B11FDEF292F1832F60B9F40EC",
"representative": "xrb_1sryfjr4q7pitn7cu5z6pyy1fzpk4di8fb7ihb3dwkqn1b5st7wsd7ey7c9s",
"balance": "51",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"8C5BECC44EB4F2BFD31BEBA5939D29829C85BF3472400D1C3298C1F563ADDCED5A5C7387B1B4D037DF55FDA22900976CA7337AD0D33ADAB3EFC77806CF28370D",
"work": "5d4b630c3172ee5f"
}
}
},
{
"secretKey": "E632A8EFB89665672FE614B5D49C72C1285E417DACCCC7A7F425880AEA4BCA25",
"publicKey": "B281433D0C6F013CF51C3D1406A51EA892F69DEEC871115B9F882916FC9C31C9",
"originalLink": "D04C9EDDCE186152C79A9CC5073FD7F96965F8C8E07556C60EEA0191542F045D",
"block": {
"hash": "A0A83E4BCBB06DDBF38D14C0A707F592EF8E5A90ADCA0EDFEB3C16CC3FF7412C",
"data": {
"type": "state",
"account": "xrb_3en3aeyirur39mtjrhan1tkjxc6kytgyxk5j47fsz43b4uybregbzdtk8g55",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1rzrcick31dc3jppteku9prshcachh9445kim4ogmnhnidmdxb6tcas3dcyu",
"balance": "375906666",
"link": "D04C9EDDCE186152C79A9CC5073FD7F96965F8C8E07556C60EEA0191542F045D",
"link_as_account": "xrb_3n4emugww853cd5so9871wzxhydbeqwejr5ocu51xti3k7c4y34xkbsyhwb9",
"signature":
"0C4BFA05EB34112BEAD5DCB5B67AF95CF85C8988BF44CD0FB1B1388166E868DCEC5E3F98B721B985C1787AD34700A11972A01A16595A70222BD69A6535EDAC00",
"work": "cc34ec005c8e8aee"
}
}
},
{
"secretKey": "D355E02BB8197C6099A1DDD69BD078CAC6EB7308538ECB6FFB79148AA2729E85",
"publicKey": "8789F4553355847E32C56C582D35ADCDECE23033CD4099C8EE787B9A49C10E2D",
"originalLink": "C05BBB2FA6447E0A95C443D9AE5378DFE9DA46F83E385B563D7361A45B0E80C8",
"block": {
"hash": "243B0D57E391F364E47FB6F67940609C80EC9EE87CE5A25AD442CEBCFAF227A2",
"data": {
"type": "state",
"account": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a",
"previous": "EBAB32F790772DACFB616651E9F476DAF3B6005262627AD1926CC15DF5E852F3",
"representative": "xrb_3mg9fmmnt9feg7o39txexmro48isx3xwi4nmibkbj79hd6arwhqrg476rbcb",
"balance": "3081092678607865020744569",
"link": "C05BBB2FA6447E0A95C443D9AE5378DFE9DA46F83E385B563D7361A45B0E80C8",
"link_as_account": "xrb_3i4uqeqtej5y3ccwaiysosbqjqzbub5hihjrdfd5twu3njfix18a1pxphqy6",
"signature":
"326392762B1FFC8D0B2153DBDFB570FD0367AFF02B8FA7404481283BBE2A4FC85398D97738062D58B81039DEC0F8D2901E85E27F7ED2F0A1B8E8CF0119FE360C",
"work": "e90b1e15dc13673a"
}
}
},
{
"secretKey": "44972A8DAD0060DF940F26E76A5FF5E5DBD7CCAA5FAE4D4BD4BCBCB4090FF689",
"publicKey": "2C96B77D14A2E5D22905E1BC2913EFA611E56D8573978098FA03005B82E9AE18",
"originalLink": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7",
"block": {
"hash": "20A479AF249682C53A20FA9A5482BDD1077D25BC4C242510060B8348257925F0",
"data": {
"type": "state",
"account": "xrb_1d6ppxyjbaq7tanidrfw76byzbijwoprcwwqi4ehn1r1dg3gmdirsgw3ekmu",
"previous": "89599C6175830CB34CC6A1105C05D6E24757174730D984E3185267B6FD2CA5CC",
"representative": "xrb_1df19p1s5dyucp7q9eoshogondpdiz3qs3bdt7fd4x1wey6woq57seixxxu9",
"balance": "6741169979828450350",
"link": "0CAA902251CA21B5597D0A341C1FB529EB56EFA2EF94471E9A839BB48BD334FF",
"link_as_account": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7",
"signature":
"36AB42CC0BC230BE06425B1B4CECF5453B5A9815DFA7975E2A6A8913526660A4BA806E0EF220C03EB7AF5A065794ADACA7CCDD3056DD9176625262134536E702",
"work": "9ad7bc1acae36943"
}
}
},
{
"secretKey": "AF795836DC1207317289A5D39D42E6DE3076AD4A1547A37910DD570408D85D63",
"publicKey": "63ADAC1DF19D7FFFEA6A3DB538C5C451A6604F7A07F39A81F5F10A1B89F25DBB",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "363307285C62E6CDEA934CD56780541738C66B9E5D56011E28B09CCED7DF59CD",
"data": {
"type": "state",
"account": "xrb_1rxfoigz59dzzzo8nhfo954wanf8e39qn3zmmc1zdwac5g6z6qfuw3hx4h6q",
"previous": "F542ABEC07481EB71789DE93664E5AE15BF2EAF3A86DBA740BBB2BD9351BC093",
"representative": "xrb_15haasm3cwa4rtf19jck3x7rz3fj6eqsh1mdwj7d6qq1cnza96fm1bntmyf1",
"balance": "50735586113414151",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"D38ABA3FAFD3371F17DEB4FFE7FB60169B0D6CDAE0F910F952EB94695D1F8D6A6699B14D60F24CD23EA4285FEAF9B1C6E2203861FD1724A28BD1CA8824898E0D",
"work": "96bb9b66b7667dc4"
}
}
},
{
"secretKey": "BE27112FB64FDDBE82AEFC0DC0D024847D3A0B4E1316DD78C502F4C9C081D32A",
"publicKey": "D18B363F3D9493853E38EE0455D7C131E684A972F262087D03BEE24701069D36",
"originalLink": "A539206ED33EAF49EA40FB75FBB46B3328C7CBDE79835C08A9E1CAD1AD839836",
"block": {
"hash": "7B32E32B4A7A6376C2DA3E8A9877BD67DE24BA981EA7A616F45DFC77D5C00B00",
"data": {
"type": "state",
"account": "xrb_3ned8rzmu76minz5jui6cqdw4eh8iknq7wm433yi9hq4aw1if9bph6163qza",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4",
"balance": "112802082813354456036058838188",
"link": "A539206ED33EAF49EA40FB75FBB46B3328C7CBDE79835C08A9E1CAD1AD839836",
"link_as_account": "xrb_3bbs63qf8hohb9o63yuozgt8pesarz7xwye5di6cmrgct8pr983prr6y9mo3",
"signature":
"D52487DF1B959FF56502C83EBC82C3F868DA067325DF174232C66E2DE76A363E12DEEAB303B659073467AB2510B9BEE40C073E7EABAC43C0447E9A8955E6FB08",
"work": "650b5d4873b9f780"
}
}
},
{
"secretKey": "C0EC6F765B1BA0FDCA8462603339ED0A662D9678CEA4EA7BB04BAAC0ED533FA6",
"publicKey": "ECFF76F7E0B4019A42664FF2C7518DE606C4E4CFE481D86B256BCEE6310EFCD7",
"originalLink": "B92398467347221CDB163A8AE125EAD430C28C781D64C6E83240110CDCB0A8F7",
"block": {
"hash": "2CA8561C04B639DDEDEAB15036E8493CA53CCCE41547C796BFCB291320EA08FB",
"data": {
"type": "state",
"account": "xrb_3u9zguuy3f13mb38emzkrxarusi8rmkezs63u3okctygwrrixz8q4odmydgp",
"previous": "C93778E58FFC45A2266C2A1B6B2E72B785C712DEB2B9B382DE166F21D2FBCDDD",
"representative": "xrb_3ned8rzmu76minz5jui6cqdw4eh8iknq7wm433yi9hq4aw1if9bph6163qza",
"balance": "542842148077788444075179392",
"link": "B92398467347221CDB163A8AE125EAD430C28C781D64C6E83240110CDCB0A8F7",
"link_as_account": "xrb_3gb5m3598js45mfjegncw6kyoo3irc89i9d6run56i1j3mgd3c9qfxkx11q8",
"signature":
"7B8616EC310F3AFFA822EC4ED0F5CD2FCD7FB50A1FD9392D04E4C64981ACC35B68417983748EC06B3AA6DF656705CD90AD7656D8FFBC6FAA1EE293D6B2BB130B",
"work": "3c38d4d162a8ea47"
}
}
},
{
"secretKey": "781CBAA70F56F651660FEBD67F07A1F9AF96369D2DE636F35F6DB6CC25CFA365",
"publicKey": "291D97CD0D6130661A27C426455E27A73D7C6FD0CB7A567DD9E26965C0F30BDF",
"originalLink": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm",
"block": {
"hash": "66FBEEFDE5FFC63AABC976879036A5ADB49F2C2F2233C5C3EAAA8807114977E6",
"data": {
"type": "state",
"account": "xrb_1caxkz8itrbierf4hj38aoh4hbsxhjqx3kutcsyxmrmbeq1h84yzd3zmo6mh",
"previous": "D0087554B828D4C6F3F9B5A9A564FC864A2DC55DCB7509EE80F6D94584F91EAC",
"representative": "xrb_1m4y8yhfxie7ut5h78jeiuuuyhj8575h4b3unnjf57qu3cxbjjrm1dpfkmqm",
"balance": "6556680678169875535106309866559069163",
"link": "C83CC92338C75AB4F4F7F97F314504BB107E494BA0C30CC18D7B91CAB4BB67F3",
"link_as_account": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm",
"signature":
"FE4DB24DF02D6E7AA996DAD2D114CCC3DA505F0098E713E613919C542EE27C9FC420ECDEB1D9235410A55ABF207EDADAD47397451F60808D12511DAC938AE20D",
"work": "bd585f3072e76669"
}
}
},
{
"secretKey": "70F91C56127C56BBD2180D14193DF6692C408F010E5EECF9C648DC1ABD134F96",
"publicKey": "E9EBA3F6D439FAEF916C4DA556D262A04CE1D4963CDBA858E2E5A0109E12D81C",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "9E61772B829B89AD3DCE2F8E8AAFB11D6A30FDC44D72049E309CF19C69B26F12",
"data": {
"type": "state",
"account": "xrb_3thdnhufaghtxyaprmf7cub87a4ew9cbeh8uo3eg7sf144h37p1wattr41ug",
"previous": "2445835060EC2941822E591075AC48AACDF6FE89B37F1F8B89C508CA0C05C2BB",
"representative": "xrb_1wzmpjnh56cjr383abxrpsk16y5ujyp39jopaa1geyf98bn7kmxfmpy46ahn",
"balance": "2278231",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"4A26917330A83AF4EB7679B99A538508D4E00F87C9A4E0C71EDA462CD1F728DCFECA6CDB297AF20530D06AB1CA8D304B6041961841979D4CCAD4636587D2DC01",
"work": "e0524520f2219b4b"
}
}
},
{
"secretKey": "6EF20FB735DEB2830A29358830026A16E948B2B47962BE30A1BE1FBC4B3207FA",
"publicKey": "9CF8EED728650FC6D24292491705507108D596D0CEF218866FDBC1568CF8129B",
"originalLink": "C9A278F95FFDC73A15EF0BD2280A76256320F53275892AC907DA3CAEF2CC5B82",
"block": {
"hash": "D4E5460BACC7DDFF3C77BC5B807743BE6BDF3C0AE0C99E966A1A4933FBCA1142",
"data": {
"type": "state",
"account": "xrb_399rxudkisahrub676kb4w4o1waatpdf3mqk5458zpy3ct8hi6nutr5bayu6",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1xzt6qfeirgriz6xogi3imyiz41eww5yj1x7igninkoac4dcf4gu758new4s",
"balance": "1566126",
"link": "C9A278F95FFDC73A15EF0BD2280A76256320F53275892AC907DA3CAEF2CC5B82",
"link_as_account": "xrb_3kf4h5wozzg99acyy4yk7179ebd565tm6xeb7d6ihpjwouserpw4we6h7aeg",
"signature":
"6A652E652F24114402EE1E0890DF04AB1D479A530ABB33966E4CA6AAC80340DA73BFD2DD9AEA9EBE6E5C1417502DC4E6B132502B5CDC890A79BFF2054708A003",
"work": "7083b4a41669fc4c"
}
}
},
{
"secretKey": "43E1EAFB5B08196B99B0BE53BF9B7F193770DC57887A1A24D80F99C6CCA54539",
"publicKey": "6D32FE9CFB4C0A32DD4B28D186BBA9CE1CDB062976641741006BB73596394519",
"originalLink": "B30951846B0A9CDA66178D826E3E25AF1CD147E2A53B793B031A5C8FE9A64165",
"block": {
"hash": "D52332A7D42DB33B1471CA54FA28CFA21A9910B14C714A3589EDD96B284CEB12",
"data": {
"type": "state",
"account": "xrb_1ubkztghpm1c8dgnpc8jitxtmmiwue54kxm64x1i1txq8pd5kjasirnamico",
"previous": "D36D6D2269E146D02DE78046E5652AD18C502E1A7897342A6415D7E5CBB2DCFF",
"representative": "xrb_3bggqhtooojsoi7i4n78sycerz91hw78ti78iq17t8c43twoen4hg5uxh369",
"balance": "36068598836",
"link": "B30951846B0A9CDA66178D826E3E25AF1CD147E2A53B793B031A5C8FE9A64165",
"link_as_account": "xrb_3erbc848p4nwubm3h5e4frz4ddrwt75y7bbuh6xi88kwjznteid79agqdn6q",
"signature":
"9A778AD4975E76ADA8C5780DD0D0E7139AF6B9190766B01A7DAD30AB28E33464CB25842487949FF7B538A4BBBD8D29A8FB45F48A6186B49BF72DE43738AB9F08",
"work": "1d03a78f0c8c9fe8"
}
}
},
{
"secretKey": "99394A9CC72290D99B28CE0A53AA553CBDE35B121AA25180059708EFA87D2F97",
"publicKey": "8B00834DD9C3F6A9CF1D043F99D8DDE383BAA794BCAD1ACF51C05C07151EE2B7",
"originalLink": "xrb_3thdnhufaghtxyaprmf7cub87a4ew9cbeh8uo3eg7sf144h37p1wattr41ug",
"block": {
"hash": "BCD6805B671170B1BBE7EB48A344E30CC1A9DC4AF1FC9A3B9E8C50B730F6AFFF",
"data": {
"type": "state",
"account": "xrb_34r1if8xmizpo99jt33zm9efurw5qcmsbh7f5d9o5i4w1wcjxroqhjm9sdj5",
"previous": "8417BF6305F3E14D14F0C7DA11EA48E1900D23CE647F3CF797CDAA50EA800BB6",
"representative": "xrb_1tfdcfpy81nz5m74466g3mjdr8riodbqswgp4nnkmmj5cuedkd51apf6hr64",
"balance": "44906",
"link": "E9EBA3F6D439FAEF916C4DA556D262A04CE1D4963CDBA858E2E5A0109E12D81C",
"link_as_account": "xrb_3thdnhufaghtxyaprmf7cub87a4ew9cbeh8uo3eg7sf144h37p1wattr41ug",
"signature":
"67733EA368AF9E1A7E843F2CF3B530F613CD86FEF8424DE96E237870ABD0CA1C6A704C4D1560F6973FB922529E6C5CFEAF1305AF11B3CADA493580838ED3DD0A",
"work": "c64acfb712911bdf"
}
}
},
{
"secretKey": "AD22137DD1D9C039D2B1AC61E7F50CC309AA8E5178A9B990A9110DF1E071E891",
"publicKey": "24838627B28C6372F83EF9630BE58D493DE97BF4BCE5C1CB2818713B7726788A",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "3076181DB171B4088DE677D757916229052D56244C23F29545F0B17B20033DC4",
"data": {
"type": "state",
"account": "xrb_1b65irmu7555gdw5xyd53hkrtkbxx7xzbh97r97ki85j9fukey6cqqm1gzmy",
"previous": "C968F48459F7AE2AEE4C5912FDF02AAC369AA95BC4DE3B5C8BB0919824E8235C",
"representative": "xrb_3imwuiebzmw6cgqhbf6tk5u55tnq9hjk1dsptubgeaezsaidbbzezrk7p97h",
"balance": "12995764805506",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"C57A6B081C96379198AD0CF9B98509A2A573A56A0EA70BC7F5F6BE1C1889509C4470460D309A2041A29D17D9EC4667695DEAFE67A3A402FD207AF20DAA416F01",
"work": "5b12c1a3a61ce06a"
}
}
},
{
"secretKey": "AC5799C4673CB7127A335B23E72273C323F54229E7EEFA13DD1594254F029FDE",
"publicKey": "B00C8393953D43DED6A38721B2B8C82FADB264A028ED44BDCBD85394372B6E4E",
"originalLink": "8B62F3478E6C35412E26E7C8D8DA3AC3B8C7F0D48D7E775786CFC58B90A4859D",
"block": {
"hash": "B6C78D997FCE77171C5891895A34AE50058D57D9AC694B63AC061799F910481C",
"data": {
"type": "state",
"account": "xrb_3e1eigbschc5uudc93s3pcweidxfpbkc1c9fakywqp4mkiukpukgxdbuf3xt",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1argarf9qh7q734nxdaimw9f3pkibnkq8pkbzfzd615esyurdadmpp65drf9",
"balance": "55",
"link": "8B62F3478E6C35412E26E7C8D8DA3AC3B8C7F0D48D7E775786CFC58B90A4859D",
"link_as_account": "xrb_34u4yf5rwu3oa6q4fsyau5f5oixrrzrfb5dygxdrfmy7jgacb3exq5t7omc6",
"signature":
"80347682E476B0041A326B3EB649F3737621BD8059547A768FB59189D7A6E888672C20FC3720892B03CE7D9E518C307AFC9F3221BB5F6C397CABED9D1AB14C06",
"work": "ea4beb276b4c4d71"
}
}
},
{
"secretKey": "1E4782A13293F5395D292552845562102B909A314F6D15C2E7EDBA13E3A5A451",
"publicKey": "90C6435504BAC8E9CF7742088B34EC429228829ADF22C786B8EC73E03F03A12D",
"originalLink": "E7CB81B46C883F5DAA872BA620138AF58BA202517219BADF825C2D522A4EFD78",
"block": {
"hash": "446DFD70E418742DFEDE331412048A00D6FDFD4B6DE4E3CF4182A7EF44BB82E3",
"data": {
"type": "state",
"account": "xrb_3688afcibgpax99qgiiajetgrink743boqs4ry5dju5mw1zi9abfcfginuup",
"previous": "4E41EFDD3986AADE5864C8BC5942366B303677535648A0342CD75AB7338F2382",
"representative": "xrb_365wn7szcuqup6qtwayytcdym74zqnhgetgerb59546bokhtnigq1bxr1aji",
"balance": "3547332003278135458661071801",
"link": "E7CB81B46C883F5DAA872BA620138AF58BA202517219BADF825C2D522A4EFD78",
"link_as_account": "xrb_3sydi8t8s43zdpoagcx861broxedna374wisqdhr6q3fcao6xzdrttsnddcn",
"signature":
"414B1754B95079F3A503BED5D539F24185FDFADEEB1E31A058D88338D787786BC9706B436893748CDEFAC244B2928BB93F49D34AD787B60FE7177CD280BBE60B",
"work": "8996c4e7e2713d3d"
}
}
},
{
"secretKey": "6B2153D0A4B53C0E6678741DFDD73D95149741A0E96CFDC9FBA4659B9350DD88",
"publicKey": "15FB5C0FB504CEE8ABFF14C75417CD0760A8488FF973D02CD91C965997848D37",
"originalLink": "xrb_3iy8tenzc3mcc7jprs6gszcsdbrnusfnsjyp8my3f1jwtshn6mdowe5gpytj",
"block": {
"hash": "1B1F4CAF046206B0A167E185BECDBF9AC3D367A0522654EDFA6C791B5B984CE3",
"data": {
"type": "state",
"account": "xrb_17hudi9uc38gx4ozy789cidwt3u1o36azydmt1pfk96pd8drb5bquj3ww8qi",
"previous": "4DB2681BF580E11680FDF31D532D1260095508414D3F0B7D9732061F0247414E",
"representative": "xrb_1ya3qmekr5nqft5i8k4ytpmnhnm59qcc5q4jzrc9cdk86b35iqird5ma4e7s",
"balance": "134990687345632370621166",
"link": "C3C6D329F5066A51636C648ECFD595A714DE5B4CC7D634FC16823CD65F424D75",
"link_as_account": "xrb_3iy8tenzc3mcc7jprs6gszcsdbrnusfnsjyp8my3f1jwtshn6mdowe5gpytj",
"signature":
"9DA4D6797B863A8FA771C11C72D9940B56B76F6AE718B6299B8852F5A21A866A9C49DB8855DBF53BBE6EFC472667D87086A04A009B038F1E131837A3DB7D430F",
"work": "15f94f5d083f3d01"
}
}
},
{
"secretKey": "62DD52D845E1691401DAC7C99E1C53BA19334837D02251E96BACCB49BE55F6D5",
"publicKey": "C83CC92338C75AB4F4F7F97F314504BB107E494BA0C30CC18D7B91CAB4BB67F3",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "980E59B2289A15486A6AF7BE05F8F45945A63357602F2B61D508FE13EA1D03D8",
"data": {
"type": "state",
"account": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm",
"previous": "55CDB823E5A195F2C1448A7B9003888DA41DBC1206F4583869B4F49CA38B202D",
"representative": "xrb_1b6dna1x5rhu9pb9pype55os4bdtn1skom4oz4mhwdeo4f33tm58uzjr3zn1",
"balance": "591575",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"46226EEE7E8D9333A8622FFF4D2A6FA5DAB185599C70C606BF8E4977780AC63E5900806F17E2370DC782564A65FCBCE0A8DD355D22438AF721F13507A3446803",
"work": "73220d0fcb749578"
}
}
},
{
"secretKey": "4F9F0E7009BC65A47C790954CD40241CA696ACD9A8232FFA251FF03C3650DDBF",
"publicKey": "2F47B8E9A97554F2B23CEED1D02F8B028B48D5C9423CC2420240A4970A930C86",
"originalLink": "06866AD739999217B1153ADE04544899CF16CC58864C59CC7FE70C2AB335C23A",
"block": {
"hash": "674331E959800F14F57DE53F4B7634A47DC3DC25C16C4BE60C325FF01779841D",
"data": {
"type": "state",
"account": "xrb_1dt9q5ntkxcnycs5supjt1qrp1ndb5cwkijwrb316i76kw7b8568ib54rtqn",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_1zejt35qz7bip4rdo3hzr315t6hwawdsz367hqws1mder8ssko73feiqmq5f",
"balance": "596778240712844447429732",
"link": "06866AD739999217B1153ADE04544899CF16CC58864C59CC7FE70C2AB335C23A",
"link_as_account": "xrb_13n8fddmm8ek4yrjcgpy1jc6j8gh4u87j3ked989zsre7csmdijtkajqxkm6",
"signature":
"CD5738C0BBB618D1AA366BC52490D3D1BAEBFCCEDB83F812BD193320E805A38BBAE66B33AB310BCEEF6C4ABF5F48544830EE562D0E192003A35CB078CED5FB0E",
"work": "53ba29dda3754e6c"
}
}
},
{
"secretKey": "D3B717446342579DE1F0D43DF7748E91FD5E4D74A90B8FFD57440959C09D244F",
"publicKey": "60E0A4146F972CCF591EDC7762B8BB8DF06BE3B48B42ECCE7BBED49F32B83E28",
"originalLink": "1DAB083394D2FCD31F23A568C62E7C38A3D68D63882FEDBB81E934ABFA03AC65",
"block": {
"hash": "A5D2F83D7ADF6231AED89740FAADF37045DE04BC304170123DFA90A00CE7ED9B",
"data": {
"type": "state",
"account": "xrb_1r91nic8z7sesxejxq5qecwdq5hifhjub4t4xm99qhpnmwsdihja78pa18r1",
"previous": "CDB608E3C0DEA3813CEFB14FB3B08CC502BA87206D31789F4F80D38BD6E02218",
"representative": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d",
"balance": "81169",
"link": "1DAB083394D2FCD31F23A568C62E7C38A3D68D63882FEDBB81E934ABFA03AC65",
"link_as_account": "xrb_19fd31ssbnqwtehk9bdarrq9rg75tt8p943hxpxr5tbnohx19d57id9emg63",
"signature":
"6D4DB7444809F332C19C8A2E7F55FAC08FE7A8CD638109E9134BEB382BF1F0EA01A4D6CB462FD0328B290B38AC0EB8EB671D9C65723F7843F985AE2781A8560E",
"work": "1200c0cc80745b68"
}
}
},
{
"secretKey": "C0CB015BCA0834AC827B6259B48C052F7D62692DA1FA21DCDF755CFD27ACBE43",
"publicKey": "C3C6D329F5066A51636C648ECFD595A714DE5B4CC7D634FC16823CD65F424D75",
"originalLink": "xrb_1jnwfsfcpxtonh5w686bbmwy55dew6ryg9o63poyssyq369cbyf9nfypzosk",
"block": {
"hash": "39E2D1C5818F5DFBE19B42D5E48AEA8C37A6337BC93647EF81A72904B70186F6",
"data": {
"type": "state",
"account": "xrb_3iy8tenzc3mcc7jprs6gszcsdbrnusfnsjyp8my3f1jwtshn6mdowe5gpytj",
"previous": "F5004903F7AAC66EEF9DE58D554AF5603A555B7D14A8DB6847F00F475AEA4071",
"representative": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4",
"balance": "3752957032813",
"link": "469C6E5AAB7755A3C7C218894CF9E18D6CE131E71EA40DABECE7D7090EA4F9A7",
"link_as_account": "xrb_1jnwfsfcpxtonh5w686bbmwy55dew6ryg9o63poyssyq369cbyf9nfypzosk",
"signature":
"6413D4A62797C0E19800F4C4184C3C449F36E6A26285A8E738AE55E3A9CBE4CA31E2AEC26B8ADB837699A9839ABB2EF37CA62284499D976A961AA922053DED04",
"work": "15b0572579294a73"
}
}
},
{
"secretKey": "738E05DBA91100568452ECB9A0FF4E7A213DA2A2BD4FF80FAF8814AF3692B71F",
"publicKey": "E303F1A9A09682023E4423FCF11B2F7A7FDA33F97F8F89F02F1B78996106A6D5",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "C1C3AD52E62832C16756E41B4E38CABEC8763A043C22F48963926725E1719115",
"data": {
"type": "state",
"account": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4",
"previous": "3B0AE54E22A814D0DF006BF5B849D26976FF13248ECA328A658816E3F713FF9E",
"representative": "xrb_1qbt3a7jsz44tpm33rxtf3cq85ha7n8oid54i48k9tn1ixrw11cykeiefebd",
"balance": "676615224680173286303",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"C4A20970377A3C7B79FB82DB78D697DCB3C083FA69DE8BE07E77B4B7C3C879986303659B35724356DB9E4B052FD2B26AFC3DBF9EA7654E70ED4FB4A5C057500C",
"work": "897ad3ed1206cf1a"
}
}
},
{
"secretKey": "4F9F0E7009BC65A47C790954CD40241CA696ACD9A8232FFA251FF03C3650DDBF",
"publicKey": "2F47B8E9A97554F2B23CEED1D02F8B028B48D5C9423CC2420240A4970A930C86",
"originalLink": "82DD7DCF32BE555A1DEE0D5D86E8966BB2711F7B30742965242C87A08872B440",
"block": {
"hash": "0D8D0D0FAF9E05A06D42944B7281EBCB626A1F7D3378B24E25B392C6AFC1DEE8",
"data": {
"type": "state",
"account": "xrb_1dt9q5ntkxcnycs5supjt1qrp1ndb5cwkijwrb316i76kw7b8568ib54rtqn",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7",
"balance": "36",
"link": "82DD7DCF32BE555A1DEE0D5D86E8966BB2711F7B30742965242C87A08872B440",
"link_as_account": "xrb_31pxhq9m7hkodagyw5cxiunbetxkg6hqpe5n77kkad69n4697f41uz83rdks",
"signature":
"5A466BDDF388045E215AC6B484DC51B97252C88EFD0F21CB363878DA50A03501EC25A28DE9824C22F69A34BD000E9BF6F82C03C56D74DF68A8D533DBC4E70D0B",
"work": "f4705e51dd5c67c5"
}
}
},
{
"secretKey": "069E27BEFD3A1E3AF7CF335D5CBFF77294A293D5B5FA30956676FFC2764801F7",
"publicKey": "C70A1426850295E85653B7A530C9E09A749519D236446EE3A7C95429FAEA38D7",
"originalLink": "3C26414B3F7DE89987E8525D25C57F33C0861D2E39B1EB7CE9DBC5FA687FF06B",
"block": {
"hash": "0D8278D2AC1BABBD911BD258537C8577B7F1F2FD358768E57D1126A33235AFFD",
"data": {
"type": "state",
"account": "xrb_3jrc4imac1nox3d79fx7856y38mnknex6fk6fujthkcn79xgng8qk53dg8sr",
"previous": "CB413523157DAE847279E70BFBA62C1025A6E440C3E5B6505B76654FD6D9C3C6",
"representative": "xrb_34r1if8xmizpo99jt33zm9efurw5qcmsbh7f5d9o5i4w1wcjxroqhjm9sdj5",
"balance": "95181301951481123258",
"link": "3C26414B3F7DE89987E8525D25C57F33C0861D2E39B1EB7CE9DBC5FA687FF06B",
"link_as_account": "xrb_1h38a77myzham85yinkx6q4qyey1irgkwgfjxfygmpy7zbn9zw5dh7qr38ts",
"signature":
"278821D261FFBFC5A35697C1EB9243896C18F9B1161F3A5A703E3587BA18957534A775053F5758DDF7ECBB9D92A23AB488212B6D58D17C7556726E322F83E304",
"work": "8ddd83460d152c9f"
}
}
},
{
"secretKey": "57699B0449C2B84E6B45E3326F1B4BB352D514A700A7B7D96DCF3C8C9EFC1A51",
"publicKey": "A5CEBBF55AD639AC0B0150A6CF94CC7CE07F0A6D40A685C05D19420EB956504F",
"originalLink": "xrb_1yrfoup6o4roft14dq9ja3uw9oy944g45cnwgrxrw68ssgmjg7c94udjwxgx",
"block": {
"hash": "D3E370E1C66B48E6ABD0DF32D4DCBBD10B5C93DE13F51D16D3AD807882B02D1F",
"data": {
"type": "state",
"account": "xrb_3bggqhtooojsoi7i4n78sycerz91hw78ti78iq17t8c43twoen4hg5uxh369",
"previous": "1333325DF8C787D3E14B827FCFD73A75A56EDD2389B53DF9232D6E53C5DDBACB",
"representative": "xrb_141enxuggjym5wt7zchst8bf3pdnayxhxbtt9za53hh3mwo9jho4jcpf5wgx",
"balance": "563",
"link": "7B0DAEEC4A8B156E8025DCF14077C3D7C7109C21AA9C763B8E10D9CBA7171547",
"link_as_account": "xrb_1yrfoup6o4roft14dq9ja3uw9oy944g45cnwgrxrw68ssgmjg7c94udjwxgx",
"signature":
"0B18BDD6ECBCD54951FCD11358730445AF78A4F31851B98FC5D6FF11654B49F05543CE5704782BC7D6AA4D88FBE2595DCE91556E5EF88095DEDF2E9D3B128E02",
"work": "2c8a23b0008d26b5"
}
}
},
{
"secretKey": "2B70ABB4D458DC5EDA2C998BF5454717BAA6A122AC8694A02760397DB523CA66",
"publicKey": "9DB2961B2D01D49C53AE6C9E513BC51AC04273CD4DAC4277F82B44B4F084A91A",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "9F30C82CF4FDBFFACA3769CB76C6402303835D07185537DBDD6C265EE7F53389",
"data": {
"type": "state",
"account": "xrb_39fkkrfkt1gnmjbtwu6yc6xwc8p1abswtmfeabuzict6pmrabcatzmh71rgc",
"previous": "7CC2FCE57B0D9F70A8DFEDDD4A122173D24EDDD29C10F3333A44DDF95270DBEE",
"representative": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a",
"balance": "901",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"297A6B1A7DD93486C4E31915D12A77E4752C384E67338E5139D72428004A9623EEAA8F9F88479F7A1CF27579A2902A6FFFE98FFD8AC6C51B9FB444B2BD440102",
"work": "3dcb2e535e002169"
}
}
},
{
"secretKey": "A2DBFDBA2DBAB7D316C9FA5CDF196C3FA6608AC256C4D7858861A520E16F08F8",
"publicKey": "33DB63FE3373A270CB8E543BF2249F2D37E08418C7EA4F884887CA1FF33176C8",
"originalLink": "2A53D17EE4C0F1A155C3B7EC41341726A47E86C1A7F62F16B36143FD593FC756",
"block": {
"hash": "58D0AF96511425BAD55FFD79E4D3094B398E9E0B092ADED97EEA437E07373AE4",
"data": {
"type": "state",
"account": "xrb_1eyuehz58wx4g57rwo3uyakbydbqw443jjzcby66j3yc5zsm4xpafxfrmxy9",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u",
"balance": "542353422571413422479108",
"link": "2A53D17EE4C0F1A155C3B7EC41341726A47E86C1A7F62F16B36143FD593FC756",
"link_as_account": "xrb_1ckmt7zgbi9jn7cw9fzea6t3gbo6ht5e5bzp7wdd8rc5zoemzjtpx8ui1cs7",
"signature":
"8675E1FEBBB515AA4AE6FBD0201C664986A4F34058CE31E19D2CE530D093B3019F9319B16FF64C776ADBFAA5ED9AE03D6574F4D43F44BED0F1D0308D67CF6F09",
"work": "c0506a4ae538ee8f"
}
}
},
{
"secretKey": "57F03A1826C1F9398CD9A7C0AFAD1A91D680DBC2CE27AFA1A912B0404A9B1E92",
"publicKey": "C816C616761BA99258409FEA1B5C285FEB0D332BEE71D2BA85117A6FDB3600E2",
"originalLink": "00391AA7314369394F6C80C6975A20670E9C60A4D44CE755328A5D0D7340F51D",
"block": {
"hash": "C9AED3E6DFA1ED5B11E4240E9E2AE8B530308E98C071876EE4B6B92CFDB11CDE",
"data": {
"type": "state",
"account": "xrb_3k1prrd9e8xbkbe639zc5fg4iqzd3nskqumjtcxac6dtfzfme194hgcxrfqr",
"previous": "8742621662DB72EF77B1AAE8E41620F11D8BA96C0F9C09A41602870F7DE9DA25",
"representative": "xrb_3o7oim1fumchm8hdtcmfgimenf8awxtgff1tosrfr4x7bdj8bcc6pnrxt3mb",
"balance": "91937101966874098",
"link": "00391AA7314369394F6C80C6975A20670E9C60A4D44CE755328A5D0D7340F51D",
"link_as_account": "xrb_113s5cmm4iub979ps188kxf41srgmjicbo4ewxcm74kx3osn3xaxgztuxuet",
"signature":
"7814D120F098D08BC9DFE8A14CBE790DB79566A3F2D111981CE8E99D2E0524F38EF4097EA83A4BD7394779F05316254B8345A7A42BA49E554F735E021D335C06",
"work": "f108ea5698fca9cb"
}
}
},
{
"secretKey": "0D926E214C7A3C80F24EDE5A344155ED6DB685100E2CC3247F2C224C84704064",
"publicKey": "73F3B468F19151C04C1427B8B66402787B8FAC13C6B64200E679A73268594FAD",
"originalLink": "xrb_1b6dna1x5rhu9pb9pype55os4bdtn1skom4oz4mhwdeo4f33tm58uzjr3zn1",
"block": {
"hash": "3DEAD84F0BF149CC50002DE309E04BF2A8CC80ED55BD67D68EB82BABF686EDE8",
"data": {
"type": "state",
"account": "xrb_1wzmpjnh56cjr383abxrpsk16y5ujyp39jopaa1geyf98bn7kmxfmpy46ahn",
"previous": "99D000468A8FE40E018674CE5D020609C1CBE9ADC37BA4721A47EF8BF8F4A43A",
"representative": "xrb_1dt9q5ntkxcnycs5supjt1qrp1ndb5cwkijwrb316i76kw7b8568ib54rtqn",
"balance": "85502749098236011",
"link": "248BA201D1E1FB3D927B7ACC18EB91257AA0332ACC55F8A6FE2D9513421D4C66",
"link_as_account": "xrb_1b6dna1x5rhu9pb9pype55os4bdtn1skom4oz4mhwdeo4f33tm58uzjr3zn1",
"signature":
"FC912F2B384DE9B6A53ACCB153B0B9E93C77813BFB82107E6A43141255AE684E55E6B0DF220F3A8E56F7FE216D9BBC13255F2A9957C1EE1DC3D2AC7B549FFE06",
"work": "83bf957d7000522d"
}
}
},
{
"secretKey": "CCFC89324F6A6512338363A43E2E3293EE7D7C5356B211DDCA64D8555D5C3A07",
"publicKey": "1597EA2FEB879C07A50E71C69983D344550FE98AA76B2DACC546AE4CB2299B49",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "CC3B5D788D6BFA854D76BE9BA7A07ECAA40E3316DAF8F6C2718559156D6BE639",
"data": {
"type": "state",
"account": "xrb_17eqxaqyq3ww1ykiwwg8m83x8j4o3znrobud7ppecjogbks4m8tb8ctzqeh6",
"previous": "877B90CBAB4FD6B4387A9C5F1212E085E15C0FE500E6A8846234A851597D8919",
"representative": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u",
"balance": "8104691893",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"6BB0BFDDF104A148CCB9DF828974E0BBFF9884D7C8E5F1601B59D1B338350CC084A3FC5F4F9874829106ADE7F86573DFFAF1419F2F20FBFFECFEF5E18D650503",
"work": "7c374d190dfedeff"
}
}
},
{
"secretKey": "EAFD50E5ECE4C15AD3DBAE8DB76998F5F59CE8AAB4A63AB55AE619C2D3022F1D",
"publicKey": "5D27A314CF6CDE33FED786C404F8FE36D702A4FEB528B6035269A45F688165A0",
"originalLink": "741EC00DAE56D28AE48EC82E1A2EFBCB8A0682C290523CE23F83ABA46F0F248A",
"block": {
"hash": "30EF1AA8D0BA90B9BFB2BD80531A7E7F21479C79FFFEBC51AD681139B798DA75",
"data": {
"type": "state",
"account": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_13ngby46a1g19ab1hnoksxtww8y7uoeh87j5jw5gb4fe5itz6y5iio5jjj9z",
"balance": "649560190339492448846",
"link": "741EC00DAE56D28AE48EC82E1A2EFBCB8A0682C290523CE23F83ABA46F0F248A",
"link_as_account": "xrb_1x1yr18twopkjdkaxk3g5aqhqkwc1t3e764k9mj5z1xdnjqiyb6cmzcrre1a",
"signature":
"2874D2C1EA3C76CA00BF714AC4FDDA3119A5ED320CF1B43D7165FBEAFFB0A1EEB369018D372522721CCBCBB9217FF1FC150EBA82485D6CA0D9D8DC6D5662D60A",
"work": "ee0bc795351d7778"
}
}
},
{
"secretKey": "FF928CB6396E51FC56E3E7261837EF4D1DF7867E67F569AE163C1EEF0739C1EA",
"publicKey": "7D1D14DE5C4FDE02A7249526EB13B57241F83C548049B70022B630F77E8750A1",
"originalLink": "DCC3DB8B204954DF88589C52B47E25CFB59C35C0E58C19640EA943D99F6138A9",
"block": {
"hash": "70905380E81D20F49DE0799B246A9876ECD09C39086DEA62268D806EA0964801",
"data": {
"type": "state",
"account": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t",
"previous": "29D9A461C6A2EEDC9FD60AE1AE7B5E3A7DC553A4267B78D8EE59EFA2EDE7D059",
"representative": "xrb_34r1if8xmizpo99jt33zm9efurw5qcmsbh7f5d9o5i4w1wcjxroqhjm9sdj5",
"balance": "577145905262696995439421202",
"link": "DCC3DB8B204954DF88589C52B47E25CFB59C35C0E58C19640EA943D99F6138A9",
"link_as_account": "xrb_3q85ug7k1kcnuy67j94kpjz4dmxomitw3see57k1xcc5u8hp4g7byu4qu33x",
"signature":
"4BB5BA937237184CD0D7DE429605B96B4DF6DB823DB491C314553768395896A0128D7074EA21E1B0B27E82064743B66C14E6157363DF0F51C7F0D88D67C55702",
"work": "ec0cff42822954c1"
}
}
},
{
"secretKey": "D46593256D4B4D0B7798391A0306770545C35F09771DD79DBEAD8FFD321DEE25",
"publicKey": "080CA776E747D31F345FA9F9D192D0D97447BAFEA75A3FD030BDE19F2A78BEA2",
"originalLink": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a",
"block": {
"hash": "7D0B5E3C7398DC15B849831F924613F2BD711D0F7CC6756EED92FACFB6ED96D5",
"data": {
"type": "state",
"account": "xrb_141enxuggjym5wt7zchst8bf3pdnayxhxbtt9za53hh3mwo9jho4jcpf5wgx",
"previous": "83001EC80811C8FE403614FBB5C3A5E261E2B580A2409DEC41806AB78E1038F6",
"representative": "xrb_1dp178yj5z3smkigcfgxuk17adoghabbepae96939rwia3aq7g77a3qzjhhy",
"balance": "7445659166294338264715595882125104",
"link": "8789F4553355847E32C56C582D35ADCDECE23033CD4099C8EE787B9A49C10E2D",
"link_as_account": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a",
"signature":
"74A01CA882D720E352FFCDA95E1CE8EB2A84F4382F4B576BA7F834056EB7F5927E9526DFB3F435DD0590CBC864E819BF6140D54D176DE22D3D96E794782D5305",
"work": "1d8c677a57414799"
}
}
},
{
"secretKey": "A2DBFDBA2DBAB7D316C9FA5CDF196C3FA6608AC256C4D7858861A520E16F08F8",
"publicKey": "33DB63FE3373A270CB8E543BF2249F2D37E08418C7EA4F884887CA1FF33176C8",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "9365C5CDBEFDA1B303625BB014665BF17C8181720280A1DFC5193D14512DC4B9",
"data": {
"type": "state",
"account": "xrb_1eyuehz58wx4g57rwo3uyakbydbqw443jjzcby66j3yc5zsm4xpafxfrmxy9",
"previous": "BC91C63F02FEF9A5BB4605FB50D2DC965534F04769A5929969BD3462763A06A8",
"representative": "xrb_1zejt35qz7bip4rdo3hzr315t6hwawdsz367hqws1mder8ssko73feiqmq5f",
"balance": "449319759712793014442177647948943",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"476ABEDFCD066FDD8171D9FDD40C16B45437ADBBB5104D2E9B1A681BB9EA39B145A665A04D0D66555054DCEA51B24DB7044BA46D635E467F4A1642F771720501",
"work": "dd146e78dc566afa"
}
}
},
{
"secretKey": "227E0D70FB09E416029D260D79CC9A1540B8BDDC9783C90B46BB941CA73A2172",
"publicKey": "45989CB2248E6ACF2AF224618D38AF0F68107C8502772DA96364AA32757784CD",
"originalLink": "9D6168FFBCC583637D5E6093C3ABD25CD63E3ECC3484B1D02D1443A612CA5107",
"block": {
"hash": "6373F9B032D267878707E12EB0D9E3560B5843AC9B6B9011451B499521088B1F",
"data": {
"type": "state",
"account": "xrb_1jermks4b5mcswoh6b53jnwcy5ua43yac1mq7pnp8s7c8btqh38f9bnbx9yg",
"previous": "0000000000000000000000000000000000000000000000000000000000000000",
"representative": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a",
"balance": "174922793068542306514790",
"link": "9D6168FFBCC583637D5E6093C3ABD25CD63E3ECC3484B1D02D1443A612CA5107",
"link_as_account": "xrb_39d3f5zusje5efyowr6mrgox6q8p9rzerf66p9a4t745nrbenna96d3g5m68",
"signature":
"5091F33059F4792E2B85129D44C1C502BDDBD563EAF23A44D6821586D2359B3DD29EA478FBF06A033186E0FA4B869A8746ED8173218600CF1FB0EAB3D2A41C03",
"work": "3588ef183cbc9f46"
}
}
},
{
"secretKey": "738E05DBA91100568452ECB9A0FF4E7A213DA2A2BD4FF80FAF8814AF3692B71F",
"publicKey": "E303F1A9A09682023E4423FCF11B2F7A7FDA33F97F8F89F02F1B78996106A6D5",
"originalLink": "50C62E7295A59FBCB51F6AD3DD7603EE85D05BCDFC4D11319ACE1F1437DBD896",
"block": {
"hash": "50BD8A6685BE1D2DDE290539F7FA2E1C237CFF61F6436639DFCBB156A0ADF27B",
"data": {
"type": "state",
"account": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4",
"previous": "3AE13AA82F0B1F15ACA927C7119FBF99DC2CF19F45B9CEAC2F26FB6E6FD5491F",
"representative": "xrb_3qfohkcii7dgaz3beijxc9y93x3kto5wioy5qdt5fdnq3p94psm185n7ktf6",
"balance": "7925696360826532377779658525624844687",
"link": "50C62E7295A59FBCB51F6AD3DD7603EE85D05BCDFC4D11319ACE1F1437DBD896",
"link_as_account": "xrb_1n887ssbdbezqktjytpmuou19un7t3fwuz4f46rsomiz4iuxqp6pqw77scem",
"signature":
"D4A5FC32BFF2541B400510BD9C094F3BC75FB5E4BA7034027E7D69612D17CD635B5EF72E6B51B967B863DD64D910A7C5B095CA3051AFECD15EF6E29374E8760C",
"work": "0c3200dca3d83d43"
}
}
},
{
"secretKey": "EEE82CD8012BA15FB43C1ACF0DED7005CBB18517FCD86F9F52F94AB0AFE9AD8B",
"publicKey": "AF2F0DB01343593068842A322ED28BEF5D296D05CF004FC294827CD577F9525A",
"originalLink": "xrb_1rzrcick31dc3jppteku9prshcachh9445kim4ogmnhnidmdxb6tcas3dcyu",
"block": {
"hash": "7CB0BFB75C39097BA1841AC24BA0882D1356D4509439EED1838435863380EB7F",
"data": {
"type": "state",
"account": "xrb_3dsh3pr38its83naacjk7ubaqutx77pidmr1bz3bb1mwtouzknktx3hkk3ph",
"previous": "5EB2CC8877DDBC45E508EE44E78F66255388ECA8F5557C6DD83D2CCBE2A282C5",
"representative": "xrb_1qtoey3mobciucc6k1iss8yhx1nhcxrx4yg8umjtbai4d7mpbbgt38r91toq",
"balance": "8311132",
"link": "63F8541520816A0C6D6D325B3DB197A90A7BCE210E5098AAE9D1F482E6BEA49A",
"link_as_account": "xrb_1rzrcick31dc3jppteku9prshcachh9445kim4ogmnhnidmdxb6tcas3dcyu",
"signature":
"38B551AA0CB33C00C8D99EB360F824250FC96A0A655129EAC90CBB7512A260956253A5CB9B604153DFE06D0B36F4C746583FC6DB73E047A385BC03F563E70404",
"work": "c912312491e36f44"
}
}
},
{
"secretKey": "1D0E82BE718C8C31AB2763D05AF7C5C12A84B87B6272B02CDF1EC830C899BEED",
"publicKey": "6421F564C3F21BDDF9E9C981F92360F508BDD5BA0571653CF2714E4EC446ECD0",
"originalLink": "0000000000000000000000000000000000000000000000000000000000000000",
"block": {
"hash": "2EA4851655EFBFEFB0C456D8C27EB172F1BC6EB6C5B45596E2AAC369A9D89D68",
"data": {
"type": "state",
"account": "xrb_1s33yoke9wiuuqwymke3z6jp3xaaqqcun3djenyh6wcgbu46fu8ibw54aez7",
"previous": "B8576F8839EDF43DD27EDDFC26603BEDBA6A7062C61C74F8920F7FCD62A6B1AC",
"representative": "xrb_1dnwirnrrgnr3gfru65fh51agd37es1z3c9jgk8w7cdwpzomsxi8rz4iasiq",
"balance": "40",
"link": "0000000000000000000000000000000000000000000000000000000000000000",
"link_as_account": "xrb_1111111111111111111111111111111111111111111111111111hifc8npp",
"signature":
"427BC28646FCA18FB540E8177B298CED901113648FF35DCF202A942E8126385CCFAE1E14530A3929561696FBE727ABF6487234E32B1D4AEFEED73F96D24EBC06",
"work": "ebc888b584c82845"
}
}
}
]
================================================
FILE: packages/nanocurrency/__tests__/data/valid_keys.json
================================================
[
{
"seed": "BBA067329F44D8011BD6E15F43366A81307FBD8A4801A6997B354AD302F4BC72",
"index": 0,
"secretKey": "19622D20FBC8AAA9E45CF016FAC7EF7D85908EE898A670B4D6A2C8AA272828D0",
"publicKey": "9795E63D9242D8C6E00FA5D95587B2E5262B1E15001A24D2F6D803DE577A0574",
"account": "xrb_37wowrys6iprrui1zbgscp5u7sb87eh3c11t6mbhfp15usdqn3dn3sfp714g"
},
{
"seed": "A98A541406E5DF55EB3F57396255AB133A417C3252679CC9C1AEF51382089AF9",
"index": 1,
"secretKey": "AB308F564D2FC791B2601C64E52E102C3E779AC6AB4A2AF875855C6256EB3686",
"publicKey": "B21F79F11422CFFC45C596699ED1C6CD7F01585B22A7A273AE38557B5ED557B7",
"account": "xrb_3eizh9rjaaphzj4wd7mbmuawfmdz17e7pao9nbstwg4ohfhfcoxq98o6xdw7"
},
{
"seed": "445466874730B5CC66692BE409069644F836E051962AAA420521F06580883034",
"index": 7,
"secretKey": "C0CB015BCA0834AC827B6259B48C052F7D62692DA1FA21DCDF755CFD27ACBE43",
"publicKey": "C3C6D329F5066A51636C648ECFD595A714DE5B4CC7D634FC16823CD65F424D75",
"account": "xrb_3iy8tenzc3mcc7jprs6gszcsdbrnusfnsjyp8my3f1jwtshn6mdowe5gpytj"
},
{
"seed": "E73D16E75D58D89B07B90B784D6308E5AF52DB34E2D43662E8C30F9745A4B36D",
"index": 50,
"secretKey": "937BC31DCFF4588820CD9C774D680FFA056FB50B02ADFBC2B4BA5C3F7C6DC8F0",
"publicKey": "B12E6B0221295B8674F78FA3D8DB71FC3127207804D2FD8BEC5FF4F6046721F5",
"account": "xrb_3ebgfe344ccuisthh5x5u5fq5z3j6wi9i38kzp7yrqznyr48gahock1rsnbn"
},
{
"seed": "C792E2ACCF793F7784349CB9E1D53473D12E82C9048BE213AD54104923A6F5FE",
"index": 95,
"secretKey": "57F03A1826C1F9398CD9A7C0AFAD1A91D680DBC2CE27AFA1A912B0404A9B1E92",
"publicKey": "C816C616761BA99258409FEA1B5C285FEB0D332BEE71D2BA85117A6FDB3600E2",
"account": "xrb_3k1prrd9e8xbkbe639zc5fg4iqzd3nskqumjtcxac6dtfzfme194hgcxrfqr"
},
{
"seed": "00A16084EF1F612B3EF3B4C89F7B7B10EBE08A296B352ECE66B4D089A3A02282",
"index": 142,
"secretKey": "B0808D52BCB50A72B01D368381EBF52A935999BBB12EEBBA54217C02E3F34906",
"publicKey": "248BA201D1E1FB3D927B7ACC18EB91257AA0332ACC55F8A6FE2D9513421D4C66",
"account": "xrb_1b6dna1x5rhu9pb9pype55os4bdtn1skom4oz4mhwdeo4f33tm58uzjr3zn1"
},
{
"seed": "4C70381E482E347576BF5EFACF3B56083CF0740BE6E07F888B79E101D3D5D5CE",
"index": 163,
"secretKey": "AF795836DC1207317289A5D39D42E6DE3076AD4A1547A37910DD570408D85D63",
"publicKey": "63ADAC1DF19D7FFFEA6A3DB538C5C451A6604F7A07F39A81F5F10A1B89F25DBB",
"account": "xrb_1rxfoigz59dzzzo8nhfo954wanf8e39qn3zmmc1zdwac5g6z6qfuw3hx4h6q"
},
{
"seed": "06F8854E86CD58B986F82F40919C77ADE29DFD6098975F048DF0029DF79EC1E7",
"index": 241,
"secretKey": "6B2153D0A4B53C0E6678741DFDD73D95149741A0E96CFDC9FBA4659B9350DD88",
"publicKey": "15FB5C0FB504CEE8ABFF14C75417CD0760A8488FF973D02CD91C965997848D37",
"account": "xrb_17hudi9uc38gx4ozy789cidwt3u1o36azydmt1pfk96pd8drb5bquj3ww8qi"
},
{
"seed": "177AB9411B6A88044BE4E24A05A0B67BCB1C5665FB6A17BE8A318D511D9B3404",
"index": 321,
"secretKey": "131FADFF109B240D280AB1EA86691CDEE33BA397DFDF7E69005C4DBACBB6FCEE",
"publicKey": "5D3A0A0B1CFC42D5A610E3BA6855730DE82D0D582C62808D23EA808771C0015E",
"account": "xrb_1qbt3a7jsz44tpm33rxtf3cq85ha7n8oid54i48k9tn1ixrw11cykeiefebd"
},
{
"seed": "137C60161935077812C4B46ECC10B4D8FB2C0519999638B549591A2F4BB0EC5D",
"index": 345,
"secretKey": "2D5E34691592D6DF2C25E67778634CB1A47DC5A4774C21B6BA15487D089B52A2",
"publicKey": "66B82DE57708F3CC022E55A0329E4FCD83892DCDA75D0206576A639A815900DA",
"account": "xrb_1sor7qkqg49msi34wof18ch6zme5j6pwubtx1a57gtm5mc1ok18tx1pzew97"
},
{
"seed": "4110D772CD664345037F4145EA48DAF8ADA18A7FB1BA07DCC8BA40939AAEBD26",
"index": 384,
"secretKey": "B1FA62470B15308675791C0B5F0CBCE9C4334AEECDE28ED297D8E54FA64C3404",
"publicKey": "1A1169CCAD9984E238BBE1F1842289E8B498A01F0E37A7058E51CEBE8E4B5185",
"account": "xrb_18ijf98cu8e6wawdqrhjiijamt7nm4i3y5jqnw4rwnggqt96pne76dfqxqf8"
},
{
"seed": "603BF7F318F78EBF6C5B4F89E76770C70D1556FC47E94E37C2F6AADEC044E84C",
"index": 452,
"secretKey": "70F91C56127C56BBD2180D14193DF6692C408F010E5EECF9C648DC1ABD134F96",
"publicKey": "E9EBA3F6D439FAEF916C4DA556D262A04CE1D4963CDBA858E2E5A0109E12D81C",
"account": "xrb_3thdnhufaghtxyaprmf7cub87a4ew9cbeh8uo3eg7sf144h37p1wattr41ug"
},
{
"seed": "3DDF72CA71C13798C2CEADDC22ACD48B375158502F4A5E97AC0D618A09AED132",
"index": 544,
"secretKey": "BBB53844B2DF452AEB43E6780539D9432967F7330EAC17F00B2548EA0FD0938D",
"publicKey": "91A4995B054069C41E54F3EDB886195EFBC65F4366FA46B56AB417F38588F0AD",
"account": "xrb_36f6m7fici5brih7bwzfq453kqqurshn8sqtattpof1qyg4rjw7f6mbejxkx"
},
{
"seed": "45424D69D85D4690EB037ABA9924F329CBD44DD7899CC0009826329CBC0F41B0",
"index": 622,
"secretKey": "D3B717446342579DE1F0D43DF7748E91FD5E4D74A90B8FFD57440959C09D244F",
"publicKey": "60E0A4146F972CCF591EDC7762B8BB8DF06BE3B48B42ECCE7BBED49F32B83E28",
"account": "xrb_1r91nic8z7sesxejxq5qecwdq5hifhjub4t4xm99qhpnmwsdihja78pa18r1"
},
{
"seed": "00E531146BAF5EE4921E5773FEA8F5CB0A03A4D573E4324E6232FF63D8320DD5",
"index": 654,
"secretKey": "A47503F81793D500CE57BB5760C9BDD783F074D8131637C669630BA375C75F4B",
"publicKey": "EBD545077EA30BA0C821276382C69E5ECB2409DF44625D6704F2BBAA66069F2A",
"account": "xrb_3tyoan5qxardn5644bu5id5bwqpd6i6xyj54domibwouobm1f9sciih9qfzh"
},
{
"seed": "9CF567F092371CD6A71819818234B6B07760B11B5A26A4027CC3BA4F7EA8AE28",
"index": 676,
"secretKey": "1C11D7CA256AF875FD3E148FCB95F637B20A19C95E35A36A099047711F9E5C50",
"publicKey": "CE6A0A16451B3E6BFD3AB43A4076DB035E2644BD177603AB8720B218F72B7FC2",
"account": "xrb_3mmc3ad6c8syfhymof3ta3ufp1ty6s4dt7up1gorga7k55ukpzy43hfkhtb3"
},
{
"seed": "A9285D9321A04A0A418938E5FA96CC05D64FFD77F239BB5C4D931F38E6A9B865",
"index": 745,
"secretKey": "04C33FD7670B52D2D4655C35477F15CAC171749CB9AE7FE946F31A53DB90FF2E",
"publicKey": "9B3F00F3E71A5215AD1B6F391BA38E188FDF76FA11FC200EC829904FDCB1C405",
"account": "xrb_38sz15syg8kk4ppjpuss5gjrw86huxuhn6hw619eiceibzgd5j17hgp5h9ys"
},
{
"seed": "829F781460476F058F9FA7C2EBE1C14DCACE975EA98E1CA58389B72002504420",
"index": 752,
"secretKey": "57CC014402EDD34484A9E24803C7C31718AF0A9C7298C892287B80C6948BBC7D",
"publicKey": "7B0DAEEC4A8B156E8025DCF14077C3D7C7109C21AA9C763B8E10D9CBA7171547",
"account": "xrb_1yrfoup6o4roft14dq9ja3uw9oy944g45cnwgrxrw68ssgmjg7c94udjwxgx"
},
{
"seed": "0147165638DD807AACD3DB99DDF350DB7386675376CA55D05E49464D1A6C80D6",
"index": 827,
"secretKey": "7FC679601AB70569790F9D0185F8D5BC6E3C12E24C98B5AECBCE2BD611085313",
"publicKey": "ABE542434CAB5176E2B93103D8A9941A11689066FBB3F4DED48F9530F634BF98",
"account": "xrb_3cz7ab3nsctjgujdkea5u4nsa8ijf4a8fyxmymhfb5wo85u5bhwr4tyim984"
},
{
"seed": "2D5C30D60CCBC08C1095F71661DF56A2DE97BABDCFDBB97D2CB783603D6927BF",
"index": 862,
"secretKey": "6C681FDAFADED2374155C3A0CB426CB589B2125733E2092E08CAEEB3B835A028",
"publicKey": "0DE84666157102C69A03C5520F4B8F85B1232F97826BE44AB25EE0553E8391B3",
"account": "xrb_15haasm3cwa4rtf19jck3x7rz3fj6eqsh1mdwj7d6qq1cnza96fm1bntmyf1"
},
{
"seed": "7277D288FC58078EF21974D309BAFF2A6C48F8C1BA57953CDD04D8F8DAC2498D",
"index": 868,
"secretKey": "EBD59E5AC46D9F835755517F34B7A69D5A90A94950E09B66704FFBAA55FD4318",
"publicKey": "04BD382369E22877EDDAFDFF9D32430E1B1F6B5CA6DFF3FC0F689BF089B966F7",
"account": "xrb_137x91jpmrjagzpxozhzmns685iu5xoosbpzyhy1yt6uy46uksqqdeeh8xwj"
},
{
"seed": "D04235D72219851B21C7A76E7C47B30158710A0BCFA51255C08ECB3DC40B200B",
"index": 893,
"secretKey": "0303E12665082FA149ED78793EBB0B5E7358B8FBA71B0C4BCC6C9B1640A4FC10",
"publicKey": "068E4F844401C03A1207D2B2CF75CE1BC5DD58F316238F06E489AC1C35F27870",
"account": "xrb_13ngby46a1g19ab1hnoksxtww8y7uoeh87j5jw5gb4fe5itz6y5iio5jjj9z"
},
{
"seed": "399C610F8DF0E9D4A7268521CC92E1228F20773A85CEE012DA388562635ED50F",
"index": 915,
"secretKey": "57699B0449C2B84E6B45E3326F1B4BB352D514A700A7B7D96DCF3C8C9EFC1A51",
"publicKey": "A5CEBBF55AD639AC0B0150A6CF94CC7CE07F0A6D40A685C05D19420EB956504F",
"account": "xrb_3bggqhtooojsoi7i4n78sycerz91hw78ti78iq17t8c43twoen4hg5uxh369"
},
{
"seed": "43C60704DCFB0E8A0390B40F5CB1C5665A533230FB0EFDAC3B2737A822B755E5",
"index": 1015,
"secretKey": "1E4782A13293F5395D292552845562102B909A314F6D15C2E7EDBA13E3A5A451",
"publicKey": "90C6435504BAC8E9CF7742088B34EC429228829ADF22C786B8EC73E03F03A12D",
"account": "xrb_3688afcibgpax99qgiiajetgrink743boqs4ry5dju5mw1zi9abfcfginuup"
},
{
"seed": "F53A8047C66824F6FB979A79B6E47719AE4495BF9EBD66AFB95525FD03F4A3C1",
"index": 1104,
"secretKey": "1F8E34B0559060CF739A4044C3906142CC13FCE3338B8F3B48C274C1EA9ED96B",
"publicKey": "81EB10D0EF455FF20BEAEBBAB924AF8269381899BEDDFBFBF30CBABFD46F51E0",
"account": "xrb_31hd45agyjczya7yotxtq6kcz1mb91ebmhpxzhxz857tqzc8ynh1dq1sqk4b"
},
{
"seed": "68518968F4301D507F7FF3BCF82A18BCD7DCB5FE669D1928914F86D8FE51F583",
"index": 1143,
"secretKey": "56F292198CCE8B5B90B7D64F9A5CD5D654B0B330BF9158751C04794E8E9782F8",
"publicKey": "274598C174F88F6A4E72C94EF97776283CD2CFFF65B40EF8557383EAC0ADE247",
"account": "xrb_1bt7m51qby6hfb997kcgz7uqec3wtd9zysfn3uw7cww5xd1curk9kxa1xk7q"
},
{
"seed": "86B814EAD3848A2EC80C7EDE5F924D7B10CA52AA3A90D84DD51535EF6D617F81",
"index": 1164,
"secretKey": "1D0E82BE718C8C31AB2763D05AF7C5C12A84B87B6272B02CDF1EC830C899BEED",
"publicKey": "6421F564C3F21BDDF9E9C981F92360F508BDD5BA0571653CF2714E4EC446ECD0",
"account": "xrb_1s33yoke9wiuuqwymke3z6jp3xaaqqcun3djenyh6wcgbu46fu8ibw54aez7"
},
{
"seed": "F105153FBC4AAC68D3A5DA42669BF342F7C6D86BBF58F5C1E0A5094663ED3A05",
"index": 1219,
"secretKey": "43E1EAFB5B08196B99B0BE53BF9B7F193770DC57887A1A24D80F99C6CCA54539",
"publicKey": "6D32FE9CFB4C0A32DD4B28D186BBA9CE1CDB062976641741006BB73596394519",
"account": "xrb_1ubkztghpm1c8dgnpc8jitxtmmiwue54kxm64x1i1txq8pd5kjasirnamico"
},
{
"seed": "05AD8AF131940BF88FE41FA7744D431320EFB5732924ACB5AAB40D56F3A645B6",
"index": 1241,
"secretKey": "79FD76B208A863C7725E501ED3E6CBCC96725B28E139AB8E2E8C67029B7DD00B",
"publicKey": "3C68615B2E7EF5E1F8A36818E3737D91A04FFEEA4EB3315DF46286EDDD333752",
"account": "xrb_1h5ae7fkwzqow9wc8t1rwfsqu6f1bzzgnmom87gzarn8xqgm8ftks8xsa6du"
},
{
"seed": "C129F2765D59AE87D5A03D7531ACB3DB1FD5C9F33DFDDB6B6B95858A23EDC489",
"index": 1328,
"secretKey": "D46593256D4B4D0B7798391A0306770545C35F09771DD79DBEAD8FFD321DEE25",
"publicKey": "080CA776E747D31F345FA9F9D192D0D97447BAFEA75A3FD030BDE19F2A78BEA2",
"account": "xrb_141enxuggjym5wt7zchst8bf3pdnayxhxbtt9za53hh3mwo9jho4jcpf5wgx"
},
{
"seed": "6DF8447DBF79B21DB8267FB839BB475FDB1826E5DD1F7794F6B944DAA53C9E4E",
"index": 1338,
"secretKey": "85008B6A3FB812685F5AE8B9D1C3FC3B8C3ED7DB03FCB0FF9E7D462B5DF7311A",
"publicKey": "C27CDC189FCF8453AEF4B49A90F631EA973BE3202F36D6D2E6219FCA20B4A7EC",
"account": "xrb_3imwuiebzmw6cgqhbf6tk5u55tnq9hjk1dsptubgeaezsaidbbzezrk7p97h"
},
{
"seed": "7D3500968E2AA1E2FE4274455B89B25FE9402949245280FAEEB765213AE2BB58",
"index": 1412,
"secretKey": "4C7A22FE3EAA6C1079090D3753B50E4A314756825DD7F724A391793263141CD9",
"publicKey": "6249FB7A8C6E7164664D390F7D706F0FB466F8EB780893426426B5E8EA4BCDC2",
"account": "xrb_1rkbzfxarumjejm6tgahhor8y5xneuwgpy1akf38aboox5o6qmg4389hch1y"
},
{
"seed": "B28A6E8B3826904C142A604F5BB6FFC1F3FC4615C54169955826E92ED34D25BD",
"index": 1462,
"secretKey": "C0EC6F765B1BA0FDCA8462603339ED0A662D9678CEA4EA7BB04BAAC0ED533FA6",
"publicKey": "ECFF76F7E0B4019A42664FF2C7518DE606C4E4CFE481D86B256BCEE6310EFCD7",
"account": "xrb_3u9zguuy3f13mb38emzkrxarusi8rmkezs63u3okctygwrrixz8q4odmydgp"
},
{
"seed": "72D7523C987654E93664BF0B235052D67FD0658CA03DAD3922EE7831DDAAFBEA",
"index": 1473,
"secretKey": "503681791B4F7F61E045B419C7DCF4E6D74A889ED39FF58F426921F90B5ED3F8",
"publicKey": "118BBBCB0185525C09837BB539BCC882756D9A73DF3F705A1EF7DD684D5B8527",
"account": "xrb_16edqh7i53ckdi6r8yxo98yej1mofpf99qszg3f3xxyxf38oq3b9987p8zw4"
},
{
"seed": "5508180B82D7CCABFCA4C102CB9BD6620989A8E5D89722EF1682B3EEE67066D3",
"index": 1550,
"secretKey": "2B70ABB4D458DC5EDA2C998BF5454717BAA6A122AC8694A02760397DB523CA66",
"publicKey": "9DB2961B2D01D49C53AE6C9E513BC51AC04273CD4DAC4277F82B44B4F084A91A",
"account": "xrb_39fkkrfkt1gnmjbtwu6yc6xwc8p1abswtmfeabuzict6pmrabcatzmh71rgc"
},
{
"seed": "8C95559BC9E5C1129E0EDF369686FB7A40ED3BC40E3FC1A5591509C8B427A2A0",
"index": 1625,
"secretKey": "E5A523DF83DC3A79F9DD29940500F605D51C4FA14EF56BE5CE8299082CD8A4BD",
"publicKey": "671E6C702B96D0D50AAD8FE4B7BC06FED212E066A4B07A42BE4AF402479D1799",
"account": "xrb_1sryfjr4q7pitn7cu5z6pyy1fzpk4di8fb7ihb3dwkqn1b5st7wsd7ey7c9s"
},
{
"seed": "1416C6F30A1E824A35C67303A34E99F05945D23F56420EF593853E93716BA3F0",
"index": 1647,
"secretKey": "36B0154624CDF419EF7726A96E523AC55B67F91362A443A5DFB369861FADA650",
"publicKey": "2787CDA978C394547F750793FB07BC4BA8A89F012AA0D916BDFEC9D088F99139",
"account": "xrb_1bw9spnqjiwncjzqc3wmze5urkxao4hi4co1u6dduzpbt46hm6bsxho97789"
},
{
"seed": "8EAAE4F5F3F4F66277541AEF85C40AF541B9D83D0A280D7C4CEABA524F898E5C",
"index": 1725,
"secretKey": "44972A8DAD0060DF940F26E76A5FF5E5DBD7CCAA5FAE4D4BD4BCBCB4090FF689",
"publicKey": "2C96B77D14A2E5D22905E1BC2913EFA611E56D8573978098FA03005B82E9AE18",
"account": "xrb_1d6ppxyjbaq7tanidrfw76byzbijwoprcwwqi4ehn1r1dg3gmdirsgw3ekmu"
},
{
"seed": "F47DBA29C0890761DF75D8D73FB3F8F98A7766640481530B6B9B6927C9FA9D79",
"index": 1822,
"secretKey": "E8DBDD99A4B133B773C61A615422682D6B0199E50FAF86C930C0D7A1AA5A7693",
"publicKey": "445916D81A5C7690AA4BFAD8E2434388CAF573AB632F8A3DA06AF3BE7FFCC6A5",
"account": "xrb_1j4s4ue3nq5pk4o6qyprwb3n948cyostprshjayt1tqmqszzsjo73kndrud7"
},
{
"seed": "179814B286C1554BBE5DDC09AC53387BFE333BD613E6AEDB25E52C54C12909C5",
"index": 1911,
"secretKey": "CBE0987B1561C3B34927EA1A7F1098D549A2A659C40DEC9A4B51EADE17846723",
"publicKey": "94DEEDD03AAE9906C0DE5105D2B8C3C3753C5ADDF2C1D5EBDF757A703D03A8FC",
"account": "xrb_378yxqa5odns1u1fwna7tcwe9iuo9jffuwp3tqoxyxdtg1yi9c9wmbpei3h9"
},
{
"seed": "B1341301A79AFC2BF5BF7BD392DE43B797C2A388831D798AEF9E76852BEB1EE0",
"index": 1948,
"secretKey": "BE27112FB64FDDBE82AEFC0DC0D024847D3A0B4E1316DD78C502F4C9C081D32A",
"publicKey": "D18B363F3D9493853E38EE0455D7C131E684A972F262087D03BEE24701069D36",
"account": "xrb_3ned8rzmu76minz5jui6cqdw4eh8iknq7wm433yi9hq4aw1if9bph6163qza"
},
{
"seed": "4B63519DC7450D50F5DAF4B9286AC4C6C77440E00251E2E48006783B413AC4E6",
"index": 1972,
"secretKey": "80AF4A5251EB8772EE9EFAE097EA4342F0F70B2F91C62D27A2A550CD0D643E21",
"publicKey": "0FBD5882D0EC658BFAF3171B50578B0071B807D100D3546C69CFB6F8259D43D5",
"account": "xrb_15xxd43f3u57jhxh87ruc3drp15jq15x418mcjp8mmxpz1kstiyoqke3zjgn"
},
{
"seed": "C36639B249B8BEAD8BB859D91E081DB2412C55E9CAC4ABD37976E26C75564D66",
"index": 1997,
"secretKey": "8EB68483CE408EFEC6F62089E2369FE8043EFBD5108621EFEA558D3CF81F2714",
"publicKey": "826FBEE1D6A5FC5A94DAD9708D0C92B478BBBF42BF6CD5C9F7D66B03D940A312",
"account": "xrb_31mhquixfbhwdccfopdijn8b7f5rqgzn7huetq6zhomd1hen3arkpsrgkffu"
},
{
"seed": "28F1C4A381501D62CCC717F074C24046D6BB0F87D0FF80DAAD20A6E535BB4C7F",
"index": 2029,
"secretKey": "7740210CA3E7C5E3D1650A2FD3DD1106AA80860AB2039B65E5E5FCCC2427ECA3",
"publicKey": "4C5E379EDEC185DE86F29A2C86F7BF3E261946F1243BA522D196FB0ABA98C713",
"account": "xrb_1m4y8yhfxie7ut5h78jeiuuuyhj8575h4b3unnjf57qu3cxbjjrm1dpfkmqm"
},
{
"seed": "6DCE3BAC9C99774E3CCAF8E58D6B208CC9C192E4039175FCE5958F426162FEDA",
"index": 2061,
"secretKey": "A9D2B80AEA0173169E3C94B07E94994C4307288656FFB85841DE816D1EC1AB97",
"publicKey": "DB156EA20ED805453F26EA93E70291A5BECB6CE3BD54BD318C8BBF734FE8588E",
"account": "xrb_3proftj1xp17anzkftnmww3b5bfysfpg9hcnqnrrs4xzgf9yip6ghdkga6sn"
},
{
"seed": "B8398C2F21A6B63267806486439274E46004859C894A46CFED7547C5B30D6EE0",
"index": 2126,
"secretKey": "8E50ACB1EDEBF15734C475252B940E4E9A862C6932636263093A31B44081209F",
"publicKey": "2EC029BD11FC399CA0E535DDDC80542EAE7A1296590C390E13E390405172B8A5",
"account": "xrb_1dp178yj5z3smkigcfgxuk17adoghabbepae96939rwia3aq7g77a3qzjhhy"
},
{
"seed": "9F14C6F36EF46211FBC9E46B87CE5B4809421C9B4999D4073CDA9C9517E1F7EC",
"index": 2174,
"secretKey": "DC3A60D750ADA3AE40923FDB9A27BA76C91A11CEC167547DB1F733458B424C95",
"publicKey": "469C6E5AAB7755A3C7C218894CF9E18D6CE131E71EA40DABECE7D7090EA4F9A7",
"account": "xrb_1jnwfsfcpxtonh5w686bbmwy55dew6ryg9o63poyssyq369cbyf9nfypzosk"
},
{
"seed": "69B3B55C8D8E67118F717B4E24BDC6DF25E9379F5EC84AF6038DDEA1B970E7FB",
"index": 2218,
"secretKey": "A0F4C1C282923A1EA9ED4595E9794EC28B7F64A6FA537039729723CC068902C0",
"publicKey": "907CA173F56EFBB12FAE23DED297E9945FBD1EE669CCC246718889AC9FAA41D7",
"account": "xrb_365wn7szcuqup6qtwayytcdym74zqnhgetgerb59546bokhtnigq1bxr1aji"
},
{
"seed": "565F1C7A447BC2965604CFC900A4BFC4E4F3F2DB137BFE5F2BDCB347534301F4",
"index": 2288,
"secretKey": "A2DBFDBA2DBAB7D316C9FA5CDF196C3FA6608AC256C4D7858861A520E16F08F8",
"publicKey": "33DB63FE3373A270CB8E543BF2249F2D37E08418C7EA4F884887CA1FF33176C8",
"account": "xrb_1eyuehz58wx4g57rwo3uyakbydbqw443jjzcby66j3yc5zsm4xpafxfrmxy9"
},
{
"seed": "46A35AA7257F77AA7974C8287BCF16F22330B73C646466BD8254C28697F3E544",
"index": 2370,
"secretKey": "41C2590D9F81EEEB5A08EAE864622B6E141B38939770E61424BD21DC2060D60F",
"publicKey": "63F8541520816A0C6D6D325B3DB197A90A7BCE210E5098AAE9D1F482E6BEA49A",
"account": "xrb_1rzrcick31dc3jppteku9prshcachh9445kim4ogmnhnidmdxb6tcas3dcyu"
},
{
"seed": "CA2483547221EC31A93D3F195814FB40E1BC475AF4C017CA5610987B2323A8F6",
"index": 2463,
"secretKey": "FF928CB6396E51FC56E3E7261837EF4D1DF7867E67F569AE163C1EEF0739C1EA",
"publicKey": "7D1D14DE5C4FDE02A7249526EB13B57241F83C548049B70022B630F77E8750A1",
"account": "xrb_1zax4mh7rmyy1cmkb7b8xebucwk3z1y7b14bpw147fjiyxzagn73teehr61t"
},
{
"seed": "AE887A1E96C0A044B7F4E12B309A3AB6ED1C0D7FFA9F6D804425C1F55178926D",
"index": 2481,
"secretKey": "72102D432A19F04D430A06AF5AA400B6B67AB3C8B180353587D60432C3DD693F",
"publicKey": "5F5567833AA550DA94490219C9BCFE828F5771D179C6DCE3A4A202596764A5DA",
"account": "xrb_1qtoey3mobciucc6k1iss8yhx1nhcxrx4yg8umjtbai4d7mpbbgt38r91toq"
},
{
"seed": "D2A173C9B4ED3336B20BD9372510D00B5518B9AB9DDA3F028C1882ED64254018",
"index": 2546,
"secretKey": "AD22137DD1D9C039D2B1AC61E7F50CC309AA8E5178A9B990A9110DF1E071E891",
"publicKey": "24838627B28C6372F83EF9630BE58D493DE97BF4BCE5C1CB2818713B7726788A",
"account": "xrb_1b65irmu7555gdw5xyd53hkrtkbxx7xzbh97r97ki85j9fukey6cqqm1gzmy"
},
{
"seed": "6C10C3D17CE4B196031674B38C699C3E892E5CBC8F1486DAE83A6983973B1815",
"index": 2592,
"secretKey": "51C8B2E2EFA4E3F6A772CE1E8258BDD499C4E31EE069459CBB2A8BA1FD561769",
"publicKey": "512F287B1FF9F5C1EA29C1FA96FBD0A70F85D5E22F08F4026DE1DD419FBA8AE9",
"account": "xrb_1nbh73xjzyhor9o4mihtkuxx3brhiqcy6drayi38urgxa8huo4qb5z7k3y5d"
},
{
"seed": "D521F4091A16234C69E3DD020C889C66944DC8E63C32C7E3811C41B5CE681016",
"index": 2622,
"secretKey": "AC5799C4673CB7127A335B23E72273C323F54229E7EEFA13DD1594254F029FDE",
"publicKey": "B00C8393953D43DED6A38721B2B8C82FADB264A028ED44BDCBD85394372B6E4E",
"account": "xrb_3e1eigbschc5uudc93s3pcweidxfpbkc1c9fakywqp4mkiukpukgxdbuf3xt"
},
{
"seed": "8F1E1407DA8A070FF4C8BF52C5A7B269A818950AB44A366B9DFF3F790CBE711D",
"index": 2665,
"secretKey": "8FF42B55FA68F189942A20CBD789BB0DBBC46A54D29676A04DB04931A920BCE5",
"publicKey": "D4B584C0DDCD4F999EBD2A6D7426CA34C8E774E6B41AAE70DC0BA54AE264A944",
"account": "xrb_3o7oim1fumchm8hdtcmfgimenf8awxtgff1tosrfr4x7bdj8bcc6pnrxt3mb"
},
{
"seed": "5ED8B7A9BBE4AB49E7D119BCE589F22B471E1BA9CAB453DC10CD76B2709BEF20",
"index": 2684,
"secretKey": "8943C31B2C9732FE38A1DF1B1D1ECA8A95216B1F024998187987E46B6049E2C8",
"publicKey": "7D91D0477F9530B0B0BA85FFC0403D11FC47179F84857DF9904D6CC1B39954A1",
"account": "xrb_1zejt35qz7bip4rdo3hzr315t6hwawdsz367hqws1mder8ssko73feiqmq5f"
},
{
"seed": "69BE0001E589A3E87E3691B976E3679CC6BCB788EC364E31BB38ACDFF4FA7B28",
"index": 2698,
"secretKey": "9842FB7A6A245A5C7251EA7ED3E6291FE401DA66DAA8882D420C6871634ED716",
"publicKey": "1FA57E237F6E3323CA94241242B9703282974EC95B547977CBB246F136EBD735",
"account": "xrb_19x7hrjqyujm6h7bab1kacwq1en4kx9ekptnh7uwqek8y6ugqosobtdwkpot"
},
{
"seed": "9CFCFB7702242094EAC51EB189268148F02527F3AF1D927FA4E253C71A7C2AE1",
"index": 2747,
"secretKey": "05285E59F97E0A839EE6454143FFA0C00B4B37F57AACD83ACD660CDB5030972C",
"publicKey": "903D6732CC76B7D2FE2CACCA3A1BCC059917ED95A53348833D4DDF482EF26C0B",
"account": "xrb_363xewserxoqtdz4sd8c9afwr3es4zpsdbbmb43mtmgzb1qh6u1doicj4b8u"
},
{
"seed": "B58AF07BFC702774EF8FDA6EEB870806484DA2B386714D1F88F674A29D91E204",
"index": 2833,
"secretKey": "FC0F814E47BEE3A3FBBAEA04299EFEF3E41DB6C6657FD881F8BB41626C2FBBA8",
"publicKey": "1E6D9BC09EEDCB43453D27F5DBB4C61CC8907133B94E3E33791CC0F161EC85E7",
"account": "xrb_19mfmh1bxugdaf4mtbzougtee98ak3rm9gcg9rsqk981y7iys3h96hagjxib"
},
{
"seed": "0C861BF00AFF2A65253ABD3651AAE5FFF8B0930416421FF1D0ADCAED319D26C8",
"index": 2862,
"secretKey": "62DD52D845E1691401DAC7C99E1C53BA19334837D02251E96BACCB49BE55F6D5",
"publicKey": "C83CC92338C75AB4F4F7F97F314504BB107E494BA0C30CC18D7B91CAB4BB67F3",
"account": "xrb_3k3ws6jmjjttpmthhydz874ibgrihs6nqa853m1rtywjsctdpszm57734qfm"
},
{
"seed": "580BDDE0F58B9E05DDA5D52D678989DF28E51C5096781011E47D5B7563316CF8",
"index": 2877,
"secretKey": "EAFD50E5ECE4C15AD3DBAE8DB76998F5F59CE8AAB4A63AB55AE619C2D3022F1D",
"publicKey": "5D27A314CF6CDE33FED786C404F8FE36D702A4FEB528B6035269A45F688165A0",
"account": "xrb_1qb9neceyu8y8hzfh3p61mwhwfpq1ckhxfbapr3o6tf6dxna4sf1caiuxqfq"
},
{
"seed": "E919C7981C7DF800EF20D1735F3C930E50E6412F3CE43E74A4BEE762EE311880",
"index": 2965,
"secretKey": "E632A8EFB89665672FE614B5D49C72C1285E417DACCCC7A7F425880AEA4BCA25",
"publicKey": "B281433D0C6F013CF51C3D1406A51EA892F69DEEC871115B9F882916FC9C31C9",
"account": "xrb_3en3aeyirur39mtjrhan1tkjxc6kytgyxk5j47fsz43b4uybregbzdtk8g55"
},
{
"seed": "2D488CFE96FF36BCDFAE8C1F363D4A16685FBE6A2C666F22AD4680116073A3C2",
"index": 3054,
"secretKey": "F462A830846E7FFC38CB359A61963BE1445BC423ABCA35CEC3C91365D5D24C1C",
"publicKey": "AFAB17CC783DA1C3BAA74122522ABC70BBF4B8FDEE7CA5DD22A7081E9A40F693",
"account": "xrb_3dxd4z89ihf3rgxcgib4caodrw7uykwhuumwnqgk7bra5tf63xnms8jofpbn"
},
{
"seed": "1F98079F563E6BB4B57D5E49D9B2BA11D3E0D6D6E67DB393BBB4A533147E74E7",
"index": 3093,
"secretKey": "069E27BEFD3A1E3AF7CF335D5CBFF77294A293D5B5FA30956676FFC2764801F7",
"publicKey": "C70A1426850295E85653B7A530C9E09A749519D236446EE3A7C95429FAEA38D7",
"account": "xrb_3jrc4imac1nox3d79fx7856y38mnknex6fk6fujthkcn79xgng8qk53dg8sr"
},
{
"seed": "4BA567F3627607EC63D7370C57A7B59C0FFBD248665D0A2DD25C72B201DCD2D9",
"index": 3103,
"secretKey": "6CA0E92F2E79217C7E6784B44042366A4304EF90811C340BCCC7D3F04615EEE1",
"publicKey": "77FA25DAC861D887C9DABA0184FD0F880CE707E883A583A90A4AA85096A689DB",
"account": "xrb_1xzt6qfeirgriz6xogi3imyiz41eww5yj1x7igninkoac4dcf4gu758new4s"
},
{
"seed": "637490F65449C7D4B905A3B16906817B17238C5F7668D7A63A81F5450ADC9FF9",
"index": 3193,
"secretKey": "781CBAA70F56F651660FEBD67F07A1F9AF96369D2DE636F35F6DB6CC25CFA365",
"publicKey": "291D97CD0D6130661A27C426455E27A73D7C6FD0CB7A567DD9E26965C0F30BDF",
"account": "xrb_1caxkz8itrbierf4hj38aoh4hbsxhjqx3kutcsyxmrmbeq1h84yzd3zmo6mh"
},
{
"seed": "11E2D3724DE626127B77E4C7EA8A2A893F85FAF3A57BBC600263C1C2810C35E8",
"index": 3268,
"secretKey": "738E05DBA91100568452ECB9A0FF4E7A213DA2A2BD4FF80FAF8814AF3692B71F",
"publicKey": "E303F1A9A09682023E4423FCF11B2F7A7FDA33F97F8F89F02F1B78996106A6D5",
"account": "xrb_3rr5y8nt37n41az6aazwy6fkyymzuaszkzwhj9r4y8urm7iifbpooiyqcqt4"
},
{
"seed": "FE9FF75C18B37B8F93814B684781ADE0525951B8C2936377CFE97CCB3BDD6AE1",
"index": 3347,
"secretKey": "AA5E0D9DFF6916E5641CB32DA2331D2E9F060A3FAFA9061E8819B566C92EE5B0",
"publicKey": "0CAA902251CA21B5597D0A341C1FB529EB56EFA2EF94471E9A839BB48BD334FF",
"account": "xrb_157ck1j75kj3poeqt4jn5ihucchdcuqt7uwnawhbo1wupk7x8f9zhc9dp3k7"
},
{
"seed": "DFF2A32FAD2750284DBB9A3C0D9DD8BB5EC072B93ACD77706415DF857515ED26",
"index": 3411,
"secretKey": "9DD76E1E82AC989674253191C5FB94A5262761A8278A9F99562359A35C146E10",
"publicKey": "C117EEE80D8823D00438A114FCA152652DAAC67D188F0F1238BEEF03736D4604",
"account": "xrb_3iaqxun1u435t145jaanzkio6sbfod59t86h3wb5jhqh1fsptji6eh6sz44n"
},
{
"seed": "E0569CEB3B80F5B78CFBF219FD93E66BF18AEB64A330DE55F554F55B25DB7BC2",
"index": 3451,
"secretKey": "71C92F6E1975575A50E1B3C7D529FF5A9806DA71B76A3482F32E93F19522D256",
"publicKey": "05DEAC17B47E5E9F4241259FBA92E0B06DCF31AE36E12E4D4390DD7D71E01E7E",
"account": "xrb_13gyoiduazkymx364bezqcbg3e5fswrtwfq37s8n968xhory19myz7bgba95"
},
{
"seed": "5ACE322B8332DEDF39280C6C2768C921A0BA641FF70434A3E17E6EDA937300C6",
"index": 3455,
"secretKey": "74D6A8EADDAA9064DEC3D26F9AC8CA764353FDEED2D541E7F66446614E7E5377",
"publicKey": "90390251DCFD89DF2BD5ED249D34560C03460D5B7872CD660F07B5C850B9EEF0",
"account": "xrb_363s1baxszebuwoxdub6mnt7e515ar8opy5ksom1y3xos3admuqiq66h6dsa"
},
{
"seed": "3735BF1529762492BFB7758DE94BCAB48DBBCFCBF32BAF734D4C6394AC64834D",
"index": 3533,
"secretKey": "4F9F0E7009BC65A47C790954CD40241CA696ACD9A8232FFA251FF03C3650DDBF",
"publicKey": "2F47B8E9A97554F2B23CEED1D02F8B028B48D5C9423CC2420240A4970A930C86",
"account": "xrb_1dt9q5ntkxcnycs5supjt1qrp1ndb5cwkijwrb316i76kw7b8568ib54rtqn"
},
{
"seed": "1B31E16330AD54AACE8B645E73C4EFCBFF514D7120AA38914747EC30EF5F24D7",
"index": 3562,
"secretKey": "64D224A98B3D4C2CA403AAA4FB1C87A704C1FBB0B70EE88284574251FEECA658",
"publicKey": "DDB57C9508156E47C296423D51FC70F432D547C857C3BAF436AE970D8E2B6660",
"account": "xrb_3qfohkcii7dgaz3beijxc9y93x3kto5wioy5qdt5fdnq3p94psm185n7ktf6"
},
{
"seed": "FE02BE7741271FBA9494E786B0CFC35B7E4C7BC3954C8AA0297261B1E8706770",
"index": 3658,
"secretKey": "0EF3C1F537250C9E263CF979A111A4CDA0BE8818E811F260609AB7B7B771DBE8",
"publicKey": "B8D2356DEA40A6C403E3625B2D3ED2B15CAC2447156302E4C01EC9B0378096AC",
"account": "xrb_3g8k8opyni78ri3y8rku7nzf7ecwoik6g7d51dke19pbp1ur37oe6pypfm8a"
},
{
"seed": "D628B7C9A7975385B48BA37AAD9AF2CABDA53FC6FD81075643B10F7A2F9682B1",
"index": 3697,
"secretKey": "1E5AD03ED20A75CDD7129FC81CCE39C98CF9CD97C3405D42D09FB6D3B52E834F",
"publicKey": "114909D77290FF1C77E5B98FED7E4465498D4B0494A6DFDE30601DD5E88938E1",
"account": "xrb_16cb39dq769z5juydgehxoz6ascbjo7ib778uzh51r1xtqnakg93x3r5f7rp"
},
{
"seed": "E1B9F8B11A0E7B8A0636AEB0A744960A2962D7BF41996AB43AE8907CBE7D4EE6",
"index": 3776,
"secretKey": "9225E202EC082E575A094D57AA8E1C433E29660EA3B265420F7DE5776F669759",
"publicKey": "3EA4552070FD78E6B76F6652A01C01E193600E26A01675D0A502B26DD4E62F22",
"account": "xrb_1ho6cni93zdrwtupyskkn1g15reme194fa1pgqacc1okfqcgeds4zao74zwm"
},
{
"seed": "804DB4105544B97E6937AAC1F5095F9BF6307D4B8359E55704816E11D033718B",
"index": 3851,
"secretKey": "2F6136CF2B572131EDF3FFFFA06DA327E7625EA417C7E23220C0FE95F56B17BE",
"publicKey": "5BAFD81BA47996BA1417847B6A61CD7B520451A6B1E303EFE3800C0B34A328A5",
"account": "xrb_1pxhu1ftayepqac3h35ufbiwtytk1jatfeh51hqy911e3etc8c77eoehz6y3"
},
{
"seed": "97F99D62D14B3B242AB520C14686F961A41196CD1CA26A9FD941C1BCE13BCA8E",
"index": 3855,
"secretKey": "9977BD43BA3761CCBCE7CE484EFC4FBCD55121D64EB9F1645F0964F9CF62B0D6",
"publicKey": "28EE2F89857BD784ADD8FACD55F93D1DF57FE82E5EFF409B65835D942CE432DC",
"account": "xrb_1c9g7y6rcyyqikpxjypfcqwmt9hohzn4wqqza4fpd1txkipgaepw5qrm5r7h"
},
{
"seed": "3B31E04EAA3E26CE37BBB227A78E6E55DC6561ED7FDCCD0A46574150523D5275",
"index": 3876,
"secretKey": "50179E644DDD581737E2214272B98925C248132B3C508A6563FDDCCA994F4FB3",
"publicKey": "F25738224DD348EE7E495BC1E2329111D073CFE27B857F39DDA0EB99A4CA8D5B",
"account": "xrb_3wkq91j6untaxsz6kpy3wasb46gigh9y6yw7hwwxua9dm8keo5cu7jazg8z1"
},
{
"seed": "59785ED9BFB5D42AF23E5AF3434886FF9D4BA12135276B7F73AB1B6440AC0C08",
"index": 3908,
"secretKey": "227E0D70FB09E416029D260D79CC9A1540B8BDDC9783C90B46BB941CA73A2172",
"publicKey": "45989CB2248E6ACF2AF224618D38AF0F68107C8502772DA96364AA32757784CD",
"account": "xrb_1jermks4b5mcswoh6b53jnwcy5ua43yac1mq7pnp8s7c8btqh38f9bnbx9yg"
},
{
"seed": "C5129DBD57FCF888A8BB76B38B39154C74FA069D709BB0971BB08D236EFFEF92",
"index": 3925,
"secretKey": "D355E02BB8197C6099A1DDD69BD078CAC6EB7308538ECB6FFB79148AA2729E85",
"publicKey": "8789F4553355847E32C56C582D35ADCDECE23033CD4099C8EE787B9A49C10E2D",
"account": "xrb_33wbyjcm8oe6hrsecu4r7nttumhewar59mc1m96gwy5umb6w45jfyottto6a"
},
{
"seed": "96AD725DA22687E82661DB756DB73C3004AC816F45E24A27CAEBD65744346F2C",
"index": 3961,
"secretKey": "6EF20FB735DEB2830A29358830026A16E948B2B47962BE30A1BE1FBC4B3207FA",
"publicKey": "9CF8EED728650FC6D24292491705507108D596D0CEF218866FDBC1568CF8129B",
"account": "xrb_399rxudkisahrub676kb4w4o1waatpdf3mqk5458zpy3ct8hi6nutr5bayu6"
},
{
"seed": "DE3314A84887728432F89787D7967C675F048614DBCAEF70F7DFAE28356405F6",
"index": 4024,
"secretKey": "E7FA3C08CC218B2039AE5A338CC7C272F0BD8A43DF8B3A418F52A3123CE856F2",
"publicKey": "2DA03D8191AFDB558B73B2B97D5D5A2ECB87C37C852BD15AB1741C6789CADC65",
"account": "xrb_1df19p1s5dyucp7q9eoshogondpdiz3qs3bdt7fd4x1wey6woq57seixxxu9"
},
{
"seed": "AAD47992CB16BD0B79863C54B254D46F335CF1031025451E260E6A5361DDAB35",
"index": 4097,
"secretKey": "B00535573E7059DD236340D23497FE94A2F8AB2F5025EF62C2BF60E470BDC274",
"publicKey": "9E2DE04A9E682FACA6CC0B92F68D78DE38A999172C9C5BD43219DE74F421731B",
"account": "xrb_39jfw37bwt3hokmer4wkyt8qjqjro8ejgd6wdhc568gygmt44wrud1dz3ry4"
},
{
"seed": "6816B85C132E7180E391081284742B99FE68C3DF3B88F027C9F0093121109448",
"index": 4113,
"secretKey": "997CB6FC0E1EF1AAC438FEC07AB908797AACE9AA143829CD91B0E8050ECB591D",
"publicKey": "CDC76CE74D1DAC716A13EBACECF1511A19E87BC80A9382649894EF59118E3EF8",
"account": "xrb_3mg9fmmnt9feg7o39txexmro48isx3xwi4nmibkbj79hd6arwhqrg476rbcb"
},
{
"seed": "15D559690D79EE8A25DE3C2AE5131391B2FDF5B278AB4EF15E710E2DB4BE48F1",
"index": 4182,
"secretKey": "426E3CDA0E55EC4865C72F320F4C25FD235B697376CE46216469784DF03BA682",
"publicKey": "2E9C86298C3A980B9B8D906D78C0872C256641F0A8F1748DC2A97CB7EB3CF606",
"account": "xrb_1dnwirnrrgnr3gfru65fh51agd37es1z3c9jgk8w7cdwpzomsxi8rz4iasiq"
},
{
"seed": "C88B0CF8A9D8DEB99F7AA4B43521C5907A854E746A1A667285CF26ACC679647D",
"index": 4235
gitextract_yj5mqevj/ ├── .editorconfig ├── .eslintrc.js ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .gitmodules ├── .prettierrc.js ├── README.md ├── fusee.js ├── lerna.json ├── package.json ├── packages/ │ ├── nanocurrency/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __tests__/ │ │ │ ├── accelerated.js │ │ │ ├── block.js │ │ │ ├── browser.js │ │ │ ├── conversion.js │ │ │ ├── data/ │ │ │ │ ├── invalid.js │ │ │ │ ├── valid_blocks.json │ │ │ │ └── valid_keys.json │ │ │ ├── hash.js │ │ │ ├── keys.js │ │ │ ├── signature.js │ │ │ └── work.js │ │ ├── assembly.d.ts │ │ ├── docs/ │ │ │ ├── assets/ │ │ │ │ ├── css/ │ │ │ │ │ └── main.css │ │ │ │ └── js/ │ │ │ │ ├── main.js │ │ │ │ └── search.js │ │ │ ├── enums/ │ │ │ │ └── unit.html │ │ │ ├── globals.html │ │ │ ├── index.html │ │ │ └── interfaces/ │ │ │ ├── block.html │ │ │ ├── blockrepresentation.html │ │ │ ├── changeblockdata.html │ │ │ ├── commonblockdata.html │ │ │ ├── computeworkparams.html │ │ │ ├── convertparams.html │ │ │ ├── deriveaddressparams.html │ │ │ ├── hashblockparams.html │ │ │ ├── openblockdata.html │ │ │ ├── receiveblockdata.html │ │ │ ├── sendblockdata.html │ │ │ ├── signblockparams.html │ │ │ ├── validateworkparams.html │ │ │ └── verifyblockparams.html │ │ ├── examples/ │ │ │ └── pow-benchmark/ │ │ │ ├── index.html │ │ │ └── worker.js │ │ ├── jest.config.js │ │ ├── package.json │ │ ├── rollup.config.js │ │ ├── showcase.js │ │ ├── src/ │ │ │ ├── accelerated.ts │ │ │ ├── assembly/ │ │ │ │ ├── blake2/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── README.md │ │ │ │ │ ├── b2sum/ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── b2sum.1 │ │ │ │ │ │ ├── b2sum.c │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── bench/ │ │ │ │ │ │ ├── bench.c │ │ │ │ │ │ ├── do.gplot │ │ │ │ │ │ ├── makefile │ │ │ │ │ │ └── md5.c │ │ │ │ │ ├── csharp/ │ │ │ │ │ │ ├── Blake2Sharp/ │ │ │ │ │ │ │ ├── Blake2B.cs │ │ │ │ │ │ │ ├── Blake2BConfig.cs │ │ │ │ │ │ │ ├── Blake2BCore-FullyUnrolled.cs │ │ │ │ │ │ │ ├── Blake2BCore-Inline.cs │ │ │ │ │ │ │ ├── Blake2BCore-Simple.cs │ │ │ │ │ │ │ ├── Blake2BCore.cs │ │ │ │ │ │ │ ├── Blake2BHasher.cs │ │ │ │ │ │ │ ├── Blake2BNodeHasher.cs │ │ │ │ │ │ │ ├── Blake2BTreeConfig.cs │ │ │ │ │ │ │ ├── Blake2IvBuilder.cs │ │ │ │ │ │ │ ├── Blake2Sharp.csproj │ │ │ │ │ │ │ ├── Hasher.cs │ │ │ │ │ │ │ ├── NodeHasher.cs │ │ │ │ │ │ │ ├── Properties/ │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ ├── TreeHasher.cs │ │ │ │ │ │ │ └── compression.c │ │ │ │ │ │ ├── Blake2Sharp.CompressionCodeGen/ │ │ │ │ │ │ │ ├── Blake2Sharp.CompressionCodeGen.csproj │ │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ │ └── Properties/ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ ├── Blake2Sharp.Tests/ │ │ │ │ │ │ │ ├── Blake2Sharp.Tests.csproj │ │ │ │ │ │ │ ├── DebugNodeHasher.cs │ │ │ │ │ │ │ ├── Properties/ │ │ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ │ │ ├── SequentialTests.cs │ │ │ │ │ │ │ └── TestVectors.cs │ │ │ │ │ │ └── Blake2Sharp.sln │ │ │ │ │ ├── ref/ │ │ │ │ │ │ ├── blake2-impl.h │ │ │ │ │ │ ├── blake2.h │ │ │ │ │ │ ├── blake2b-ref.c │ │ │ │ │ │ ├── blake2bp-ref.c │ │ │ │ │ │ ├── blake2s-ref.c │ │ │ │ │ │ ├── blake2sp-ref.c │ │ │ │ │ │ ├── blake2xb-ref.c │ │ │ │ │ │ ├── blake2xs-ref.c │ │ │ │ │ │ ├── genkat-c.c │ │ │ │ │ │ ├── genkat-json.c │ │ │ │ │ │ └── makefile │ │ │ │ │ ├── sse/ │ │ │ │ │ │ ├── blake2-config.h │ │ │ │ │ │ ├── blake2-impl.h │ │ │ │ │ │ ├── blake2.h │ │ │ │ │ │ ├── blake2b-load-sse2.h │ │ │ │ │ │ ├── blake2b-load-sse41.h │ │ │ │ │ │ ├── blake2b-round.h │ │ │ │ │ │ ├── blake2b.c │ │ │ │ │ │ ├── blake2bp.c │ │ │ │ │ │ ├── blake2s-load-sse2.h │ │ │ │ │ │ ├── blake2s-load-sse41.h │ │ │ │ │ │ ├── blake2s-load-xop.h │ │ │ │ │ │ ├── blake2s-round.h │ │ │ │ │ │ ├── blake2s.c │ │ │ │ │ │ ├── blake2sp.c │ │ │ │ │ │ ├── blake2xb.c │ │ │ │ │ │ ├── blake2xs.c │ │ │ │ │ │ ├── genkat-c.c │ │ │ │ │ │ ├── genkat-json.c │ │ │ │ │ │ └── makefile │ │ │ │ │ └── testvectors/ │ │ │ │ │ ├── blake2-kat.h │ │ │ │ │ ├── blake2-kat.json │ │ │ │ │ ├── blake2b-kat.txt │ │ │ │ │ ├── blake2bp-kat.txt │ │ │ │ │ ├── blake2s-kat.txt │ │ │ │ │ └── blake2sp-kat.txt │ │ │ │ └── functions.c │ │ │ ├── block.ts │ │ │ ├── check.ts │ │ │ ├── conversion.ts │ │ │ ├── hash.ts │ │ │ ├── index.ts │ │ │ ├── keys.ts │ │ │ ├── nacl.ts │ │ │ ├── nano-base32.ts │ │ │ ├── parse.ts │ │ │ ├── signature.ts │ │ │ ├── utils.ts │ │ │ └── work.ts │ │ ├── tsconfig.json │ │ ├── types-local/ │ │ │ └── blakejs.d.ts │ │ └── wasm-benchmark.js │ └── nanocurrency-cli/ │ ├── LICENSE │ ├── README.md │ ├── __tests__/ │ │ └── cli.js │ ├── package.json │ ├── src/ │ │ └── index.ts │ └── tsconfig.json └── tsconfig.json
SYMBOL INDEX (517 symbols across 64 files)
FILE: packages/nanocurrency/__tests__/accelerated.js
constant VALID_WORK (line 7) | const VALID_WORK = {
FILE: packages/nanocurrency/__tests__/block.js
constant VALID_STATE_BLOCKS (line 14) | const VALID_STATE_BLOCKS = require('./data/valid_blocks')
constant RANDOM_VALID_STATE_BLOCK (line 15) | const RANDOM_VALID_STATE_BLOCK = VALID_STATE_BLOCKS[0]
FILE: packages/nanocurrency/__tests__/conversion.js
constant INVALID_NUMBERS (line 5) | const INVALID_NUMBERS = [12, '.01', '0.1.', '0..1', 'z']
constant INVALID_UNITS (line 6) | const INVALID_UNITS = [12, '', 'nona', 'Kanano']
constant VALID_CONVERSIONS (line 8) | const VALID_CONVERSIONS = [
FILE: packages/nanocurrency/__tests__/data/invalid.js
constant INVALID_SEEDS (line 1) | const INVALID_SEEDS = [
constant INVALID_INDEXES (line 9) | const INVALID_INDEXES = ['', '0', -1, 1.1, Math.pow(2, 32)]
constant INVALID_SECRET_KEYS (line 11) | const INVALID_SECRET_KEYS = [
constant INVALID_PUBLIC_KEYS (line 19) | const INVALID_PUBLIC_KEYS = [
constant INVALID_HASHES (line 27) | const INVALID_HASHES = [
constant INVALID_THRESHOLDS (line 35) | const INVALID_THRESHOLDS = [
constant INVALID_WORKS (line 43) | const INVALID_WORKS = [
constant INVALID_ADDRESSES (line 51) | const INVALID_ADDRESSES = [
constant INVALID_AMOUNTS (line 66) | const INVALID_AMOUNTS = [
constant INVALID_SIGNATURES (line 77) | const INVALID_SIGNATURES = [
constant INVALID_BLOCK_COMBINATIONS_COMMON (line 84) | const INVALID_BLOCK_COMBINATIONS_COMMON = {
constant INVALID_BLOCK_COMBINATIONS (line 92) | const INVALID_BLOCK_COMBINATIONS = [
FILE: packages/nanocurrency/__tests__/hash.js
constant VALID_STATE_BLOCKS (line 12) | const VALID_STATE_BLOCKS = require('./data/valid_blocks')
constant RANDOM_VALID_STATE_BLOCK (line 13) | const RANDOM_VALID_STATE_BLOCK = VALID_STATE_BLOCKS[0]
FILE: packages/nanocurrency/__tests__/keys.js
constant VALID_KEYS (line 13) | const VALID_KEYS = require('./data/valid_keys')
constant RANDOM_VALID_KEY (line 14) | const RANDOM_VALID_KEY = VALID_KEYS[0]
FILE: packages/nanocurrency/__tests__/signature.js
constant VALID_BLOCKS (line 12) | const VALID_BLOCKS = require('./data/valid_blocks')
constant RANDOM_VALID_BLOCK (line 13) | const RANDOM_VALID_BLOCK = VALID_BLOCKS[0]
constant INVALID_SIGNATURE (line 15) | const INVALID_SIGNATURE =
FILE: packages/nanocurrency/__tests__/work.js
constant VALID_BLOCKS (line 11) | const VALID_BLOCKS = require('./data/valid_blocks')
constant RANDOM_VALID_BLOCK (line 12) | const RANDOM_VALID_BLOCK = VALID_BLOCKS[0]
constant INVALID_WORK (line 14) | const INVALID_WORK = {
constant INVALID_WORK_CUSTOM_THRESHOLD (line 19) | const INVALID_WORK_CUSTOM_THRESHOLD = {
FILE: packages/nanocurrency/assembly.d.ts
type Cwrap (line 1) | interface Cwrap {
type Assembly (line 5) | interface Assembly {
FILE: packages/nanocurrency/docs/assets/js/main.js
function x (line 1) | function x(e){return null!=e&&e===e.window}
function b (line 1) | function b(e,t,n){var r,i,o=(n=n||E).createElement("script");if(o.text=e...
function w (line 1) | function w(e){return null==e?e+"":"object"==typeof e||"function"==typeof...
function d (line 1) | function d(e){var t=!!e&&"length"in e&&e.length,n=w(e);return!m(e)&&!x(e...
function ne (line 1) | function ne(e,t,n){var r="0x"+t-65536;return r!=r||n?t:r<0?String.fromCh...
function oe (line 1) | function oe(){T()}
function se (line 1) | function se(t,e,n,r){var i,o,a,s,u,l,c,f=e&&e.ownerDocument,p=e?e.nodeTy...
function ue (line 1) | function ue(){var r=[];return function e(t,n){return r.push(t+" ")>b.cac...
function le (line 1) | function le(e){return e[k]=!0,e}
function ce (line 1) | function ce(e){var t=C.createElement("fieldset");try{return!!e(t)}catch(...
function fe (line 1) | function fe(e,t){for(var n=e.split("|"),r=n.length;r--;)b.attrHandle[n[r...
function pe (line 1) | function pe(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourc...
function de (line 1) | function de(t){return function(e){return"input"===e.nodeName.toLowerCase...
function he (line 1) | function he(n){return function(e){var t=e.nodeName.toLowerCase();return(...
function ge (line 1) | function ge(t){return function(e){return"form"in e?e.parentNode&&!1===e....
function ve (line 1) | function ve(a){return le(function(o){return o=+o,le(function(e,t){for(va...
function ye (line 1) | function ye(e){return e&&void 0!==e.getElementsByTagName&&e}
function me (line 1) | function me(){}
function xe (line 1) | function xe(e){for(var t=0,n=e.length,r="";t<n;t++)r+=e[t].value;return r}
function be (line 1) | function be(s,e,t){var u=e.dir,l=e.next,c=l||u,f=t&&"parentNode"===c,p=r...
function we (line 1) | function we(i){return 1<i.length?function(e,t,n){for(var r=i.length;r--;...
function Te (line 1) | function Te(e,t,n,r,i){for(var o,a=[],s=0,u=e.length,l=null!=t;s<u;s++)(...
function Ce (line 1) | function Ce(d,h,g,v,y,e){return v&&!v[k]&&(v=Ce(v)),y&&!y[k]&&(y=Ce(y,e)...
function Ee (line 1) | function Ee(e){for(var i,t,n,r=e.length,o=b.relative[e[0].type],a=o||b.r...
function T (line 1) | function T(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if...
function S (line 1) | function S(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n....
function A (line 1) | function A(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerC...
function j (line 1) | function j(e,n,r){return m(n)?k.grep(e,function(e,t){return!!n.call(e,t,...
function P (line 1) | function P(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}
function M (line 1) | function M(e){return e}
function I (line 1) | function I(e){throw e}
function W (line 1) | function W(e,t,n,r){var i;try{e&&m(i=e.promise)?i.call(e).done(t).fail(n...
function c (line 1) | function c(){for(a=a||r.once,o=i=!0;u.length;l=-1)for(t=u.shift();++l<s....
function l (line 1) | function l(i,o,a,s){return function(){var n=this,r=arguments,e=function(...
function a (line 1) | function a(t){return function(e){r[t]=this,i[t]=1<arguments.length?s.cal...
function B (line 1) | function B(){E.removeEventListener("DOMContentLoaded",B),C.removeEventLi...
function X (line 1) | function X(e,t){return t.toUpperCase()}
function V (line 1) | function V(e){return e.replace(z,"ms-").replace(U,X)}
function G (line 1) | function G(e){return 1===e.nodeType||9===e.nodeType||!+e.nodeType}
function Y (line 1) | function Y(){this.expando=k.expando+Y.uid++}
function ee (line 1) | function ee(e,t,n){var r,i;if(void 0===n&&1===e.nodeType)if(r="data-"+t....
function s (line 1) | function s(){--r||i.resolveWith(o,[o])}
function se (line 1) | function se(e,t){return"none"===(e=t||e).style.display||""===e.style.dis...
function ue (line 1) | function ue(e,t,n,r){var i,o,a={};for(o in t)a[o]=e.style[o],e.style[o]=...
function le (line 1) | function le(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:functio...
function fe (line 1) | function fe(e,t){for(var n,r,i,o,a,s,u,l=[],c=0,f=e.length;c<f;c++)(r=e[...
function ve (line 1) | function ve(e,t){var n;return n=void 0!==e.getElementsByTagName?e.getEle...
function ye (line 1) | function ye(e,t){for(var n=0,r=e.length;n<r;n++)Q.set(e[n],"globalEval",...
function we (line 1) | function we(e,t,n,r,i){for(var o,a,s,u,l,c,f=t.createDocumentFragment(),...
function ke (line 1) | function ke(){return!0}
function Se (line 1) | function Se(){return!1}
function Ne (line 1) | function Ne(e,t){return e===function(){try{return E.activeElement}catch(...
function Ae (line 1) | function Ae(e,t,n,r,i,o){var a,s;if("object"==typeof t){for(s in"string"...
function De (line 1) | function De(e,i,o){o?(Q.set(e,i,!1),k.event.add(e,i,{namespace:!1,handle...
function Oe (line 1) | function Oe(e,t){return A(e,"table")&&A(11!==t.nodeType?t:t.firstChild,"...
function Pe (line 1) | function Pe(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}
function Re (line 1) | function Re(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.sli...
function Me (line 1) | function Me(e,t){var n,r,i,o,a,s,u,l;if(1===t.nodeType){if(Q.hasData(e)&...
function Ie (line 1) | function Ie(n,r,i,o){r=g.apply([],r);var e,t,a,s,u,l,c=0,f=n.length,p=f-...
function We (line 1) | function We(e,t,n){for(var r,i=t?k.filter(t,e):e,o=0;null!=(r=i[o]);o++)...
function _e (line 1) | function _e(e,t,n){var r,i,o,a,s=e.style;return(n=n||Fe(e))&&(""!==(a=n....
function ze (line 1) | function ze(e,t){return{get:function(){if(!e())return(this.get=t).apply(...
function e (line 1) | function e(){if(u){s.style.cssText="position:absolute;left:-11111px;widt...
function t (line 1) | function t(e){return Math.round(parseFloat(e))}
function Ge (line 1) | function Ge(e){return k.cssProps[e]||Ve[e]||(e in Xe?e:Ve[e]=function(e)...
function Ze (line 1) | function Ze(e,t,n){var r=ne.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[...
function et (line 1) | function et(e,t,n,r,i,o){var a="width"===t?1:0,s=0,u=0;if(n===(r?"border...
function tt (line 1) | function tt(e,t,n){var r=Fe(e),i=(!y.boxSizingReliable()||n)&&"border-bo...
function nt (line 1) | function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}
function lt (line 1) | function lt(){it&&(!1===E.hidden&&C.requestAnimationFrame?C.requestAnima...
function ct (line 1) | function ct(){return C.setTimeout(function(){rt=void 0}),rt=Date.now()}
function ft (line 1) | function ft(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin...
function pt (line 1) | function pt(e,t,n){for(var r,i=(dt.tweeners[t]||[]).concat(dt.tweeners["...
function dt (line 1) | function dt(o,e,t){var n,a,r=0,i=dt.prefilters.length,s=k.Deferred().alw...
function a (line 1) | function a(){var e=dt(this,k.extend({},t),o);(i||Q.get(this,"finish"))&&...
function a (line 1) | function a(e){var t=e.stop;delete e.stop,t(o)}
function mt (line 1) | function mt(e){return(e.match(R)||[]).join(" ")}
function xt (line 1) | function xt(e){return e.getAttribute&&e.getAttribute("class")||""}
function bt (line 1) | function bt(e){return Array.isArray(e)?e:"string"==typeof e&&e.match(R)|...
function Ct (line 1) | function Ct(e){e.stopPropagation()}
function i (line 1) | function i(e){k.event.simulate(r,e.target,k.event.fix(e))}
function qt (line 1) | function qt(n,e,r,i){var t;if(Array.isArray(e))k.each(e,function(e,t){r|...
function i (line 1) | function i(e,t){var n=m(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+e...
function Bt (line 1) | function Bt(o){return function(e,t){"string"!=typeof e&&(t=e,e="*");var ...
function _t (line 1) | function _t(t,i,o,a){var s={},u=t===Wt;function l(e){var r;return s[e]=!...
function zt (line 1) | function zt(e,t){var n,r,i=k.ajaxSettings.flatOptions||{};for(n in t)voi...
function l (line 1) | function l(e,t,n,r){var i,o,a,s,u,l=t;h||(h=!0,d&&C.clearTimeout(d),c=vo...
function f (line 1) | function f(){}
function y (line 1) | function y(u,i,n){if(void 0===i)return u;switch(null==n?3:n){case 1:retu...
function d (line 1) | function d(n,r,t){return h.iteratee!==v?h.iteratee(n,r):null==n?h.identi...
function g (line 1) | function g(u,i){return i=null==i?u.length-1:+i,function(){for(var n=Math...
function m (line 1) | function m(n){if(!h.isObject(n))return{};if(l)return l(n);f.prototype=n;...
function b (line 1) | function b(r){return function(n){return null==n?void 0:n[r]}}
function j (line 1) | function j(n,r){return null!=n&&i.call(n,r)}
function x (line 1) | function x(n,r){for(var t=r.length,e=0;e<t;e++){if(null==n)return;n=n[r[...
function w (line 1) | function w(n){var r=A(n);return"number"==typeof r&&0<=r&&r<=_}
function O (line 1) | function O(c){return function(n,r,t,e){var u=3<=arguments.length;return ...
function k (line 1) | function k(o,r){return function(e,u,n){var i=r?[[],[]]:{};return u=d(u,n...
function F (line 1) | function F(i){return function(n,r,t){r=d(r,t);for(var e=A(n),u=0<i?0:e-1...
function E (line 1) | function E(i,o,a){return function(n,r,t){var e=0,u=A(n);if("number"==typ...
function N (line 1) | function N(n,r,t,e,u){if(!(e instanceof r))return n.apply(t,u);var i=m(n...
function f (line 1) | function f(){l=!1===u.leading?0:h.now(),i=null,c=t.apply(o,a),i||(o=a=nu...
function a (line 1) | function a(n,r){i=null,r&&(o=t.apply(n,r))}
function B (line 1) | function B(n,r){var t=T.length,e=n.constructor,u=h.isFunction(e)&&e.prot...
function R (line 1) | function R(c,l){return function(n){var r=arguments.length;if(l&&(n=Objec...
function z (line 1) | function z(n,r,t){return r in t}
function W (line 1) | function W(r){function t(n){return r[n]}var n="(?:"+h.keys(r).join("|")+...
function $ (line 1) | function $(n){return"\\"+U[n]}
function u (line 1) | function u(n){return t.call(this,n,h)}
function G (line 1) | function G(n,r){return n._chain?h(r).chain():r}
function s (line 1) | function s(){e.stopListening(),e.trigger("destroy",e,e.collection,t)}
function x (line 1) | function x(t,e,i){i=Math.min(Math.max(i,0),t.length);var s,n=Array(t.len...
function A (line 1) | function A(t,e,n,r){i.each(n,function(i,n){e[n]&&(t.prototype[n]=functio...
function __ (line 1) | function __(){this.constructor=d}
function Application (line 1) | function Application(){var _this=_super.call(this)||this;return _this.cr...
function Viewport (line 1) | function Viewport(){var _this=_super.call(this)||this;return _this.scrol...
function FilterItem (line 1) | function FilterItem(key,value){this.key=key,this.value=value,this.defaul...
function FilterItemCheckbox (line 1) | function FilterItemCheckbox(){return null!==_super&&_super.apply(this,ar...
function FilterItemSelect (line 1) | function FilterItemSelect(){return null!==_super&&_super.apply(this,argu...
function Filter (line 1) | function Filter(options){var _this=_super.call(this,options)||this;retur...
function MenuHighlight (line 1) | function MenuHighlight(options){var _this=_super.call(this,options)||thi...
function createIndex (line 1) | function createIndex(){var builder=new lunr.Builder;builder.pipeline.add...
function loadIndex (line 1) | function loadIndex(){loadingState==SearchLoadingState.Idle&&(setTimeout(...
function updateResults (line 1) | function updateResults(){if($results.empty(),loadingState==SearchLoading...
function setLoadingState (line 1) | function setLoadingState(value){loadingState!=value&&($el.removeClass(Se...
function setHasFocus (line 1) | function setHasFocus(value){hasFocus!=value&&(hasFocus=value,$el.toggleC...
function setQuery (line 1) | function setQuery(value){query=$.trim(value),updateResults()}
function setCurrentResult (line 1) | function setCurrentResult(dir){var $current=$results.find(".current");if...
function gotoCurrentResult (line 1) | function gotoCurrentResult(){var $current=$results.find(".current");0==$...
function noTransition (line 1) | function noTransition($el,callback){$el.addClass("no-transition"),callba...
function SignatureGroup (line 1) | function SignatureGroup($signature,$description){this.$signature=$signat...
function Signature (line 1) | function Signature(options){var _this=_super.call(this,options)||this;re...
function Toggle (line 1) | function Toggle(options){var _this=_super.call(this,options)||this;retur...
FILE: packages/nanocurrency/rollup.config.js
constant ENV (line 10) | const ENV = process.env.NODE_ENV
constant LICENSE_BANNER (line 12) | const LICENSE_BANNER = `
FILE: packages/nanocurrency/showcase.js
function showcase (line 3) | async function showcase() {
FILE: packages/nanocurrency/src/accelerated.ts
type WorkFunction (line 10) | type WorkFunction = (
type AssemblyWhenNotLoaded (line 17) | interface AssemblyWhenNotLoaded {
type AssemblyWhenLoaded (line 21) | interface AssemblyWhenLoaded {
constant ASSEMBLY (line 26) | const ASSEMBLY: AssemblyWhenNotLoaded | AssemblyWhenLoaded = {
function loadWasm (line 31) | function loadWasm(): Promise<AssemblyWhenLoaded> {
type ComputeWorkParams (line 60) | interface ComputeWorkParams {
function computeWork (line 77) | async function computeWork(
FILE: packages/nanocurrency/src/assembly/blake2/b2sum/b2sum.c
function blake2s_stream (line 30) | int blake2s_stream( FILE *stream, void *resstream, size_t outbytes )
function blake2b_stream (line 80) | int blake2b_stream( FILE *stream, void *resstream, size_t outbytes )
function blake2sp_stream (line 130) | int blake2sp_stream( FILE *stream, void *resstream, size_t outbytes )
function blake2bp_stream (line 181) | int blake2bp_stream( FILE *stream, void *resstream, size_t outbytes )
function usage (line 234) | static void usage( char **argv, int errcode )
function main (line 251) | int main( int argc, char **argv )
FILE: packages/nanocurrency/src/assembly/blake2/bench/bench.c
function bench_cmp (line 22) | static int bench_cmp( const void *x, const void *y )
function cpucycles (line 30) | static unsigned long long cpucycles( void ) {
function cpucycles (line 41) | static unsigned long long cpucycles( void ) {
function cpucycles (line 48) | static unsigned long long cpucycles( void ) {
function bench (line 55) | void bench()
function main (line 90) | int main()
FILE: packages/nanocurrency/src/assembly/blake2/bench/md5.c
function crypto_hash (line 18) | int crypto_hash( unsigned char *out, const unsigned char *in, unsigned l...
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.CompressionCodeGen/Program.cs
class Program (line 19) | class Program
method Round (line 38) | static void Round(int r)
method G (line 52) | static void G(int r, int i, int a, int b, int c, int d)
method RotateRight (line 82) | static string RotateRight(string name, int offset)
method Main (line 87) | static void Main(string[] args)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/SequentialTests.cs
class SequentialTests (line 18) | [TestClass]
method CheckTestVectors (line 24) | [TestMethod]
method CheckKeyedTestVectors (line 37) | [TestMethod]
method Splits (line 51) | [TestMethod]
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/TestVectors.cs
class TestVectors (line 19) | internal static class TestVectors
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2B.cs
class Blake2B (line 16) | public static class Blake2B
method Create (line 18) | public static Hasher Create()
method Create (line 23) | public static Hasher Create(Blake2BConfig config)
method ComputeHash (line 48) | public static byte[] ComputeHash(byte[] data, int start, int count)
method ComputeHash (line 53) | public static byte[] ComputeHash(byte[] data)
method ComputeHash (line 58) | public static byte[] ComputeHash(byte[] data, Blake2BConfig config)
method ComputeHash (line 63) | public static byte[] ComputeHash(byte[] data, int start, int count, Bl...
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BConfig.cs
class Blake2BConfig (line 17) | public sealed class Blake2BConfig : ICloneable
method Blake2BConfig (line 34) | public Blake2BConfig()
method Clone (line 39) | public Blake2BConfig Clone()
method Clone (line 52) | object ICloneable.Clone()
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-FullyUnrolled.cs
class Blake2BCore (line 17) | public sealed partial class Blake2BCore
method Compress (line 19) | partial void Compress(byte[] block, int start)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-Inline.cs
class Blake2BCore (line 16) | public sealed partial class Blake2BCore
method Compress (line 18) | partial void Compress(byte[] block, int start)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-Simple.cs
class Blake2BCore (line 17) | public sealed partial class Blake2BCore
method RotateRight (line 21) | private static ulong RotateRight(ulong value, int nBits)
method G (line 26) | private void G(int a, int b, int c, int d, int r, int i)
method Compress (line 44) | partial void Compress(byte[] block, int start)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore.cs
class Blake2BCore (line 29) | public sealed partial class Blake2BCore
method BytesToUInt64 (line 70) | internal static ulong BytesToUInt64(byte[] buf, int offset)
method UInt64ToBytes (line 83) | private static void UInt64ToBytes(ulong value, byte[] buf, int offset)
method Compress (line 95) | partial void Compress(byte[] block, int start);
method Initialize (line 97) | public void Initialize(ulong[] config)
method HashCore (line 127) | public void HashCore(byte[] array, int start, int count)
method HashFinal (line 171) | public byte[] HashFinal()
method HashFinal (line 176) | public byte[] HashFinal(bool isEndOfLayer)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BHasher.cs
class Blake2BHasher (line 18) | internal class Blake2BHasher : Hasher
method Init (line 26) | public override void Init()
method Finish (line 35) | public override byte[] Finish()
method Blake2BHasher (line 47) | public Blake2BHasher(Blake2BConfig config)
method Update (line 61) | public override void Update(byte[] data, int start, int count)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BTreeConfig.cs
class Blake2BTreeConfig (line 16) | public sealed class Blake2BTreeConfig : ICloneable
method Blake2BTreeConfig (line 23) | public Blake2BTreeConfig()
method Clone (line 28) | public Blake2BTreeConfig Clone()
method CreateInterleaved (line 38) | public static Blake2BTreeConfig CreateInterleaved(int parallelism)
method Clone (line 47) | object ICloneable.Clone()
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2IvBuilder.cs
class Blake2IvBuilder (line 16) | internal static class Blake2IvBuilder
method ConfigB (line 20) | public static ulong[] ConfigB(Blake2BConfig config, Blake2BTreeConfig ...
method ConfigBSetNode (line 70) | public static void ConfigBSetNode(ulong[] rawConfig, byte depth, ulong...
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Hasher.cs
class Hasher (line 19) | public abstract class Hasher
method Init (line 21) | public abstract void Init();
method Finish (line 22) | public abstract byte[] Finish();
method Update (line 23) | public abstract void Update(byte[] data, int start, int count);
method Update (line 25) | public void Update(byte[] data)
method AsHashAlgorithm (line 30) | public HashAlgorithm AsHashAlgorithm()
class HashAlgorithmAdapter (line 35) | internal class HashAlgorithmAdapter : HashAlgorithm
method HashCore (line 39) | protected override void HashCore(byte[] array, int ibStart, int cbSize)
method HashFinal (line 44) | protected override byte[] HashFinal()
method Initialize (line 49) | public override void Initialize()
method HashAlgorithmAdapter (line 54) | public HashAlgorithmAdapter(Hasher hasher)
FILE: packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/NodeHasher.cs
class NodeHasher (line 19) | public abstract class NodeHasher
method Init (line 21) | public abstract void Init(int depth, long nodeOffset);
method Finish (line 22) | public abstract byte[] Finish(bool isEndOfLayer);
method Update (line 23) | public abstract void Update(byte[] data, int start, int count);
method Update (line 25) | public void Update(byte[] data)
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2-impl.h
function BLAKE2_INLINE (line 33) | static BLAKE2_INLINE uint32_t load32( const void *src )
function BLAKE2_INLINE (line 48) | static BLAKE2_INLINE uint64_t load64( const void *src )
function BLAKE2_INLINE (line 67) | static BLAKE2_INLINE uint16_t load16( const void *src )
function BLAKE2_INLINE (line 80) | static BLAKE2_INLINE void store16( void *dst, uint16_t w )
function BLAKE2_INLINE (line 91) | static BLAKE2_INLINE void store32( void *dst, uint32_t w )
function BLAKE2_INLINE (line 104) | static BLAKE2_INLINE void store64( void *dst, uint64_t w )
function BLAKE2_INLINE (line 121) | static BLAKE2_INLINE uint64_t load48( const void *src )
function BLAKE2_INLINE (line 132) | static BLAKE2_INLINE void store48( void *dst, uint64_t w )
function BLAKE2_INLINE (line 143) | static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c )
function BLAKE2_INLINE (line 148) | static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c )
function BLAKE2_INLINE (line 154) | static BLAKE2_INLINE void secure_zero_memory(void *v, size_t n)
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2.h
type blake2s_constant (line 31) | enum blake2s_constant
type blake2b_constant (line 40) | enum blake2b_constant
type blake2s_state (line 49) | typedef struct blake2s_state__
type blake2b_state (line 60) | typedef struct blake2b_state__
type blake2sp_state (line 71) | typedef struct blake2sp_state__
type blake2bp_state (line 80) | typedef struct blake2bp_state__
type blake2s_param__ (line 90) | struct blake2s_param__
type blake2s_param (line 106) | typedef struct blake2s_param__ blake2s_param;
type blake2b_param__ (line 108) | struct blake2b_param__
type blake2b_param (line 124) | typedef struct blake2b_param__ blake2b_param;
type blake2xs_state (line 126) | typedef struct blake2xs_state__
type blake2xb_state (line 132) | typedef struct blake2xb_state__
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2b-ref.c
function blake2b_set_lastnode (line 48) | static void blake2b_set_lastnode( blake2b_state *S )
function blake2b_is_lastblock (line 54) | static int blake2b_is_lastblock( const blake2b_state *S )
function blake2b_set_lastblock (line 59) | static void blake2b_set_lastblock( blake2b_state *S )
function blake2b_increment_counter (line 66) | static void blake2b_increment_counter( blake2b_state *S, const uint64_t ...
function blake2b_init0 (line 72) | static void blake2b_init0( blake2b_state *S )
function blake2b_init_param (line 81) | int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
function blake2b_init (line 98) | int blake2b_init( blake2b_state *S, size_t outlen )
function blake2b_init_key (line 120) | int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, ...
function blake2b_compress (line 177) | static void blake2b_compress( blake2b_state *S, const uint8_t block[BLAK...
function blake2b_update (line 221) | int blake2b_update( blake2b_state *S, const void *pin, size_t inlen )
function blake2b_final (line 248) | int blake2b_final( blake2b_state *S, void *out, size_t outlen )
function blake2b (line 273) | int blake2b( void *out, size_t outlen, const void *in, size_t inlen, con...
function blake2 (line 302) | int blake2( void *out, size_t outlen, const void *in, size_t inlen, cons...
function crypto_hash (line 307) | int crypto_hash( unsigned char *out, unsigned char *in, unsigned long lo...
function main (line 316) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2bp-ref.c
function blake2bp_init_leaf_param (line 37) | static int blake2bp_init_leaf_param( blake2b_state *S, const blake2b_par...
function blake2bp_init_leaf (line 44) | static int blake2bp_init_leaf( blake2b_state *S, size_t outlen, size_t k...
function blake2bp_init_root (line 62) | static int blake2bp_init_root( blake2b_state *S, size_t outlen, size_t k...
function blake2bp_init (line 81) | int blake2bp_init( blake2bp_state *S, size_t outlen )
function blake2bp_init_key (line 102) | int blake2bp_init_key( blake2bp_state *S, size_t outlen, const void *key...
function blake2bp_update (line 136) | int blake2bp_update( blake2bp_state *S, const void *pin, size_t inlen )
function blake2bp_final (line 187) | int blake2bp_final( blake2bp_state *S, void *out, size_t outlen )
function blake2bp (line 216) | int blake2bp( void *out, size_t outlen, const void *in, size_t inlen, co...
function main (line 296) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2s-ref.c
function blake2s_set_lastnode (line 43) | static void blake2s_set_lastnode( blake2s_state *S )
function blake2s_is_lastblock (line 49) | static int blake2s_is_lastblock( const blake2s_state *S )
function blake2s_set_lastblock (line 54) | static void blake2s_set_lastblock( blake2s_state *S )
function blake2s_increment_counter (line 61) | static void blake2s_increment_counter( blake2s_state *S, const uint32_t ...
function blake2s_init0 (line 67) | static void blake2s_init0( blake2s_state *S )
function blake2s_init_param (line 76) | int blake2s_init_param( blake2s_state *S, const blake2s_param *P )
function blake2s_init (line 93) | int blake2s_init( blake2s_state *S, size_t outlen )
function blake2s_init_key (line 115) | int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, ...
function blake2s_compress (line 172) | static void blake2s_compress( blake2s_state *S, const uint8_t in[BLAKE2S...
function blake2s_update (line 214) | int blake2s_update( blake2s_state *S, const void *pin, size_t inlen )
function blake2s_final (line 241) | int blake2s_final( blake2s_state *S, void *out, size_t outlen )
function blake2s (line 265) | int blake2s( void *out, size_t outlen, const void *in, size_t inlen, con...
function crypto_hash (line 295) | int crypto_hash( unsigned char *out, unsigned char *in, unsigned long lo...
function main (line 304) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2sp-ref.c
function blake2sp_init_leaf_param (line 36) | static int blake2sp_init_leaf_param( blake2s_state *S, const blake2s_par...
function blake2sp_init_leaf (line 43) | static int blake2sp_init_leaf( blake2s_state *S, size_t outlen, size_t k...
function blake2sp_init_root (line 60) | static int blake2sp_init_root( blake2s_state *S, size_t outlen, size_t k...
function blake2sp_init (line 78) | int blake2sp_init( blake2sp_state *S, size_t outlen )
function blake2sp_init_key (line 99) | int blake2sp_init_key( blake2sp_state *S, size_t outlen, const void *key...
function blake2sp_update (line 133) | int blake2sp_update( blake2sp_state *S, const void *pin, size_t inlen )
function blake2sp_final (line 184) | int blake2sp_final( blake2sp_state *S, void *out, size_t outlen )
function blake2sp (line 214) | int blake2sp( void *out, size_t outlen, const void *in, size_t inlen, co...
function main (line 296) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2xb-ref.c
function blake2xb_init (line 26) | int blake2xb_init( blake2xb_state *S, const size_t outlen ) {
function blake2xb_init_key (line 30) | int blake2xb_init_key( blake2xb_state *S, const size_t outlen, const voi...
function blake2xb_update (line 72) | int blake2xb_update( blake2xb_state *S, const void *in, size_t inlen ) {
function blake2xb_final (line 76) | int blake2xb_final( blake2xb_state *S, void *out, size_t outlen) {
function blake2xb (line 136) | int blake2xb(void *out, size_t outlen, const void *in, size_t inlen, con...
function main (line 171) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/blake2xs-ref.c
function blake2xs_init (line 26) | int blake2xs_init( blake2xs_state *S, const size_t outlen ) {
function blake2xs_init_key (line 30) | int blake2xs_init_key( blake2xs_state *S, const size_t outlen, const voi...
function blake2xs_update (line 71) | int blake2xs_update( blake2xs_state *S, const void *in, size_t inlen ) {
function blake2xs_final (line 75) | int blake2xs_final(blake2xs_state *S, void *out, size_t outlen) {
function blake2xs (line 134) | int blake2xs(void *out, size_t outlen, const void *in, size_t inlen, con...
function main (line 169) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/ref/genkat-c.c
function main (line 109) | int main() {
FILE: packages/nanocurrency/src/assembly/blake2/ref/genkat-json.c
function main (line 126) | int main() {
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2-impl.h
function BLAKE2_INLINE (line 33) | static BLAKE2_INLINE uint32_t load32( const void *src )
function BLAKE2_INLINE (line 48) | static BLAKE2_INLINE uint64_t load64( const void *src )
function BLAKE2_INLINE (line 67) | static BLAKE2_INLINE uint16_t load16( const void *src )
function BLAKE2_INLINE (line 80) | static BLAKE2_INLINE void store16( void *dst, uint16_t w )
function BLAKE2_INLINE (line 91) | static BLAKE2_INLINE void store32( void *dst, uint32_t w )
function BLAKE2_INLINE (line 104) | static BLAKE2_INLINE void store64( void *dst, uint64_t w )
function BLAKE2_INLINE (line 121) | static BLAKE2_INLINE uint64_t load48( const void *src )
function BLAKE2_INLINE (line 132) | static BLAKE2_INLINE void store48( void *dst, uint64_t w )
function BLAKE2_INLINE (line 143) | static BLAKE2_INLINE uint32_t rotr32( const uint32_t w, const unsigned c )
function BLAKE2_INLINE (line 148) | static BLAKE2_INLINE uint64_t rotr64( const uint64_t w, const unsigned c )
function BLAKE2_INLINE (line 154) | static BLAKE2_INLINE void secure_zero_memory(void *v, size_t n)
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2.h
type blake2s_constant (line 31) | enum blake2s_constant
type blake2b_constant (line 40) | enum blake2b_constant
type blake2s_state (line 49) | typedef struct blake2s_state__
type blake2b_state (line 60) | typedef struct blake2b_state__
type blake2sp_state (line 71) | typedef struct blake2sp_state__
type blake2bp_state (line 80) | typedef struct blake2bp_state__
type blake2s_param__ (line 90) | struct blake2s_param__
type blake2s_param (line 106) | typedef struct blake2s_param__ blake2s_param;
type blake2b_param__ (line 108) | struct blake2b_param__
type blake2b_param (line 124) | typedef struct blake2b_param__ blake2b_param;
type blake2xs_state (line 126) | typedef struct blake2xs_state__
type blake2xb_state (line 132) | typedef struct blake2xb_state__
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2b.c
function blake2b_set_lastnode (line 53) | static void blake2b_set_lastnode( blake2b_state *S )
function blake2b_is_lastblock (line 58) | static int blake2b_is_lastblock( const blake2b_state *S )
function blake2b_set_lastblock (line 63) | static void blake2b_set_lastblock( blake2b_state *S )
function blake2b_increment_counter (line 70) | static void blake2b_increment_counter( blake2b_state *S, const uint64_t ...
function blake2b_init_param (line 77) | int blake2b_init_param( blake2b_state *S, const blake2b_param *P )
function blake2b_init (line 95) | int blake2b_init( blake2b_state *S, size_t outlen )
function blake2b_init_key (line 117) | int blake2b_init_key( blake2b_state *S, size_t outlen, const void *key, ...
function blake2b_compress (line 151) | static void blake2b_compress( blake2b_state *S, const uint8_t block[BLAK...
function blake2b_update (line 221) | int blake2b_update( blake2b_state *S, const void *pin, size_t inlen )
function blake2b_final (line 249) | int blake2b_final( blake2b_state *S, void *out, size_t outlen )
function blake2b (line 267) | int blake2b( void *out, size_t outlen, const void *in, size_t inlen, con...
function blake2 (line 296) | int blake2( void *out, size_t outlen, const void *in, size_t inlen, cons...
function crypto_hash (line 301) | int crypto_hash( unsigned char *out, unsigned char *in, unsigned long lo...
function main (line 310) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2bp.c
function blake2bp_init_leaf_param (line 37) | static int blake2bp_init_leaf_param( blake2b_state *S, const blake2b_par...
function blake2bp_init_leaf (line 44) | static int blake2bp_init_leaf( blake2b_state *S, size_t outlen, size_t k...
function blake2bp_init_root (line 62) | static int blake2bp_init_root( blake2b_state *S, size_t outlen, size_t k...
function blake2bp_init (line 81) | int blake2bp_init( blake2bp_state *S, size_t outlen )
function blake2bp_init_key (line 101) | int blake2bp_init_key( blake2bp_state *S, size_t outlen, const void *key...
function blake2bp_update (line 135) | int blake2bp_update( blake2bp_state *S, const void *pin, size_t inlen )
function blake2bp_final (line 188) | int blake2bp_final( blake2bp_state *S, void *out, size_t outlen )
function blake2bp (line 217) | int blake2bp( void *out, size_t outlen, const void *in, size_t inlen, co...
function main (line 298) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2s-load-xop.h
function __m128i (line 22) | static __m128i _mm_perm_epi8(const __m128i src1, const __m128i src2, con...
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2s.c
function blake2s_set_lastnode (line 49) | static void blake2s_set_lastnode( blake2s_state *S )
function blake2s_is_lastblock (line 54) | static int blake2s_is_lastblock( const blake2s_state *S )
function blake2s_set_lastblock (line 59) | static void blake2s_set_lastblock( blake2s_state *S )
function blake2s_increment_counter (line 66) | static void blake2s_increment_counter( blake2s_state *S, const uint32_t ...
function blake2s_init_param (line 75) | int blake2s_init_param( blake2s_state *S, const blake2s_param *P )
function blake2s_init (line 93) | int blake2s_init( blake2s_state *S, size_t outlen )
function blake2s_init_key (line 117) | int blake2s_init_key( blake2s_state *S, size_t outlen, const void *key, ...
function blake2s_compress (line 153) | static void blake2s_compress( blake2s_state *S, const uint8_t block[BLAK...
function blake2s_update (line 209) | int blake2s_update( blake2s_state *S, const void *pin, size_t inlen )
function blake2s_final (line 236) | int blake2s_final( blake2s_state *S, void *out, size_t outlen )
function blake2s (line 261) | int blake2s( void *out, size_t outlen, const void *in, size_t inlen, con...
function crypto_hash (line 291) | int crypto_hash( unsigned char *out, unsigned char *in, unsigned long lo...
function main (line 300) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2sp.c
function blake2sp_init_leaf_param (line 36) | static int blake2sp_init_leaf_param( blake2s_state *S, const blake2s_par...
function blake2sp_init_leaf (line 43) | static int blake2sp_init_leaf( blake2s_state *S, size_t outlen, size_t k...
function blake2sp_init_root (line 60) | static int blake2sp_init_root( blake2s_state *S, size_t outlen, size_t k...
function blake2sp_init (line 78) | int blake2sp_init( blake2sp_state *S, size_t outlen )
function blake2sp_init_key (line 99) | int blake2sp_init_key( blake2sp_state *S, size_t outlen, const void *key...
function blake2sp_update (line 133) | int blake2sp_update( blake2sp_state *S, const void *pin, size_t inlen )
function blake2sp_final (line 185) | int blake2sp_final( blake2sp_state *S, void *out, size_t outlen )
function blake2sp (line 215) | int blake2sp( void *out, size_t outlen, const void *in, size_t inlen, co...
function main (line 295) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2xb.c
function blake2xb_init (line 26) | int blake2xb_init( blake2xb_state *S, const size_t outlen ) {
function blake2xb_init_key (line 30) | int blake2xb_init_key( blake2xb_state *S, const size_t outlen, const voi...
function blake2xb_update (line 72) | int blake2xb_update( blake2xb_state *S, const void *in, size_t inlen ) {
function blake2xb_final (line 76) | int blake2xb_final( blake2xb_state *S, void *out, size_t outlen) {
function blake2xb (line 136) | int blake2xb(void *out, size_t outlen, const void *in, size_t inlen, con...
function main (line 171) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/blake2xs.c
function blake2xs_init (line 26) | int blake2xs_init( blake2xs_state *S, const size_t outlen ) {
function blake2xs_init_key (line 30) | int blake2xs_init_key( blake2xs_state *S, const size_t outlen, const voi...
function blake2xs_update (line 71) | int blake2xs_update( blake2xs_state *S, const void *in, size_t inlen ) {
function blake2xs_final (line 75) | int blake2xs_final(blake2xs_state *S, void *out, size_t outlen) {
function blake2xs (line 134) | int blake2xs(void *out, size_t outlen, const void *in, size_t inlen, con...
function main (line 169) | int main( void )
FILE: packages/nanocurrency/src/assembly/blake2/sse/genkat-c.c
function main (line 109) | int main() {
FILE: packages/nanocurrency/src/assembly/blake2/sse/genkat-json.c
function main (line 126) | int main() {
FILE: packages/nanocurrency/src/assembly/functions.c
function hex_to_bytes (line 17) | void hex_to_bytes(const char* const hex, uint8_t* const dst) {
function uint64_to_bytes (line 28) | void uint64_to_bytes(const uint64_t src, uint8_t* const dst) {
function bytes_to_uint64 (line 32) | uint64_t bytes_to_uint64(const uint8_t* const src) {
function bytes_to_hex (line 42) | void bytes_to_hex(const uint8_t* const src, const uint8_t length, char* ...
function reverse_bytes (line 51) | void reverse_bytes(uint8_t* const src, const uint8_t length) {
function validate_work (line 60) | uint8_t validate_work(const uint8_t* const block_hash, uint64_t work_thr...
function work (line 76) | void work(const uint8_t* const block_hash, uint64_t work_threshold, cons...
function EMSCRIPTEN_KEEPALIVE (line 104) | EMSCRIPTEN_KEEPALIVE
FILE: packages/nanocurrency/src/block.ts
constant BLANK_HASH (line 14) | const BLANK_HASH =
type CommonBlockData (line 17) | interface CommonBlockData {
type OpenBlockData (line 26) | interface OpenBlockData {
type ChangeBlockData (line 33) | interface ChangeBlockData {
type SendBlockData (line 40) | interface SendBlockData {
type ReceiveBlockData (line 47) | interface ReceiveBlockData {
type BlockData (line 55) | type BlockData = CommonBlockData &
type BlockRepresentation (line 59) | interface BlockRepresentation {
type Block (line 72) | interface Block {
function createBlock (line 86) | function createBlock(secretKey: string, data: BlockData): Block {
FILE: packages/nanocurrency/src/check.ts
constant MIN_INDEX (line 9) | const MIN_INDEX = 0
constant MAX_INDEX (line 10) | const MAX_INDEX = Math.pow(2, 32) - 1
constant MAX_AMOUNT (line 11) | const MAX_AMOUNT = new BigNumber('0xffffffffffffffffffffffffffffffff')
function checkString (line 14) | function checkString(candidate: {}): boolean {
function checkNumber (line 19) | function checkNumber(candidate: {}): boolean {
function checkAmount (line 45) | function checkAmount(amount: string): boolean {
function checkSeed (line 63) | function checkSeed(seed: string): boolean {
function checkThreshold (line 75) | function checkThreshold(threshold: string): boolean {
function checkIndex (line 87) | function checkIndex(index: number): boolean {
function checkHash (line 99) | function checkHash(hash: string): boolean {
function checkKey (line 112) | function checkKey(key: string): boolean {
function checkAddress (line 125) | function checkAddress(address: string): boolean {
function checkWork (line 139) | function checkWork(work: string): boolean {
function checkSignature (line 151) | function checkSignature(signature: string): boolean {
FILE: packages/nanocurrency/src/conversion.ts
type Unit (line 10) | enum Unit {
constant ZEROES (line 29) | const ZEROES: { [unit in keyof typeof Unit]: number } = {
type ConvertParams (line 46) | interface ConvertParams {
function convert (line 60) | function convert(value: string, params: ConvertParams): string {
FILE: packages/nanocurrency/src/hash.ts
constant STATE_BLOCK_PREAMBLE_BYTES (line 16) | const STATE_BLOCK_PREAMBLE_BYTES = new Uint8Array(32)
type HashBlockParams (line 20) | interface HashBlockParams {
function unsafeHashBlock (line 42) | function unsafeHashBlock(params: HashBlockParams): string {
function hashBlock (line 75) | function hashBlock(params: HashBlockParams): string {
FILE: packages/nanocurrency/src/keys.ts
function generateSeed (line 18) | function generateSeed(): Promise<string> {
function deriveSecretKey (line 39) | function deriveSecretKey(seed: string, index: number): string {
function derivePublicKey (line 65) | function derivePublicKey(secretKeyOrAddress: string): string {
type DeriveAddressParams (line 86) | interface DeriveAddressParams {
function deriveAddress (line 98) | function deriveAddress(
FILE: packages/nanocurrency/src/nacl.ts
function vn (line 112) | function vn(
function cryptoVerify32 (line 124) | function cryptoVerify32(
function set25519 (line 133) | function set25519(r: Float64Array, a: Float64Array): void {
function car25519 (line 138) | function car25519(o: Float64Array): void {
function sel25519 (line 149) | function sel25519(p: Float64Array, q: Float64Array, b: number): void {
function pack25519 (line 159) | function pack25519(o: Uint8Array, n: Float64Array): void {
function neq25519 (line 184) | function neq25519(a: Float64Array, b: Float64Array): number {
function par25519 (line 192) | function par25519(a: Float64Array): number {
function unpack25519 (line 198) | function unpack25519(o: Float64Array, n: Uint8Array): void {
function A (line 204) | function A(o: Float64Array, a: Float64Array, b: Float64Array): void {
function Z (line 208) | function Z(o: Float64Array, a: Float64Array, b: Float64Array): void {
function M (line 212) | function M(o: Float64Array, a: Float64Array, b: Float64Array): void {
function S (line 675) | function S(o: Float64Array, a: Float64Array): void {
function inv25519 (line 679) | function inv25519(o: Float64Array, i: Float64Array): void {
function pow2523 (line 690) | function pow2523(o: Float64Array, i: Float64Array): void {
constant CRYPTO_SIGN_BYTES (line 701) | const CRYPTO_SIGN_BYTES = 64
constant CRYPTO_SIGN_PUBLICKEYBYTES (line 702) | const CRYPTO_SIGN_PUBLICKEYBYTES = 32
constant CRYPTO_SIGN_SECRETKEYBYTES (line 703) | const CRYPTO_SIGN_SECRETKEYBYTES = 32
constant CRYPTO_HASH_BYTES (line 704) | const CRYPTO_HASH_BYTES = 64
function cryptoHash (line 706) | function cryptoHash(out: Uint8Array, m: Uint8Array, n: number): number {
function add (line 718) | function add(p: Float64Array[], q: Float64Array[]): void {
function cswap (line 750) | function cswap(p: Float64Array[], q: Float64Array[], b: number): void {
function pack (line 757) | function pack(r: Uint8Array, p: Float64Array[]): void {
function scalarmult (line 768) | function scalarmult(p: Float64Array[], q: Float64Array[], s: Uint8Array)...
function scalarbase (line 784) | function scalarbase(p: Float64Array[], s: Uint8Array): void {
function modL (line 828) | function modL(r: Uint8Array, x: Float64Array): void {
function reduce (line 856) | function reduce(r: Uint8Array): void {
function derivePublicFromSecret (line 864) | function derivePublicFromSecret(sk: Uint8Array): Uint8Array {
function cryptoSign (line 882) | function cryptoSign(
function unpackneg (line 928) | function unpackneg(r: Float64Array[], p: Uint8Array): -1 | 0 {
function cryptoSignOpen (line 970) | function cryptoSignOpen(
function naclSign (line 1011) | function naclSign(msg: Uint8Array, secretKey: Uint8Array): Uint8Array {
function signDetached (line 1021) | function signDetached(
function verifyDetached (line 1032) | function verifyDetached(
FILE: packages/nanocurrency/src/nano-base32.ts
function encodeNanoBase32 (line 33) | function encodeNanoBase32(view: Uint8Array): string {
function readChar (line 59) | function readChar(char: string): number {
function decodeNanoBase32 (line 75) | function decodeNanoBase32(input: string): Uint8Array {
FILE: packages/nanocurrency/src/parse.ts
type ParseAddressResult (line 13) | interface ParseAddressResult {
function parseAddress (line 19) | function parseAddress(address: {}): ParseAddressResult {
FILE: packages/nanocurrency/src/signature.ts
type SignBlockParams (line 13) | interface SignBlockParams {
function signBlock (line 26) | function signBlock(params: SignBlockParams): string {
type VerifyBlockParams (line 39) | interface VerifyBlockParams {
function verifyBlock (line 54) | function verifyBlock(params: VerifyBlockParams): boolean {
FILE: packages/nanocurrency/src/utils.ts
constant IS_NODE (line 6) | const IS_NODE =
function getRandomBytes (line 26) | function getRandomBytes(count: number): Promise<Uint8Array> {
function byteArrayToHex (line 38) | function byteArrayToHex(byteArray: Uint8Array): string {
function hexToByteArray (line 54) | function hexToByteArray(hex: string): Uint8Array {
function compareArrays (line 68) | function compareArrays(array1: Uint8Array, array2: Uint8Array): boolean {
FILE: packages/nanocurrency/src/work.ts
constant DEFAULT_WORK_THRESHOLD (line 11) | const DEFAULT_WORK_THRESHOLD = 'ffffffc000000000'
type ValidateWorkParams (line 14) | interface ValidateWorkParams {
function validateWork (line 29) | function validateWork(params: ValidateWorkParams): boolean {
FILE: packages/nanocurrency/wasm-benchmark.js
function main (line 5) | async function main() {
Copy disabled (too large)
Download .json
Condensed preview — 146 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (11,526K chars).
[
{
"path": ".editorconfig",
"chars": 147,
"preview": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\nindent_sty"
},
{
"path": ".eslintrc.js",
"chars": 54,
"preview": "module.exports = require('./fusee').getEslintConfig()\n"
},
{
"path": ".github/workflows/test.yml",
"chars": 459,
"preview": "name: Test\n\non: [push]\n\njobs:\n test:\n runs-on: ubuntu-latest\n\n strategy:\n matrix:\n node-version: [12."
},
{
"path": ".gitignore",
"chars": 225,
"preview": "### App ###\n\ndist/\n/packages/nanocurrency/assembly.js\n\n### TS ###\n\n.rpt2_cache/\n\n### Node ###\n\n# Logs\n\nlogs\n*.log\nnpm-de"
},
{
"path": ".gitmodules",
"chars": 150,
"preview": "[submodule \"packages/nanocurrency/src/assembly/blake2\"]\n\tpath = packages/nanocurrency/src/assembly/blake2\n\turl = https:/"
},
{
"path": ".prettierrc.js",
"chars": 56,
"preview": "module.exports = require('./fusee').getPrettierConfig()\n"
},
{
"path": "README.md",
"chars": 925,
"preview": "# nanocurrency-js\n\n[](https://github.com"
},
{
"path": "fusee.js",
"chars": 97,
"preview": "module.exports = require('@marvinroger/fusee').buildFusee({\n monorepo: true,\n react: false,\n})\n"
},
{
"path": "lerna.json",
"chars": 92,
"preview": "{\n \"packages\": [\n \"packages/*\"\n ],\n \"version\": \"independent\",\n \"npmClient\": \"yarn\"\n}\n"
},
{
"path": "package.json",
"chars": 213,
"preview": "{\n \"private\": true,\n \"workspaces\": [\n \"packages/*\"\n ],\n \"dependencies\": {\n \"@marvinroger/fusee\": \"^3.3.0\",\n "
},
{
"path": "packages/nanocurrency/LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "packages/nanocurrency/README.md",
"chars": 2458,
"preview": "# nanocurrency\n\n[](https://www.npmjs.com/package/nanocurren"
},
{
"path": "packages/nanocurrency/__tests__/accelerated.js",
"chars": 1308,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/block.js",
"chars": 5110,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/browser.js",
"chars": 2025,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n/* global NanoCurrency */\n\nconst fs = requ"
},
{
"path": "packages/nanocurrency/__tests__/conversion.js",
"chars": 3132,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/data/invalid.js",
"chars": 3829,
"preview": "const INVALID_SEEDS = [\n '',\n 12,\n '947ee0115014a4d49a804e7fc7248e31690b80033ce7a6e3a07bdf93b2584ff',\n '947ee0115014"
},
{
"path": "packages/nanocurrency/__tests__/data/valid_blocks.json",
"chars": 110637,
"preview": "[\n {\n \"secretKey\": \"2B70ABB4D458DC5EDA2C998BF5454717BAA6A122AC8694A02760397DB523CA66\",\n \"publicKey\": \"9DB2961B2D0"
},
{
"path": "packages/nanocurrency/__tests__/data/valid_keys.json",
"chars": 35972,
"preview": "[\n {\n \"seed\": \"BBA067329F44D8011BD6E15F43366A81307FBD8A4801A6997B354AD302F4BC72\",\n \"index\": 0,\n \"secretKey\": \""
},
{
"path": "packages/nanocurrency/__tests__/hash.js",
"chars": 3718,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/keys.js",
"chars": 3296,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/signature.js",
"chars": 3309,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/__tests__/work.js",
"chars": 2513,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('../dist/nanocurrenc"
},
{
"path": "packages/nanocurrency/assembly.d.ts",
"chars": 324,
"preview": "interface Cwrap {\n (fun: 'emscripten_work', ret: 'string', params: ['string', 'string', 'number', 'number']): (blockHas"
},
{
"path": "packages/nanocurrency/docs/assets/css/main.css",
"chars": 72780,
"preview": "/*! normalize.css v1.1.3 | MIT License | git.io/normalize */\n/* ========================================================"
},
{
"path": "packages/nanocurrency/docs/assets/js/main.js",
"chars": 177294,
"preview": "!function(e,t){\"use strict\";\"object\"==typeof module&&\"object\"==typeof module.exports?module.exports=e.document?t(e,!0):f"
},
{
"path": "packages/nanocurrency/docs/assets/js/search.js",
"chars": 12438,
"preview": "var typedoc = typedoc || {};\n typedoc.search = typedoc.search || {};\n typedoc.search.data = {\"kind"
},
{
"path": "packages/nanocurrency/docs/enums/unit.html",
"chars": 321777,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/globals.html",
"chars": 358237,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/index.html",
"chars": 358330,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/block.html",
"chars": 316213,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/blockrepresentation.html",
"chars": 322069,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/changeblockdata.html",
"chars": 316180,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/commonblockdata.html",
"chars": 317232,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/computeworkparams.html",
"chars": 317958,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/convertparams.html",
"chars": 316286,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/deriveaddressparams.html",
"chars": 315674,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/hashblockparams.html",
"chars": 319531,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/openblockdata.html",
"chars": 316140,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/receiveblockdata.html",
"chars": 316223,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/sendblockdata.html",
"chars": 316191,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/signblockparams.html",
"chars": 316353,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/validateworkparams.html",
"chars": 317488,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/docs/interfaces/verifyblockparams.html",
"chars": 317389,
"preview": "<!doctype html>\n<html class=\"minimal no-js\">\n<head>\n\t<meta charset=\"utf-8\">\n\t<meta http-equiv=\"X-UA-Compatible\" content="
},
{
"path": "packages/nanocurrency/examples/pow-benchmark/index.html",
"chars": 2760,
"preview": "<!DOCTYPE html>\n<html>\n <head>\n </head>\n\n <body>\n <pre id=\"status\"></pre>\n <script src=\"https://cdn.jsdelivr.ne"
},
{
"path": "packages/nanocurrency/examples/pow-benchmark/worker.js",
"chars": 409,
"preview": "/* eslint-env worker */\n/* global NanoCurrency:false */\n\nimportScripts('https://cdn.jsdelivr.net/npm/nanocurrency@2/dist"
},
{
"path": "packages/nanocurrency/jest.config.js",
"chars": 168,
"preview": "const fusee = require('../../fusee').getJestConfig()\n\nmodule.exports = {\n ...fusee,\n testPathIgnorePatterns: [...fusee"
},
{
"path": "packages/nanocurrency/package.json",
"chars": 2818,
"preview": "{\n \"name\": \"nanocurrency\",\n \"description\": \"A toolkit for the Nano cryptocurrency, allowing you to derive keys, genera"
},
{
"path": "packages/nanocurrency/rollup.config.js",
"chars": 1448,
"preview": "import autoExternal from 'rollup-plugin-auto-external'\nimport typescript from 'rollup-plugin-typescript2'\nimport resolve"
},
{
"path": "packages/nanocurrency/showcase.js",
"chars": 894,
"preview": "import * as nanocurrency from 'nanocurrency'\n\nasync function showcase() {\n const seed = await nanocurrency.generateSeed"
},
{
"path": "packages/nanocurrency/src/accelerated.ts",
"chars": 2793,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/.gitignore",
"chars": 283,
"preview": "b2sum/b2sum\nbench/blake2b\nbench/blake2b.data\nbench/blake2s\nbench/blake2s.data\nbench/md5\nbench/md5.data\nbench/plotcycles."
},
{
"path": "packages/nanocurrency/src/assembly/blake2/COPYING",
"chars": 7048,
"preview": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/README.md",
"chars": 900,
"preview": "# BLAKE2\n\nThis is the reference source code package of BLAKE2, which includes\n\n* `ref/`: C implementations of BLAKE2b, B"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/b2sum/README.md",
"chars": 810,
"preview": "# b2sum #\n\nThis is a simple tool to create BLAKE2 hashes of files or streams. For more usage information refer to the ma"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/b2sum/b2sum.1",
"chars": 2150,
"preview": ".Dd February 20, 2016\n.Dt B2SUM 1\n.Os\n.Sh NAME\n.Nm b2sum\n.Nd generate checksums using the BLAKE2 hash function\n.Sh SYNOP"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/b2sum/b2sum.c",
"chars": 8469,
"preview": "/*\n BLAKE2 reference source code package - b2sum tool\n\n Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You may us"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/b2sum/makefile",
"chars": 695,
"preview": "PROG=b2sum\nPREFIX?=/usr/local\nMANDIR?=$(PREFIX)/man\nNO_OPENMP?=0\nNO_OPENMP_0=-fopenmp\nNO_OPENMP_1=\nCC?=gcc\nCFLAGS?=-O3 -"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/bench/bench.c",
"chars": 2597,
"preview": "/*\n BLAKE2 reference source code package - benchmark tool\n\n Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You ma"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/bench/do.gplot",
"chars": 419,
"preview": "maxx = 256\nset xrange [1:maxx]\nset xlabel \"bytes \"\nset ylabel \"cycles\"\nset xtics 0,32,maxx\nset grid\nset key left\n\n#set t"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/bench/makefile",
"chars": 528,
"preview": "CC=gcc\n# std to gnu99 to support inline asm\nCFLAGS=-O3 -march=native -Wall -Wextra -DSUPERCOP # -DHAVE_XOP # uncomment o"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/bench/md5.c",
"chars": 764,
"preview": "/*\n BLAKE2 reference source code package - benchmark tool\n\n Copyright 2012, Samuel Neves <sneves@dei.uc.pt>. You ma"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2B.cs",
"chars": 2042,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BConfig.cs",
"chars": 1501,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-FullyUnrolled.cs",
"chars": 35610,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-Inline.cs",
"chars": 4726,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore-Simple.cs",
"chars": 2043,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BCore.cs",
"chars": 5781,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BHasher.cs",
"chars": 1795,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BNodeHasher.cs",
"chars": 1411,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2BTreeConfig.cs",
"chars": 1379,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2IvBuilder.cs",
"chars": 2737,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Blake2Sharp.csproj",
"chars": 2655,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Hasher.cs",
"chars": 1443,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/NodeHasher.cs",
"chars": 941,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/Properties/AssemblyInfo.cs",
"chars": 1417,
"preview": "using System.Reflection;\nusing System.Runtime.CompilerServices;\nusing System.Runtime.InteropServices;\n\n// General Infor"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/TreeHasher.cs",
"chars": 2111,
"preview": "// BLAKE2 reference source code package - C# implementation\n\n// Written in 2012 by Christian Winnerlein <codesinchaos@"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp/compression.c",
"chars": 614,
"preview": "#define ROT(x, y)\\\n ((x >> y)|(x << (64-y)))\n\n#define G(r,i,a,b,c,d) \\\n YY G(r,i,a,b,c,d) XXX\\\n a = a + b + m[S"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.CompressionCodeGen/Blake2Sharp.CompressionCodeGen.csproj",
"chars": 2434,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.CompressionCodeGen/Program.cs",
"chars": 2810,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.CompressionCodeGen/Properties/AssemblyInfo.cs",
"chars": 1954,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/Blake2Sharp.Tests.csproj",
"chars": 4700,
"preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<Project ToolsVersion=\"4.0\" DefaultTargets=\"Build\" xmlns=\"http://schemas.microso"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/DebugNodeHasher.cs",
"chars": 1123,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/Properties/AssemblyInfo.cs",
"chars": 1928,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/SequentialTests.cs",
"chars": 2333,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.Tests/TestVectors.cs",
"chars": 70438,
"preview": "\n/// BLAKE2 reference source code package - C# implementation\n\n/// Written in 2012 by Christian Winnerlein <codesincha"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/csharp/Blake2Sharp.sln",
"chars": 2078,
"preview": "\nMicrosoft Visual Studio Solution File, Format Version 12.00\n# Visual Studio 2012\nProject(\"{2150E333-8FDC-42A3-9474-1A3"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2-impl.h",
"chars": 4175,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2.h",
"chars": 6455,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2b-ref.c",
"chars": 10057,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2bp-ref.c",
"chars": 9429,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2s-ref.c",
"chars": 9668,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2sp-ref.c",
"chars": 9286,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2xb-ref.c",
"chars": 6160,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2016, JP Aumasson <jeanphilippe.a"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/blake2xs-ref.c",
"chars": 6091,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2016, JP Aumasson <jeanphilippe.a"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/genkat-c.c",
"chars": 9009,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/genkat-json.c",
"chars": 10636,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/ref/makefile",
"chars": 1388,
"preview": "CC=gcc\nCFLAGS=-O2 -I../testvectors -Wall -Wextra -std=c89 -pedantic -Wno-long-long\nBLAKEBINS=blake2s blake2b blake2sp bl"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2-config.h",
"chars": 1368,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2-impl.h",
"chars": 4175,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2.h",
"chars": 6455,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2b-load-sse2.h",
"chars": 4875,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2b-load-sse41.h",
"chars": 6630,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2b-round.h",
"chars": 4983,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2b.c",
"chars": 10383,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2bp.c",
"chars": 9364,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2s-load-sse2.h",
"chars": 3087,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2s-load-sse41.h",
"chars": 6961,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2s-load-xop.h",
"chars": 8231,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2s-round.h",
"chars": 2898,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2s.c",
"chars": 10009,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2sp.c",
"chars": 9219,
"preview": "/*\n BLAKE2 reference source code package - optimized C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2xb.c",
"chars": 6159,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2016, JP Aumasson <jeanphilippe.a"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/blake2xs.c",
"chars": 6090,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2016, JP Aumasson <jeanphilippe.a"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/genkat-c.c",
"chars": 9009,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/genkat-json.c",
"chars": 10636,
"preview": "/*\n BLAKE2 reference source code package - reference C implementations\n\n Copyright 2012, Samuel Neves <sneves@dei.uc"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/sse/makefile",
"chars": 1263,
"preview": "CC=gcc\nCFLAGS=-O3 -I../testvectors -Wall -Wextra -std=c89 -pedantic -Wno-long-long\nBLAKEBINS=blake2s blake2b blake2sp bl"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2-kat.h",
"chars": 2272369,
"preview": "#ifndef BLAKE2_KAT_H\n#define BLAKE2_KAT_H\n\n\n#include <stdint.h>\n\n#define BLAKE2_KAT_LENGTH 256\n\n\n\nstatic const uint8_t b"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2-kat.json",
"chars": 1873923,
"preview": "[\n{\n \"hash\": \"blake2s\",\n \"in\": \"\",\n \"key\": \"\",\n \"out\": \"69217a3079908094e11121d042354a7c1f55b6482ca1a51e1b25"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2b-kat.txt",
"chars": 135681,
"preview": "\n\nin:\t\nkey:\t000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2bp-kat.txt",
"chars": 135681,
"preview": "\n\nin:\t\nkey:\t000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132333435"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2s-kat.txt",
"chars": 102913,
"preview": "\n\nin:\t\nkey:\t000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f\nhash:\t48a8997da407876b3d79c0d92325ad3b89cbb"
},
{
"path": "packages/nanocurrency/src/assembly/blake2/testvectors/blake2sp-kat.txt",
"chars": 102913,
"preview": "\n\nin:\t\nkey:\t000102030405060708090a0b0c0d0e0f101112131415161718191a1b1c1d1e1f\nhash:\t715cb13895aeb678f6124160bff21465b30f4"
},
{
"path": "packages/nanocurrency/src/assembly/functions.c",
"chars": 3653,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/block.ts",
"chars": 4737,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/check.ts",
"chars": 3881,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/conversion.ts",
"chars": 2385,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/hash.ts",
"chars": 2842,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/index.ts",
"chars": 997,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/keys.ts",
"chars": 3638,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/nacl.ts",
"chars": 18988,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/nano-base32.ts",
"chars": 2802,
"preview": "/*\nMIT License\n\nCopyright (c) 2018 Gray Olson\n\nPermission is hereby granted, free of charge, to any person obtaining a c"
},
{
"path": "packages/nanocurrency/src/parse.ts",
"chars": 1282,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/signature.ts",
"chars": 2057,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/utils.ts",
"chars": 1747,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/src/work.ts",
"chars": 1730,
"preview": "/*!\n * nanocurrency-js: A toolkit for the Nano cryptocurrency.\n * Copyright (c) 2019 Marvin ROGER <dev at marvinroger do"
},
{
"path": "packages/nanocurrency/tsconfig.json",
"chars": 206,
"preview": "{\n \"extends\": \"../../tsconfig\",\n \"compilerOptions\": {\n \"lib\": [\"es2015\", \"es2016\", \"es2017\", \"webworker\", \"dom\"],\n "
},
{
"path": "packages/nanocurrency/types-local/blakejs.d.ts",
"chars": 26,
"preview": "declare module 'blakejs';\n"
},
{
"path": "packages/nanocurrency/wasm-benchmark.js",
"chars": 448,
"preview": "/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst nano = require('./dist/nanocurrency.cjs')\n\nasync function"
},
{
"path": "packages/nanocurrency-cli/LICENSE",
"chars": 35149,
"preview": " GNU GENERAL PUBLIC LICENSE\n Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
},
{
"path": "packages/nanocurrency-cli/README.md",
"chars": 1322,
"preview": "# nanocurrency-cli\n\n[](https://www.npmjs.com/package/na"
},
{
"path": "packages/nanocurrency-cli/__tests__/cli.js",
"chars": 10241,
"preview": "/* eslint-env jest */\n/* eslint-disable @typescript-eslint/no-var-requires */\n\nconst path = require('path')\nconst util ="
},
{
"path": "packages/nanocurrency-cli/package.json",
"chars": 1147,
"preview": "{\n \"name\": \"nanocurrency-cli\",\n \"description\": \"A CLI for the Nano cryptocurrency, allowing you to derive keys, genera"
},
{
"path": "packages/nanocurrency-cli/src/index.ts",
"chars": 13309,
"preview": "#!/usr/bin/env node\nimport * as yargs from 'yargs'\nimport * as nanocurrency from 'nanocurrency'\n\nconst wrapSubcommand = "
},
{
"path": "packages/nanocurrency-cli/tsconfig.json",
"chars": 112,
"preview": "{\n \"extends\": \"../../tsconfig\",\n \"files\": [\"src/index.ts\"],\n \"compilerOptions\": {\n \"outDir\": \"dist\"\n }\n}\n"
},
{
"path": "tsconfig.json",
"chars": 1200,
"preview": "{\n \"compilerOptions\": {\n \"target\": \"es5\",\n \"lib\": [\"es2015\", \"es2016\", \"es2017\"],\n \"moduleResolution\": \"node\","
}
]
About this extraction
This page contains the full source code of the marvinroger/nanocurrency-js GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 146 files (10.6 MB), approximately 2.8M tokens, and a symbol index with 517 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.