This library was implemented in order to provide key generation and signing logic for queries and transactions passed to Hyperledger Iroha
For establishing connection with Hyperledger Iroha by this library you need to import the following modules into your swift project:
In this repository you can find an example project called SwiftyIrohaExample.xcodeproj
.
This project can help you to see how to establish connection with Hyperledger Iroha by using this library
Before starting you need to install the following software on you mac:
- Go into folder you want to download example project:
$cd path/to/your/folder/for/example/iroha-ios/project/
- Clone iroha-ios repository:
$git clone https://github.com/soramitsu/iroha-ios.git
- Go inside project folder:
$cd SwiftyIroha
- Install all usefull dependencies:
$carthage update --platform iOS
- Go inside example project:
$cd SwiftyIrohaExample
- Go inside
SwiftGRPC.xcodeproj
subproject folder:
$cd grpc-swift
- Build GRPC framework for using it in you ios application:
$make
- Open
SwiftyIroha.xcodeproj
project in Xcode - Go to
SwiftyIrohaExample.xcodeproj
subproject - Go to
SwiftGRPC.xcodeproj
subproject - Go to targets and remove
czlib
targets from there
Before starting you need to install the following software on you mac:
- Go to folder you want to download Hyperledger Iroha to:
$cd path/to/your/folder/for/example/iroha/project/
- Download Hyperledger Iroha on you mac:
git clone -b develop --depth=1 https://github.com/hyperledger/iroha
- Run script:
./run-iroha-dev.sh
let modelCrypto = IrohaModelCrypto()
// Generating new keypair object
let newKeypair = modelCrypto.generateKeypair()
// Setting keypair
let publicKey = IrohaPublicKey(value: "407e57f50ca48969b08ba948171bb2435e035d82cec417e18e4a38f5fb113f83")
let privateKey = IrohaPrivateKey(value: "1d7e0a32ee0affeb4d22acd73c2c6fb6bd58e266c8c2ce4fa0ffe3dd6a253ffb")
// Initializing keypair object
let existingKeypair = IrohaKeypair(publicKey: publicKey,
privateKey: privateKey)
let modelCrypto = IrohaModelCrypto()
// Generating keypair object from excisting keypair object
let newKeypair = modelCrypto.generateNewKeypair(from: existingKeypair)
let irohaTransactionBuilder = IrohaTransactionBuilder()
// Creating transaction object for Iroha
let unsignedTransaction =
try irohaTransactionBuilder
.creatorAccountId("admin@test")
.createdTime(Date())
.transactionCounter(1)
.createDomain(withDomainId: "ru", withDefaultRole: "user")
.createAssets(withAssetName: "dollar", domainId: "ru", percision: 0.1)
.build()
// Creating helper class for signing unsigned transaction object
let irohaTransactionPreparation = IrohaTransactionPreparation()
// Signing transaction and getting object which is ready for converting to GRPC object
let irohaSignedTransactionReadyForConvertingToGRPC =
irohaTransactionPreparation.sign(unsignedTransaction,
with: keypair)
// Creating GRPC transaction object from signed transaction
var irohaGRPCTransaction = Iroha_Protocol_Transaction()
do {
try irohaGRPCTransaction.merge(serializedData: irohaSignedTransactionReadyForConvertingToGRPC)
// Checking that transaction is excactly transaction that was created
print("Transaction to Iroha: \n")
print("\(try irohaGRPCTransaction.payload.jsonString()) \n")
} catch {
let nsError = error as NSError
print("\(nsError.localizedDescription) \n")
}
let serviceForSendingTransaction = Iroha_Protocol_CommandServiceService(address: "127.0.0.1:50051")
do {
try serviceForSendingTransaction.torii(irohaGRPCTransaction)
} catch {
let nsError = error as NSError
print("\(nsError.localizedDescription) \n")
}
// Creating unsigned query object
let queryBuilder = IrohaQueryBuilder()
let unsignedQuery =
try queryBuilder
.creatorAccountId("admin@test")
.createdTime(Date())
.queryCounter(1)
.getAssetInfo(byAssetsId: "dollar#ru")
.build()
// Creating helper class for signing unsigned query
let irohaQueryPreparation = IrohaQueryPreparation()
let irohaSignedQueryReadyForConvertingToGRPC =
irohaQueryPreparation.sign(unsignedQuery,
with: keypair)
var irohaGRPCQuery = Iroha_Protocol_Query()
do {
try irohaGRPCQuery.merge(serializedData: irohaSignedQueryReadyForConvertingToGRPC)
// Checking that query is excactly query that was created
print("Query to Iroha: \n")
print("\(try irohaGRPCQuery.payload.jsonString()) \n")
} catch {
let nsError = error as NSError
print("\(nsError.localizedDescription) \n")
}
let serviceForSendingQuery = Iroha_Protocol_QueryServiceService(address: "127.0.0.1:50051")
do {
let result = try serviceForSendingQuery.find(irohaGRPCQuery)
(result)
} catch {
let nsError = error as NSError
print("\(nsError.localizedDescription) \n")
}
AlexeyMukhin
- telegram: @AlexeyMukhin
- email: info@soramistu.co.jp
Copyright 2018 Soramitsu Co., Ltd.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.