Legacy account module
The legacy account module allows to migrate uninitialized legacy accounts.
| Name | Property |
|---|---|
Name |
|
ID |
|
Assets |
|
Reducers |
none |
Actions |
|
Events |
none |
Transactions
The following transaction assets are provided by the legacy account module.
ReclaimAsset
A reclaimLSK transaction allows to claim tokens from uninitialized legacy accounts.
The required public key is retrieved from the sender of the reclaimLSK transaction.
The parameter amount specifies the amount of tokens that shall be reclaimed, if an uninitialized legacy account was found for the public key.
Schema
const reclaimAssetSchema = {
$id: 'lisk/legacyAccount/reclaim',
title: 'Reclaim transaction asset',
type: 'object',
required: ['amount'],
properties: {
amount: {
dataType: 'uint64',
fieldNumber: 1,
},
},
};