HideWallet
This function does not trigger any UI elements
Function to hide the user wallet modal via code, without user input.
Task HideWallet()
None
None
1
using Metafi.Unity;
2
3
public class GameManager : MonoBehaviour {
4
public async void HideWallet() {
5
await MetafiProvider.Instance.HideWallet();
6
}
7
}
Last modified 3mo ago