Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ resolver = "2"
[workspace.package]
edition = "2024"
license = "MIT"
version = "0.6.0"
version = "0.6.1"

[profile.release]
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion crates/ledgrpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "canton-proto-rs"
edition.workspace = true
license.workspace = true
version = "3.4.0"
version = "3.5.3"

[dependencies]
prost = { version = "0.14.1" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,13 @@ message ImportPartyAcsRequest {
// Required
bytes acs_snapshot = 1;

// The identifier of the synchronizer the imported contracts are assigned to.
// Required (Canton 3.5+).
optional string synchronizer_id = 2;

// Custom prefix for the workflow ID to easily identify all transactions generated by this import.
// Optional. If left empty, the service will generate a prefix such as `import-<random_UUID>`.
string workflow_id_prefix = 2;
optional string workflow_id_prefix = 3;

// How imported contracts should be validated upon import.
//
Expand All @@ -289,12 +293,16 @@ message ImportPartyAcsRequest {
// that the assigned representative package IDs correctly validate the imported contracts.
//
// Required
ContractImportMode contract_import_mode = 3;
optional ContractImportMode contract_import_mode = 4;

// The representative package ID override rules to be applied during import.
//
// Optional
RepresentativePackageIdOverride representative_package_id_override = 4;
optional RepresentativePackageIdOverride representative_package_id_override = 5;

// The party whose ACS is being imported.
// Required (Canton 3.5+).
optional string party_id = 6;
}

message ImportPartyAcsResponse {}
Expand Down