> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Historique des Transactions Analysées

> Récupérez l'historique des transactions analysées pour une adresse avec les Événements Analysés.

Le corps de la requête, le schéma de réponse et les exemples sur cette page sont générés à partir de la définition OpenAPI.

Cette page documente la requête REST. La même méthode est également disponible en GraphQL comme `transactionsByAddress`.

Chaque élément dans `data` utilise la même forme `TransactionResult` retournée par [Analyser les Transactions](/docs/fr/api-reference/parsed-events/transactions); cette méthode ne fait qu'envelopper les résultats dans un objet page et ajoute `paginationToken` lorsqu'une autre page est disponible.

## Remarques

* `address` est requis. Les analyses à l'échelle du programme ne sont pas prises en charge.

## Paramètres de la Requête

<ParamField body="address" type="string" required>
  Adresse dont l'historique des transactions doit être récupéré.
</ParamField>

<ParamField body="limit" type="number" default="100">
  Nombre de transactions à retourner.
</ParamField>

<ParamField body="beforeSignature" type="string">
  Retourner les transactions avant cette signature.
</ParamField>

<ParamField body="afterSignature" type="string">
  Retourner les transactions après cette signature.
</ParamField>

<ParamField body="paginationToken" type="string">
  Curseur retourné par une page précédente. La forme est `slot:transactionIndex`.
</ParamField>

<ParamField body="sortOrder" type="string" default="desc">
  Ordre de tri pour les transactions retournées.

  * `asc`
  * `desc`
</ParamField>

<ParamField body="commitment" type="string" default="confirmed">
  Niveau d'engagement utilisé pour la récupération de l'historique. `processed` n'est pas pris en charge.

  * `confirmed`
  * `finalized`
</ParamField>

<ParamField body="includeRawTransaction" type="boolean" default="false">
  Inclure les charges utiles brutes de transactions Solana comme `rawTransaction` sur chaque résultat réussi.
</ParamField>

<ParamField body="slot" type="object">
  Limites de comparaison de slots. Chaque limite est optionnelle.
</ParamField>

<ParamField body="slot.gt" type="number">
  Faire correspondre les valeurs supérieures à cette valeur.
</ParamField>

<ParamField body="slot.gte" type="number">
  Faire correspondre les valeurs supérieures ou égales à cette valeur.
</ParamField>

<ParamField body="slot.lt" type="number">
  Faire correspondre les valeurs inférieures à cette valeur.
</ParamField>

<ParamField body="slot.lte" type="number">
  Faire correspondre les valeurs inférieures ou égales à cette valeur.
</ParamField>

<ParamField body="time" type="object">
  Limites de comparaison de l'heure de bloc en secondes Unix. Chaque limite est optionnelle.
</ParamField>

<ParamField body="time.gt" type="number">
  Faire correspondre les valeurs supérieures à cette valeur.
</ParamField>

<ParamField body="time.gte" type="number">
  Faire correspondre les valeurs supérieures ou égales à cette valeur.
</ParamField>

<ParamField body="time.lt" type="number">
  Faire correspondre les valeurs inférieures à cette valeur.
</ParamField>

<ParamField body="time.lte" type="number">
  Faire correspondre les valeurs inférieures ou égales à cette valeur.
</ParamField>


## OpenAPI

````yaml fr/openapi/parsed-events.yaml POST /v1/parsed-events/transaction-history
openapi: 3.0.3
info:
  title: Événements Analysés
  version: 0.1.0
  description: >-
    Analysez les transactions Solana et l'historique des transactions analysées
    avec les Événements Analysés.
servers:
  - url: https://mainnet.helius-rpc.com
security:
  - ApiKeyQuery: []
