개요
kthulu에서 지원하는 4개의 메인넷(Ethereum, Cypress(Klaytn), Polygon, Bnb)을 선택하여 계정을 생성합니다.
1. 처음 kthulu 계정 생성 시 4개 메인넷을 동일한 주소 체계로 계정을 생성합니다.
2. kthulu 사용 중 메인넷을 선택하여 kthulu 계정을 추가 생성할 수 있습니다.
Parameters
Response
호출 결과 성공여부 (성공: OK, 실패: FAIL)
value (array of object)
Example
// parameter
val network = arrayOf("ethereum", "cypress", "polygon", "bnb")
val createAccounts = createAccountsAsync(network)
println(createAccounts)
// createAccounts result log
/**
{
"result": "OK",
"value": [
{
"network": "ethereum",
"account": "0x..."
},
{
"network": "cypress",
"account": "0x..."
},
{
"network": "polygon",
"account": "0x..."
},
{
"network": "bnb",
"account": "0x..."
}
]
}
*/
Parameters
Response
호출 결과 성공여부 (성공: OK, 실패: FAIL)
value (array of object)
Example
// parameters
let network = ["ethereum", "cypress", "polygon", "bnb"];
let createAccounts = try await createAccountsAsync(network: network)
print(createAccounts)
// createAccounts result log
/*
{
"result": "OK",
"value": [
{
"network": "ethereum",
"account": "0x..."
},
{
"network": "cypress",
"account": "0x..."
},
{
"network":"polygon",
"account": "0x..."
},
{
"network":"bnb",
"account": "0x..."
}
]
}
*/