Skip to content

Commit 364659c

Browse files
Remove inscriptions
1 parent 341bf5a commit 364659c

File tree

5 files changed

+10
-1096
lines changed

5 files changed

+10
-1096
lines changed

api/openapi.json

-90
Original file line numberDiff line numberDiff line change
@@ -1087,12 +1087,6 @@
10871087
"ExtraCurrencyTransfer": {
10881088
"$ref": "#/components/schemas/ExtraCurrencyTransferAction"
10891089
},
1090-
"InscriptionMint": {
1091-
"$ref": "#/components/schemas/InscriptionMintAction"
1092-
},
1093-
"InscriptionTransfer": {
1094-
"$ref": "#/components/schemas/InscriptionTransferAction"
1095-
},
10961090
"JettonBurn": {
10971091
"$ref": "#/components/schemas/JettonBurnAction"
10981092
},
@@ -1169,8 +1163,6 @@
11691163
"ElectionsRecoverStake",
11701164
"ElectionsDepositStake",
11711165
"DomainRenew",
1172-
"InscriptionTransfer",
1173-
"InscriptionMint",
11741166
"Unknown"
11751167
],
11761168
"example": "TonTransfer",
@@ -3522,88 +3514,6 @@
35223514
],
35233515
"type": "object"
35243516
},
3525-
"InscriptionMintAction": {
3526-
"properties": {
3527-
"amount": {
3528-
"description": "amount in minimal particles",
3529-
"example": "123456789",
3530-
"type": "string",
3531-
"x-js-format": "bigint"
3532-
},
3533-
"decimals": {
3534-
"example": 9,
3535-
"type": "integer"
3536-
},
3537-
"recipient": {
3538-
"$ref": "#/components/schemas/AccountAddress"
3539-
},
3540-
"ticker": {
3541-
"example": "nano",
3542-
"type": "string"
3543-
},
3544-
"type": {
3545-
"enum": [
3546-
"ton20",
3547-
"gram20"
3548-
],
3549-
"example": "ton20",
3550-
"type": "string"
3551-
}
3552-
},
3553-
"required": [
3554-
"type",
3555-
"ticker",
3556-
"recipient",
3557-
"amount",
3558-
"decimals"
3559-
],
3560-
"type": "object"
3561-
},
3562-
"InscriptionTransferAction": {
3563-
"properties": {
3564-
"amount": {
3565-
"description": "amount in minimal particles",
3566-
"example": "123456789",
3567-
"type": "string",
3568-
"x-js-format": "bigint"
3569-
},
3570-
"comment": {
3571-
"example": "Hi! This is your salary. \nFrom accounting with love.",
3572-
"type": "string"
3573-
},
3574-
"decimals": {
3575-
"example": 9,
3576-
"type": "integer"
3577-
},
3578-
"recipient": {
3579-
"$ref": "#/components/schemas/AccountAddress"
3580-
},
3581-
"sender": {
3582-
"$ref": "#/components/schemas/AccountAddress"
3583-
},
3584-
"ticker": {
3585-
"example": "nano",
3586-
"type": "string"
3587-
},
3588-
"type": {
3589-
"enum": [
3590-
"ton20",
3591-
"gram20"
3592-
],
3593-
"example": "ton20",
3594-
"type": "string"
3595-
}
3596-
},
3597-
"required": [
3598-
"sender",
3599-
"recipient",
3600-
"amount",
3601-
"type",
3602-
"ticker",
3603-
"decimals"
3604-
],
3605-
"type": "object"
3606-
},
36073517
"JettonBalance": {
36083518
"properties": {
36093519
"balance": {

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/tonkeeper/opentonapi
22

3-
go 1.22
3+
go 1.23.0
4+
45
toolchain go1.24.1
56

67
require (

0 commit comments

Comments
 (0)