mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-02 01:38:00 +00:00
16 lines
332 B
QML
16 lines
332 B
QML
|
import QtQuick 2.15
|
||
|
|
||
|
/*!
|
||
|
\qmltype AssetObject
|
||
|
\inherits TokenObject
|
||
|
\brief ERC20 token object properties definition (also known as asset).
|
||
|
*/
|
||
|
TokenObject {
|
||
|
property int decimals: 2 // Default value
|
||
|
|
||
|
function copyAsset(tokenObject) {
|
||
|
copyToken(tokenObject)
|
||
|
decimals = tokenObject.decimals
|
||
|
}
|
||
|
}
|