Results 13 comments of ryzhak

The same issue. `Linking.getInitialURL` works fine on ios, but on android(emulator SDK 28) this method seems not even to be called. ``` "react-native": "0.61.5", "react-native-navigation": "^4.5.3", ```

Dirty hack: add the following code at the bottom of chart.funnel.js file before tooltipPosition function: `getCenterPoint: function () { var vm = this._view; return { x: vm.x, y: vm.y };...

More dirty hacks! ``` constructor(props) { super(props); this.state = { avatarCacheType: FastImage.cacheControl.web }; } resetAvatarCache = () => { this.setState({ avatarCacheType: FastImage.cacheControl.immutable }); this.setState({ avatarCacheType: FastImage.cacheControl.web }); }; render() {...

this may help: https://stackoverflow.com/questions/60896279/resolving-assets-relative-to-react-native-bundle-file-outside-project-root

> [@rndquu](https://github.com/rndquu) the logs have expired. Does the associated pull handle the problem according to your memory? https://github.com/ubiquity/ubiquity-dollar/pull/1000#issuecomment-3246047970

We already introduced aave amo minter (i.e. getting LUSD collateral yield via aave). There's [this](https://github.com/ubiquity/ubiquity-dollar/issues/968) issue which should refactor aave amo minter a bit and we could give aave a...

> Auto-deposit LUSD to pool on mint So the flows for an end user are: **Mint** 1. User sends LUSD collateral to Ubiquity Pool 2. LUSD collateral is sent to...

To sum up, as a part of the current issue we should: 1. Add a new library (ex: `LibYield`) that will move collateral in/out of yield generating protocols (ex: aave,...

> Isn't making a generic interface to support farming yield from anywhere more complicated compared to a specialized module for only the Stability Pool rewards? The architecture is not very...