You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to Lisk Service documents, Lisk blockchain replaces transaction types with module id and assets ids. Lisk Service provides the list of available module-asset pairs through the network status endpoint.
Since we use transaction types throughout Lisk Desktop to display data correctly, we need to ensure the application works with moduleAssets seamlessly, by replacing transaction types with moduleAssets.
Since Lisk blockchain had 2 transaction types, legacy and new, Lisk Desktop introduced a new string property called transaction title to replace both types values of a transaction. We need to replace these values with the corresponding moduleAsset.
Changes include:
Remove all configs except the human readable sender titles in the transactionTypes.js.
Rename transactionTypes.js to moduleAssets.js.
Replace all instances of transactionTypes usage with moduleAssets from the Redux store.
Adapt unit tests.
Motivation
Support Lisk SDK v5
Acceptance Criteria
Unit tests should pass.
The application should work as it did before the new changes.
The text was updated successfully, but these errors were encountered:
Description
According to Lisk Service documents, Lisk blockchain replaces transaction types with module id and assets ids. Lisk Service provides the list of available module-asset pairs through the network status endpoint.
Since we use transaction types throughout Lisk Desktop to display data correctly, we need to ensure the application works with moduleAssets seamlessly, by replacing transaction types with moduleAssets.
Since Lisk blockchain had 2 transaction types, legacy and new, Lisk Desktop introduced a new string property called transaction title to replace both types values of a transaction. We need to replace these values with the corresponding
moduleAsset
.Changes include:
transactionTypes.js
.transactionTypes.js
tomoduleAssets.js
.transactionTypes
usage withmoduleAssets
from the Redux store.Motivation
Support Lisk SDK v5
Acceptance Criteria
The text was updated successfully, but these errors were encountered: