@@ -3262,7 +3262,8 @@ components:
32623262 - $ref : ' #/components/schemas/NftCollectionData'
32633263 - $ref : ' #/components/schemas/NftItemData'
32643264 - $ref : ' #/components/schemas/MasterchainInfo'
3265- - $ref : ' #/components/schemas/MasterchainBlockSignatures'
3265+ - $ref : ' #/components/schemas/BlockSignatures'
3266+ - $ref : ' #/components/schemas/BlockSignaturesSimplex'
32663267 - $ref : ' #/components/schemas/ShardBlockProof'
32673268 - $ref : ' #/components/schemas/ConsensusBlock'
32683269 - $ref : ' #/components/schemas/TonBlockIdExt'
@@ -3293,7 +3294,8 @@ components:
32933294 ' ext.tokens.nftCollectionData ' : ' #/components/schemas/NftCollectionData'
32943295 ' ext.tokens.nftItemData ' : ' #/components/schemas/NftItemData'
32953296 ' blocks.masterchainInfo ' : ' #/components/schemas/MasterchainInfo'
3296- ' blocks.blockSignatures ' : ' #/components/schemas/MasterchainBlockSignatures'
3297+ ' blocks.blockSignatures ' : ' #/components/schemas/BlockSignatures'
3298+ ' blocks.blockSignatures.simplex ' : ' #/components/schemas/BlockSignaturesSimplex'
32973299 ' blocks.shardBlockProof ' : ' #/components/schemas/ShardBlockProof'
32983300 ' ext.blocks.consensusBlock ' : ' #/components/schemas/ConsensusBlock'
32993301 ' ton.blockIdExt ' : ' #/components/schemas/TonBlockIdExt'
@@ -3607,7 +3609,7 @@ components:
36073609 - last
36083610 - state_root_hash
36093611 - init
3610- MasterchainBlockSignatures :
3612+ BlockSignatures :
36113613 type : object
36123614 additionalProperties : false
36133615 properties :
@@ -3626,6 +3628,44 @@ components:
36263628 - ' @type'
36273629 - id
36283630 - signatures
3631+ BlockSignaturesSimplex :
3632+ type : object
3633+ additionalProperties : false
3634+ properties :
3635+ ' @type ' :
3636+ type : string
3637+ enum :
3638+ - blocks.blockSignatures.simplex
3639+ default : blocks.blockSignatures.simplex
3640+ id :
3641+ $ref : ' #/components/schemas/TonBlockIdExt'
3642+ signatures :
3643+ type : array
3644+ items :
3645+ $ref : ' #/components/schemas/BlockSignature'
3646+ session_id :
3647+ $ref : ' #/components/schemas/TonHash'
3648+ slot :
3649+ type : integer
3650+ format : int32
3651+ candidate :
3652+ $ref : ' #/components/schemas/Bytes'
3653+ required :
3654+ - ' @type'
3655+ - id
3656+ - signatures
3657+ - session_id
3658+ - slot
3659+ - candidate
3660+ MasterchainBlockSignatures :
3661+ oneOf :
3662+ - $ref : ' #/components/schemas/BlockSignatures'
3663+ - $ref : ' #/components/schemas/BlockSignaturesSimplex'
3664+ discriminator :
3665+ propertyName : ' @type'
3666+ mapping :
3667+ blocks.blockSignatures : ' #/components/schemas/BlockSignatures'
3668+ blocks.blockSignatures.simplex : ' #/components/schemas/BlockSignaturesSimplex'
36293669 ShardBlockProof :
36303670 type : object
36313671 additionalProperties : false
0 commit comments