-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add toncenter * upd dep * toncenter->ton * toncenter->ton
- Loading branch information
1 parent
184939a
commit 7503107
Showing
10 changed files
with
263 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule emerald-grpc
updated
from 77ed85 to 6dba9b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
100 changes: 100 additions & 0 deletions
100
src/main/kotlin/io/emeraldpay/dshackle/upstream/calls/DefaultTonHttpMethods.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package io.emeraldpay.dshackle.upstream.calls | ||
|
||
import io.emeraldpay.dshackle.quorum.AlwaysQuorum | ||
import io.emeraldpay.dshackle.quorum.CallQuorum | ||
import io.emeraldpay.dshackle.upstream.ethereum.rpc.RpcException | ||
|
||
class DefaultTonHttpMethods : CallMethods { | ||
|
||
// HTTP API section | ||
private val accountHttpMethods = setOf( | ||
getMethod("/getAddressInformation"), | ||
getMethod("/getExtendedAddressInformation"), | ||
getMethod("/getWalletInformation"), | ||
getMethod("/getAddressBalance"), | ||
getMethod("/getAddressState"), | ||
getMethod("/packAddress"), | ||
getMethod("/unpackAddress"), | ||
getMethod("/getTokenData"), | ||
getMethod("/detectAddress"), | ||
) | ||
|
||
private val blockHttpMethods = setOf( | ||
getMethod("/getMasterchainInfo"), | ||
getMethod("/getMasterchainBlockSignatures"), | ||
getMethod("/getShardBlockProof"), | ||
getMethod("/getConsensusBlock"), | ||
getMethod("/lookupBlock"), | ||
getMethod("/shards"), | ||
getMethod("/getBlockHeader"), | ||
getMethod("/getOutMsgQueueSizes"), | ||
) | ||
|
||
private val transactionHttpMethods = setOf( | ||
getMethod("/getTransactions"), | ||
getMethod("/getBlockTransactions"), | ||
getMethod("/getBlockTransactionsExt"), | ||
getMethod("/tryLocateTx"), | ||
getMethod("/tryLocateResultTx"), | ||
getMethod("/tryLocateSourceTx"), | ||
) | ||
|
||
private val getConfigHttpMethods = setOf( | ||
getMethod("/getConfigParam"), | ||
getMethod("/getConfigAll"), | ||
) | ||
|
||
private val runMethodHttpMethods = setOf( | ||
postMethod("/runGetMethod"), | ||
) | ||
|
||
private val sendHttpMethods = setOf( | ||
postMethod("/sendBoc"), | ||
postMethod("/sendBocReturnHash"), | ||
postMethod("/sendQuery"), | ||
postMethod("/estimateFee"), | ||
) | ||
|
||
private val jsonRpcHttpMethods = setOf( | ||
postMethod("/jsonRPC"), | ||
) | ||
|
||
private val allowedHttpMethods: Set<String> = accountHttpMethods + | ||
blockHttpMethods + | ||
transactionHttpMethods + | ||
getConfigHttpMethods + | ||
runMethodHttpMethods + | ||
sendHttpMethods + | ||
jsonRpcHttpMethods | ||
|
||
override fun createQuorumFor(method: String): CallQuorum { | ||
return AlwaysQuorum() | ||
} | ||
|
||
override fun isCallable(method: String): Boolean { | ||
return allowedHttpMethods.contains(method) | ||
} | ||
|
||
override fun getSupportedMethods(): Set<String> { | ||
return allowedHttpMethods.toSortedSet() | ||
} | ||
|
||
override fun isHardcoded(method: String): Boolean { | ||
return false | ||
} | ||
|
||
override fun executeHardcoded(method: String): ByteArray { | ||
throw RpcException(-32601, "Method not found") | ||
} | ||
|
||
override fun getGroupMethods(groupName: String): Set<String> { | ||
return when (groupName) { | ||
"default" -> allowedHttpMethods | ||
else -> emptyList() | ||
}.toSet() | ||
} | ||
|
||
private fun getMethod(method: String) = "GET#$method" | ||
|
||
private fun postMethod(method: String) = "POST#$method" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
134 changes: 134 additions & 0 deletions
134
src/main/kotlin/io/emeraldpay/dshackle/upstream/ton/TonHttpSpecific.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,134 @@ | ||
package io.emeraldpay.dshackle.upstream.ton | ||
|
||
import com.fasterxml.jackson.core.JsonParser | ||
import com.fasterxml.jackson.databind.DeserializationContext | ||
import com.fasterxml.jackson.databind.JsonDeserializer | ||
import com.fasterxml.jackson.databind.JsonNode | ||
import com.fasterxml.jackson.module.kotlin.readValue | ||
import io.emeraldpay.dshackle.Chain | ||
import io.emeraldpay.dshackle.Global | ||
import io.emeraldpay.dshackle.config.ChainsConfig.ChainConfig | ||
import io.emeraldpay.dshackle.data.BlockContainer | ||
import io.emeraldpay.dshackle.data.BlockId | ||
import io.emeraldpay.dshackle.foundation.ChainOptions.Options | ||
import io.emeraldpay.dshackle.reader.ChainReader | ||
import io.emeraldpay.dshackle.upstream.ChainRequest | ||
import io.emeraldpay.dshackle.upstream.SingleValidator | ||
import io.emeraldpay.dshackle.upstream.Upstream | ||
import io.emeraldpay.dshackle.upstream.UpstreamAvailability | ||
import io.emeraldpay.dshackle.upstream.ValidateUpstreamSettingsResult | ||
import io.emeraldpay.dshackle.upstream.generic.AbstractPollChainSpecific | ||
import io.emeraldpay.dshackle.upstream.lowerbound.LowerBoundService | ||
import io.emeraldpay.dshackle.upstream.rpcclient.RestParams | ||
import reactor.core.publisher.Mono | ||
import java.math.BigInteger | ||
import java.time.Instant | ||
|
||
fun generateRandomString(length: Int): String { | ||
val allowedChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789" | ||
return (1..length) | ||
.map { allowedChars.random() } | ||
.joinToString("") | ||
} | ||
|
||
object TonHttpSpecific : AbstractPollChainSpecific() { | ||
override fun getFromHeader(data: ByteArray, upstreamId: String, api: ChainReader): Mono<BlockContainer> { | ||
throw NotImplementedError() | ||
} | ||
|
||
override fun listenNewHeadsRequest(): ChainRequest { | ||
throw NotImplementedError() | ||
} | ||
|
||
override fun unsubscribeNewHeadsRequest(subId: String): ChainRequest { | ||
throw NotImplementedError() | ||
} | ||
|
||
override fun lowerBoundService(chain: Chain, upstream: Upstream): LowerBoundService { | ||
return TonLowerBoundService(chain, upstream) | ||
} | ||
|
||
override fun latestBlockRequest(): ChainRequest { | ||
return ChainRequest("GET#/getMasterchainInfo", RestParams.emptyParams()) | ||
} | ||
|
||
override fun parseBlock(data: ByteArray, upstreamId: String, api: ChainReader): Mono<BlockContainer> { | ||
val blockHeader = Global.objectMapper.readValue<TonMasterchainInfo>(data) | ||
|
||
return Mono.just( | ||
BlockContainer( | ||
height = blockHeader.result.last.seqno, | ||
hash = BlockId.fromBase64(blockHeader.result.last.root_hash), | ||
difficulty = BigInteger.ZERO, | ||
timestamp = Instant.EPOCH, | ||
full = false, | ||
json = data, | ||
parsed = blockHeader, | ||
transactions = emptyList(), | ||
upstreamId = upstreamId, | ||
parentHash = BlockId.fromBase64(generateRandomString(32)), | ||
), | ||
) | ||
} | ||
|
||
override fun upstreamValidators( | ||
chain: Chain, | ||
upstream: Upstream, | ||
options: Options, | ||
config: ChainConfig, | ||
): List<SingleValidator<UpstreamAvailability>> { | ||
return emptyList() | ||
} | ||
|
||
override fun upstreamSettingsValidators( | ||
chain: Chain, | ||
upstream: Upstream, | ||
options: Options, | ||
config: ChainConfig, | ||
): List<SingleValidator<ValidateUpstreamSettingsResult>> { | ||
// add check generic block | ||
return emptyList() | ||
} | ||
} | ||
|
||
data class TonMasterchainInfoResultLast( | ||
val workchain: Int, | ||
val shard: String, | ||
val seqno: Long, | ||
val root_hash: String, | ||
val file_hash: String, | ||
) | ||
|
||
data class TonMasterchainInfoResult( | ||
val last: TonMasterchainInfoResultLast, | ||
) | ||
|
||
data class TonMasterchainInfo( | ||
val ok: Boolean, | ||
val result: TonMasterchainInfoResult, | ||
) | ||
|
||
class TonMasterchainInfoDeserializer : JsonDeserializer<TonMasterchainInfo>() { | ||
override fun deserialize(p: JsonParser, ctxt: DeserializationContext): TonMasterchainInfo { | ||
val node = p.readValueAsTree<JsonNode>() | ||
val ok = node["ok"].booleanValue() | ||
val workchain = node["result"]["last"]["workchain"].intValue() | ||
val shard = node["result"]["last"]["shard"].textValue() | ||
val seqno = node["result"]["last"]["seqno"].longValue() | ||
val root_hash = node["result"]["last"]["root_hash"].textValue() | ||
val file_hash = node["result"]["last"]["file_hash"].textValue() | ||
|
||
return TonMasterchainInfo( | ||
ok, | ||
TonMasterchainInfoResult( | ||
TonMasterchainInfoResultLast( | ||
workchain, | ||
shard, | ||
seqno, | ||
root_hash, | ||
file_hash, | ||
), | ||
), | ||
) | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
src/main/kotlin/io/emeraldpay/dshackle/upstream/ton/TonLowerBoundService.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package io.emeraldpay.dshackle.upstream.ton | ||
|
||
import io.emeraldpay.dshackle.Chain | ||
import io.emeraldpay.dshackle.upstream.Upstream | ||
import io.emeraldpay.dshackle.upstream.lowerbound.LowerBoundDetector | ||
import io.emeraldpay.dshackle.upstream.lowerbound.LowerBoundService | ||
|
||
class TonLowerBoundService( | ||
chain: Chain, | ||
upstream: Upstream, | ||
) : LowerBoundService(chain, upstream) { | ||
override fun detectors(): List<LowerBoundDetector> { | ||
return listOf() | ||
} | ||
} |