diff --git a/packages/ckbtc/candid/minter.did b/packages/ckbtc/candid/minter.did index 7eddba70..c411ee9b 100644 --- a/packages/ckbtc/candid/minter.did +++ b/packages/ckbtc/candid/minter.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/bitcoin/ckbtc/minter/ckbtc_minter.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) '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 }; diff --git a/packages/cketh/candid/minter.did b/packages/cketh/candid/minter.did index f01377ae..a8bd7331 100644 --- a/packages/cketh/candid/minter.did +++ b/packages/cketh/candid/minter.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/ethereum/cketh/minter/cketh_minter.did' by import-candid type EthereumNetwork = variant { // The public Ethereum mainnet. Mainnet; diff --git a/packages/cketh/candid/orchestrator.did b/packages/cketh/candid/orchestrator.did index aca297cf..206beae6 100644 --- a/packages/cketh/candid/orchestrator.did +++ b/packages/cketh/candid/orchestrator.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/ethereum/ledger-suite-orchestrator/ledger_suite_orchestrator.did' by import-candid type OrchestratorArg = variant { UpgradeArg : UpgradeArg; InitArg : InitArg; diff --git a/packages/cmc/candid/cmc.did b/packages/cmc/candid/cmc.did index 35a927dc..26e38459 100644 --- a/packages/cmc/candid/cmc.did +++ b/packages/cmc/candid/cmc.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/nns/cmc/cmc.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/nns/cmc/cmc.did' by import-candid type Cycles = nat; type BlockIndex = nat64; type log_visibility = variant { diff --git a/packages/ic-management/candid/ic-management.certified.idl.js b/packages/ic-management/candid/ic-management.certified.idl.js index 706c7d32..1022c03d 100644 --- a/packages/ic-management/candid/ic-management.certified.idl.js +++ b/packages/ic-management/candid/ic-management.certified.idl.js @@ -12,12 +12,6 @@ export const idlFactory = ({ IDL }) => { }); const satoshi = IDL.Nat64; const bitcoin_get_balance_result = satoshi; - const bitcoin_get_balance_query_args = IDL.Record({ - 'network' : bitcoin_network, - 'address' : bitcoin_address, - 'min_confirmations' : IDL.Opt(IDL.Nat32), - }); - const bitcoin_get_balance_query_result = satoshi; const bitcoin_block_height = IDL.Nat32; const bitcoin_get_block_headers_args = IDL.Record({ 'start_height' : bitcoin_block_height, @@ -62,22 +56,6 @@ export const idlFactory = ({ IDL }) => { 'tip_block_hash' : bitcoin_block_hash, 'utxos' : IDL.Vec(utxo), }); - const bitcoin_get_utxos_query_args = IDL.Record({ - 'network' : bitcoin_network, - 'filter' : IDL.Opt( - IDL.Variant({ - 'page' : IDL.Vec(IDL.Nat8), - 'min_confirmations' : IDL.Nat32, - }) - ), - 'address' : bitcoin_address, - }); - const bitcoin_get_utxos_query_result = IDL.Record({ - 'next_page' : IDL.Opt(IDL.Vec(IDL.Nat8)), - 'tip_height' : bitcoin_block_height, - 'tip_block_hash' : bitcoin_block_hash, - 'utxos' : IDL.Vec(utxo), - }); const bitcoin_send_transaction_args = IDL.Record({ 'transaction' : IDL.Vec(IDL.Nat8), 'network' : bitcoin_network, @@ -340,11 +318,6 @@ export const idlFactory = ({ IDL }) => { [bitcoin_get_balance_result], [], ), - 'bitcoin_get_balance_query' : IDL.Func( - [bitcoin_get_balance_query_args], - [bitcoin_get_balance_query_result], - [], - ), 'bitcoin_get_block_headers' : IDL.Func( [bitcoin_get_block_headers_args], [bitcoin_get_block_headers_result], @@ -360,11 +333,6 @@ export const idlFactory = ({ IDL }) => { [bitcoin_get_utxos_result], [], ), - 'bitcoin_get_utxos_query' : IDL.Func( - [bitcoin_get_utxos_query_args], - [bitcoin_get_utxos_query_result], - [], - ), 'bitcoin_send_transaction' : IDL.Func( [bitcoin_send_transaction_args], [], diff --git a/packages/ic-management/candid/ic-management.d.ts b/packages/ic-management/candid/ic-management.d.ts index c4990b9c..27d991f0 100644 --- a/packages/ic-management/candid/ic-management.d.ts +++ b/packages/ic-management/candid/ic-management.d.ts @@ -11,12 +11,6 @@ export interface bitcoin_get_balance_args { address: bitcoin_address; min_confirmations: [] | [number]; } -export interface bitcoin_get_balance_query_args { - network: bitcoin_network; - address: bitcoin_address; - min_confirmations: [] | [number]; -} -export type bitcoin_get_balance_query_result = satoshi; export type bitcoin_get_balance_result = satoshi; export interface bitcoin_get_block_headers_args { start_height: bitcoin_block_height; @@ -40,19 +34,6 @@ export interface bitcoin_get_utxos_args { | [{ page: Uint8Array | number[] } | { min_confirmations: number }]; address: bitcoin_address; } -export interface bitcoin_get_utxos_query_args { - network: bitcoin_network; - filter: - | [] - | [{ page: Uint8Array | number[] } | { min_confirmations: number }]; - address: bitcoin_address; -} -export interface bitcoin_get_utxos_query_result { - next_page: [] | [Uint8Array | number[]]; - tip_height: bitcoin_block_height; - tip_block_hash: bitcoin_block_hash; - utxos: Array; -} export interface bitcoin_get_utxos_result { next_page: [] | [Uint8Array | number[]]; tip_height: bitcoin_block_height; @@ -322,10 +303,6 @@ export interface _SERVICE { [bitcoin_get_balance_args], bitcoin_get_balance_result >; - bitcoin_get_balance_query: ActorMethod< - [bitcoin_get_balance_query_args], - bitcoin_get_balance_query_result - >; bitcoin_get_block_headers: ActorMethod< [bitcoin_get_block_headers_args], bitcoin_get_block_headers_result @@ -338,10 +315,6 @@ export interface _SERVICE { [bitcoin_get_utxos_args], bitcoin_get_utxos_result >; - bitcoin_get_utxos_query: ActorMethod< - [bitcoin_get_utxos_query_args], - bitcoin_get_utxos_query_result - >; bitcoin_send_transaction: ActorMethod< [bitcoin_send_transaction_args], undefined diff --git a/packages/ic-management/candid/ic-management.did b/packages/ic-management/candid/ic-management.did index 53b4010c..37e885e1 100644 --- a/packages/ic-management/candid/ic-management.did +++ b/packages/ic-management/candid/ic-management.did @@ -1,4 +1,4 @@ -// Generated from dfinity/interface-spec commit 0a50e0c1eac44dbc0c02116ff110096a17c4c022 for file 'spec/_attachments/ic.did' +// Generated from dfinity/interface-spec commit 45a23a737ec37cb8c9b098e377af857b4b55abda for file 'spec/_attachments/ic.did' type canister_id = principal; type wasm_module = blob; @@ -126,22 +126,6 @@ type bitcoin_get_utxos_result = record { next_page : opt blob; }; -type bitcoin_get_utxos_query_args = record { - address : bitcoin_address; - network : bitcoin_network; - filter : opt variant { - min_confirmations : nat32; - page : blob; - }; -}; - -type bitcoin_get_utxos_query_result = record { - utxos : vec utxo; - tip_block_hash : bitcoin_block_hash; - tip_height : bitcoin_block_height; - next_page : opt blob; -}; - type bitcoin_get_balance_args = record { address : bitcoin_address; network : bitcoin_network; @@ -150,14 +134,6 @@ type bitcoin_get_balance_args = record { type bitcoin_get_balance_result = satoshi; -type bitcoin_get_balance_query_args = record { - address : bitcoin_address; - network : bitcoin_network; - min_confirmations : opt nat32; -}; - -type bitcoin_get_balance_query_result = satoshi; - type bitcoin_get_current_fee_percentiles_args = record { network : bitcoin_network; }; @@ -425,9 +401,7 @@ service ic : { // bitcoin interface bitcoin_get_balance : (bitcoin_get_balance_args) -> (bitcoin_get_balance_result); - bitcoin_get_balance_query : (bitcoin_get_balance_query_args) -> (bitcoin_get_balance_query_result) query; bitcoin_get_utxos : (bitcoin_get_utxos_args) -> (bitcoin_get_utxos_result); - bitcoin_get_utxos_query : (bitcoin_get_utxos_query_args) -> (bitcoin_get_utxos_query_result) query; bitcoin_send_transaction : (bitcoin_send_transaction_args) -> (); bitcoin_get_current_fee_percentiles : (bitcoin_get_current_fee_percentiles_args) -> (bitcoin_get_current_fee_percentiles_result); bitcoin_get_block_headers : (bitcoin_get_block_headers_args) -> (bitcoin_get_block_headers_result); diff --git a/packages/ic-management/candid/ic-management.idl.js b/packages/ic-management/candid/ic-management.idl.js index f7efe2bb..6c3ac917 100644 --- a/packages/ic-management/candid/ic-management.idl.js +++ b/packages/ic-management/candid/ic-management.idl.js @@ -12,12 +12,6 @@ export const idlFactory = ({ IDL }) => { }); const satoshi = IDL.Nat64; const bitcoin_get_balance_result = satoshi; - const bitcoin_get_balance_query_args = IDL.Record({ - 'network' : bitcoin_network, - 'address' : bitcoin_address, - 'min_confirmations' : IDL.Opt(IDL.Nat32), - }); - const bitcoin_get_balance_query_result = satoshi; const bitcoin_block_height = IDL.Nat32; const bitcoin_get_block_headers_args = IDL.Record({ 'start_height' : bitcoin_block_height, @@ -62,22 +56,6 @@ export const idlFactory = ({ IDL }) => { 'tip_block_hash' : bitcoin_block_hash, 'utxos' : IDL.Vec(utxo), }); - const bitcoin_get_utxos_query_args = IDL.Record({ - 'network' : bitcoin_network, - 'filter' : IDL.Opt( - IDL.Variant({ - 'page' : IDL.Vec(IDL.Nat8), - 'min_confirmations' : IDL.Nat32, - }) - ), - 'address' : bitcoin_address, - }); - const bitcoin_get_utxos_query_result = IDL.Record({ - 'next_page' : IDL.Opt(IDL.Vec(IDL.Nat8)), - 'tip_height' : bitcoin_block_height, - 'tip_block_hash' : bitcoin_block_hash, - 'utxos' : IDL.Vec(utxo), - }); const bitcoin_send_transaction_args = IDL.Record({ 'transaction' : IDL.Vec(IDL.Nat8), 'network' : bitcoin_network, @@ -340,11 +318,6 @@ export const idlFactory = ({ IDL }) => { [bitcoin_get_balance_result], [], ), - 'bitcoin_get_balance_query' : IDL.Func( - [bitcoin_get_balance_query_args], - [bitcoin_get_balance_query_result], - ['query'], - ), 'bitcoin_get_block_headers' : IDL.Func( [bitcoin_get_block_headers_args], [bitcoin_get_block_headers_result], @@ -360,11 +333,6 @@ export const idlFactory = ({ IDL }) => { [bitcoin_get_utxos_result], [], ), - 'bitcoin_get_utxos_query' : IDL.Func( - [bitcoin_get_utxos_query_args], - [bitcoin_get_utxos_query_result], - ['query'], - ), 'bitcoin_send_transaction' : IDL.Func( [bitcoin_send_transaction_args], [], diff --git a/packages/ledger-icp/candid/index.did b/packages/ledger-icp/candid/index.did index d636775a..c1dde218 100644 --- a/packages/ledger-icp/candid/index.did +++ b/packages/ledger-icp/candid/index.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/rosetta-api/icp_ledger/index/index.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/rosetta-api/icp_ledger/index/index.did' by import-candid type Account = record { owner : principal; subaccount : opt vec nat8 }; type GetAccountIdentifierTransactionsArgs = record { max_results : nat64; diff --git a/packages/ledger-icp/candid/ledger.did b/packages/ledger-icp/candid/ledger.did index fa6d02ae..ac62b0af 100644 --- a/packages/ledger-icp/candid/ledger.did +++ b/packages/ledger-icp/candid/ledger.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/rosetta-api/icp_ledger/ledger.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/rosetta-api/icp_ledger/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. diff --git a/packages/ledger-icrc/candid/icrc_index-ng.did b/packages/ledger-icrc/candid/icrc_index-ng.did index 2bf9cea6..10d409db 100644 --- a/packages/ledger-icrc/candid/icrc_index-ng.did +++ b/packages/ledger-icrc/candid/icrc_index-ng.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/rosetta-api/icrc1/index-ng/index-ng.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/rosetta-api/icrc1/index-ng/index-ng.did' by import-candid type Tokens = nat; type InitArg = record { diff --git a/packages/ledger-icrc/candid/icrc_index.did b/packages/ledger-icrc/candid/icrc_index.did index 4730793b..6db3377a 100644 --- a/packages/ledger-icrc/candid/icrc_index.did +++ b/packages/ledger-icrc/candid/icrc_index.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/rosetta-api/icrc1/index/index.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/rosetta-api/icrc1/index/index.did' by import-candid type TxId = nat; type Account = record { owner : principal; subaccount : opt blob }; diff --git a/packages/ledger-icrc/candid/icrc_ledger.did b/packages/ledger-icrc/candid/icrc_ledger.did index ed055b2d..0928937b 100644 --- a/packages/ledger-icrc/candid/icrc_ledger.did +++ b/packages/ledger-icrc/candid/icrc_ledger.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/rosetta-api/icrc1/ledger/ledger.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/rosetta-api/icrc1/ledger/ledger.did' by import-candid type BlockIndex = nat; type Subaccount = blob; // Number of nanoseconds since the UNIX epoch in UTC timezone. diff --git a/packages/nns/candid/genesis_token.did b/packages/nns/candid/genesis_token.did index d6bcb775..0fba5063 100644 --- a/packages/nns/candid/genesis_token.did +++ b/packages/nns/candid/genesis_token.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/nns/gtc/canister/gtc.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/nns/gtc/canister/gtc.did' by import-candid type AccountState = record { authenticated_principal_id : opt principal; successfully_transferred_neurons : vec TransferredNeuron; diff --git a/packages/nns/candid/governance.certified.idl.js b/packages/nns/candid/governance.certified.idl.js index 895853ea..f5a60b1f 100644 --- a/packages/nns/candid/governance.certified.idl.js +++ b/packages/nns/candid/governance.certified.idl.js @@ -485,7 +485,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), @@ -770,9 +769,6 @@ export const idlFactory = ({ IDL }) => { 'CreateServiceNervousSystem' : CreateServiceNervousSystem, 'ExecuteNnsFunction' : ExecuteNnsFunction, 'RewardNodeProvider' : RewardNodeProvider, - 'OpenSnsTokenSwap' : OpenSnsTokenSwap, - 'SetSnsTokenSwapOpenTimeWindow' : SetSnsTokenSwapOpenTimeWindow, - 'SetDefaultFollowees' : SetDefaultFollowees, 'RewardNodeProviders' : RewardNodeProviders, 'ManageNetworkEconomics' : NetworkEconomics, 'ApproveGenesisKyc' : Principals, @@ -873,7 +869,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuron = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Text), 'hotkeys' : IDL.Opt(Principals), 'is_capped' : IDL.Opt(IDL.Bool), 'nns_neuron_id' : IDL.Opt(IDL.Nat64), @@ -1454,7 +1449,6 @@ export const init = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), diff --git a/packages/nns/candid/governance.d.ts b/packages/nns/candid/governance.d.ts index 4f6c8e56..396f3147 100644 --- a/packages/nns/candid/governance.d.ts +++ b/packages/nns/candid/governance.d.ts @@ -575,7 +575,6 @@ export interface NeuronsFundMatchedFundingCurveCoefficients { } export interface NeuronsFundNeuron { controller: [] | [Principal]; - hotkey_principal: [] | [string]; hotkeys: [] | [Principals]; is_capped: [] | [boolean]; nns_neuron_id: [] | [bigint]; @@ -583,7 +582,6 @@ export interface NeuronsFundNeuron { } export interface NeuronsFundNeuronPortion { controller: [] | [Principal]; - hotkey_principal: [] | [Principal]; hotkeys: Array; is_capped: [] | [boolean]; maturity_equivalent_icp_e8s: [] | [bigint]; @@ -668,9 +666,6 @@ export type ProposalActionRequest = | { CreateServiceNervousSystem: CreateServiceNervousSystem } | { ExecuteNnsFunction: ExecuteNnsFunction } | { RewardNodeProvider: RewardNodeProvider } - | { OpenSnsTokenSwap: OpenSnsTokenSwap } - | { SetSnsTokenSwapOpenTimeWindow: SetSnsTokenSwapOpenTimeWindow } - | { SetDefaultFollowees: SetDefaultFollowees } | { RewardNodeProviders: RewardNodeProviders } | { ManageNetworkEconomics: NetworkEconomics } | { ApproveGenesisKyc: Principals } diff --git a/packages/nns/candid/governance.did b/packages/nns/candid/governance.did index 1fa9a04f..b5c3745b 100644 --- a/packages/nns/candid/governance.did +++ b/packages/nns/candid/governance.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/nns/governance/canister/governance.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/nns/governance/canister/governance.did' by import-candid type AccountIdentifier = record { hash : blob; }; @@ -677,7 +677,6 @@ type NeuronsFundMatchedFundingCurveCoefficients = record { type NeuronsFundNeuron = record { controller : opt principal; - hotkey_principal : opt text; hotkeys : opt Principals; is_capped : opt bool; nns_neuron_id : opt nat64; @@ -686,7 +685,6 @@ type NeuronsFundNeuron = record { type NeuronsFundNeuronPortion = record { controller : opt principal; - hotkey_principal : opt principal; hotkeys : vec principal; is_capped : opt bool; maturity_equivalent_icp_e8s : opt nat64; @@ -783,9 +781,6 @@ type ProposalActionRequest = variant { CreateServiceNervousSystem : CreateServiceNervousSystem; ExecuteNnsFunction : ExecuteNnsFunction; RewardNodeProvider : RewardNodeProvider; - OpenSnsTokenSwap : OpenSnsTokenSwap; - SetSnsTokenSwapOpenTimeWindow : SetSnsTokenSwapOpenTimeWindow; - SetDefaultFollowees : SetDefaultFollowees; RewardNodeProviders : RewardNodeProviders; ManageNetworkEconomics : NetworkEconomics; ApproveGenesisKyc : Principals; diff --git a/packages/nns/candid/governance.idl.js b/packages/nns/candid/governance.idl.js index ddab20e2..133a8fc5 100644 --- a/packages/nns/candid/governance.idl.js +++ b/packages/nns/candid/governance.idl.js @@ -485,7 +485,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), @@ -770,9 +769,6 @@ export const idlFactory = ({ IDL }) => { 'CreateServiceNervousSystem' : CreateServiceNervousSystem, 'ExecuteNnsFunction' : ExecuteNnsFunction, 'RewardNodeProvider' : RewardNodeProvider, - 'OpenSnsTokenSwap' : OpenSnsTokenSwap, - 'SetSnsTokenSwapOpenTimeWindow' : SetSnsTokenSwapOpenTimeWindow, - 'SetDefaultFollowees' : SetDefaultFollowees, 'RewardNodeProviders' : RewardNodeProviders, 'ManageNetworkEconomics' : NetworkEconomics, 'ApproveGenesisKyc' : Principals, @@ -873,7 +869,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuron = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Text), 'hotkeys' : IDL.Opt(Principals), 'is_capped' : IDL.Opt(IDL.Bool), 'nns_neuron_id' : IDL.Opt(IDL.Nat64), @@ -1470,7 +1465,6 @@ export const init = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), diff --git a/packages/nns/candid/governance_test.certified.idl.js b/packages/nns/candid/governance_test.certified.idl.js index 55265d67..4b68aba8 100644 --- a/packages/nns/candid/governance_test.certified.idl.js +++ b/packages/nns/candid/governance_test.certified.idl.js @@ -485,7 +485,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), @@ -770,9 +769,6 @@ export const idlFactory = ({ IDL }) => { 'CreateServiceNervousSystem' : CreateServiceNervousSystem, 'ExecuteNnsFunction' : ExecuteNnsFunction, 'RewardNodeProvider' : RewardNodeProvider, - 'OpenSnsTokenSwap' : OpenSnsTokenSwap, - 'SetSnsTokenSwapOpenTimeWindow' : SetSnsTokenSwapOpenTimeWindow, - 'SetDefaultFollowees' : SetDefaultFollowees, 'RewardNodeProviders' : RewardNodeProviders, 'ManageNetworkEconomics' : NetworkEconomics, 'ApproveGenesisKyc' : Principals, @@ -873,7 +869,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuron = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Text), 'hotkeys' : IDL.Opt(Principals), 'is_capped' : IDL.Opt(IDL.Bool), 'nns_neuron_id' : IDL.Opt(IDL.Nat64), @@ -1455,7 +1450,6 @@ export const init = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), diff --git a/packages/nns/candid/governance_test.d.ts b/packages/nns/candid/governance_test.d.ts index 9c1c3e47..1fed72aa 100644 --- a/packages/nns/candid/governance_test.d.ts +++ b/packages/nns/candid/governance_test.d.ts @@ -575,7 +575,6 @@ export interface NeuronsFundMatchedFundingCurveCoefficients { } export interface NeuronsFundNeuron { controller: [] | [Principal]; - hotkey_principal: [] | [string]; hotkeys: [] | [Principals]; is_capped: [] | [boolean]; nns_neuron_id: [] | [bigint]; @@ -583,7 +582,6 @@ export interface NeuronsFundNeuron { } export interface NeuronsFundNeuronPortion { controller: [] | [Principal]; - hotkey_principal: [] | [Principal]; hotkeys: Array; is_capped: [] | [boolean]; maturity_equivalent_icp_e8s: [] | [bigint]; @@ -668,9 +666,6 @@ export type ProposalActionRequest = | { CreateServiceNervousSystem: CreateServiceNervousSystem } | { ExecuteNnsFunction: ExecuteNnsFunction } | { RewardNodeProvider: RewardNodeProvider } - | { OpenSnsTokenSwap: OpenSnsTokenSwap } - | { SetSnsTokenSwapOpenTimeWindow: SetSnsTokenSwapOpenTimeWindow } - | { SetDefaultFollowees: SetDefaultFollowees } | { RewardNodeProviders: RewardNodeProviders } | { ManageNetworkEconomics: NetworkEconomics } | { ApproveGenesisKyc: Principals } diff --git a/packages/nns/candid/governance_test.did b/packages/nns/candid/governance_test.did index c6c88c89..2dfb3763 100644 --- a/packages/nns/candid/governance_test.did +++ b/packages/nns/candid/governance_test.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/nns/governance/canister/governance_test.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/nns/governance/canister/governance_test.did' by import-candid type AccountIdentifier = record { hash : blob; }; @@ -679,7 +679,6 @@ type NeuronsFundMatchedFundingCurveCoefficients = record { type NeuronsFundNeuron = record { controller : opt principal; - hotkey_principal : opt text; hotkeys : opt Principals; is_capped : opt bool; nns_neuron_id : opt nat64; @@ -688,7 +687,6 @@ type NeuronsFundNeuron = record { type NeuronsFundNeuronPortion = record { controller : opt principal; - hotkey_principal : opt principal; hotkeys : vec principal; is_capped : opt bool; maturity_equivalent_icp_e8s : opt nat64; @@ -785,9 +783,6 @@ type ProposalActionRequest = variant { CreateServiceNervousSystem : CreateServiceNervousSystem; ExecuteNnsFunction : ExecuteNnsFunction; RewardNodeProvider : RewardNodeProvider; - OpenSnsTokenSwap : OpenSnsTokenSwap; - SetSnsTokenSwapOpenTimeWindow : SetSnsTokenSwapOpenTimeWindow; - SetDefaultFollowees : SetDefaultFollowees; RewardNodeProviders : RewardNodeProviders; ManageNetworkEconomics : NetworkEconomics; ApproveGenesisKyc : Principals; diff --git a/packages/nns/candid/governance_test.idl.js b/packages/nns/candid/governance_test.idl.js index af8352d8..7e98402f 100644 --- a/packages/nns/candid/governance_test.idl.js +++ b/packages/nns/candid/governance_test.idl.js @@ -485,7 +485,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), @@ -770,9 +769,6 @@ export const idlFactory = ({ IDL }) => { 'CreateServiceNervousSystem' : CreateServiceNervousSystem, 'ExecuteNnsFunction' : ExecuteNnsFunction, 'RewardNodeProvider' : RewardNodeProvider, - 'OpenSnsTokenSwap' : OpenSnsTokenSwap, - 'SetSnsTokenSwapOpenTimeWindow' : SetSnsTokenSwapOpenTimeWindow, - 'SetDefaultFollowees' : SetDefaultFollowees, 'RewardNodeProviders' : RewardNodeProviders, 'ManageNetworkEconomics' : NetworkEconomics, 'ApproveGenesisKyc' : Principals, @@ -873,7 +869,6 @@ export const idlFactory = ({ IDL }) => { }); const NeuronsFundNeuron = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Text), 'hotkeys' : IDL.Opt(Principals), 'is_capped' : IDL.Opt(IDL.Bool), 'nns_neuron_id' : IDL.Opt(IDL.Nat64), @@ -1471,7 +1466,6 @@ export const init = ({ IDL }) => { }); const NeuronsFundNeuronPortion = IDL.Record({ 'controller' : IDL.Opt(IDL.Principal), - 'hotkey_principal' : IDL.Opt(IDL.Principal), 'hotkeys' : IDL.Vec(IDL.Principal), 'is_capped' : IDL.Opt(IDL.Bool), 'maturity_equivalent_icp_e8s' : IDL.Opt(IDL.Nat64), diff --git a/packages/nns/candid/sns_wasm.did b/packages/nns/candid/sns_wasm.did index 851f8b0c..a0f7fa67 100644 --- a/packages/nns/candid/sns_wasm.did +++ b/packages/nns/candid/sns_wasm.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/nns/sns-wasm/canister/sns-wasm.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/nns/sns-wasm/canister/sns-wasm.did' by import-candid type AddWasmRequest = record { hash : blob; wasm : opt SnsWasm; diff --git a/packages/sns/candid/sns_governance.certified.idl.js b/packages/sns/candid/sns_governance.certified.idl.js index 270a45c5..fe8cd594 100644 --- a/packages/sns/candid/sns_governance.certified.idl.js +++ b/packages/sns/candid/sns_governance.certified.idl.js @@ -399,18 +399,8 @@ export const idlFactory = ({ IDL }) => { const NeuronRecipes = IDL.Record({ 'neuron_recipes' : IDL.Vec(NeuronRecipe), }); - const NeuronParameters = IDL.Record({ - 'controller' : IDL.Opt(IDL.Principal), - 'dissolve_delay_seconds' : IDL.Opt(IDL.Nat64), - 'source_nns_neuron_id' : IDL.Opt(IDL.Nat64), - 'stake_e8s' : IDL.Opt(IDL.Nat64), - 'followees' : IDL.Vec(NeuronId), - 'hotkey' : IDL.Opt(IDL.Principal), - 'neuron_id' : IDL.Opt(NeuronId), - }); const ClaimSwapNeuronsRequest = IDL.Record({ 'neuron_recipes' : IDL.Opt(NeuronRecipes), - 'neuron_parameters' : IDL.Vec(NeuronParameters), }); const SwapNeuron = IDL.Record({ 'id' : IDL.Opt(NeuronId), diff --git a/packages/sns/candid/sns_governance.d.ts b/packages/sns/candid/sns_governance.d.ts index 16d4b218..c718cffd 100644 --- a/packages/sns/candid/sns_governance.d.ts +++ b/packages/sns/candid/sns_governance.d.ts @@ -67,7 +67,6 @@ export interface ClaimOrRefreshResponse { } export interface ClaimSwapNeuronsRequest { neuron_recipes: [] | [NeuronRecipes]; - neuron_parameters: Array; } export interface ClaimSwapNeuronsResponse { claim_swap_neurons_result: [] | [ClaimSwapNeuronsResult]; diff --git a/packages/sns/candid/sns_governance.did b/packages/sns/candid/sns_governance.did index 1ac67c32..ee0fe159 100644 --- a/packages/sns/candid/sns_governance.did +++ b/packages/sns/candid/sns_governance.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/sns/governance/canister/governance.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/sns/governance/canister/governance.did' by import-candid type Account = record { owner : opt principal; subaccount : opt Subaccount; @@ -76,7 +76,6 @@ type ClaimOrRefreshResponse = record { type ClaimSwapNeuronsRequest = record { neuron_recipes : opt NeuronRecipes; - neuron_parameters : vec NeuronParameters; }; type ClaimSwapNeuronsResponse = record { diff --git a/packages/sns/candid/sns_governance.idl.js b/packages/sns/candid/sns_governance.idl.js index b1a835e5..b720f90d 100644 --- a/packages/sns/candid/sns_governance.idl.js +++ b/packages/sns/candid/sns_governance.idl.js @@ -399,18 +399,8 @@ export const idlFactory = ({ IDL }) => { const NeuronRecipes = IDL.Record({ 'neuron_recipes' : IDL.Vec(NeuronRecipe), }); - const NeuronParameters = IDL.Record({ - 'controller' : IDL.Opt(IDL.Principal), - 'dissolve_delay_seconds' : IDL.Opt(IDL.Nat64), - 'source_nns_neuron_id' : IDL.Opt(IDL.Nat64), - 'stake_e8s' : IDL.Opt(IDL.Nat64), - 'followees' : IDL.Vec(NeuronId), - 'hotkey' : IDL.Opt(IDL.Principal), - 'neuron_id' : IDL.Opt(NeuronId), - }); const ClaimSwapNeuronsRequest = IDL.Record({ 'neuron_recipes' : IDL.Opt(NeuronRecipes), - 'neuron_parameters' : IDL.Vec(NeuronParameters), }); const SwapNeuron = IDL.Record({ 'id' : IDL.Opt(NeuronId), diff --git a/packages/sns/candid/sns_governance_test.certified.idl.js b/packages/sns/candid/sns_governance_test.certified.idl.js index fc97c11c..154d3e0d 100644 --- a/packages/sns/candid/sns_governance_test.certified.idl.js +++ b/packages/sns/candid/sns_governance_test.certified.idl.js @@ -406,18 +406,8 @@ export const idlFactory = ({ IDL }) => { const NeuronRecipes = IDL.Record({ 'neuron_recipes' : IDL.Vec(NeuronRecipe), }); - const NeuronParameters = IDL.Record({ - 'controller' : IDL.Opt(IDL.Principal), - 'dissolve_delay_seconds' : IDL.Opt(IDL.Nat64), - 'source_nns_neuron_id' : IDL.Opt(IDL.Nat64), - 'stake_e8s' : IDL.Opt(IDL.Nat64), - 'followees' : IDL.Vec(NeuronId), - 'hotkey' : IDL.Opt(IDL.Principal), - 'neuron_id' : IDL.Opt(NeuronId), - }); const ClaimSwapNeuronsRequest = IDL.Record({ 'neuron_recipes' : IDL.Opt(NeuronRecipes), - 'neuron_parameters' : IDL.Vec(NeuronParameters), }); const SwapNeuron = IDL.Record({ 'id' : IDL.Opt(NeuronId), diff --git a/packages/sns/candid/sns_governance_test.d.ts b/packages/sns/candid/sns_governance_test.d.ts index cb3b5f50..0f4435b3 100644 --- a/packages/sns/candid/sns_governance_test.d.ts +++ b/packages/sns/candid/sns_governance_test.d.ts @@ -74,7 +74,6 @@ export interface ClaimOrRefreshResponse { } export interface ClaimSwapNeuronsRequest { neuron_recipes: [] | [NeuronRecipes]; - neuron_parameters: Array; } export interface ClaimSwapNeuronsResponse { claim_swap_neurons_result: [] | [ClaimSwapNeuronsResult]; diff --git a/packages/sns/candid/sns_governance_test.did b/packages/sns/candid/sns_governance_test.did index 9ed94cdf..063d2571 100644 --- a/packages/sns/candid/sns_governance_test.did +++ b/packages/sns/candid/sns_governance_test.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/sns/governance/canister/governance_test.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/sns/governance/canister/governance_test.did' by import-candid type Account = record { owner : opt principal; subaccount : opt Subaccount; @@ -85,7 +85,6 @@ type ClaimOrRefreshResponse = record { type ClaimSwapNeuronsRequest = record { neuron_recipes : opt NeuronRecipes; - neuron_parameters : vec NeuronParameters; }; type ClaimSwapNeuronsResponse = record { diff --git a/packages/sns/candid/sns_governance_test.idl.js b/packages/sns/candid/sns_governance_test.idl.js index 2114249c..1a7b534c 100644 --- a/packages/sns/candid/sns_governance_test.idl.js +++ b/packages/sns/candid/sns_governance_test.idl.js @@ -406,18 +406,8 @@ export const idlFactory = ({ IDL }) => { const NeuronRecipes = IDL.Record({ 'neuron_recipes' : IDL.Vec(NeuronRecipe), }); - const NeuronParameters = IDL.Record({ - 'controller' : IDL.Opt(IDL.Principal), - 'dissolve_delay_seconds' : IDL.Opt(IDL.Nat64), - 'source_nns_neuron_id' : IDL.Opt(IDL.Nat64), - 'stake_e8s' : IDL.Opt(IDL.Nat64), - 'followees' : IDL.Vec(NeuronId), - 'hotkey' : IDL.Opt(IDL.Principal), - 'neuron_id' : IDL.Opt(NeuronId), - }); const ClaimSwapNeuronsRequest = IDL.Record({ 'neuron_recipes' : IDL.Opt(NeuronRecipes), - 'neuron_parameters' : IDL.Vec(NeuronParameters), }); const SwapNeuron = IDL.Record({ 'id' : IDL.Opt(NeuronId), diff --git a/packages/sns/candid/sns_root.did b/packages/sns/candid/sns_root.did index efd414a0..2f10f648 100644 --- a/packages/sns/candid/sns_root.did +++ b/packages/sns/candid/sns_root.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/sns/root/canister/root.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/sns/root/canister/root.did' by import-candid type CanisterCallError = record { code : opt int32; description : text; diff --git a/packages/sns/candid/sns_swap.did b/packages/sns/candid/sns_swap.did index cb2e22ac..feebf2bd 100644 --- a/packages/sns/candid/sns_swap.did +++ b/packages/sns/candid/sns_swap.did @@ -1,4 +1,4 @@ -// Generated from IC repo commit 35bfcad (2024-08-29 tags: release-2024-08-29_01-30-base) 'rs/sns/swap/canister/swap.did' by import-candid +// Generated from IC repo commit 843e71b (2024-08-14 tags: release-2024-09-06_01-30-canister-snapshots) 'rs/sns/swap/canister/swap.did' by import-candid type BuyerState = record { icp : opt TransferableAmount; has_created_neuron_recipes : opt bool;