Dusan Morhac
Dusan Morhac
To go with monorepo politics, we should release everything that uses one or more of the packages along with the package version update to prevent anything from breaking during building.
Currently, local transfers need to be performed via smart contracts as Moonbeam migrated towards ERC20. Fix this and disable the scenario in the standard builder.
Give user ability to do transact: ```Builder().from().to().currency().transact("instructions to execute on destination in hex")``` Example: https://github.com/shawntabrizi/polkadot-sdk-workshop-xcm/blob/833c50c3213f78687086bce0ec0bfc21343c623f/execution/src/tests/full.rs#L230 https://docs.polkadot.com/develop/interoperability/xcm-guides/from-apps/transfers/#origin-preservation
Currently, we do not specify a reserve location for assets. We can add it in the following format: ```Reserve: "ChainName" - Reserve: Hydration```
There is now possibility to transfer USDT and USDC between Asset Hubs through PolkadotKusama bridge. Add this feature to enhance bridge functionality. Source: https://forum.polkadot.network/t/how-to-p-k-bridge-usdt-or-usdc/15035
Remove BridgeHub and AssetHub props from getXCMFee as they are now in hops array which is much more complex and better. Also remove them from getTransferInfo result and update DryRunFailed...
When sending TEER from Integritee we use transfer assets instruction. Try to use it for other chains also (Para>AHP Native asset) for example Hydration > AHP HDX
Currently we have individually designed UIs for the tools and for sites. For easier maintenance we should create shared component set, that will just be reused and customized if needed.
Since we have dryrun bypass we do not need users to have any balance for fee checking on chains that have dryrun. In case that chain doesnt have dryrun we...
It is to be deprecated by asset object. Related to #1192