Skip to content

Instantly share code, notes, and snippets.

View jelilat's full-sized avatar

Jelilat Anofiu jelilat

View GitHub Profile
type BankKeeper interface {
SpendableCoins(ctx sdk.Context, addr sdk.AccAddress) sdk.Coins
SendCoinsFromAccountToModule(ctx sdk.Context, senderAddr sdk.AccAddress, recipientModule string, amt sdk.Coins) error
SendCoinsFromModuleToAccount(ctx sdk.Context, senderModule string, recipientAddr sdk.AccAddress, amt sdk.Coins) error
}
using System.Collections;
using System.Numerics;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class ERC721BalanceOfExample : MonoBehaviour
{
public GameObject insufficient;
async void Start()