| 47 | const history: THistoryItem[] = []; |
| 48 | |
| 49 | const onProgress: TOnProgress = data => { |
| 50 | history.push({ action: 'progress', data }); |
| 51 | state.progress = data; |
| 52 | }; |
| 53 | |
| 54 | const onWallet: TOnWallet = data => { |
| 55 | history.push({ action: 'wallet', data }); |