diff --git a/.github/workflows/light-sdk-tests.yml b/.github/workflows/light-sdk-tests.yml index 506a940cbf..43dce5a0d3 100644 --- a/.github/workflows/light-sdk-tests.yml +++ b/.github/workflows/light-sdk-tests.yml @@ -29,6 +29,7 @@ jobs: sub-tests: '[ "@lightprotocol/circuit-lib.js", "@lightprotocol/prover.js", + "@lightprotocol/zk-compression-cli" ]' steps: - name: Checkout sources diff --git a/Cargo.lock b/Cargo.lock index 58514b78f7..05ed7ef10b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3989,7 +3989,7 @@ dependencies = [ [[package]] name = "photon-api" -version = "0.27.0" +version = "0.28.0" dependencies = [ "reqwest 0.11.26", "serde", diff --git a/cli/src/utils/constants.ts b/cli/src/utils/constants.ts index 010f6960e6..5e0ba0bcfb 100644 --- a/cli/src/utils/constants.ts +++ b/cli/src/utils/constants.ts @@ -21,7 +21,7 @@ export const LIGHT_PROVER_PROCESS_NAME = "light-prover"; export const INDEXER_PROCESS_NAME = "photon"; export const FORESTER_PROCESS_NAME = "forester"; -export const PHOTON_VERSION = "0.26.0"; +export const PHOTON_VERSION = "0.28.0"; export const LIGHT_PROTOCOL_PROGRAMS_DIR_ENV = "LIGHT_PROTOCOL_PROGRAMS_DIR"; export const BASE_PATH = "../../bin/"; diff --git a/forester/src/indexer/photon_indexer.rs b/forester/src/indexer/photon_indexer.rs index 274a627651..44fe32fd86 100644 --- a/forester/src/indexer/photon_indexer.rs +++ b/forester/src/indexer/photon_indexer.rs @@ -148,7 +148,7 @@ impl Indexer for PhotonIndexer { merkle_tree: tree_pubkey.to_bytes(), low_address_index: proofs.low_element_leaf_index as u64, low_address_value: low_address_value.to_bytes(), - low_address_next_index: proofs.leaf_index as u64, + low_address_next_index: proofs.next_index as u64, low_address_next_value: next_address_value.to_bytes(), low_address_proof: { let proof_vec: Vec<[u8; 32]> = proofs diff --git a/js/compressed-token/package.json b/js/compressed-token/package.json index 9bca7b7594..faa3d54b11 100644 --- a/js/compressed-token/package.json +++ b/js/compressed-token/package.json @@ -40,7 +40,7 @@ "test:e2e:compress": "pnpm test-validator && vitest run tests/e2e/compress.test.ts --reporter=verbose", "test:e2e:decompress": "pnpm test-validator && vitest run tests/e2e/decompress.test.ts --reporter=verbose", "test:e2e:rpc-token-interop": "pnpm test-validator && vitest run tests/e2e/rpc-token-interop.test.ts --reporter=verbose", - "test:e2e:all": "pnpm test-validator && vitest run tests/e2e/create-mint.test.ts && vitest run tests/e2e/mint-to.test.ts && vitest run tests/e2e/transfer.test.ts && vitest run tests/e2e/compress.test.ts && vitest run tests/e2e/decompress.test.ts && vitest run tests/e2e/register-mint.test.ts && vitest run tests/e2e/approve-and-mint-to.test.ts", + "test:e2e:all": "pnpm test-validator && vitest run tests/e2e/create-mint.test.ts && vitest run tests/e2e/mint-to.test.ts && vitest run tests/e2e/transfer.test.ts && vitest run tests/e2e/compress.test.ts && vitest run tests/e2e/decompress.test.ts && vitest run tests/e2e/register-mint.test.ts && vitest run tests/e2e/approve-and-mint-to.test.ts && vitest run tests/e2e/rpc-token-interop.test.ts", "pull-idl": "../../scripts/push-compressed-token-idl.sh", "build": "rimraf dist && pnpm pull-idl && pnpm build:bundle", "build:bundle": "rollup -c", diff --git a/js/compressed-token/src/idl/light_compressed_token.ts b/js/compressed-token/src/idl/light_compressed_token.ts index 83f3fb9097..7b042b3f3a 100644 --- a/js/compressed-token/src/idl/light_compressed_token.ts +++ b/js/compressed-token/src/idl/light_compressed_token.ts @@ -1348,23 +1348,108 @@ export type LightCompressedToken = { errors: [ { code: 6000; - name: 'SignerCheckFailed'; - msg: 'Signer check failed'; + name: 'PublicKeyAmountMissmatch'; + msg: 'public keys and amounts must be of same length'; }, { code: 6001; - name: 'CreateTransferInstructionFailed'; - msg: 'Create transfer instruction failed'; + name: 'SignerCheckFailed'; + msg: 'SignerCheckFailed'; }, { code: 6002; - name: 'AccountNotFound'; - msg: 'Account not found'; + name: 'ComputeInputSumFailed'; + msg: 'ComputeInputSumFailed'; }, { code: 6003; - name: 'SerializationError'; - msg: 'Serialization error'; + name: 'ComputeOutputSumFailed'; + msg: 'ComputeOutputSumFailed'; + }, + { + code: 6004; + name: 'ComputeCompressSumFailed'; + msg: 'ComputeCompressSumFailed'; + }, + { + code: 6005; + name: 'ComputeDecompressSumFailed'; + msg: 'ComputeDecompressSumFailed'; + }, + { + code: 6006; + name: 'SumCheckFailed'; + msg: 'SumCheckFailed'; + }, + { + code: 6007; + name: 'DecompressRecipientUndefinedForDecompress'; + msg: 'DecompressRecipientUndefinedForDecompress'; + }, + { + code: 6008; + name: 'CompressedPdaUndefinedForDecompress'; + msg: 'CompressedPdaUndefinedForDecompress'; + }, + { + code: 6009; + name: 'DeCompressAmountUndefinedForDecompress'; + msg: 'DeCompressAmountUndefinedForDecompress'; + }, + { + code: 6010; + name: 'CompressedPdaUndefinedForCompress'; + msg: 'CompressedPdaUndefinedForCompress'; + }, + { + code: 6011; + name: 'DeCompressAmountUndefinedForCompress'; + msg: 'DeCompressAmountUndefinedForCompress'; + }, + { + code: 6012; + name: 'DelegateUndefined'; + msg: 'DelegateUndefined while delegated amount is defined'; + }, + { + code: 6013; + name: 'DelegateSignerCheckFailed'; + msg: 'DelegateSignerCheckFailed'; + }, + { + code: 6014; + name: 'SplTokenSupplyMismatch'; + msg: 'SplTokenSupplyMismatch'; + }, + { + code: 6015; + name: 'HeapMemoryCheckFailed'; + msg: 'HeapMemoryCheckFailed'; + }, + { + code: 6016; + name: 'InstructionNotCallable'; + msg: 'The instruction is not callable'; + }, + { + code: 6017; + name: 'ArithmeticUnderflow'; + msg: 'ArithmeticUnderflow'; + }, + { + code: 6018; + name: 'InvalidDelegate'; + msg: 'InvalidDelegate'; + }, + { + code: 6019; + name: 'HashToFieldError'; + msg: 'HashToFieldError'; + }, + { + code: 6020; + name: 'InvalidMint'; + msg: 'InvalidMint'; }, ]; }; @@ -2723,23 +2808,108 @@ export const IDL: LightCompressedToken = { errors: [ { code: 6000, - name: 'SignerCheckFailed', - msg: 'Signer check failed', + name: 'PublicKeyAmountMissmatch', + msg: 'public keys and amounts must be of same length', }, { code: 6001, - name: 'CreateTransferInstructionFailed', - msg: 'Create transfer instruction failed', + name: 'SignerCheckFailed', + msg: 'SignerCheckFailed', }, { code: 6002, - name: 'AccountNotFound', - msg: 'Account not found', + name: 'ComputeInputSumFailed', + msg: 'ComputeInputSumFailed', }, { code: 6003, - name: 'SerializationError', - msg: 'Serialization error', + name: 'ComputeOutputSumFailed', + msg: 'ComputeOutputSumFailed', + }, + { + code: 6004, + name: 'ComputeCompressSumFailed', + msg: 'ComputeCompressSumFailed', + }, + { + code: 6005, + name: 'ComputeDecompressSumFailed', + msg: 'ComputeDecompressSumFailed', + }, + { + code: 6006, + name: 'SumCheckFailed', + msg: 'SumCheckFailed', + }, + { + code: 6007, + name: 'DecompressRecipientUndefinedForDecompress', + msg: 'DecompressRecipientUndefinedForDecompress', + }, + { + code: 6008, + name: 'CompressedPdaUndefinedForDecompress', + msg: 'CompressedPdaUndefinedForDecompress', + }, + { + code: 6009, + name: 'DeCompressAmountUndefinedForDecompress', + msg: 'DeCompressAmountUndefinedForDecompress', + }, + { + code: 6010, + name: 'CompressedPdaUndefinedForCompress', + msg: 'CompressedPdaUndefinedForCompress', + }, + { + code: 6011, + name: 'DeCompressAmountUndefinedForCompress', + msg: 'DeCompressAmountUndefinedForCompress', + }, + { + code: 6012, + name: 'DelegateUndefined', + msg: 'DelegateUndefined while delegated amount is defined', + }, + { + code: 6013, + name: 'DelegateSignerCheckFailed', + msg: 'DelegateSignerCheckFailed', + }, + { + code: 6014, + name: 'SplTokenSupplyMismatch', + msg: 'SplTokenSupplyMismatch', + }, + { + code: 6015, + name: 'HeapMemoryCheckFailed', + msg: 'HeapMemoryCheckFailed', + }, + { + code: 6016, + name: 'InstructionNotCallable', + msg: 'The instruction is not callable', + }, + { + code: 6017, + name: 'ArithmeticUnderflow', + msg: 'ArithmeticUnderflow', + }, + { + code: 6018, + name: 'InvalidDelegate', + msg: 'InvalidDelegate', + }, + { + code: 6019, + name: 'HashToFieldError', + msg: 'HashToFieldError', + }, + { + code: 6020, + name: 'InvalidMint', + msg: 'InvalidMint', }, ], }; diff --git a/js/stateless.js/package.json b/js/stateless.js/package.json index 49fc2a3d2f..96e4edd805 100644 --- a/js/stateless.js/package.json +++ b/js/stateless.js/package.json @@ -85,7 +85,7 @@ "test:e2e:test-rpc": "pnpm test-validator && vitest run tests/e2e/test-rpc.test.ts", "test:e2e:rpc-interop": "pnpm test-validator && vitest run tests/e2e/rpc-interop.test.ts", "test:e2e:browser": "pnpm playwright test", - "test:e2e:all": "pnpm test-validator && vitest run tests/e2e/test-rpc.test.ts && vitest run tests/e2e/compress.test.ts && vitest run tests/e2e/transfer.test.ts", + "test:e2e:all": "pnpm test-validator && vitest run tests/e2e/test-rpc.test.ts && vitest run tests/e2e/compress.test.ts && vitest run tests/e2e/transfer.test.ts && vitest run tests/e2e/rpc-interop.test.ts", "test:index": "vitest run tests/e2e/program.test.ts", "test:e2e:serde": "vitest run tests/e2e/serde.test.ts", "test:verbose": "vitest run --reporter=verbose", diff --git a/js/stateless.js/src/idls/light_compressed_token.ts b/js/stateless.js/src/idls/light_compressed_token.ts index 83f3fb9097..7b042b3f3a 100644 --- a/js/stateless.js/src/idls/light_compressed_token.ts +++ b/js/stateless.js/src/idls/light_compressed_token.ts @@ -1348,23 +1348,108 @@ export type LightCompressedToken = { errors: [ { code: 6000; - name: 'SignerCheckFailed'; - msg: 'Signer check failed'; + name: 'PublicKeyAmountMissmatch'; + msg: 'public keys and amounts must be of same length'; }, { code: 6001; - name: 'CreateTransferInstructionFailed'; - msg: 'Create transfer instruction failed'; + name: 'SignerCheckFailed'; + msg: 'SignerCheckFailed'; }, { code: 6002; - name: 'AccountNotFound'; - msg: 'Account not found'; + name: 'ComputeInputSumFailed'; + msg: 'ComputeInputSumFailed'; }, { code: 6003; - name: 'SerializationError'; - msg: 'Serialization error'; + name: 'ComputeOutputSumFailed'; + msg: 'ComputeOutputSumFailed'; + }, + { + code: 6004; + name: 'ComputeCompressSumFailed'; + msg: 'ComputeCompressSumFailed'; + }, + { + code: 6005; + name: 'ComputeDecompressSumFailed'; + msg: 'ComputeDecompressSumFailed'; + }, + { + code: 6006; + name: 'SumCheckFailed'; + msg: 'SumCheckFailed'; + }, + { + code: 6007; + name: 'DecompressRecipientUndefinedForDecompress'; + msg: 'DecompressRecipientUndefinedForDecompress'; + }, + { + code: 6008; + name: 'CompressedPdaUndefinedForDecompress'; + msg: 'CompressedPdaUndefinedForDecompress'; + }, + { + code: 6009; + name: 'DeCompressAmountUndefinedForDecompress'; + msg: 'DeCompressAmountUndefinedForDecompress'; + }, + { + code: 6010; + name: 'CompressedPdaUndefinedForCompress'; + msg: 'CompressedPdaUndefinedForCompress'; + }, + { + code: 6011; + name: 'DeCompressAmountUndefinedForCompress'; + msg: 'DeCompressAmountUndefinedForCompress'; + }, + { + code: 6012; + name: 'DelegateUndefined'; + msg: 'DelegateUndefined while delegated amount is defined'; + }, + { + code: 6013; + name: 'DelegateSignerCheckFailed'; + msg: 'DelegateSignerCheckFailed'; + }, + { + code: 6014; + name: 'SplTokenSupplyMismatch'; + msg: 'SplTokenSupplyMismatch'; + }, + { + code: 6015; + name: 'HeapMemoryCheckFailed'; + msg: 'HeapMemoryCheckFailed'; + }, + { + code: 6016; + name: 'InstructionNotCallable'; + msg: 'The instruction is not callable'; + }, + { + code: 6017; + name: 'ArithmeticUnderflow'; + msg: 'ArithmeticUnderflow'; + }, + { + code: 6018; + name: 'InvalidDelegate'; + msg: 'InvalidDelegate'; + }, + { + code: 6019; + name: 'HashToFieldError'; + msg: 'HashToFieldError'; + }, + { + code: 6020; + name: 'InvalidMint'; + msg: 'InvalidMint'; }, ]; }; @@ -2723,23 +2808,108 @@ export const IDL: LightCompressedToken = { errors: [ { code: 6000, - name: 'SignerCheckFailed', - msg: 'Signer check failed', + name: 'PublicKeyAmountMissmatch', + msg: 'public keys and amounts must be of same length', }, { code: 6001, - name: 'CreateTransferInstructionFailed', - msg: 'Create transfer instruction failed', + name: 'SignerCheckFailed', + msg: 'SignerCheckFailed', }, { code: 6002, - name: 'AccountNotFound', - msg: 'Account not found', + name: 'ComputeInputSumFailed', + msg: 'ComputeInputSumFailed', }, { code: 6003, - name: 'SerializationError', - msg: 'Serialization error', + name: 'ComputeOutputSumFailed', + msg: 'ComputeOutputSumFailed', + }, + { + code: 6004, + name: 'ComputeCompressSumFailed', + msg: 'ComputeCompressSumFailed', + }, + { + code: 6005, + name: 'ComputeDecompressSumFailed', + msg: 'ComputeDecompressSumFailed', + }, + { + code: 6006, + name: 'SumCheckFailed', + msg: 'SumCheckFailed', + }, + { + code: 6007, + name: 'DecompressRecipientUndefinedForDecompress', + msg: 'DecompressRecipientUndefinedForDecompress', + }, + { + code: 6008, + name: 'CompressedPdaUndefinedForDecompress', + msg: 'CompressedPdaUndefinedForDecompress', + }, + { + code: 6009, + name: 'DeCompressAmountUndefinedForDecompress', + msg: 'DeCompressAmountUndefinedForDecompress', + }, + { + code: 6010, + name: 'CompressedPdaUndefinedForCompress', + msg: 'CompressedPdaUndefinedForCompress', + }, + { + code: 6011, + name: 'DeCompressAmountUndefinedForCompress', + msg: 'DeCompressAmountUndefinedForCompress', + }, + { + code: 6012, + name: 'DelegateUndefined', + msg: 'DelegateUndefined while delegated amount is defined', + }, + { + code: 6013, + name: 'DelegateSignerCheckFailed', + msg: 'DelegateSignerCheckFailed', + }, + { + code: 6014, + name: 'SplTokenSupplyMismatch', + msg: 'SplTokenSupplyMismatch', + }, + { + code: 6015, + name: 'HeapMemoryCheckFailed', + msg: 'HeapMemoryCheckFailed', + }, + { + code: 6016, + name: 'InstructionNotCallable', + msg: 'The instruction is not callable', + }, + { + code: 6017, + name: 'ArithmeticUnderflow', + msg: 'ArithmeticUnderflow', + }, + { + code: 6018, + name: 'InvalidDelegate', + msg: 'InvalidDelegate', + }, + { + code: 6019, + name: 'HashToFieldError', + msg: 'HashToFieldError', + }, + { + code: 6020, + name: 'InvalidMint', + msg: 'InvalidMint', }, ], }; diff --git a/js/stateless.js/tests/e2e/rpc-interop.test.ts b/js/stateless.js/tests/e2e/rpc-interop.test.ts index 3408314fd9..9a8d2783b4 100644 --- a/js/stateless.js/tests/e2e/rpc-interop.test.ts +++ b/js/stateless.js/tests/e2e/rpc-interop.test.ts @@ -206,7 +206,7 @@ describe('rpc-interop', () => { ), ); assert.isTrue( - newAddressProof.leafIndex.eq(newAddressProofTest.leafIndex), + newAddressProof.nextIndex.eq(newAddressProofTest.nextIndex), ); assert.isTrue( newAddressProof.leafLowerRangeValue.eq( @@ -292,8 +292,8 @@ describe('rpc-interop', () => { `Mismatch in leafHigherRangeValue expected: ${newAddressProofTest.leafHigherRangeValue} got: ${newAddressProof.leafHigherRangeValue}`, ); assert.isTrue( - newAddressProof.leafIndex.eq(newAddressProofTest.leafIndex), - `Mismatch in leafHigherRangeValue expected: ${newAddressProofTest.leafIndex} got: ${newAddressProof.leafIndex}`, + newAddressProof.nextIndex.eq(newAddressProofTest.nextIndex), + `Mismatch in leafHigherRangeValue expected: ${newAddressProofTest.nextIndex} got: ${newAddressProof.nextIndex}`, ); assert.isTrue( newAddressProof.leafLowerRangeValue.eq( diff --git a/photon-api/Cargo.toml b/photon-api/Cargo.toml index 11016390b5..0117b0ab05 100644 --- a/photon-api/Cargo.toml +++ b/photon-api/Cargo.toml @@ -1,14 +1,10 @@ [package] name = "photon-api" -version = "0.27.0" +version = "0.28.0" authors = ["OpenAPI Generator team and contributors"] -description = "Auto-generated API for Helius Labs' Photon Compression Indexer" +description = "Solana indexer for general compression" license = "Apache-2.0" edition = "2018" -documentation = "https://docs.rs/photon-api" -homepage = "https://github.com/lightprotocol/lightprotocol" -repository = "https://github.com/lightprotocol/lightprotocol" - [dependencies] serde = "^1.0" diff --git a/photon-api/README.md b/photon-api/README.md index 9a86803122..17a91ece6e 100644 --- a/photon-api/README.md +++ b/photon-api/README.md @@ -7,8 +7,8 @@ Solana indexer for general compression This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client. -- API version: 0.26.0 -- Package version: 0.26.0 +- API version: 0.28.0 +- Package version: 0.28.0 - Generator version: 7.5.0 - Build package: `org.openapitools.codegen.languages.RustClientCodegen` diff --git a/photon-api/docs/MerkleContextWithNewAddressProof.md b/photon-api/docs/MerkleContextWithNewAddressProof.md index 0d97c34428..426fee67f2 100644 --- a/photon-api/docs/MerkleContextWithNewAddressProof.md +++ b/photon-api/docs/MerkleContextWithNewAddressProof.md @@ -6,10 +6,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **address** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] **higher_range_address** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] -**leaf_index** | **i32** | | **low_element_leaf_index** | **i32** | | **lower_range_address** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] **merkle_tree** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] +**next_index** | **i32** | | **proof** | **Vec** | | **root** | **String** | A 32-byte hash represented as a base58 string. | **root_seq** | **i32** | | diff --git a/photon-api/docs/TokenData.md b/photon-api/docs/TokenData.md index b0a84614b8..ba8e7ade2c 100644 --- a/photon-api/docs/TokenData.md +++ b/photon-api/docs/TokenData.md @@ -6,7 +6,6 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **amount** | **i32** | | [default to 100] **delegate** | Option<**String**> | A Solana public key represented as a base58 string. | [optional][default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] -**is_native** | Option<**i32**> | | [optional][default to 100] **mint** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] **owner** | **String** | A Solana public key represented as a base58 string. | [default to 11111112D1oxKts8YPdTJRG5FzxTNpMtWmq8hkVx3] **state** | [**models::AccountState**](AccountState.md) | | diff --git a/photon-api/src/apis/configuration.rs b/photon-api/src/apis/configuration.rs index a5b99fb618..5bcf82720f 100644 --- a/photon-api/src/apis/configuration.rs +++ b/photon-api/src/apis/configuration.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ @@ -38,7 +38,7 @@ impl Default for Configuration { fn default() -> Self { Configuration { base_path: "http://127.0.0.1".to_owned(), - user_agent: Some("OpenAPI-Generator/0.26.0/rust".to_owned()), + user_agent: Some("OpenAPI-Generator/0.28.0/rust".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None, diff --git a/photon-api/src/apis/default_api.rs b/photon-api/src/apis/default_api.rs index 225f239c80..a17fb8ad75 100644 --- a/photon-api/src/apis/default_api.rs +++ b/photon-api/src/apis/default_api.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_200_response.rs b/photon-api/src/models/_get_compressed_account_post_200_response.rs index ed52fafb87..b5e4d84b89 100644 --- a/photon-api/src/models/_get_compressed_account_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_account_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_200_response_error.rs b/photon-api/src/models/_get_compressed_account_post_200_response_error.rs index efbf0858c4..ad607e5b08 100644 --- a/photon-api/src/models/_get_compressed_account_post_200_response_error.rs +++ b/photon-api/src/models/_get_compressed_account_post_200_response_error.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_200_response_result.rs b/photon-api/src/models/_get_compressed_account_post_200_response_result.rs index c041b5e888..1d4459b7b5 100644 --- a/photon-api/src/models/_get_compressed_account_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_account_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_429_response.rs b/photon-api/src/models/_get_compressed_account_post_429_response.rs index b1d40e7ec3..3296b94fa8 100644 --- a/photon-api/src/models/_get_compressed_account_post_429_response.rs +++ b/photon-api/src/models/_get_compressed_account_post_429_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_request.rs b/photon-api/src/models/_get_compressed_account_post_request.rs index e09f430f7d..d9f15d24be 100644 --- a/photon-api/src/models/_get_compressed_account_post_request.rs +++ b/photon-api/src/models/_get_compressed_account_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_post_request_params.rs b/photon-api/src/models/_get_compressed_account_post_request_params.rs index cfd396667d..b6772764f2 100644 --- a/photon-api/src/models/_get_compressed_account_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_account_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_proof_post_200_response.rs b/photon-api/src/models/_get_compressed_account_proof_post_200_response.rs index 285f8a1a90..bf4c9eca18 100644 --- a/photon-api/src/models/_get_compressed_account_proof_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_account_proof_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_proof_post_200_response_result.rs b/photon-api/src/models/_get_compressed_account_proof_post_200_response_result.rs index 085633dd1d..825dd06951 100644 --- a/photon-api/src/models/_get_compressed_account_proof_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_account_proof_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_proof_post_request.rs b/photon-api/src/models/_get_compressed_account_proof_post_request.rs index 9a0cedafb3..2f61ec6ea9 100644 --- a/photon-api/src/models/_get_compressed_account_proof_post_request.rs +++ b/photon-api/src/models/_get_compressed_account_proof_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_account_proof_post_request_params.rs b/photon-api/src/models/_get_compressed_account_proof_post_request_params.rs index 3a852dc725..26386d98ba 100644 --- a/photon-api/src/models/_get_compressed_account_proof_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_account_proof_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response.rs b/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response.rs index ec6cd6e4ec..5d04ee3027 100644 --- a/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response_result.rs b/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response_result.rs index 9fdf6d7f69..5067bd3d58 100644 --- a/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_accounts_by_owner_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_accounts_by_owner_post_request.rs b/photon-api/src/models/_get_compressed_accounts_by_owner_post_request.rs index a24f57d808..d29ae124b9 100644 --- a/photon-api/src/models/_get_compressed_accounts_by_owner_post_request.rs +++ b/photon-api/src/models/_get_compressed_accounts_by_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_accounts_by_owner_post_request_params.rs b/photon-api/src/models/_get_compressed_accounts_by_owner_post_request_params.rs index 6d64ecd38e..a1cf2aeab0 100644 --- a/photon-api/src/models/_get_compressed_accounts_by_owner_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_accounts_by_owner_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_balance_by_owner_post_request.rs b/photon-api/src/models/_get_compressed_balance_by_owner_post_request.rs index 1ec9367e1a..b5a95467d7 100644 --- a/photon-api/src/models/_get_compressed_balance_by_owner_post_request.rs +++ b/photon-api/src/models/_get_compressed_balance_by_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_balance_by_owner_post_request_params.rs b/photon-api/src/models/_get_compressed_balance_by_owner_post_request_params.rs index e24d35d226..bfef4c838e 100644 --- a/photon-api/src/models/_get_compressed_balance_by_owner_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_balance_by_owner_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_balance_post_200_response.rs b/photon-api/src/models/_get_compressed_balance_post_200_response.rs index 3a7875bed8..4f449cc293 100644 --- a/photon-api/src/models/_get_compressed_balance_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_balance_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_balance_post_200_response_result.rs b/photon-api/src/models/_get_compressed_balance_post_200_response_result.rs index 979390a9f5..b75067fd0d 100644 --- a/photon-api/src/models/_get_compressed_balance_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_balance_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_balance_post_request.rs b/photon-api/src/models/_get_compressed_balance_post_request.rs index 435e0e260b..f239ea989e 100644 --- a/photon-api/src/models/_get_compressed_balance_post_request.rs +++ b/photon-api/src/models/_get_compressed_balance_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_account_balance_post_200_response.rs b/photon-api/src/models/_get_compressed_token_account_balance_post_200_response.rs index c9ba2b576f..dfd437ebe2 100644 --- a/photon-api/src/models/_get_compressed_token_account_balance_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_token_account_balance_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_account_balance_post_200_response_result.rs b/photon-api/src/models/_get_compressed_token_account_balance_post_200_response_result.rs index 6f1c96f4fd..7ddc0381e9 100644 --- a/photon-api/src/models/_get_compressed_token_account_balance_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_token_account_balance_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_account_balance_post_request.rs b/photon-api/src/models/_get_compressed_token_account_balance_post_request.rs index 85edc2bde3..09e8fe384b 100644 --- a/photon-api/src/models/_get_compressed_token_account_balance_post_request.rs +++ b/photon-api/src/models/_get_compressed_token_account_balance_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response.rs b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response.rs index 972272f7e1..27ced3df7b 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response_result.rs b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response_result.rs index 8847bcf150..d81845904a 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request.rs b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request.rs index 8df7455481..91a931e8fb 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request_params.rs b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request_params.rs index a03a74f78c..ba59962199 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_delegate_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request.rs b/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request.rs index 5ee4ee7971..434aee2694 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request_params.rs b/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request_params.rs index f6bf327c9c..5d176c3741 100644 --- a/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request_params.rs +++ b/photon-api/src/models/_get_compressed_token_accounts_by_owner_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response.rs b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response.rs index 635369a2fb..70892c8e42 100644 --- a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response.rs +++ b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response_result.rs b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response_result.rs index df03a87583..2ce9c062c4 100644 --- a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response_result.rs +++ b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_request.rs b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_request.rs index 90a1093e90..c375f082c9 100644 --- a/photon-api/src/models/_get_compressed_token_balances_by_owner_post_request.rs +++ b/photon-api/src/models/_get_compressed_token_balances_by_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_account_post_200_response.rs b/photon-api/src/models/_get_compression_signatures_for_account_post_200_response.rs index e4fb76cec9..de9c168f20 100644 --- a/photon-api/src/models/_get_compression_signatures_for_account_post_200_response.rs +++ b/photon-api/src/models/_get_compression_signatures_for_account_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_account_post_200_response_result.rs b/photon-api/src/models/_get_compression_signatures_for_account_post_200_response_result.rs index 7a3c950447..aec7f075a1 100644 --- a/photon-api/src/models/_get_compression_signatures_for_account_post_200_response_result.rs +++ b/photon-api/src/models/_get_compression_signatures_for_account_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_account_post_request.rs b/photon-api/src/models/_get_compression_signatures_for_account_post_request.rs index fe3b560355..862e98014f 100644 --- a/photon-api/src/models/_get_compression_signatures_for_account_post_request.rs +++ b/photon-api/src/models/_get_compression_signatures_for_account_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_address_post_200_response.rs b/photon-api/src/models/_get_compression_signatures_for_address_post_200_response.rs index fbf6ab5cda..b691d90b0a 100644 --- a/photon-api/src/models/_get_compression_signatures_for_address_post_200_response.rs +++ b/photon-api/src/models/_get_compression_signatures_for_address_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_address_post_200_response_result.rs b/photon-api/src/models/_get_compression_signatures_for_address_post_200_response_result.rs index 0f9664deac..c81a01fa04 100644 --- a/photon-api/src/models/_get_compression_signatures_for_address_post_200_response_result.rs +++ b/photon-api/src/models/_get_compression_signatures_for_address_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_address_post_request.rs b/photon-api/src/models/_get_compression_signatures_for_address_post_request.rs index 6333fafb68..cc249d3c99 100644 --- a/photon-api/src/models/_get_compression_signatures_for_address_post_request.rs +++ b/photon-api/src/models/_get_compression_signatures_for_address_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_address_post_request_params.rs b/photon-api/src/models/_get_compression_signatures_for_address_post_request_params.rs index dba18d8c8b..6e67e1fce0 100644 --- a/photon-api/src/models/_get_compression_signatures_for_address_post_request_params.rs +++ b/photon-api/src/models/_get_compression_signatures_for_address_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_owner_post_request.rs b/photon-api/src/models/_get_compression_signatures_for_owner_post_request.rs index c6bd5c5ff5..3a879d12c2 100644 --- a/photon-api/src/models/_get_compression_signatures_for_owner_post_request.rs +++ b/photon-api/src/models/_get_compression_signatures_for_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_owner_post_request_params.rs b/photon-api/src/models/_get_compression_signatures_for_owner_post_request_params.rs index 1003227726..633e81267e 100644 --- a/photon-api/src/models/_get_compression_signatures_for_owner_post_request_params.rs +++ b/photon-api/src/models/_get_compression_signatures_for_owner_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_compression_signatures_for_token_owner_post_request.rs b/photon-api/src/models/_get_compression_signatures_for_token_owner_post_request.rs index 5cbd960f8d..b4510d59d9 100644 --- a/photon-api/src/models/_get_compression_signatures_for_token_owner_post_request.rs +++ b/photon-api/src/models/_get_compression_signatures_for_token_owner_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_indexer_health_post_200_response.rs b/photon-api/src/models/_get_indexer_health_post_200_response.rs index c50194a626..0d95446393 100644 --- a/photon-api/src/models/_get_indexer_health_post_200_response.rs +++ b/photon-api/src/models/_get_indexer_health_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_indexer_health_post_request.rs b/photon-api/src/models/_get_indexer_health_post_request.rs index f842b4c38b..8005eda64b 100644 --- a/photon-api/src/models/_get_indexer_health_post_request.rs +++ b/photon-api/src/models/_get_indexer_health_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_indexer_slot_post_200_response.rs b/photon-api/src/models/_get_indexer_slot_post_200_response.rs index b578db98ba..6d2ac8d31a 100644 --- a/photon-api/src/models/_get_indexer_slot_post_200_response.rs +++ b/photon-api/src/models/_get_indexer_slot_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_indexer_slot_post_request.rs b/photon-api/src/models/_get_indexer_slot_post_request.rs index 28af9eb4d1..edc26f509f 100644 --- a/photon-api/src/models/_get_indexer_slot_post_request.rs +++ b/photon-api/src/models/_get_indexer_slot_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_latest_compression_signatures_post_request.rs b/photon-api/src/models/_get_latest_compression_signatures_post_request.rs index 06a95c2801..445d77cf93 100644 --- a/photon-api/src/models/_get_latest_compression_signatures_post_request.rs +++ b/photon-api/src/models/_get_latest_compression_signatures_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_latest_compression_signatures_post_request_params.rs b/photon-api/src/models/_get_latest_compression_signatures_post_request_params.rs index f6b7fb5251..db6ef010ba 100644 --- a/photon-api/src/models/_get_latest_compression_signatures_post_request_params.rs +++ b/photon-api/src/models/_get_latest_compression_signatures_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_latest_non_voting_signatures_post_request.rs b/photon-api/src/models/_get_latest_non_voting_signatures_post_request.rs index c94e91d470..ade5ef33f0 100644 --- a/photon-api/src/models/_get_latest_non_voting_signatures_post_request.rs +++ b/photon-api/src/models/_get_latest_non_voting_signatures_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response.rs b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response.rs index ae5f8e3d60..71a67006c2 100644 --- a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response.rs +++ b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response_result.rs b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response_result.rs index b9df91e9ed..512609125e 100644 --- a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response_result.rs +++ b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_request.rs b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_request.rs index 8ca0646184..dc75b5321c 100644 --- a/photon-api/src/models/_get_multiple_compressed_account_proofs_post_request.rs +++ b/photon-api/src/models/_get_multiple_compressed_account_proofs_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response.rs b/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response.rs index 6a49ab5ffd..627069f305 100644 --- a/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response.rs +++ b/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response_result.rs b/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response_result.rs index be6e628ef6..05d3b1f865 100644 --- a/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response_result.rs +++ b/photon-api/src/models/_get_multiple_compressed_accounts_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_accounts_post_request.rs b/photon-api/src/models/_get_multiple_compressed_accounts_post_request.rs index aa90e168e5..6222a32fcd 100644 --- a/photon-api/src/models/_get_multiple_compressed_accounts_post_request.rs +++ b/photon-api/src/models/_get_multiple_compressed_accounts_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_compressed_accounts_post_request_params.rs b/photon-api/src/models/_get_multiple_compressed_accounts_post_request_params.rs index 5ebd1d29f1..d50100a53c 100644 --- a/photon-api/src/models/_get_multiple_compressed_accounts_post_request_params.rs +++ b/photon-api/src/models/_get_multiple_compressed_accounts_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response.rs b/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response.rs index 2e340a2f91..a094bae67c 100644 --- a/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response.rs +++ b/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response_result.rs b/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response_result.rs index 759b518539..72b3dcc28c 100644 --- a/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response_result.rs +++ b/photon-api/src/models/_get_multiple_new_address_proofs_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_multiple_new_address_proofs_post_request.rs b/photon-api/src/models/_get_multiple_new_address_proofs_post_request.rs index 08f246956a..c7c79c9453 100644 --- a/photon-api/src/models/_get_multiple_new_address_proofs_post_request.rs +++ b/photon-api/src/models/_get_multiple_new_address_proofs_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response.rs b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response.rs index 63c889c51b..2d285dce01 100644 --- a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response.rs +++ b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result.rs b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result.rs index 7d049c5985..bda60abb1f 100644 --- a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result.rs +++ b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result_compression_info.rs b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result_compression_info.rs index 25e60e5709..0f431ae80f 100644 --- a/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result_compression_info.rs +++ b/photon-api/src/models/_get_transaction_with_compression_info_post_200_response_result_compression_info.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_transaction_with_compression_info_post_request.rs b/photon-api/src/models/_get_transaction_with_compression_info_post_request.rs index 4e3dc545e8..1022db878c 100644 --- a/photon-api/src/models/_get_transaction_with_compression_info_post_request.rs +++ b/photon-api/src/models/_get_transaction_with_compression_info_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_transaction_with_compression_info_post_request_params.rs b/photon-api/src/models/_get_transaction_with_compression_info_post_request_params.rs index 93db3995d4..5c4d7e59f2 100644 --- a/photon-api/src/models/_get_transaction_with_compression_info_post_request_params.rs +++ b/photon-api/src/models/_get_transaction_with_compression_info_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_validity_proof_post_200_response.rs b/photon-api/src/models/_get_validity_proof_post_200_response.rs index d82b590dc3..e8810d258c 100644 --- a/photon-api/src/models/_get_validity_proof_post_200_response.rs +++ b/photon-api/src/models/_get_validity_proof_post_200_response.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_validity_proof_post_200_response_result.rs b/photon-api/src/models/_get_validity_proof_post_200_response_result.rs index 1c8e3d95b5..e31568c6f9 100644 --- a/photon-api/src/models/_get_validity_proof_post_200_response_result.rs +++ b/photon-api/src/models/_get_validity_proof_post_200_response_result.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_validity_proof_post_request.rs b/photon-api/src/models/_get_validity_proof_post_request.rs index b87c0339ac..f9b78b2580 100644 --- a/photon-api/src/models/_get_validity_proof_post_request.rs +++ b/photon-api/src/models/_get_validity_proof_post_request.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/_get_validity_proof_post_request_params.rs b/photon-api/src/models/_get_validity_proof_post_request_params.rs index 003b72207b..2a738fc598 100644 --- a/photon-api/src/models/_get_validity_proof_post_request_params.rs +++ b/photon-api/src/models/_get_validity_proof_post_request_params.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/account.rs b/photon-api/src/models/account.rs index 0baddd7840..9637eab4f4 100644 --- a/photon-api/src/models/account.rs +++ b/photon-api/src/models/account.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/account_data.rs b/photon-api/src/models/account_data.rs index ab3147477e..07b19e6e0f 100644 --- a/photon-api/src/models/account_data.rs +++ b/photon-api/src/models/account_data.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/account_list.rs b/photon-api/src/models/account_list.rs index ce0e702261..8ed578cc92 100644 --- a/photon-api/src/models/account_list.rs +++ b/photon-api/src/models/account_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/account_state.rs b/photon-api/src/models/account_state.rs index 7f1681b48e..4b3bb25b36 100644 --- a/photon-api/src/models/account_state.rs +++ b/photon-api/src/models/account_state.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/account_with_optional_token_data.rs b/photon-api/src/models/account_with_optional_token_data.rs index 5c538b1e83..686cfd809b 100644 --- a/photon-api/src/models/account_with_optional_token_data.rs +++ b/photon-api/src/models/account_with_optional_token_data.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/compressed_proof.rs b/photon-api/src/models/compressed_proof.rs index 757524afdf..1d90d8ffdf 100644 --- a/photon-api/src/models/compressed_proof.rs +++ b/photon-api/src/models/compressed_proof.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/compressed_proof_with_context.rs b/photon-api/src/models/compressed_proof_with_context.rs index beef78e97a..853f2803dd 100644 --- a/photon-api/src/models/compressed_proof_with_context.rs +++ b/photon-api/src/models/compressed_proof_with_context.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/context.rs b/photon-api/src/models/context.rs index 906e145d2f..468a4fa65d 100644 --- a/photon-api/src/models/context.rs +++ b/photon-api/src/models/context.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/merkle_context_with_new_address_proof.rs b/photon-api/src/models/merkle_context_with_new_address_proof.rs index eeef65649f..89e8b22ae0 100644 --- a/photon-api/src/models/merkle_context_with_new_address_proof.rs +++ b/photon-api/src/models/merkle_context_with_new_address_proof.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ @@ -18,8 +18,6 @@ pub struct MerkleContextWithNewAddressProof { /// A Solana public key represented as a base58 string. #[serde(rename = "higherRangeAddress")] pub higher_range_address: String, - #[serde(rename = "leafIndex")] - pub leaf_index: i32, #[serde(rename = "lowElementLeafIndex")] pub low_element_leaf_index: i32, /// A Solana public key represented as a base58 string. @@ -28,6 +26,8 @@ pub struct MerkleContextWithNewAddressProof { /// A Solana public key represented as a base58 string. #[serde(rename = "merkleTree")] pub merkle_tree: String, + #[serde(rename = "nextIndex")] + pub next_index: i32, #[serde(rename = "proof")] pub proof: Vec, /// A 32-byte hash represented as a base58 string. @@ -42,10 +42,10 @@ impl MerkleContextWithNewAddressProof { pub fn new( address: String, higher_range_address: String, - leaf_index: i32, low_element_leaf_index: i32, lower_range_address: String, merkle_tree: String, + next_index: i32, proof: Vec, root: String, root_seq: i32, @@ -53,10 +53,10 @@ impl MerkleContextWithNewAddressProof { MerkleContextWithNewAddressProof { address, higher_range_address, - leaf_index, low_element_leaf_index, lower_range_address, merkle_tree, + next_index, proof, root, root_seq, diff --git a/photon-api/src/models/merkle_proof_with_context.rs b/photon-api/src/models/merkle_proof_with_context.rs index 24f342c5e4..0245119362 100644 --- a/photon-api/src/models/merkle_proof_with_context.rs +++ b/photon-api/src/models/merkle_proof_with_context.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/paginated_account_list.rs b/photon-api/src/models/paginated_account_list.rs index e2539fc3a8..c41d3eb769 100644 --- a/photon-api/src/models/paginated_account_list.rs +++ b/photon-api/src/models/paginated_account_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/paginated_signature_info_list.rs b/photon-api/src/models/paginated_signature_info_list.rs index 85d911d3cb..be5d1e060d 100644 --- a/photon-api/src/models/paginated_signature_info_list.rs +++ b/photon-api/src/models/paginated_signature_info_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/signature_info.rs b/photon-api/src/models/signature_info.rs index 912e5b98a2..001f9f9627 100644 --- a/photon-api/src/models/signature_info.rs +++ b/photon-api/src/models/signature_info.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/signature_info_list.rs b/photon-api/src/models/signature_info_list.rs index 75444d4379..a2de05842d 100644 --- a/photon-api/src/models/signature_info_list.rs +++ b/photon-api/src/models/signature_info_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_acccount.rs b/photon-api/src/models/token_acccount.rs index 80d790c804..6e014eeea0 100644 --- a/photon-api/src/models/token_acccount.rs +++ b/photon-api/src/models/token_acccount.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_account_balance.rs b/photon-api/src/models/token_account_balance.rs index c0766ab153..2fc4c9b95d 100644 --- a/photon-api/src/models/token_account_balance.rs +++ b/photon-api/src/models/token_account_balance.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_account_list.rs b/photon-api/src/models/token_account_list.rs index 88a1d072ce..10be767414 100644 --- a/photon-api/src/models/token_account_list.rs +++ b/photon-api/src/models/token_account_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_balance.rs b/photon-api/src/models/token_balance.rs index 6de43a20bd..61651649e5 100644 --- a/photon-api/src/models/token_balance.rs +++ b/photon-api/src/models/token_balance.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_balance_list.rs b/photon-api/src/models/token_balance_list.rs index 619f612459..751b082a6c 100644 --- a/photon-api/src/models/token_balance_list.rs +++ b/photon-api/src/models/token_balance_list.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/photon-api/src/models/token_data.rs b/photon-api/src/models/token_data.rs index 291e78504b..69f72489ac 100644 --- a/photon-api/src/models/token_data.rs +++ b/photon-api/src/models/token_data.rs @@ -3,7 +3,7 @@ * * Solana indexer for general compression * - * The version of the OpenAPI document: 0.26.0 + * The version of the OpenAPI document: 0.28.0 * * Generated by: https://openapi-generator.tech */ diff --git a/scripts/install.sh b/scripts/install.sh index 82250c0948..1e9921ecbd 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -117,7 +117,7 @@ JQ_VERSION="jq-1.7.1" CIRCOM_VERSION=$(latest_release Lightprotocol circom) MACRO_CIRCOM_VERSION=$(latest_release Lightprotocol macro-circom) LIGHT_PROTOCOL_VERSION=$(latest_release Lightprotocol light-protocol) -PHOTON_VERSION="0.26.0" +PHOTON_VERSION="0.28.0" PHOTON_BRANCH="" case "${OS}" in diff --git a/test-utils/Cargo.toml b/test-utils/Cargo.toml index 89ccf491ad..d1d1bfbe97 100644 --- a/test-utils/Cargo.toml +++ b/test-utils/Cargo.toml @@ -39,7 +39,7 @@ light-verifier = { path = "../circuit-lib/verifier", version = "0.2.0" } light-utils = { path = "../utils", version = "0.2.0" } memoffset = "0.9.1" rand = "0.8" -photon-api = { path = "../photon-api", version = "0.27.0" } +photon-api = { path = "../photon-api", version = "0.28.0" } log = "0.4" [dev-dependencies]