Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

Swift: Cannot convert return expression of type 'Promise<Int>' to return type 'Int'

I try to return data from an ERC20 Token in Ganache and show it in my SwiftUI View(). To do so I wanted to use PromiseKit. The following code describes what I want to do:

func getTotalSupply(contractAddress: String) -> Int {
        let address = try! EthereumAddress(hex: contractAddress, eip55: true)
        let contract = web3.eth.Contract(type: erc20Token.self, address: address)
        
        return firstly {
            try! contract.totalSupply().call()
        }.map { supply -> Int in
            let value = supply["_totalSupply"] as! Int
            return value
        }
    }

I receive the following error at the .map operation:

Cannot convert return expression of type 'Promise<Int>' to return type 'Int'

I could return Promise<Int> from the function, but I can't display a Promise in my View(). How do I turn a Promise<Int> into an Int? I tried to google this for several hours, but I am still clueless.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...