各位好,我本地开启了一个remix-ide,命令行如下:
mac@macdeMacBook-Pro:~$ remix-ide
Starting Remix IDE at http://localhost:8080 and sharing /Users/mac
然后开启
remixd -s /Users/mac --remix-ide http://localhost:8080
命令行显示如下
[WARN] You may now only use ID...
...to the provider, provider not connected,网上的方法可能的原因看了好多,都没成功,求指点!!!

![屏幕截图 2023-08-02 221014.png](https://img.learnblockchain.cn...
...move中闪贷的实现
让我们阅读move官方代码库中的案例,了解sui move中如何实现闪贷。
有三个重要结构:
* FlashLender
```solidity
struct FlashLender has key {
id: UID,
/// Coins available to be lent to prospective borrowers
...