paths:
  /v1/parsed-events/transaction-history:
    post:
      tags:
        - Événements Analysés
      summary: Historique des Transactions Analysées
      description: >-
        Récupérez l'historique des transactions analysées pour une adresse avec
        pagination et filtres optionnels.
      operationId: getParsedTransactionHistory
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TransactionHistoryRequest'
            examples:
              default:
                value:
                  address: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                  limit: 100
                  sortOrder: desc
                  commitment: confirmed
      responses:
        '200':
          description: Une page de résultats de transaction analysés.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TransactionPage'
              examples:
                default:
                  value:
                    data:
                      - signature: >-
                          5xSKzM8bvpudE521jikHqASzMr23Ms4X4ieY3K8oFPFrJWCSSgYocJmHznrR8b12voDxKDH8ykdCLXSRrx6duVLH
                        parserStatus: OK
                        parsed:
                          slot: 433950192
                          blockTime: 1784487060
                          fee: 2005000
                          feePayer: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                          transactionStatus: OK
                          error: null
                          decodedError: null
                          nativeTransfers:
                            - fromUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              toUserAccount: teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              amount: 2039280
                            - fromUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              toUserAccount: teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              amount: 1500000000000
                            - fromUserAccount: teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              toUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              amount: 2039280
                          tokenTransfers:
                            - fromUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              toTokenAccount: 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                              rawTokenAmount: 1498500000000
                              decimals: 9
                              tokenStandard: Fungible
                              mint: So11111111111111111111111111111111111111112
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: 8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                              fromTokenAccount: 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                              toTokenAccount: ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                              rawTokenAmount: 470229300000
                              decimals: 9
                              tokenStandard: Fungible
                              mint: So11111111111111111111111111111111111111112
                            - fromUserAccount: 8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: 2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                              toTokenAccount: EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                              rawTokenAmount: 35579021038
                              decimals: 6
                              tokenStandard: Fungible
                              mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              fromTokenAccount: 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                              toTokenAccount: 5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                              rawTokenAmount: 1028270700000
                              decimals: 9
                              tokenStandard: Fungible
                              mint: So11111111111111111111111111111111111111112
                            - fromUserAccount: 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                              toTokenAccount: EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                              rawTokenAmount: 77798063361
                              decimals: 6
                              tokenStandard: Fungible
                              mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                            - fromUserAccount: HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: 7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                              toTokenAccount: 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                              rawTokenAmount: 8348494812168
                              decimals: 6
                              tokenStandard: Fungible
                              mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                              fromTokenAccount: EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                              toTokenAccount: Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                              rawTokenAmount: 14625643887
                              decimals: 6
                              tokenStandard: Fungible
                              mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              fromTokenAccount: EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                              toTokenAccount: 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                              rawTokenAmount: 35566391375
                              decimals: 6
                              tokenStandard: Fungible
                              mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                            - fromUserAccount: 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                              toTokenAccount: 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                              rawTokenAmount: 20283004384731
                              decimals: 6
                              tokenStandard: Fungible
                              mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: 2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                              fromTokenAccount: EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                              toTokenAccount: CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                              rawTokenAmount: 63185049137
                              decimals: 6
                              tokenStandard: Fungible
                              mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                            - fromUserAccount: 2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: 8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                              toTokenAccount: 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                              rawTokenAmount: 36041340065051
                              decimals: 6
                              tokenStandard: Fungible
                              mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                            - fromUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              toUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              fromTokenAccount: teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              toTokenAccount: 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                              rawTokenAmount: 1500000000
                              decimals: 9
                              tokenStandard: Fungible
                              mint: So11111111111111111111111111111111111111112
                            - fromUserAccount: 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              toUserAccount: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              fromTokenAccount: 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                              toTokenAccount: 3zExK5UQLkARi2KAAFUTvZAtNZ8P3BDiCHy3g6CMQSCH
                              rawTokenAmount: 64672839261950
                              decimals: 6
                              tokenStandard: Fungible
                              mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                          summary:
                            type: swap
                            description: >-
                              GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              swapped 1500 SOL for 64672839.26195
                              pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn via
                              Jupiter
                            parsedData:
                              type: swap
                              protocol: jupiter
                              kind: swap
                              in_amount: '1500000000000'
                              actual_out_amount: '64672839261950'
                              input_mint: So11111111111111111111111111111111111111112
                              output_mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                              inner_swaps:
                                - amm_program_id: ''
                                  amm_program_name: null
                                  input_amount: '470229300000'
                                  output_amount: '35579021038'
                                  input_mint: So11111111111111111111111111111111111111112
                                  output_mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - amm_program_id: ''
                                  amm_program_name: null
                                  input_amount: '1028270700000'
                                  output_amount: '77798063361'
                                  input_mint: So11111111111111111111111111111111111111112
                                  output_mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - amm_program_id: ''
                                  amm_program_name: null
                                  input_amount: '14625643887'
                                  output_amount: '8348494812168'
                                  input_mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                  output_mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - amm_program_id: ''
                                  amm_program_name: null
                                  input_amount: '35566391375'
                                  output_amount: '20283004384731'
                                  input_mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                  output_mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - amm_program_id: ''
                                  amm_program_name: null
                                  input_amount: '63185049137'
                                  output_amount: '36041340065051'
                                  input_mint: EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                  output_mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                          instructions:
                            - instructionIndex: 0
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: ComputeBudget111111111111111111111111111111
                              rawAccounts: []
                              rawData: Fjerkw
                              summary: null
                              programName: compute_budget
                              instructionName: set_compute_unit_limit
                              decoded:
                                args:
                                  units: '621120'
                                accounts: []
                            - instructionIndex: 1
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: ComputeBudget111111111111111111111111111111
                              rawAccounts: []
                              rawData: 3Gzasiiu42B1
                              summary: null
                              programName: compute_budget
                              instructionName: set_compute_unit_price
                              decoded:
                                args:
                                  micro_lamports: '3219989'
                                accounts: []
                            - instructionIndex: 2
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: ATokenGPvbdGVxr1b2hvZbsiqW5xWH25efTNsLJA8knL
                              rawAccounts:
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - So11111111111111111111111111111111111111112
                                - '11111111111111111111111111111111'
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawData: '2'
                              summary:
                                type: create_token_account
                                description: >-
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                  created or reused associated token account
                                  teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                  for
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                  and mint SOL
                                parsedData: null
                              programName: associated_token_account
                              instructionName: create_idempotent
                              decoded:
                                args: {}
                                accounts:
                                  - name: funding_account
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: true
                                  - name: associated_token_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: wallet_owner
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: false
                                    isWritable: false
                                  - name: token_mint
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                                  - name: system_program
                                    pubkey: '11111111111111111111111111111111'
                                    isSigner: false
                                    isWritable: false
                                  - name: token_program
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                            - instructionIndex: 2
                              innerInstructionIndex: 0
                              stackHeight: 2
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - So11111111111111111111111111111111111111112
                              rawData: 84eT
                              summary: null
                              programName: token
                              instructionName: get_account_data_size
                              decoded:
                                args:
                                  extension_types:
                                    - immutableOwner
                                accounts:
                                  - name: mint
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                            - instructionIndex: 2
                              innerInstructionIndex: 1
                              stackHeight: 2
                              programId: '11111111111111111111111111111111'
                              rawAccounts:
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              rawData: >-
                                11119os1e9qSs2u7TsThXqkBSRVFxhmYaFKFZ1waB2X7armDmvK3p5GmLdUxYdg3h7QSrL
                              summary:
                                type: create_account
                                description: >-
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                  created account
                                  teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                  with 0.00203928 SOL
                                parsedData: null
                              programName: system
                              instructionName: create_account
                              decoded:
                                args:
                                  lamports: '2039280'
                                  space: '165'
                                  owner: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                accounts:
                                  - name: funding_account
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: true
                                  - name: new_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: true
                                    isWritable: true
                            - instructionIndex: 2
                              innerInstructionIndex: 2
                              stackHeight: 2
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              rawData: P
                              summary: null
                              programName: token
                              instructionName: initialize_immutable_owner
                              decoded:
                                args: {}
                                accounts:
                                  - name: account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                            - instructionIndex: 2
                              innerInstructionIndex: 3
                              stackHeight: 2
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - So11111111111111111111111111111111111111112
                              rawData: 6cco9QxumGshebSrtFYmy2J2WQJQhQh76spDgpteJvLVz
                              summary: null
                              programName: token
                              instructionName: initialize_account_3
                              decoded:
                                args:
                                  owner: GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                accounts:
                                  - name: account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                            - instructionIndex: 3
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: '11111111111111111111111111111111'
                              rawAccounts:
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              rawData: 3Bxs3zxTTdpWmq6F
                              summary:
                                type: transfer
                                description: >-
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                  transferred 1500 SOL to
                                  teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                parsedData: null
                              programName: system
                              instructionName: transfer
                              decoded:
                                args:
                                  lamports: '1500000000000'
                                accounts:
                                  - name: funding_account
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: true
                                  - name: recipient_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                            - instructionIndex: 4
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                              rawData: J
                              summary: null
                              programName: token
                              instructionName: sync_native
                              decoded:
                                args: {}
                                accounts:
                                  - name: account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                            - instructionIndex: 5
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                              rawAccounts:
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - 3zExK5UQLkARi2KAAFUTvZAtNZ8P3BDiCHy3g6CMQSCH
                                - So11111111111111111111111111111111111111112
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - D8cy77BBepLMngZx6ZukaTff5hCt1HrWyKk3Hnd9oitf
                                - JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - BiSoNHVpsVZW2F7rx2eQ59yQwKxzU5NvBcmKshCSUypi
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                - ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                                - 2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                                - JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                - TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                - FLckHLGMJy5gEoXWwcE68Nprde1D4araK4TGLw4pQq2n
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - So11111111111111111111111111111111111111112
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - 9H6tua7jkLhdm3w8BvgpTn5LZNU7g4ZynDmCiNN3q6Rp
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                - 7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                                - Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - SysvarC1ock11111111111111111111111111111111
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - 54adW7pE7EhJEeY3tWjjZdjQpDqUEPym7aqbtkKUhtpB
                                - J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                                - JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                - TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                - DNhfyh75AApg1L1Yig3fErvERKutYRqfWLGb496iViSZ
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - SV2EYYJyRz2YhfXwXnhNAevDEui5Q6yrfyo13WtupPF
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                - 5VTjvi4XhRCXUSitDGJXVp5iZpU2sypNAT5EvEvaXR6j
                                - FmxXDSR9WvpJTCh738D1LEDuhMoA8geCtZgHb3isy7Dp
                                - 8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                                - CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - jitodontfront1111111111111111JustUseJupiter
                              rawData: >-
                                EeywBCBUyt2UqWRr9dkk18hiFZLpJsNXr55SumWRJgYdSndesPnocicAKZC7TRLScLbHDozhWdGmBmnxkVSHdq2CCuQqCRsufHSk
                              summary:
                                type: swap
                                description: >-
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                  swapped 1500 SOL for 64672839.26195
                                  pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  via Jupiter
                                parsedData:
                                  type: swap
                                  protocol: jupiter
                                  kind: swap
                                  in_amount: '1500000000000'
                                  actual_out_amount: '64672839261950'
                                  input_mint: So11111111111111111111111111111111111111112
                                  output_mint: pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  inner_swaps:
                                    - amm_program_id: ''
                                      amm_program_name: null
                                      input_amount: '470229300000'
                                      output_amount: '35579021038'
                                      input_mint: >-
                                        So11111111111111111111111111111111111111112
                                      output_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    - amm_program_id: ''
                                      amm_program_name: null
                                      input_amount: '1028270700000'
                                      output_amount: '77798063361'
                                      input_mint: >-
                                        So11111111111111111111111111111111111111112
                                      output_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    - amm_program_id: ''
                                      amm_program_name: null
                                      input_amount: '14625643887'
                                      output_amount: '8348494812168'
                                      input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    - amm_program_id: ''
                                      amm_program_name: null
                                      input_amount: '35566391375'
                                      output_amount: '20283004384731'
                                      input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    - amm_program_id: ''
                                      amm_program_name: null
                                      input_amount: '63185049137'
                                      output_amount: '36041340065051'
                                      input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                              programName: jupiter
                              instructionName: shared_accounts_route_v2
                              decoded:
                                args:
                                  id: 15
                                  in_amount: '1500000000000'
                                  quoted_out_amount: '64617910616929'
                                  slippage_bps: 2200
                                  platform_fee_bps: 10
                                  positive_slippage_bps: 0
                                  route_plan:
                                    - swap:
                                        BisonFiV2:
                                          a_to_b: true
                                      bps: 3138
                                      input_index: 0
                                      output_index: 2
                                    - swap:
                                        TesseraV:
                                          side: Ask
                                      bps: 6862
                                      input_index: 0
                                      output_index: 2
                                    - swap:
                                        HumidiFiV2:
                                          swap_id: '11718164177379775675'
                                          is_base_to_quote: false
                                      bps: 1290
                                      input_index: 2
                                      output_index: 5
                                    - swap:
                                        TesseraV:
                                          side: Bid
                                      bps: 3137
                                      input_index: 2
                                      output_index: 5
                                    - swap:
                                        SolFiV2:
                                          is_quote_to_base: true
                                      bps: 5573
                                      input_index: 2
                                      output_index: 5
                                accounts:
                                  - name: program_authority
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: user_transfer_authority
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: false
                                  - name: source_token_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: program_source_token_account
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: true
                                  - name: program_destination_token_account
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_token_account
                                    pubkey: >-
                                      3zExK5UQLkARi2KAAFUTvZAtNZ8P3BDiCHy3g6CMQSCH
                                    isSigner: false
                                    isWritable: true
                                  - name: source_mint
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_mint
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: source_token_program
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_token_program
                                    pubkey: >-
                                      TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                    isSigner: false
                                    isWritable: false
                                  - name: event_authority
                                    pubkey: >-
                                      D8cy77BBepLMngZx6ZukaTff5hCt1HrWyKk3Hnd9oitf
                                    isSigner: false
                                    isWritable: false
                                  - name: program
                                    pubkey: >-
                                      JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount1
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount2
                                    pubkey: >-
                                      BiSoNHVpsVZW2F7rx2eQ59yQwKxzU5NvBcmKshCSUypi
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount3
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount4
                                    pubkey: >-
                                      8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount5
                                    pubkey: >-
                                      ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount6
                                    pubkey: >-
                                      2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount7
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount8
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount9
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount10
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount11
                                    pubkey: >-
                                      Sysvar1nstructions1111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount12
                                    pubkey: >-
                                      J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount13
                                    pubkey: >-
                                      JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount14
                                    pubkey: >-
                                      TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount15
                                    pubkey: >-
                                      8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount16
                                    pubkey: >-
                                      FLckHLGMJy5gEoXWwcE68Nprde1D4araK4TGLw4pQq2n
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount17
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount18
                                    pubkey: >-
                                      5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount19
                                    pubkey: >-
                                      9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount20
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount21
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount22
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount23
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount24
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount25
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount26
                                    pubkey: >-
                                      Sysvar1nstructions1111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount27
                                    pubkey: >-
                                      9H6tua7jkLhdm3w8BvgpTn5LZNU7g4ZynDmCiNN3q6Rp
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount28
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount29
                                    pubkey: >-
                                      HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount30
                                    pubkey: >-
                                      7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount31
                                    pubkey: >-
                                      Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount32
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount33
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount34
                                    pubkey: >-
                                      SysvarC1ock11111111111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount35
                                    pubkey: >-
                                      TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount36
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount37
                                    pubkey: >-
                                      Sysvar1nstructions1111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount38
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount39
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount40
                                    pubkey: >-
                                      54adW7pE7EhJEeY3tWjjZdjQpDqUEPym7aqbtkKUhtpB
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount41
                                    pubkey: >-
                                      J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount42
                                    pubkey: >-
                                      JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount43
                                    pubkey: >-
                                      TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount44
                                    pubkey: >-
                                      8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount45
                                    pubkey: >-
                                      DNhfyh75AApg1L1Yig3fErvERKutYRqfWLGb496iViSZ
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount46
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount47
                                    pubkey: >-
                                      FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount48
                                    pubkey: >-
                                      9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount49
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount50
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount51
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount52
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount53
                                    pubkey: >-
                                      TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount54
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount55
                                    pubkey: >-
                                      Sysvar1nstructions1111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount56
                                    pubkey: >-
                                      SV2EYYJyRz2YhfXwXnhNAevDEui5Q6yrfyo13WtupPF
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount57
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount58
                                    pubkey: >-
                                      2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount59
                                    pubkey: >-
                                      5VTjvi4XhRCXUSitDGJXVp5iZpU2sypNAT5EvEvaXR6j
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount60
                                    pubkey: >-
                                      FmxXDSR9WvpJTCh738D1LEDuhMoA8geCtZgHb3isy7Dp
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount61
                                    pubkey: >-
                                      8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount62
                                    pubkey: >-
                                      CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount63
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount64
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount65
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount66
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount67
                                    pubkey: >-
                                      TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount68
                                    pubkey: >-
                                      TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount69
                                    pubkey: >-
                                      Sysvar1nstructions1111111111111111111111111
                                    isSigner: false
                                    isWritable: false
                                  - name: remainingAccount70
                                    pubkey: >-
                                      jitodontfront1111111111111111JustUseJupiter
                                    isSigner: false
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 0
                              stackHeight: 2
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              rawData: 3DXZcoNwkq9y
                              summary: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '1498500000000'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 1
                              stackHeight: 2
                              programId: BiSoNHVpsVZW2F7rx2eQ59yQwKxzU5NvBcmKshCSUypi
                              rawAccounts:
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                - ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                                - 2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                              rawData: 67t827t7UwAMHa6U18HnBBLj
                              summary: null
                              programName: bison_fi
                              instructionName: null
                              decoded: null
                            - instructionIndex: 5
                              innerInstructionIndex: 2
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: 3JvpRSxKFyKV
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 470.2293 SOL from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                parsedData: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '470229300000'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      ATRsNGv2nDw7hSMfkUTBoVUDsFDwN7po7KbecyiGWNB4
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 3
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - 2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - 8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                              rawData: 3uPzMwGzERrF
                              summary:
                                type: transfer
                                description: >-
                                  8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                  transferred 35579.021038 USDC from
                                  8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                  to
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                parsedData: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '35579021038'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      2Y7HATmn9aJBcxCskE5V2U2epmjvkZmB51zTJBbhj4cU
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      8FnX3xo2yYw3EUE6w3nQA4GfXGS9wpK6oj3veJpbFzLo
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 4
                              stackHeight: 2
                              programId: TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                              rawAccounts:
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                - FLckHLGMJy5gEoXWwcE68Nprde1D4araK4TGLw4pQq2n
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - So11111111111111111111111111111111111111112
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                              rawData: fWUzhpvduXjqwECMumb5Q439
                              summary: null
                              programName: tessera_v
                              instructionName: null
                              decoded: null
                            - instructionIndex: 5
                              innerInstructionIndex: 5
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - So11111111111111111111111111111111111111112
                                - 5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: ixqsxabQN7FR2
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 1028.2707 SOL from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                parsedData: null
                              programName: token
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '1028270700000'
                                  decimals: 9
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      So11111111111111111111111111111111111111112
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      5pVN5XZB8cYBjNLFrsBCPWkCQBan5K5Mq2dWGzwPgGJV
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 6
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              rawData: g7s13FXCpEvYu
                              summary:
                                type: transfer
                                description: >-
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                  transferred 77798.063361 USDC from
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                  to
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                parsedData: null
                              programName: token
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '77798063361'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 7
                              stackHeight: 2
                              programId: 9H6tua7jkLhdm3w8BvgpTn5LZNU7g4ZynDmCiNN3q6Rp
                              rawAccounts:
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                - 7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                                - Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - SysvarC1ock11111111111111111111111111111111
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - 54adW7pE7EhJEeY3tWjjZdjQpDqUEPym7aqbtkKUhtpB
                                - J1to1yufRnoWn81KYg1XkTWzmKjnYSnmE2VY8DGUJ9Qv
                              rawData: tyYYJkM2YF2HNsuoLeoejinJBA23NNeYtC
                              summary: null
                              programName: humidi_fi
                              instructionName: null
                              decoded: null
                            - instructionIndex: 5
                              innerInstructionIndex: 8
                              stackHeight: 3
                              programId: TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                              rawAccounts:
                                - 7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                              rawData: gD6aGdV2CUib7
                              summary:
                                type: transfer
                                description: >-
                                  HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                  transferred 8348494.812168
                                  pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  from
                                  HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                  to
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                parsedData: null
                              programName: token_2022
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '8348494812168'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      7CdAWd32k1c9ywpyErij2xRbBDRCLFqrZAXTUjD3ziek
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 9
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: 3Y8Nzz6hQkgf
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 14625.643887 USDC from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  HyKbc1vUxNL9xJC2Q44qdGiuKC1Ey95KNdokfHivrFnZ
                                parsedData: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '14625643887'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      Cad4XrQrtXdKEhZKtWX5YAkwumUvphZKw1cqpYXYnZDr
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 10
                              stackHeight: 2
                              programId: TessVdML9pBGgG9yGks7o4HewRaXVAMuoVj4x83GLQH
                              rawAccounts:
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                - DNhfyh75AApg1L1Yig3fErvERKutYRqfWLGb496iViSZ
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                              rawData: fVdQ6cM5JivTyZiJLScAUHBM
                              summary: null
                              programName: tessera_v
                              instructionName: null
                              decoded: null
                            - instructionIndex: 5
                              innerInstructionIndex: 11
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - 9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: h7KWqGixUadm7
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 35566.391375 USDC from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                parsedData: null
                              programName: token
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '35566391375'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      9t4P5wMwfFkyn92Z7hf463qYKEZf8ERVZsGBEPNp8uJx
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 12
                              stackHeight: 3
                              programId: TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                              rawAccounts:
                                - FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - 8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                              rawData: ity1EZn6mmCa1
                              summary:
                                type: transfer
                                description: >-
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                  transferred 20283004.384731
                                  pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  from
                                  8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                  to
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                parsedData: null
                              programName: token_2022
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '20283004384731'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      FhdiaEWUX8ZrW5TT2iNjWivMCzuBZhUJutrpfw6CvsxU
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      8ekCy2jHHUbW2yeNGFWYJT9Hm9FW7SvZcZK66dSZCDiF
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 13
                              stackHeight: 2
                              programId: SV2EYYJyRz2YhfXwXnhNAevDEui5Q6yrfyo13WtupPF
                              rawAccounts:
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                - 2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                - 5VTjvi4XhRCXUSitDGJXVp5iZpU2sypNAT5EvEvaXR6j
                                - FmxXDSR9WvpJTCh738D1LEDuhMoA8geCtZgHb3isy7Dp
                                - 8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                                - CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                - TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                                - TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                                - Sysvar1nstructions1111111111111111111111111
                              rawData: 3ts6B9n26VMnYkxXpdbX7Ct4C7xFP97Bnw
                              summary: null
                              programName: sol_fi_v2
                              instructionName: null
                              decoded: null
                            - instructionIndex: 5
                              innerInstructionIndex: 14
                              stackHeight: 3
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                - CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: 3MiBrVEwvk3y
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 63185.049137 USDC from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                parsedData: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '63185049137'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      EpdaePzdqRkMtdZJquVPUWgyoJ5YEEpYALki6dv9VBrt
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      CMghWj6TEDfGTN5CSzo9p27kPMb73fsDPM22LqTe2C9y
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 15
                              stackHeight: 3
                              programId: TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                              rawAccounts:
                                - 8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - 2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                              rawData: gTK3hsJGX6aK7
                              summary:
                                type: transfer
                                description: >-
                                  2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                  transferred 36041340.065051
                                  pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  from
                                  2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                  to
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                parsedData: null
                              programName: token_2022
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '36041340065051'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      8PbjFCfVNHH5PwP7xJj4JnGom397ybK3mLzw9164nZ4K
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      2kfQuYG2FVZL2RqqKEttcdadbPWP4c7b6AFQztNcBWyV
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 16
                              stackHeight: 2
                              programId: JUP6LkbZbjS1jKKwapdHNy74zcZ3tLUZoi5QNyVTaV4
                              rawAccounts:
                                - D8cy77BBepLMngZx6ZukaTff5hCt1HrWyKk3Hnd9oitf
                              rawData: >-
                                AGGBPk5TZi5TVufsMFpQggYVZDUB4ZgqKQMjp1v1gkMPPdZfWPMcR2vxbVJhc3DLdScLccQTB6ybx1YZtNFBsb8ES2NuwR4u6aUSnaCkYrPvnGj1VkvmadnvwPGuqSgFnHtPhhS4GmrFGS8o6PfwYGhYkFgyP6LEpMz1cbKuB6m57PyS5EkmM2yHa5kxXSe98FYQ32pKEz6yTytbyNPczPeEtgkKzHADaP6uXxLAv5fPENgPBD3zpUFCAH4wbrjRDmwLrpjbLayLHoNELFQGni3L8YKme8bEwDgWqvCg9XxKBh7rTa2m8Fa1H59PKyhSdFAZKtWDriuycMoQfx7hRksnnUkkBSfhq844fBAq5fHp4d14M4HrE7cQePpx7v9JDb3c4wqchc4k9Amj2usxcuS4LerR1AYxJ5HFER14g2Yr4BP6yWr5W6T9gCoLyGyrYQ7iosApVkJAJ9nqjT7WgAn7YaoCx3m2oxzLLLT9my7R8zdbeDSwvduooAh1mDX32EoixeFZGFu9rXTW2xTezVUhkBMqV3Hf5sevJNgXkFUCNRJPq9b5VzVoUpa5cB
                              summary: null
                              programName: jupiter
                              instructionName: SwapsEvent
                              decoded:
                                args:
                                  swap_events:
                                    - input_mint: >-
                                        So11111111111111111111111111111111111111112
                                      input_amount: '470229300000'
                                      output_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      output_amount: '35579021038'
                                    - input_mint: >-
                                        So11111111111111111111111111111111111111112
                                      input_amount: '1028270700000'
                                      output_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      output_amount: '77798063361'
                                    - input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      input_amount: '14625643887'
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                      output_amount: '8348494812168'
                                    - input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      input_amount: '35566391375'
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                      output_amount: '20283004384731'
                                    - input_mint: >-
                                        EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                                      input_amount: '63185049137'
                                      output_mint: >-
                                        pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                      output_amount: '36041340065051'
                                accounts: []
                            - instructionIndex: 5
                              innerInstructionIndex: 17
                              stackHeight: 2
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - 2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              rawData: 3DVMoEet16HV
                              summary: null
                              programName: token
                              instructionName: transfer
                              decoded:
                                args:
                                  amount: '1500000000'
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: destination_account
                                    pubkey: >-
                                      2oL6my4QDDCfpgJZX1bZV1NgbmuNptKdgcE8wJm6efgk
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 5
                              innerInstructionIndex: 18
                              stackHeight: 2
                              programId: TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb
                              rawAccounts:
                                - 9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                - pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                - 3zExK5UQLkARi2KAAFUTvZAtNZ8P3BDiCHy3g6CMQSCH
                                - 7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                              rawData: jLjtdyzH8jsyF
                              summary:
                                type: transfer
                                description: >-
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  transferred 64672839.26195
                                  pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                  from
                                  7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                  to
                                  GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                parsedData: null
                              programName: token_2022
                              instructionName: transfer_checked
                              decoded:
                                args:
                                  amount: '64672839261950'
                                  decimals: 6
                                accounts:
                                  - name: source_account
                                    pubkey: >-
                                      9RzosLeV5P5gG5MLobJWrBTGYu1ApMHJ7pwhX6S2xFFS
                                    isSigner: false
                                    isWritable: true
                                  - name: mint
                                    pubkey: >-
                                      pumpCmXqMfrsAkQ5r49WcJnRayYRqmXz6ae8H7H9Dfn
                                    isSigner: false
                                    isWritable: false
                                  - name: destination_account
                                    pubkey: >-
                                      3zExK5UQLkARi2KAAFUTvZAtNZ8P3BDiCHy3g6CMQSCH
                                    isSigner: false
                                    isWritable: true
                                  - name: owner_or_delegate
                                    pubkey: >-
                                      7iWnBRRhBCiNXXPhqiGzvvBkKrvFSWqqmxRyu9VyYBxE
                                    isSigner: true
                                    isWritable: false
                            - instructionIndex: 6
                              innerInstructionIndex: null
                              stackHeight: 1
                              programId: TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA
                              rawAccounts:
                                - teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                - GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                              rawData: A
                              summary: null
                              programName: token
                              instructionName: close_account
                              decoded:
                                args: {}
                                accounts:
                                  - name: account
                                    pubkey: >-
                                      teBPkZtsnaKDpGHTy1KUZeh1PbVtbrKXhzruYpRiUUs
                                    isSigner: false
                                    isWritable: true
                                  - name: destination
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: false
                                    isWritable: true
                                  - name: owner
                                    pubkey: >-
                                      GV6UUmNxz2RpKxmNAPadYKb7uQpszwqQAu3qLJxVdC52
                                    isSigner: true
                                    isWritable: false
                    paginationToken: '433950192:0'
        '400':
          $ref: '#/components/responses/BadRequest'
