@dfinity/nns 7.0.1 → 7.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -59,9 +59,10 @@ export const idlFactory = ({ IDL }) => {
59
59
  'SetDissolveTimestamp' : SetDissolveTimestamp,
60
60
  });
61
61
  const Configure = IDL.Record({ 'operation' : IDL.Opt(Operation) });
62
+ const ProposalId = IDL.Record({ 'id' : IDL.Nat64 });
62
63
  const RegisterVote = IDL.Record({
63
64
  'vote' : IDL.Int32,
64
- 'proposal' : IDL.Opt(NeuronId),
65
+ 'proposal' : IDL.Opt(ProposalId),
65
66
  });
66
67
  const Merge = IDL.Record({ 'source_neuron_id' : IDL.Opt(NeuronId) });
67
68
  const DisburseToNeuron = IDL.Record({
@@ -447,7 +448,7 @@ export const idlFactory = ({ IDL }) => {
447
448
  'total_available_e8s_equivalent' : IDL.Nat64,
448
449
  'latest_round_available_e8s_equivalent' : IDL.Opt(IDL.Nat64),
449
450
  'distributed_e8s_equivalent' : IDL.Nat64,
450
- 'settled_proposals' : IDL.Vec(NeuronId),
451
+ 'settled_proposals' : IDL.Vec(ProposalId),
451
452
  });
452
453
  const NeuronStakeTransfer = IDL.Record({
453
454
  'to_subaccount' : IDL.Vec(IDL.Nat8),
@@ -550,7 +551,7 @@ export const idlFactory = ({ IDL }) => {
550
551
  'current_deadline_timestamp_seconds' : IDL.Nat64,
551
552
  });
552
553
  const ProposalData = IDL.Record({
553
- 'id' : IDL.Opt(NeuronId),
554
+ 'id' : IDL.Opt(ProposalId),
554
555
  'failure_reason' : IDL.Opt(GovernanceError),
555
556
  'ballots' : IDL.Vec(IDL.Tuple(IDL.Nat64, Ballot)),
556
557
  'proposal_timestamp_seconds' : IDL.Nat64,
@@ -587,7 +588,7 @@ export const idlFactory = ({ IDL }) => {
587
588
  });
588
589
  const BallotInfo = IDL.Record({
589
590
  'vote' : IDL.Int32,
590
- 'proposal_id' : IDL.Opt(NeuronId),
591
+ 'proposal_id' : IDL.Opt(ProposalId),
591
592
  });
592
593
  const DissolveState = IDL.Variant({
593
594
  'DissolveDelaySeconds' : IDL.Nat64,
@@ -678,7 +679,7 @@ export const idlFactory = ({ IDL }) => {
678
679
  });
679
680
  const Result_5 = IDL.Variant({ 'Ok' : NeuronInfo, 'Err' : GovernanceError });
680
681
  const GetNeuronsFundAuditInfoRequest = IDL.Record({
681
- 'nns_proposal_id' : IDL.Opt(NeuronId),
682
+ 'nns_proposal_id' : IDL.Opt(ProposalId),
682
683
  });
683
684
  const NeuronsFundAuditInfo = IDL.Record({
684
685
  'final_neurons_fund_participation' : IDL.Opt(NeuronsFundParticipation),
@@ -697,7 +698,7 @@ export const idlFactory = ({ IDL }) => {
697
698
  'Err' : GovernanceError,
698
699
  });
699
700
  const ProposalInfo = IDL.Record({
700
- 'id' : IDL.Opt(NeuronId),
701
+ 'id' : IDL.Opt(ProposalId),
701
702
  'status' : IDL.Int32,
702
703
  'topic' : IDL.Int32,
703
704
  'failure_reason' : IDL.Opt(GovernanceError),
@@ -744,7 +745,7 @@ export const idlFactory = ({ IDL }) => {
744
745
  const ListProposalInfo = IDL.Record({
745
746
  'include_reward_status' : IDL.Vec(IDL.Int32),
746
747
  'omit_large_fields' : IDL.Opt(IDL.Bool),
747
- 'before_proposal' : IDL.Opt(NeuronId),
748
+ 'before_proposal' : IDL.Opt(ProposalId),
748
749
  'limit' : IDL.Nat32,
749
750
  'exclude_topic' : IDL.Vec(IDL.Int32),
750
751
  'include_all_manage_neuron_proposals' : IDL.Opt(IDL.Bool),
@@ -814,7 +815,7 @@ export const idlFactory = ({ IDL }) => {
814
815
  });
815
816
  const MakeProposalResponse = IDL.Record({
816
817
  'message' : IDL.Opt(IDL.Text),
817
- 'proposal_id' : IDL.Opt(NeuronId),
818
+ 'proposal_id' : IDL.Opt(ProposalId),
818
819
  });
819
820
  const StakeMaturityResponse = IDL.Record({
820
821
  'maturity_e8s' : IDL.Nat64,
@@ -1040,9 +1041,10 @@ export const init = ({ IDL }) => {
1040
1041
  'SetDissolveTimestamp' : SetDissolveTimestamp,
1041
1042
  });
1042
1043
  const Configure = IDL.Record({ 'operation' : IDL.Opt(Operation) });
1044
+ const ProposalId = IDL.Record({ 'id' : IDL.Nat64 });
1043
1045
  const RegisterVote = IDL.Record({
1044
1046
  'vote' : IDL.Int32,
1045
- 'proposal' : IDL.Opt(NeuronId),
1047
+ 'proposal' : IDL.Opt(ProposalId),
1046
1048
  });
1047
1049
  const Merge = IDL.Record({ 'source_neuron_id' : IDL.Opt(NeuronId) });
1048
1050
  const DisburseToNeuron = IDL.Record({
@@ -1428,7 +1430,7 @@ export const init = ({ IDL }) => {
1428
1430
  'total_available_e8s_equivalent' : IDL.Nat64,
1429
1431
  'latest_round_available_e8s_equivalent' : IDL.Opt(IDL.Nat64),
1430
1432
  'distributed_e8s_equivalent' : IDL.Nat64,
1431
- 'settled_proposals' : IDL.Vec(NeuronId),
1433
+ 'settled_proposals' : IDL.Vec(ProposalId),
1432
1434
  });
1433
1435
  const NeuronStakeTransfer = IDL.Record({
1434
1436
  'to_subaccount' : IDL.Vec(IDL.Nat8),
@@ -1531,7 +1533,7 @@ export const init = ({ IDL }) => {
1531
1533
  'current_deadline_timestamp_seconds' : IDL.Nat64,
1532
1534
  });
1533
1535
  const ProposalData = IDL.Record({
1534
- 'id' : IDL.Opt(NeuronId),
1536
+ 'id' : IDL.Opt(ProposalId),
1535
1537
  'failure_reason' : IDL.Opt(GovernanceError),
1536
1538
  'ballots' : IDL.Vec(IDL.Tuple(IDL.Nat64, Ballot)),
1537
1539
  'proposal_timestamp_seconds' : IDL.Nat64,
@@ -1568,7 +1570,7 @@ export const init = ({ IDL }) => {
1568
1570
  });
1569
1571
  const BallotInfo = IDL.Record({
1570
1572
  'vote' : IDL.Int32,
1571
- 'proposal_id' : IDL.Opt(NeuronId),
1573
+ 'proposal_id' : IDL.Opt(ProposalId),
1572
1574
  });
1573
1575
  const DissolveState = IDL.Variant({
1574
1576
  'DissolveDelaySeconds' : IDL.Nat64,
@@ -1,78 +1,81 @@
1
1
  // This file was created manually by taking governance.certified.idl.js and
2
2
  // removing everything that isn't needed for `list_neurons` and then removing
3
- // `include_empty_neurons_readable_by_caller` from `ListNeurons`.
4
- // The Ledger hardware wallet doesn't support the
5
- // `include_empty_neurons_readable_by_caller` field, even when it's not set, so
6
- // we use this service for compatibility with the hardware wallet.
3
+ // all fields except `neuron_ids` and `include_neurons_readable_by_caller` from
4
+ // `ListNeurons`.
5
+ // The Ledger hardware wallet app verion 2.4.9 doesn't support the newer fields,
6
+ // even when they are optional and not set, so we use this service for
7
+ // compatibility with the hardware wallet.
7
8
  export const idlFactory = ({ IDL }) => {
8
- const NeuronId = IDL.Record({ id: IDL.Nat64 });
9
- const Followees = IDL.Record({ followees: IDL.Vec(NeuronId) });
9
+ const NeuronId = IDL.Record({ 'id' : IDL.Nat64 });
10
+ const Followees = IDL.Record({ 'followees' : IDL.Vec(NeuronId) });
10
11
  const KnownNeuronData = IDL.Record({
11
- name: IDL.Text,
12
- description: IDL.Opt(IDL.Text),
12
+ 'name' : IDL.Text,
13
+ 'description' : IDL.Opt(IDL.Text),
13
14
  });
14
15
  const NeuronStakeTransfer = IDL.Record({
15
- to_subaccount: IDL.Vec(IDL.Nat8),
16
- neuron_stake_e8s: IDL.Nat64,
17
- from: IDL.Opt(IDL.Principal),
18
- memo: IDL.Nat64,
19
- from_subaccount: IDL.Vec(IDL.Nat8),
20
- transfer_timestamp: IDL.Nat64,
21
- block_height: IDL.Nat64,
16
+ 'to_subaccount' : IDL.Vec(IDL.Nat8),
17
+ 'neuron_stake_e8s' : IDL.Nat64,
18
+ 'from' : IDL.Opt(IDL.Principal),
19
+ 'memo' : IDL.Nat64,
20
+ 'from_subaccount' : IDL.Vec(IDL.Nat8),
21
+ 'transfer_timestamp' : IDL.Nat64,
22
+ 'block_height' : IDL.Nat64,
22
23
  });
23
24
  const BallotInfo = IDL.Record({
24
- vote: IDL.Int32,
25
- proposal_id: IDL.Opt(NeuronId),
25
+ 'vote' : IDL.Int32,
26
+ 'proposal_id' : IDL.Opt(NeuronId),
26
27
  });
27
28
  const DissolveState = IDL.Variant({
28
- DissolveDelaySeconds: IDL.Nat64,
29
- WhenDissolvedTimestampSeconds: IDL.Nat64,
29
+ 'DissolveDelaySeconds' : IDL.Nat64,
30
+ 'WhenDissolvedTimestampSeconds' : IDL.Nat64,
30
31
  });
31
32
  const Neuron = IDL.Record({
32
- id: IDL.Opt(NeuronId),
33
- staked_maturity_e8s_equivalent: IDL.Opt(IDL.Nat64),
34
- controller: IDL.Opt(IDL.Principal),
35
- recent_ballots: IDL.Vec(BallotInfo),
36
- kyc_verified: IDL.Bool,
37
- neuron_type: IDL.Opt(IDL.Int32),
38
- not_for_profit: IDL.Bool,
39
- maturity_e8s_equivalent: IDL.Nat64,
40
- cached_neuron_stake_e8s: IDL.Nat64,
41
- created_timestamp_seconds: IDL.Nat64,
42
- auto_stake_maturity: IDL.Opt(IDL.Bool),
43
- aging_since_timestamp_seconds: IDL.Nat64,
44
- hot_keys: IDL.Vec(IDL.Principal),
45
- account: IDL.Vec(IDL.Nat8),
46
- joined_community_fund_timestamp_seconds: IDL.Opt(IDL.Nat64),
47
- dissolve_state: IDL.Opt(DissolveState),
48
- followees: IDL.Vec(IDL.Tuple(IDL.Int32, Followees)),
49
- neuron_fees_e8s: IDL.Nat64,
50
- transfer: IDL.Opt(NeuronStakeTransfer),
51
- known_neuron_data: IDL.Opt(KnownNeuronData),
52
- spawn_at_timestamp_seconds: IDL.Opt(IDL.Nat64),
33
+ 'id' : IDL.Opt(NeuronId),
34
+ 'staked_maturity_e8s_equivalent' : IDL.Opt(IDL.Nat64),
35
+ 'controller' : IDL.Opt(IDL.Principal),
36
+ 'recent_ballots' : IDL.Vec(BallotInfo),
37
+ 'kyc_verified' : IDL.Bool,
38
+ 'neuron_type' : IDL.Opt(IDL.Int32),
39
+ 'not_for_profit' : IDL.Bool,
40
+ 'maturity_e8s_equivalent' : IDL.Nat64,
41
+ 'cached_neuron_stake_e8s' : IDL.Nat64,
42
+ 'created_timestamp_seconds' : IDL.Nat64,
43
+ 'auto_stake_maturity' : IDL.Opt(IDL.Bool),
44
+ 'aging_since_timestamp_seconds' : IDL.Nat64,
45
+ 'hot_keys' : IDL.Vec(IDL.Principal),
46
+ 'account' : IDL.Vec(IDL.Nat8),
47
+ 'joined_community_fund_timestamp_seconds' : IDL.Opt(IDL.Nat64),
48
+ 'dissolve_state' : IDL.Opt(DissolveState),
49
+ 'followees' : IDL.Vec(IDL.Tuple(IDL.Int32, Followees)),
50
+ 'neuron_fees_e8s' : IDL.Nat64,
51
+ 'visibility' : IDL.Opt(IDL.Int32),
52
+ 'transfer' : IDL.Opt(NeuronStakeTransfer),
53
+ 'known_neuron_data' : IDL.Opt(KnownNeuronData),
54
+ 'spawn_at_timestamp_seconds' : IDL.Opt(IDL.Nat64),
53
55
  });
54
56
  const NeuronInfo = IDL.Record({
55
- dissolve_delay_seconds: IDL.Nat64,
56
- recent_ballots: IDL.Vec(BallotInfo),
57
- neuron_type: IDL.Opt(IDL.Int32),
58
- created_timestamp_seconds: IDL.Nat64,
59
- state: IDL.Int32,
60
- stake_e8s: IDL.Nat64,
61
- joined_community_fund_timestamp_seconds: IDL.Opt(IDL.Nat64),
62
- retrieved_at_timestamp_seconds: IDL.Nat64,
63
- known_neuron_data: IDL.Opt(KnownNeuronData),
64
- voting_power: IDL.Nat64,
65
- age_seconds: IDL.Nat64,
57
+ 'dissolve_delay_seconds' : IDL.Nat64,
58
+ 'recent_ballots' : IDL.Vec(BallotInfo),
59
+ 'neuron_type' : IDL.Opt(IDL.Int32),
60
+ 'created_timestamp_seconds' : IDL.Nat64,
61
+ 'state' : IDL.Int32,
62
+ 'stake_e8s' : IDL.Nat64,
63
+ 'joined_community_fund_timestamp_seconds' : IDL.Opt(IDL.Nat64),
64
+ 'retrieved_at_timestamp_seconds' : IDL.Nat64,
65
+ 'visibility' : IDL.Opt(IDL.Int32),
66
+ 'known_neuron_data' : IDL.Opt(KnownNeuronData),
67
+ 'voting_power' : IDL.Nat64,
68
+ 'age_seconds' : IDL.Nat64,
66
69
  });
67
70
  const ListNeurons = IDL.Record({
68
- neuron_ids: IDL.Vec(IDL.Nat64),
69
- include_neurons_readable_by_caller: IDL.Bool,
71
+ 'neuron_ids' : IDL.Vec(IDL.Nat64),
72
+ 'include_neurons_readable_by_caller' : IDL.Bool,
70
73
  });
71
74
  const ListNeuronsResponse = IDL.Record({
72
- neuron_infos: IDL.Vec(IDL.Tuple(IDL.Nat64, NeuronInfo)),
73
- full_neurons: IDL.Vec(Neuron),
75
+ 'neuron_infos' : IDL.Vec(IDL.Tuple(IDL.Nat64, NeuronInfo)),
76
+ 'full_neurons' : IDL.Vec(Neuron),
74
77
  });
75
78
  return IDL.Service({
76
- list_neurons: IDL.Func([ListNeurons], [ListNeuronsResponse], []),
79
+ 'list_neurons' : IDL.Func([ListNeurons], [ListNeuronsResponse], []),
77
80
  });
78
81
  };
@@ -1,4 +1,4 @@
1
- // Generated from IC repo commit c43a488 (2024-09-27 tags: release-2024-09-26_01-31-no-canister-snapshots) 'rs/nns/sns-wasm/canister/sns-wasm.did' by import-candid
1
+ // Generated from IC repo commit a6ef593 (2024-10-24 tags: release-2024-10-23_03-07-ubuntu20.04) 'rs/nns/sns-wasm/canister/sns-wasm.did' by import-candid
2
2
  type AddWasmRequest = record {
3
3
  hash : blob;
4
4
  wasm : opt SnsWasm;