@@ -54657,6 +54657,48 @@ components:
5465754657 properties: {}
5465854658 - $ref: '#/components/schemas/EnableTokenIntent'
5465954659 - $ref: '#/components/schemas/SolBuildOptions'
54660+ SolCustomTxIntent:
54661+ title: SOL Custom Transaction Intent
54662+ allOf:
54663+ - type: object
54664+ properties:
54665+ intentType:
54666+ type: string
54667+ enum:
54668+ - customTx
54669+ solInstructions:
54670+ type: array
54671+ items:
54672+ type: object
54673+ properties:
54674+ programId:
54675+ type: string
54676+ keys:
54677+ type: array
54678+ items:
54679+ type: object
54680+ properties:
54681+ pubkey:
54682+ type: string
54683+ isSigner:
54684+ type: boolean
54685+ isWritable:
54686+ type: boolean
54687+ required:
54688+ - pubkey
54689+ - isSigner
54690+ - isWritable
54691+ data:
54692+ type: string
54693+ required:
54694+ - programId
54695+ - keys
54696+ - data
54697+ required:
54698+ - intentType
54699+ - solInstructions
54700+ - $ref: '#/components/schemas/BaseIntent'
54701+ - $ref: '#/components/schemas/SolBuildOptions'
5466054702 SolDeactivateIntent:
5466154703 title: SOL Deactivate Intent
5466254704 allOf:
@@ -54723,9 +54765,17 @@ components:
5472354765 $ref: '#/components/schemas/Amount'
5472454766 isMarinade:
5472554767 type: boolean
54768+ deprecated: true
54769+ stakingType:
54770+ type: string
54771+ enum:
54772+ - NATIVE
54773+ - MARINADE
54774+ - JITO
5472654775 required:
5472754776 - validatorAddress
5472854777 - amount
54778+ - stakingType
5472954779 - $ref: '#/components/schemas/StakeIntent'
5473054780 - $ref: '#/components/schemas/SolBuildOptions'
5473154781 SolStakeIntent1:
@@ -54843,6 +54893,13 @@ components:
5484354893 - value
5484454894 isMarinade:
5484554895 type: boolean
54896+ deprecated: true
54897+ stakingType:
54898+ type: string
54899+ enum:
54900+ - NATIVE
54901+ - MARINADE
54902+ - JITO
5484654903 recipients:
5484754904 type: array
5484854905 items:
@@ -57046,6 +57103,7 @@ components:
5704657103 - $ref: '#/components/schemas/SolCloseAssociatedTokenAccountIntent'
5704757104 - $ref: '#/components/schemas/SolConsolidateIntent'
5704857105 - $ref: '#/components/schemas/SolCreateAssociatedTokenAccountIntent'
57106+ - $ref: '#/components/schemas/SolCustomTxIntent'
5704957107 - $ref: '#/components/schemas/SolDeactivateIntent'
5705057108 - $ref: '#/components/schemas/SolDelegateIntent'
5705157109 - $ref: '#/components/schemas/SolGoUnstakeIntent'
@@ -57067,6 +57125,7 @@ components:
5706757125 - $ref: '#/components/schemas/TonDelegateIntent'
5706857126 - $ref: '#/components/schemas/TonPaymentIntent'
5706957127 - $ref: '#/components/schemas/TonUndelegateIntent'
57128+ - $ref: '#/components/schemas/VetStakingIntent'
5707057129 - $ref: '#/components/schemas/WalletRecoveryIntent'
5707157130 - $ref: '#/components/schemas/BaseStakeIntentWithCalldata'
5707257131 - $ref: '#/components/schemas/CoreDaoDelegateIntent'
@@ -62479,6 +62538,22 @@ components:
6247962538 required:
6248062539 - webhookId
6248162540 - isValid
62541+ VetStakingIntent:
62542+ title: VET Staking Intent
62543+ allOf:
62544+ - type: object
62545+ properties:
62546+ amount:
62547+ $ref: '#/components/schemas/Amount'
62548+ stakingContractAddress:
62549+ type: string
62550+ minLength: 1
62551+ nftTokenId:
62552+ $ref: '#/components/schemas/optionalString'
62553+ required:
62554+ - amount
62555+ - stakingContractAddress
62556+ - $ref: '#/components/schemas/StakeIntent'
6248262557 VideoApprovers:
6248362558 type: array
6248462559 items:
@@ -63218,6 +63293,7 @@ components:
6321863293 - solOfcStaking
6321963294 - suiOfcStaking
6322063295 - enableWalletConnect
63296+ - enableSolCustomTx
6322163297 WalletId:
6322263298 type: string
6322363299 example: 59cd72485007a239fb00282ed480da1f
0 commit comments