components:
  schemas:
    TransactionHistoryRequest:
      type: object
      description: >-
        Corps de la demande pour récupérer l'historique des transactions
        analysées pour une adresse.
      required:
        - address
      additionalProperties: false
      properties:
        address:
          type: string
          description: Adresse dont l'historique des transactions doit être récupéré.
        limit:
          type: integer
          description: Nombre de transactions à retourner.
          minimum: 1
          maximum: 100
          default: 100
        beforeSignature:
          type: string
          description: Retourner les transactions avant cette signature.
        afterSignature:
          type: string
          description: Retourner les transactions après cette signature.
        paginationToken:
          type: string
          description: >-
            Curseur retourné par une page précédente. La forme est
            `slot:transactionIndex`.
        sortOrder:
          type: string
          description: Ordre de tri pour les transactions retournées.
          enum:
            - asc
            - desc
          default: desc
        commitment:
          type: string
          description: >-
            Niveau d'engagement utilisé pour la récupération de l'historique.
            `processed` n'est pas pris en charge.
          enum:
            - confirmed
            - finalized
          default: confirmed
        includeRawTransaction:
          type: boolean
          description: >-
            Inclure les charges utiles brutes des transactions Solana comme
            `rawTransaction` sur chaque résultat réussi.
          default: false
        slot:
          allOf:
            - $ref: '#/components/schemas/ComparisonBounds'
          description: Limites de comparaison de slot. Chaque limite est facultative.
        time:
          allOf:
            - $ref: '#/components/schemas/ComparisonBounds'
          description: >-
            Limites de comparaison du temps de bloc en secondes Unix. Chaque
            limite est facultative.
    TransactionPage:
      type: object
      description: >-
        Page de résultats de transaction analysés retournée par l'historique des
        transactions.
      properties:
        data:
          type: array
          description: >-
            Résultats de transaction analysés. Chaque élément a la même forme
            `TransactionResult` retournée par `/v1/parsed-events/transactions`.
          items:
            $ref: '#/components/schemas/TransactionResult'
        paginationToken:
          type: string
          description: >-
            Curseur pour la page suivante. Manquant lorsque le service a atteint
            la fin de la plage de pages disponibles.
    ComparisonBounds:
      type: object
      description: Limites de comparaison numérique. Chaque champ est facultatif.
      additionalProperties: false
      properties:
        gt:
          type: integer
          description: Correspondre aux valeurs supérieures à cette valeur.
        gte:
          type: integer
          description: Correspondre aux valeurs supérieures ou égales à cette valeur.
        lt:
          type: integer
          description: Correspondre aux valeurs inférieures à cette valeur.
        lte:
          type: integer
          description: Correspondre aux valeurs inférieures ou égales à cette valeur.
    TransactionResult:
      type: object
      description: Résultat du parseur par signature.
      properties:
        signature:
          type: string
          description: Signature de transaction pour cet élément.
        parserStatus:
          type: string
          description: >-
            `OK` lorsque l'analyse a réussi, ou `ERROR` lorsque l'élément a
            échoué à récupérer ou analyser.
          enum:
            - OK
            - ERROR
        parsed:
          allOf:
            - $ref: '#/components/schemas/ParsedTransaction'
          description: >-
            Objet de transaction analysé. Présent lorsque `parserStatus` est
            `OK`.
        parserError:
          allOf:
            - $ref: '#/components/schemas/ParserError'
          description: >-
            Erreur au niveau de l'élément. Présente lorsque `parserStatus` est
            `ERROR`.
        rawTransaction:
          type: object
          description: >-
            Charge utile de la transaction brute originale. Présente uniquement
            lorsque `includeRawTransaction` est `true`.
          additionalProperties: true
    ErrorResponse:
      type: object
      description: Réponse d'erreur au niveau de la demande.
      properties:
        error:
          type: string
          description: Message d'erreur.
    ParsedTransaction:
      type: object
      description: Modèle de transaction du parseur-v2.
      properties:
        slot:
          type: integer
          description: Slot contenant la transaction.
        blockTime:
          type: integer
          description: Horodatage Unix pour le bloc, lorsque disponible.
          nullable: true
        fee:
          type: integer
          description: Frais de transaction en lamports.
        feePayer:
          type: string
          description: Compte payeur des frais, lorsque disponible.
          nullable: true
        transactionStatus:
          type: string
          description: >-
            `OK` lorsque la transaction s'est exécutée avec succès, ou `ERROR`
            lorsque l'exécution a échoué.
          enum:
            - OK
            - ERROR
        nativeTransfers:
          type: array
          description: Transferts SOL au niveau de la transaction en lamports.
          items:
            $ref: '#/components/schemas/NativeTransfer'
        tokenTransfers:
          type: array
          description: Transferts de jetons SPL et Token-2022 au niveau de la transaction.
          items:
            $ref: '#/components/schemas/TokenTransfer'
        summary:
          allOf:
            - $ref: '#/components/schemas/ParsedSummary'
          description: Meilleur résumé au niveau de la transaction, lorsque disponible.
          nullable: true
        instructions:
          type: array
          description: >-
            Instructions de premier niveau et internes analysées dans l'ordre
            d'exécution.
          items:
            $ref: '#/components/schemas/ParsedInstruction'
    ParserError:
      type: object
      description: Erreur au niveau de l'élément du parseur.
      properties:
        code:
          type: string
          description: Code d'erreur du parseur lisible par machine.
        message:
          type: string
          description: Message d'erreur du parseur lisible par l'homme.
    NativeTransfer:
      type: object
      description: Mouvement de SOL détecté au niveau de la transaction.
      properties:
        fromUserAccount:
          type: string
          description: Compte envoyant des lamports.
          nullable: true
        toUserAccount:
          type: string
          description: Compte recevant des lamports.
          nullable: true
        amount:
          type: integer
          description: Montant en lamports.
    TokenTransfer:
      type: object
      description: >-
        Mouvement de jeton SPL ou Token-2022 détecté au niveau de la
        transaction.
      properties:
        fromUserAccount:
          type: string
          description: Propriétaire ou autorité pour le côté source, lorsque connu.
          nullable: true
        toUserAccount:
          type: string
          description: Propriétaire pour le côté destinataire, lorsque connu.
          nullable: true
        fromTokenAccount:
          type: string
          description: Compte de jeton source.
          nullable: true
        toTokenAccount:
          type: string
          description: Compte de jeton destinataire.
          nullable: true
        rawTokenAmount:
          type: integer
          description: Montant de jeton brut en entier.
        decimals:
          type: integer
          description: Décimales de la mint utilisées pour interpréter le montant brut.
        tokenStandard:
          type: string
          description: >-
            Norme de jeton lorsque connue, comme `Fungible` ou
            `UnknownStandard`.
        mint:
          type: string
          description: Adresse de mint du jeton.
    ParsedSummary:
      type: object
      description: Résumé lisible par l'homme pour une transaction ou une instruction.
      properties:
        type:
          type: string
          description: Type de résumé, tel que `swap`, `transfer`, ou `create_account`.
        description:
          type: string
          description: Texte de résumé lisible par l'homme.
        parsedData:
          type: object
          description: >-
            Charge utile structurée derrière le résumé, lorsque disponible — par
            exemple des métadonnées d'échange avec `protocol`, `kind`, montants
            et mints. La forme varie selon le type de résumé et le protocole.
          nullable: true
          additionalProperties: true
    ParsedInstruction:
      type: object
      description: Instruction de premier niveau ou interne analysée.
      properties:
        instructionIndex:
          type: integer
          description: Indice d'instruction de premier niveau.
        innerInstructionIndex:
          type: integer
          description: >-
            Indice d'instruction interne dans l'instruction de premier niveau,
            lorsque applicable.
          nullable: true
        stackHeight:
          type: integer
          description: Hauteur de la pile lorsque disponible.
          nullable: true
        programId:
          type: string
          description: ID du programme qui a exécuté l'instruction.
        rawAccounts:
          type: array
          description: >-
            Clés publiques de compte brutes résolues à partir des indices de
            compte d'instruction.
          items:
            type: string
        rawData:
          type: string
          description: Données brutes de l'instruction.
        summary:
          allOf:
            - $ref: '#/components/schemas/ParsedSummary'
          description: Résumé au niveau de l'instruction, lorsque disponible.
          nullable: true
        programName:
          type: string
          description: Nom de programme reconnu par le parseur, lorsque disponible.
          nullable: true
        instructionName:
          type: string
          description: Nom de l'instruction décodée, lorsque disponible.
          nullable: true
        decoded:
          allOf:
            - $ref: '#/components/schemas/DecodedInstruction'
          description: >-
            Arguments et comptes nommés décodés, lorsque le déchiffrement
            réussit.
          nullable: true
    DecodedInstruction:
      type: object
      description: Arguments et comptes nommés d'instruction décodée.
      properties:
        args:
          type: object
          description: >-
            Arguments décodés de l'instruction. Les noms et formes des arguments
            dépendent de l'instruction.
          additionalProperties: true
        accounts:
          type: array
          description: Comptes d'instruction décodés avec des noms reconnus par le parseur.
          items:
            $ref: '#/components/schemas/DecodedAccount'
    DecodedAccount:
      type: object
      description: Compte nommé utilisé par une instruction décodée.
      properties:
        name:
          type: string
          description: Nom de compte reconnu par le parseur.
        pubkey:
          type: string
          description: Clé publique du compte.
        isSigner:
          type: boolean
          description: Indique si le compte a signé la transaction.
        isWritable:
          type: boolean
          description: Indique si le compte était modifiable pour l'instruction.
  responses:
    BadRequest:
      description: Charge utile de la demande invalide.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          examples:
            default:
              value:
                error: invalid request payload
  securitySchemes:
    ApiKeyQuery:
      type: apiKey
      in: query
      name: api-key

````