我需要使用@walletconnect/react-本机-dapp获取元问询的地址。
发布于 2022-10-11 17:40:15
下面是获取钱包地址的示例代码:
import { useWalletConnect } from "@walletconnect/react-native-dapp";
export default function fetchWalletAddress() {
const connector = useWalletConnect();
const walletAddress= connector.accounts[0]
}
https://docs.walletconnect.com/quick-start/dapps/react-native
https://stackoverflow.com/questions/73668141
复制相似问题