mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 07:15:35 +01:00
17 lines
376 B
JavaScript
17 lines
376 B
JavaScript
|
// import Amplitude from 'react-native-amplitude-analytics';
|
||
|
|
||
|
// Amplitude.initialize('8b7cf19e8eea3cdcf16340f5fbf16330');
|
||
|
|
||
|
let A = function(event) {
|
||
|
// Amplitude.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;
|