Skip to content

Commit

Permalink
Update IC candid to release-2025-01-09_03-19-base (#822)
Browse files Browse the repository at this point in the history
# Motivation

Because [last week's automatic candid
update](#807) failed, we updated
the nns package separately with a fix in
#821

This PR updated the other packages without manual fixes.
The used release (`release-2025-01-09_03-19-base`) is already not the
newest release anymore.
We don't just straight to the newest release
(`release-2025-01-16_16-18-base`) because it does require additional
manual fixed.

# Changes

1. Checked out `release-2025-01-09_03-19-base` in IC repo.
2. Ran `scripts/import-candid ../../ic`.
3. Ran `scripts/compile-idl-js`.

# Tests

Existing tests pass.

# Todos

- [ ] Add entry to changelog (if necessary).
not necessary
  • Loading branch information
dskloetd authored Jan 20, 2025
1 parent 96915e8 commit bb4d039
Show file tree
Hide file tree
Showing 38 changed files with 121 additions and 37 deletions.
4 changes: 2 additions & 2 deletions packages/ckbtc/candid/bitcoin.did
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Generated from dfinity/bitcoin-canister commit 85d5c2a497a9b91d565437315d9e489e50821d01 for file 'canister/candid.did'
// Generated from dfinity/bitcoin-canister commit 47c5d1f14eff39282245ea6aec6e9f821571b024 for file 'canister/candid.did'
type network = variant {
mainnet;
testnet;
testnet; // Bitcoin testnet4.
regtest;
};

Expand Down
6 changes: 5 additions & 1 deletion packages/ckbtc/candid/minter.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const idlFactory = ({ IDL }) => {
'p2wpkh_v0' : IDL.Vec(IDL.Nat8),
'p2pkh' : IDL.Vec(IDL.Nat8),
});
const Event = IDL.Variant({
const EventType = IDL.Variant({
'received_utxos' : IDL.Record({
'to_account' : Account,
'mint_txid' : IDL.Opt(IDL.Nat64),
Expand Down Expand Up @@ -171,6 +171,10 @@ export const idlFactory = ({ IDL }) => {
'mint_block_index' : IDL.Nat64,
}),
});
const Event = IDL.Record({
'timestamp' : IDL.Opt(IDL.Nat64),
'payload' : EventType,
});
const MinterInfo = IDL.Record({
'retrieve_btc_min_amount' : IDL.Nat64,
'min_confirmations' : IDL.Nat32,
Expand Down
6 changes: 5 additions & 1 deletion packages/ckbtc/candid/minter.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,11 @@ export interface DefiniteCanisterSettings {
memory_allocation: bigint;
compute_allocation: bigint;
}
export type Event =
export interface Event {
timestamp: [] | [bigint];
payload: EventType;
}
export type EventType =
| {
received_utxos: {
to_account: Account;
Expand Down
9 changes: 7 additions & 2 deletions packages/ckbtc/candid/minter.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid
// Represents an account on the ckBTC ledger.
type Account = record { owner : principal; subaccount : opt blob };

Expand Down Expand Up @@ -351,7 +351,12 @@ type SuspendedReason = variant {
Quarantined;
};

type Event = variant {
type Event = record {
timestamp : opt nat64;
payload : EventType;
};

type EventType = variant {
init : InitArgs;
upgrade : UpgradeArgs;
received_utxos : record { to_account : Account; mint_txid : opt nat64; utxos : vec Utxo };
Expand Down
6 changes: 5 additions & 1 deletion packages/ckbtc/candid/minter.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export const idlFactory = ({ IDL }) => {
'p2wpkh_v0' : IDL.Vec(IDL.Nat8),
'p2pkh' : IDL.Vec(IDL.Nat8),
});
const Event = IDL.Variant({
const EventType = IDL.Variant({
'received_utxos' : IDL.Record({
'to_account' : Account,
'mint_txid' : IDL.Opt(IDL.Nat64),
Expand Down Expand Up @@ -171,6 +171,10 @@ export const idlFactory = ({ IDL }) => {
'mint_block_index' : IDL.Nat64,
}),
});
const Event = IDL.Record({
'timestamp' : IDL.Opt(IDL.Nat64),
'payload' : EventType,
});
const MinterInfo = IDL.Record({
'retrieve_btc_min_amount' : IDL.Nat64,
'min_confirmations' : IDL.Nat32,
Expand Down
2 changes: 1 addition & 1 deletion packages/cketh/candid/minter.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid
type EthereumNetwork = variant {
// The public Ethereum mainnet.
Mainnet;
Expand Down
2 changes: 1 addition & 1 deletion packages/cketh/candid/orchestrator.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid
type OrchestratorArg = variant {
UpgradeArg : UpgradeArg;
InitArg : InitArg;
Expand Down
2 changes: 1 addition & 1 deletion packages/cmc/candid/cmc.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/nns/cmc/cmc.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/nns/cmc/cmc.did' by import-candid
type Cycles = nat;
type BlockIndex = nat64;
type log_visibility = variant {
Expand Down
4 changes: 4 additions & 0 deletions packages/ic-management/candid/ic-management.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,11 @@ export const idlFactory = ({ IDL }) => {
const sign_with_ecdsa_result = IDL.Record({
'signature' : IDL.Vec(IDL.Nat8),
});
const schnorr_aux = IDL.Variant({
'bip341' : IDL.Record({ 'merkle_root_hash' : IDL.Vec(IDL.Nat8) }),
});
const sign_with_schnorr_args = IDL.Record({
'aux' : IDL.Opt(schnorr_aux),
'key_id' : IDL.Record({
'algorithm' : schnorr_algorithm,
'name' : IDL.Text,
Expand Down
4 changes: 4 additions & 0 deletions packages/ic-management/candid/ic-management.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,9 @@ export interface provisional_top_up_canister_args {
export type raw_rand_result = Uint8Array | number[];
export type satoshi = bigint;
export type schnorr_algorithm = { ed25519: null } | { bip340secp256k1: null };
export type schnorr_aux = {
bip341: { merkle_root_hash: Uint8Array | number[] };
};
export interface schnorr_public_key_args {
key_id: { algorithm: schnorr_algorithm; name: string };
canister_id: [] | [canister_id];
Expand All @@ -284,6 +287,7 @@ export interface sign_with_ecdsa_result {
signature: Uint8Array | number[];
}
export interface sign_with_schnorr_args {
aux: [] | [schnorr_aux];
key_id: { algorithm: schnorr_algorithm; name: string };
derivation_path: Array<Uint8Array | number[]>;
message: Uint8Array | number[];
Expand Down
9 changes: 8 additions & 1 deletion packages/ic-management/candid/ic-management.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from dfinity/portal commit 7b300dc97a1636f8134410e9a40f3556acf9b496 for file 'docs/references/_attachments/ic.did'
// Generated from dfinity/portal commit aed4ac730cc662713c0353609af96bbb2cd3a8ca for file 'docs/references/_attachments/ic.did'
type canister_id = principal;
type wasm_module = blob;
type snapshot_id = blob;
Expand Down Expand Up @@ -324,10 +324,17 @@ type schnorr_public_key_result = record {
chain_code : blob;
};

type schnorr_aux = variant {
bip341: record {
merkle_root_hash: blob;
}
};

type sign_with_schnorr_args = record {
message : blob;
derivation_path : vec blob;
key_id : record { algorithm : schnorr_algorithm; name : text };
aux: opt schnorr_aux;
};

type sign_with_schnorr_result = record {
Expand Down
4 changes: 4 additions & 0 deletions packages/ic-management/candid/ic-management.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,11 @@ export const idlFactory = ({ IDL }) => {
const sign_with_ecdsa_result = IDL.Record({
'signature' : IDL.Vec(IDL.Nat8),
});
const schnorr_aux = IDL.Variant({
'bip341' : IDL.Record({ 'merkle_root_hash' : IDL.Vec(IDL.Nat8) }),
});
const sign_with_schnorr_args = IDL.Record({
'aux' : IDL.Opt(schnorr_aux),
'key_id' : IDL.Record({
'algorithm' : schnorr_algorithm,
'name' : IDL.Text,
Expand Down
2 changes: 1 addition & 1 deletion packages/ledger-icp/candid/index.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ledger_suite/icp/index/index.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ledger_suite/icp/index/index.did' by import-candid
type Account = record { owner : principal; subaccount : opt vec nat8 };
type GetAccountIdentifierTransactionsArgs = record {
max_results : nat64;
Expand Down
1 change: 1 addition & 0 deletions packages/ledger-icp/candid/ledger.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,7 @@ export const idlFactory = ({ IDL }) => {
[TransferFromResult],
[],
),
'is_ledger_ready' : IDL.Func([], [IDL.Bool], []),
'name' : IDL.Func([], [IDL.Record({ 'name' : IDL.Text })], []),
'query_blocks' : IDL.Func([GetBlocksArgs], [QueryBlocksResponse], []),
'query_encoded_blocks' : IDL.Func(
Expand Down
1 change: 1 addition & 0 deletions packages/ledger-icp/candid/ledger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,7 @@ export interface _SERVICE {
icrc2_allowance: ActorMethod<[AllowanceArgs], Allowance>;
icrc2_approve: ActorMethod<[ApproveArgs], ApproveResult>;
icrc2_transfer_from: ActorMethod<[TransferFromArgs], TransferFromResult>;
is_ledger_ready: ActorMethod<[], boolean>;
name: ActorMethod<[], { name: string }>;
query_blocks: ActorMethod<[GetBlocksArgs], QueryBlocksResponse>;
query_encoded_blocks: ActorMethod<
Expand Down
4 changes: 3 additions & 1 deletion packages/ledger-icp/candid/ledger.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ledger_suite/icp/ledger.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ledger_suite/icp/ledger.did' by import-candid
// This is the official Ledger interface that is guaranteed to be backward compatible.

// Amount of tokens, measured in 10^-8 of a token.
Expand Down Expand Up @@ -536,4 +536,6 @@ service: (LedgerCanisterPayload) -> {

icrc21_canister_call_consent_message: (icrc21_consent_message_request) -> (icrc21_consent_message_response);
icrc10_supported_standards : () -> (vec record { name : text; url : text }) query;

is_ledger_ready: () -> (bool) query;
}
1 change: 1 addition & 0 deletions packages/ledger-icp/candid/ledger.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ export const idlFactory = ({ IDL }) => {
[TransferFromResult],
[],
),
'is_ledger_ready' : IDL.Func([], [IDL.Bool], ['query']),
'name' : IDL.Func([], [IDL.Record({ 'name' : IDL.Text })], ['query']),
'query_blocks' : IDL.Func(
[GetBlocksArgs],
Expand Down
2 changes: 1 addition & 1 deletion packages/ledger-icrc/candid/icrc_index-ng.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ledger_suite/icrc1/index-ng/index-ng.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ledger_suite/icrc1/index-ng/index-ng.did' by import-candid
type Tokens = nat;

type InitArg = record {
Expand Down
6 changes: 0 additions & 6 deletions packages/ledger-icrc/candid/icrc_ledger.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const idlFactory = ({ IDL }) => {
'token_symbol' : IDL.Opt(IDL.Text),
'transfer_fee' : IDL.Opt(IDL.Nat),
'metadata' : IDL.Opt(IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue))),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'change_fee_collector' : IDL.Opt(ChangeFeeCollector),
'max_memo_length' : IDL.Opt(IDL.Nat16),
'token_name' : IDL.Opt(IDL.Text),
Expand All @@ -47,8 +46,6 @@ export const idlFactory = ({ IDL }) => {
'metadata' : IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue)),
'minting_account' : Account,
'initial_balances' : IDL.Vec(IDL.Tuple(Account, IDL.Nat)),
'maximum_number_of_accounts' : IDL.Opt(IDL.Nat64),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'fee_collector_account' : IDL.Opt(Account),
'archive_options' : IDL.Record({
'num_blocks_to_archive' : IDL.Nat64,
Expand Down Expand Up @@ -440,7 +437,6 @@ export const init = ({ IDL }) => {
'token_symbol' : IDL.Opt(IDL.Text),
'transfer_fee' : IDL.Opt(IDL.Nat),
'metadata' : IDL.Opt(IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue))),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'change_fee_collector' : IDL.Opt(ChangeFeeCollector),
'max_memo_length' : IDL.Opt(IDL.Nat16),
'token_name' : IDL.Opt(IDL.Text),
Expand All @@ -453,8 +449,6 @@ export const init = ({ IDL }) => {
'metadata' : IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue)),
'minting_account' : Account,
'initial_balances' : IDL.Vec(IDL.Tuple(Account, IDL.Nat)),
'maximum_number_of_accounts' : IDL.Opt(IDL.Nat64),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'fee_collector_account' : IDL.Opt(Account),
'archive_options' : IDL.Record({
'num_blocks_to_archive' : IDL.Nat64,
Expand Down
3 changes: 0 additions & 3 deletions packages/ledger-icrc/candid/icrc_ledger.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,6 @@ export interface InitArgs {
metadata: Array<[string, MetadataValue]>;
minting_account: Account;
initial_balances: Array<[Account, bigint]>;
maximum_number_of_accounts: [] | [bigint];
accounts_overflow_trim_quantity: [] | [bigint];
fee_collector_account: [] | [Account];
archive_options: {
num_blocks_to_archive: bigint;
Expand Down Expand Up @@ -269,7 +267,6 @@ export interface UpgradeArgs {
token_symbol: [] | [string];
transfer_fee: [] | [bigint];
metadata: [] | [Array<[string, MetadataValue]>];
accounts_overflow_trim_quantity: [] | [bigint];
change_fee_collector: [] | [ChangeFeeCollector];
max_memo_length: [] | [number];
token_name: [] | [string];
Expand Down
5 changes: 1 addition & 4 deletions packages/ledger-icrc/candid/icrc_ledger.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/ledger_suite/icrc1/ledger/ledger.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/ledger_suite/icrc1/ledger/ledger.did' by import-candid
type BlockIndex = nat;
type Subaccount = blob;
// Number of nanoseconds since the UNIX epoch in UTC timezone.
Expand Down Expand Up @@ -108,8 +108,6 @@ type InitArgs = record {
metadata : vec record { text; MetadataValue };
initial_balances : vec record { Account; nat };
feature_flags : opt FeatureFlags;
maximum_number_of_accounts : opt nat64;
accounts_overflow_trim_quantity : opt nat64;
archive_options : record {
num_blocks_to_archive : nat64;
max_transactions_per_response : opt nat64;
Expand Down Expand Up @@ -145,7 +143,6 @@ type UpgradeArgs = record {
change_fee_collector : opt ChangeFeeCollector;
max_memo_length : opt nat16;
feature_flags : opt FeatureFlags;
accounts_overflow_trim_quantity: opt nat64;
change_archive_options : opt ChangeArchiveOptions;
};

Expand Down
6 changes: 0 additions & 6 deletions packages/ledger-icrc/candid/icrc_ledger.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ export const idlFactory = ({ IDL }) => {
'token_symbol' : IDL.Opt(IDL.Text),
'transfer_fee' : IDL.Opt(IDL.Nat),
'metadata' : IDL.Opt(IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue))),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'change_fee_collector' : IDL.Opt(ChangeFeeCollector),
'max_memo_length' : IDL.Opt(IDL.Nat16),
'token_name' : IDL.Opt(IDL.Text),
Expand All @@ -47,8 +46,6 @@ export const idlFactory = ({ IDL }) => {
'metadata' : IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue)),
'minting_account' : Account,
'initial_balances' : IDL.Vec(IDL.Tuple(Account, IDL.Nat)),
'maximum_number_of_accounts' : IDL.Opt(IDL.Nat64),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'fee_collector_account' : IDL.Opt(Account),
'archive_options' : IDL.Record({
'num_blocks_to_archive' : IDL.Nat64,
Expand Down Expand Up @@ -452,7 +449,6 @@ export const init = ({ IDL }) => {
'token_symbol' : IDL.Opt(IDL.Text),
'transfer_fee' : IDL.Opt(IDL.Nat),
'metadata' : IDL.Opt(IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue))),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'change_fee_collector' : IDL.Opt(ChangeFeeCollector),
'max_memo_length' : IDL.Opt(IDL.Nat16),
'token_name' : IDL.Opt(IDL.Text),
Expand All @@ -465,8 +461,6 @@ export const init = ({ IDL }) => {
'metadata' : IDL.Vec(IDL.Tuple(IDL.Text, MetadataValue)),
'minting_account' : Account,
'initial_balances' : IDL.Vec(IDL.Tuple(Account, IDL.Nat)),
'maximum_number_of_accounts' : IDL.Opt(IDL.Nat64),
'accounts_overflow_trim_quantity' : IDL.Opt(IDL.Nat64),
'fee_collector_account' : IDL.Opt(Account),
'archive_options' : IDL.Record({
'num_blocks_to_archive' : IDL.Nat64,
Expand Down
3 changes: 3 additions & 0 deletions packages/sns/candid/sns_governance.certified.idl.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ export const idlFactory = ({ IDL }) => {
});
const ManageDappCanisterSettings = IDL.Record({
'freezing_threshold' : IDL.Opt(IDL.Nat64),
'wasm_memory_threshold' : IDL.Opt(IDL.Nat64),
'canister_ids' : IDL.Vec(IDL.Principal),
'reserved_cycles_limit' : IDL.Opt(IDL.Nat64),
'log_visibility' : IDL.Opt(IDL.Int32),
Expand Down Expand Up @@ -526,6 +527,7 @@ export const idlFactory = ({ IDL }) => {
});
const DefiniteCanisterSettingsArgs = IDL.Record({
'freezing_threshold' : IDL.Nat,
'wasm_memory_threshold' : IDL.Opt(IDL.Nat),
'controllers' : IDL.Vec(IDL.Principal),
'wasm_memory_limit' : IDL.Opt(IDL.Nat),
'memory_allocation' : IDL.Nat,
Expand Down Expand Up @@ -927,6 +929,7 @@ export const init = ({ IDL }) => {
});
const ManageDappCanisterSettings = IDL.Record({
'freezing_threshold' : IDL.Opt(IDL.Nat64),
'wasm_memory_threshold' : IDL.Opt(IDL.Nat64),
'canister_ids' : IDL.Vec(IDL.Principal),
'reserved_cycles_limit' : IDL.Opt(IDL.Nat64),
'log_visibility' : IDL.Opt(IDL.Int32),
Expand Down
2 changes: 2 additions & 0 deletions packages/sns/candid/sns_governance.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ export interface DefaultFollowees {
}
export interface DefiniteCanisterSettingsArgs {
freezing_threshold: bigint;
wasm_memory_threshold: [] | [bigint];
controllers: Array<Principal>;
wasm_memory_limit: [] | [bigint];
memory_allocation: bigint;
Expand Down Expand Up @@ -327,6 +328,7 @@ export interface ListProposalsResponse {
}
export interface ManageDappCanisterSettings {
freezing_threshold: [] | [bigint];
wasm_memory_threshold: [] | [bigint];
canister_ids: Array<Principal>;
reserved_cycles_limit: [] | [bigint];
log_visibility: [] | [number];
Expand Down
4 changes: 3 additions & 1 deletion packages/sns/candid/sns_governance.did
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Generated from IC repo commit d9fe207 (2024-12-06 tags: release-2024-12-06_03-16-base) 'rs/sns/governance/canister/governance.did' by import-candid
// Generated from IC repo commit aa705aaa62 (2025-01-08 tags: release-2025-01-09_03-19-base) 'rs/sns/governance/canister/governance.did' by import-candid
type Account = record {
owner : opt principal;
subaccount : opt Subaccount;
Expand Down Expand Up @@ -158,6 +158,7 @@ type DefiniteCanisterSettingsArgs = record {
wasm_memory_limit : opt nat;
memory_allocation : nat;
compute_allocation : nat;
wasm_memory_threshold : opt nat;
};

type DeregisterDappCanisters = record {
Expand Down Expand Up @@ -376,6 +377,7 @@ type ManageDappCanisterSettings = record {
wasm_memory_limit : opt nat64;
memory_allocation : opt nat64;
compute_allocation : opt nat64;
wasm_memory_threshold : opt nat64;
};

type SnsVersion = record {
Expand Down
Loading

0 comments on commit bb4d039

Please sign in to comment.