Swift Protocol
protocol WalletOnChain
associatedtype SpecificChain : AnyChain
func fund(token: CryptoCurrency, amount: Int, on chain: Self.SpecificChain) async throws(WalletError)
func nfts(page: Int, nftsPerPage: Int, on chain: Self.SpecificChain) async throws(WalletError) -> [NFT]
Was this page helpful?