mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 09:50:15 +01:00
19 lines
408 B
JavaScript
19 lines
408 B
JavaScript
import amplitude from 'amplitude-js';
|
|
|
|
amplitude.getInstance().init('8b7cf19e8eea3cdcf16340f5fbf16330', null, {
|
|
useNativeDeviceInfo: true,
|
|
});
|
|
|
|
let A = function(event) {
|
|
amplitude.getInstance().logEvent(event);
|
|
};
|
|
|
|
A.ENUM = {
|
|
INIT: 'INIT',
|
|
GOT_NONZERO_BALANCE: 'GOT_NONZERO_BALANCE',
|
|
CREATED_WALLET: 'CREATED_WALLET',
|
|
CREATED_LIGHTNING_WALLET: 'CREATED_LIGHTNING_WALLET',
|
|
};
|
|
|
|
module.exports = A;
|