Skip to content

Commit 98ca93b

Browse files
author
Max Strasinsky
committed
scripts/import-candid
1 parent fe17a4b commit 98ca93b

File tree

17 files changed

+88
-17
lines changed

17 files changed

+88
-17
lines changed

packages/ckbtc/candid/minter.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
22
// Represents an account on the ckBTC ledger.
33
type Account = record { owner : principal; subaccount : opt blob };
44

packages/cketh/candid/minter.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
22
type EthereumNetwork = variant {
33
// The public Ethereum mainnet.
44
Mainnet;

packages/cketh/candid/orchestrator.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
22
type OrchestratorArg = variant {
33
UpgradeArg : UpgradeArg;
44
InitArg : InitArg;

packages/cmc/candid/cmc.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/nns/cmc/cmc.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/nns/cmc/cmc.did' by import-candid
22
type Cycles = nat;
33
type BlockIndex = nat64;
44
type log_visibility = variant {

packages/ic-management/candid/ic-management.did

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from dfinity/portal commit 39bbfcbae104623ffca6743ed139f851bf7561de for file 'docs/references/_attachments/ic.did'
1+
// Generated from dfinity/portal commit 8453be2fa6fae9023bcea3b5ea8a8ef8225d5e4d for file 'docs/references/_attachments/ic.did'
22
type canister_id = principal;
33
type wasm_module = blob;
44
type snapshot_id = blob;
@@ -86,6 +86,10 @@ type ecdsa_curve = variant {
8686
secp256k1;
8787
};
8888

89+
type vetkd_curve = variant {
90+
bls12_381_g2;
91+
};
92+
8993
type schnorr_algorithm = variant {
9094
bip340secp256k1;
9195
ed25519;
@@ -353,6 +357,27 @@ type sign_with_schnorr_result = record {
353357
signature : blob;
354358
};
355359

360+
type vetkd_public_key_args = record {
361+
canister_id : opt canister_id;
362+
context : blob;
363+
key_id : record { curve : vetkd_curve; name : text };
364+
};
365+
366+
type vetkd_public_key_result = record {
367+
public_key : blob;
368+
};
369+
370+
type vetkd_derive_key_args = record {
371+
input : blob;
372+
context : blob;
373+
transport_public_key : blob;
374+
key_id : record { curve : vetkd_curve; name : text };
375+
};
376+
377+
type vetkd_derive_key_result = record {
378+
encrypted_key : blob;
379+
};
380+
356381
type node_metrics_history_args = record {
357382
subnet_id : principal;
358383
start_at_timestamp_nanos : nat64;
@@ -463,6 +488,10 @@ service ic : {
463488
schnorr_public_key : (schnorr_public_key_args) -> (schnorr_public_key_result);
464489
sign_with_schnorr : (sign_with_schnorr_args) -> (sign_with_schnorr_result);
465490

491+
// Threshold key derivation
492+
vetkd_public_key : (vetkd_public_key_args) -> (vetkd_public_key_result);
493+
vetkd_derive_key : (vetkd_derive_key_args) -> (vetkd_derive_key_result);
494+
466495
// bitcoin interface
467496
bitcoin_get_balance : (bitcoin_get_balance_args) -> (bitcoin_get_balance_result);
468497
bitcoin_get_utxos : (bitcoin_get_utxos_args) -> (bitcoin_get_utxos_result);

packages/ledger-icp/candid/index.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ledger_suite/icp/index/index.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ledger_suite/icp/index/index.did' by import-candid
22
type Account = record { owner : principal; subaccount : opt vec nat8 };
33
type GetAccountIdentifierTransactionsArgs = record {
44
max_results : nat64;

packages/ledger-icp/candid/ledger.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ledger_suite/icp/ledger.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ledger_suite/icp/ledger.did' by import-candid
22
// This is the official Ledger interface that is guaranteed to be backward compatible.
33

44
// Amount of tokens, measured in 10^-8 of a token.

packages/ledger-icrc/candid/icrc_index-ng.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ledger_suite/icrc1/index-ng/index-ng.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ledger_suite/icrc1/index-ng/index-ng.did' by import-candid
22
type Tokens = nat;
33

44
type InitArg = record {

packages/ledger-icrc/candid/icrc_ledger.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/ledger_suite/icrc1/ledger/ledger.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/ledger_suite/icrc1/ledger/ledger.did' by import-candid
22
type BlockIndex = nat;
33
type Subaccount = blob;
44
// Number of nanoseconds since the UNIX epoch in UTC timezone.

packages/nns/candid/genesis_token.did

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Generated from IC repo commit db0a9f6 (2025-05-22 tags: rosetta-icrc-release-1.2.2) 'rs/nns/gtc/canister/gtc.did' by import-candid
1+
// Generated from IC repo commit 2e5a2e15b1 (2025-06-05) 'rs/nns/gtc/canister/gtc.did' by import-candid
22
type AccountState = record {
33
authenticated_principal_id : opt principal;
44
successfully_transferred_neurons : vec TransferredNeuron;

0 commit comments

Comments
 (0)