@dfinity/nns 8.3.2 → 8.4.0

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.
@@ -55,9 +55,6 @@ export const idlFactory = ({ IDL }) => {
55
55
  const DeveloperDistribution = IDL.Record({
56
56
  'developer_neurons' : IDL.Vec(NeuronDistribution),
57
57
  });
58
- const AirdropDistribution = IDL.Record({
59
- 'airdrop_neurons' : IDL.Vec(NeuronDistribution),
60
- });
61
58
  const SwapDistribution = IDL.Record({
62
59
  'total_e8s' : IDL.Nat64,
63
60
  'initial_swap_amount_e8s' : IDL.Nat64,
@@ -65,7 +62,6 @@ export const idlFactory = ({ IDL }) => {
65
62
  const FractionalDeveloperVotingPower = IDL.Record({
66
63
  'treasury_distribution' : IDL.Opt(TreasuryDistribution),
67
64
  'developer_distribution' : IDL.Opt(DeveloperDistribution),
68
- 'airdrop_distribution' : IDL.Opt(AirdropDistribution),
69
65
  'swap_distribution' : IDL.Opt(SwapDistribution),
70
66
  });
71
67
  const InitialTokenDistribution = IDL.Variant({
@@ -9,9 +9,6 @@ export interface AddWasmRequest {
9
9
  export interface AddWasmResponse {
10
10
  result: [] | [Result];
11
11
  }
12
- export interface AirdropDistribution {
13
- airdrop_neurons: Array<NeuronDistribution>;
14
- }
15
12
  export interface Canister {
16
13
  id: [] | [Principal];
17
14
  }
@@ -48,7 +45,6 @@ export interface DeveloperDistribution {
48
45
  export interface FractionalDeveloperVotingPower {
49
46
  treasury_distribution: [] | [TreasuryDistribution];
50
47
  developer_distribution: [] | [DeveloperDistribution];
51
- airdrop_distribution: [] | [AirdropDistribution];
52
48
  swap_distribution: [] | [SwapDistribution];
53
49
  }
54
50
  export interface GetAllowedPrincipalsResponse {
@@ -1,4 +1,4 @@
1
- // Generated from IC repo commit 2f02a66 (2025-02-13 tags: release-2025-02-20_10-16-disable-best-effort-messaging) 'rs/nns/sns-wasm/canister/sns-wasm.did' by import-candid
1
+ // Generated from IC repo commit 3ae3649 (2025-03-26 tags: release-2025-03-27_03-14-base) '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;
@@ -8,10 +8,6 @@ type AddWasmResponse = record {
8
8
  result : opt Result;
9
9
  };
10
10
 
11
- type AirdropDistribution = record {
12
- airdrop_neurons : vec NeuronDistribution;
13
- };
14
-
15
11
  type Canister = record {
16
12
  id : opt principal;
17
13
  };
@@ -56,7 +52,6 @@ type DeveloperDistribution = record {
56
52
  type FractionalDeveloperVotingPower = record {
57
53
  treasury_distribution : opt TreasuryDistribution;
58
54
  developer_distribution : opt DeveloperDistribution;
59
- airdrop_distribution : opt AirdropDistribution;
60
55
  swap_distribution : opt SwapDistribution;
61
56
  };
62
57
 
@@ -55,9 +55,6 @@ export const idlFactory = ({ IDL }) => {
55
55
  const DeveloperDistribution = IDL.Record({
56
56
  'developer_neurons' : IDL.Vec(NeuronDistribution),
57
57
  });
58
- const AirdropDistribution = IDL.Record({
59
- 'airdrop_neurons' : IDL.Vec(NeuronDistribution),
60
- });
61
58
  const SwapDistribution = IDL.Record({
62
59
  'total_e8s' : IDL.Nat64,
63
60
  'initial_swap_amount_e8s' : IDL.Nat64,
@@ -65,7 +62,6 @@ export const idlFactory = ({ IDL }) => {
65
62
  const FractionalDeveloperVotingPower = IDL.Record({
66
63
  'treasury_distribution' : IDL.Opt(TreasuryDistribution),
67
64
  'developer_distribution' : IDL.Opt(DeveloperDistribution),
68
- 'airdrop_distribution' : IDL.Opt(AirdropDistribution),
69
65
  'swap_distribution' : IDL.Opt(SwapDistribution),
70
66
  });
71
67
  const InitialTokenDistribution = IDL.Variant({