Vladyslav Lupashevskyi
Vladyslav Lupashevskyi
QBFT algorithm seems the preferred one to be used among IBFT, IBFT2 and QBFT on both Besu and GoQuorum clients. However there are no plans to add support for IBFT2...
Here is the example: ```swift import SwiftUI import CodeScanner struct Example: View { @State private var showQr = false var body: some View { NavigationView { VStack { NavigationLink(destination: QR(),...
Here is the example of request made to a normal Ethereum client: ```shell curl -X POST --data '{"jsonrpc":"2.0","method": "eth_getStorageAt","params": ["0xC62ad447cb9Ccb9875935B438A1520662a7B863a","0x123123123","latest"],"id": 53}' http://127.0.0.1:8545 { "jsonrpc" : "2.0", "id" : 53, "result"...