@dfinity/cmc 7.0.1-next-2025-11-17 → 7.0.1-next-2025-11-17.1

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.
@@ -20,6 +20,14 @@ export const idlFactory = ({ IDL }) => {
20
20
  minting_account_id: IDL.Opt(AccountIdentifier),
21
21
  ledger_canister_id: IDL.Opt(IDL.Principal),
22
22
  });
23
+ const SubnetListWithType = IDL.Record({
24
+ subnets: IDL.Vec(IDL.Principal),
25
+ subnet_type: IDL.Text,
26
+ });
27
+ const ChangeSubnetTypeAssignmentArgs = IDL.Variant({
28
+ Add: SubnetListWithType,
29
+ Remove: SubnetListWithType,
30
+ });
23
31
  const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });
24
32
  const SubnetSelection = IDL.Variant({
25
33
  Filter: SubnetFilter,
@@ -123,8 +131,21 @@ export const idlFactory = ({ IDL }) => {
123
131
  });
124
132
  const Cycles = IDL.Nat;
125
133
  const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });
134
+ const SetAuthorizedSubnetworkListArgs = IDL.Record({
135
+ who: IDL.Opt(IDL.Principal),
136
+ subnets: IDL.Vec(IDL.Principal),
137
+ });
138
+ const UpdateSubnetTypeArgs = IDL.Variant({
139
+ Add: IDL.Text,
140
+ Remove: IDL.Text,
141
+ });
126
142
 
127
143
  return IDL.Service({
144
+ change_subnet_type_assignment: IDL.Func(
145
+ [ChangeSubnetTypeAssignmentArgs],
146
+ [],
147
+ [],
148
+ ),
128
149
  create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),
129
150
  get_build_metadata: IDL.Func([], [IDL.Text], []),
130
151
  get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], []),
@@ -154,6 +175,12 @@ export const idlFactory = ({ IDL }) => {
154
175
  [],
155
176
  ),
156
177
  notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),
178
+ set_authorized_subnetwork_list: IDL.Func(
179
+ [SetAuthorizedSubnetworkListArgs],
180
+ [],
181
+ [],
182
+ ),
183
+ update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),
157
184
  });
158
185
  };
159
186
 
@@ -24,6 +24,9 @@ export interface CanisterSettings {
24
24
  memory_allocation: [] | [bigint];
25
25
  compute_allocation: [] | [bigint];
26
26
  }
27
+ export type ChangeSubnetTypeAssignmentArgs =
28
+ | { Add: SubnetListWithType }
29
+ | { Remove: SubnetListWithType };
27
30
  /**
28
31
  * The argument of the [create_canister] method.
29
32
  */
@@ -256,10 +259,18 @@ export type NotifyTopUpResult =
256
259
  export interface PrincipalsAuthorizedToCreateCanistersToSubnetsResponse {
257
260
  data: Array<[Principal, Array<Principal>]>;
258
261
  }
262
+ export interface SetAuthorizedSubnetworkListArgs {
263
+ who: [] | [Principal];
264
+ subnets: Array<Principal>;
265
+ }
259
266
  export type Subaccount = [] | [Uint8Array | number[]];
260
267
  export interface SubnetFilter {
261
268
  subnet_type: [] | [string];
262
269
  }
270
+ export interface SubnetListWithType {
271
+ subnets: Array<Principal>;
272
+ subnet_type: string;
273
+ }
263
274
  export type SubnetSelection =
264
275
  | {
265
276
  /**
@@ -276,6 +287,7 @@ export type SubnetSelection =
276
287
  export interface SubnetTypesToSubnetsResponse {
277
288
  data: Array<[string, Array<Principal>]>;
278
289
  }
290
+ export type UpdateSubnetTypeArgs = { Add: string } | { Remove: string };
279
291
  export interface environment_variable {
280
292
  value: string;
281
293
  name: string;
@@ -285,6 +297,10 @@ export type log_visibility =
285
297
  | { public: null }
286
298
  | { allowed_viewers: Array<Principal> };
287
299
  export interface _SERVICE {
300
+ change_subnet_type_assignment: ActorMethod<
301
+ [ChangeSubnetTypeAssignmentArgs],
302
+ undefined
303
+ >;
288
304
  /**
289
305
  * Creates a canister using the cycles attached to the function call.
290
306
  */
@@ -326,6 +342,14 @@ export interface _SERVICE {
326
342
  * into cycles and sending the cycles the specified canister.
327
343
  */
328
344
  notify_top_up: ActorMethod<[NotifyTopUpArg], NotifyTopUpResult>;
345
+ /**
346
+ * Below are methods that can only be called by other NNS canisters.
347
+ */
348
+ set_authorized_subnetwork_list: ActorMethod<
349
+ [SetAuthorizedSubnetworkListArgs],
350
+ undefined
351
+ >;
352
+ update_subnet_type: ActorMethod<[UpdateSubnetTypeArgs], undefined>;
329
353
  }
330
354
  export declare const idlFactory: IDL.InterfaceFactory;
331
355
  export declare const init: (args: { IDL: typeof IDL }) => IDL.Type[];
@@ -1,4 +1,4 @@
1
- // Generated from IC repo commit 0378315 (2025-11-05 tags: release-2025-11-06_03-24-base) 'rs/nns/cmc/cmc.did' by import-candid
1
+ // Generated from IC repo commit fa06b0e (2025-11-12 tags: release-2025-11-13_03-24-base) 'rs/nns/cmc/cmc.did' by import-candid
2
2
 
3
3
  type Cycles = nat;
4
4
  type BlockIndex = nat64;
@@ -220,6 +220,26 @@ type NotifyMintCyclesSuccess = record {
220
220
  balance : nat;
221
221
  };
222
222
 
223
+ type SetAuthorizedSubnetworkListArgs = record {
224
+ who : opt principal;
225
+ subnets : vec principal;
226
+ };
227
+
228
+ type UpdateSubnetTypeArgs = variant {
229
+ Add : text;
230
+ Remove : text;
231
+ };
232
+
233
+ type SubnetListWithType = record {
234
+ subnets : vec principal;
235
+ subnet_type : text;
236
+ };
237
+
238
+ type ChangeSubnetTypeAssignmentArgs = variant {
239
+ Add : SubnetListWithType;
240
+ Remove : SubnetListWithType;
241
+ };
242
+
223
243
  service : (opt CyclesCanisterInitPayload) -> {
224
244
  // Prompts the cycles minting canister to process a payment by converting ICP
225
245
  // into cycles and sending the cycles the specified canister.
@@ -247,4 +267,9 @@ service : (opt CyclesCanisterInitPayload) -> {
247
267
  get_default_subnets: () -> (vec principal) query;
248
268
 
249
269
  get_build_metadata : () -> (text) query;
270
+
271
+ // Below are methods that can only be called by other NNS canisters.
272
+ set_authorized_subnetwork_list : (SetAuthorizedSubnetworkListArgs) -> ();
273
+ update_subnet_type : (UpdateSubnetTypeArgs) -> ();
274
+ change_subnet_type_assignment : (ChangeSubnetTypeAssignmentArgs) -> ();
250
275
  };
@@ -20,6 +20,14 @@ export const idlFactory = ({ IDL }) => {
20
20
  minting_account_id: IDL.Opt(AccountIdentifier),
21
21
  ledger_canister_id: IDL.Opt(IDL.Principal),
22
22
  });
23
+ const SubnetListWithType = IDL.Record({
24
+ subnets: IDL.Vec(IDL.Principal),
25
+ subnet_type: IDL.Text,
26
+ });
27
+ const ChangeSubnetTypeAssignmentArgs = IDL.Variant({
28
+ Add: SubnetListWithType,
29
+ Remove: SubnetListWithType,
30
+ });
23
31
  const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });
24
32
  const SubnetSelection = IDL.Variant({
25
33
  Filter: SubnetFilter,
@@ -123,8 +131,21 @@ export const idlFactory = ({ IDL }) => {
123
131
  });
124
132
  const Cycles = IDL.Nat;
125
133
  const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });
134
+ const SetAuthorizedSubnetworkListArgs = IDL.Record({
135
+ who: IDL.Opt(IDL.Principal),
136
+ subnets: IDL.Vec(IDL.Principal),
137
+ });
138
+ const UpdateSubnetTypeArgs = IDL.Variant({
139
+ Add: IDL.Text,
140
+ Remove: IDL.Text,
141
+ });
126
142
 
127
143
  return IDL.Service({
144
+ change_subnet_type_assignment: IDL.Func(
145
+ [ChangeSubnetTypeAssignmentArgs],
146
+ [],
147
+ [],
148
+ ),
128
149
  create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),
129
150
  get_build_metadata: IDL.Func([], [IDL.Text], ["query"]),
130
151
  get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], ["query"]),
@@ -154,6 +175,12 @@ export const idlFactory = ({ IDL }) => {
154
175
  [],
155
176
  ),
156
177
  notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),
178
+ set_authorized_subnetwork_list: IDL.Func(
179
+ [SetAuthorizedSubnetworkListArgs],
180
+ [],
181
+ [],
182
+ ),
183
+ update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),
157
184
  });
158
185
  };
159
186
 
package/dist/index.js CHANGED
@@ -1,2 +1,2 @@
1
- import{Canister as $,createServices as Q}from"@dfinity/utils";var U=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,s=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),c=t.Record({subnet_type:t.Opt(t.Text)}),o=t.Variant({Filter:c,Subnet:t.Record({subnet:t.Principal})}),p=t.Record({value:t.Text,name:t.Text}),l=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),a=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(p)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(l),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),_=t.Record({subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),d=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),u=t.Variant({Ok:t.Principal,Err:d}),y=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),m=t.Record({certificate:t.Vec(t.Nat8),data:y,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),i=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:i}),g=t.Opt(t.Vec(t.Nat8)),b=t.Opt(t.Vec(t.Nat8)),x=t.Record({block_index:r,deposit_memo:g,to_subaccount:b}),R=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),T=t.Variant({Ok:R,Err:i}),P=t.Record({block_index:r,canister_id:t.Principal}),v=t.Nat,V=t.Variant({Ok:v,Err:i});return t.Service({create_canister:t.Func([_],[u],[]),get_build_metadata:t.Func([],[t.Text],[]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],[]),get_icp_xdr_conversion_rate:t.Func([],[m],[]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],[]),get_subnet_types_to_subnets:t.Func([],[f],[]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([x],[T],[]),notify_top_up:t.Func([P],[V],[])})};var M=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,s=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),c=t.Record({subnet_type:t.Opt(t.Text)}),o=t.Variant({Filter:c,Subnet:t.Record({subnet:t.Principal})}),p=t.Record({value:t.Text,name:t.Text}),l=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),a=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(p)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(l),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),_=t.Record({subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),d=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),u=t.Variant({Ok:t.Principal,Err:d}),y=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),m=t.Record({certificate:t.Vec(t.Nat8),data:y,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),i=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:i}),g=t.Opt(t.Vec(t.Nat8)),b=t.Opt(t.Vec(t.Nat8)),x=t.Record({block_index:r,deposit_memo:g,to_subaccount:b}),R=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),T=t.Variant({Ok:R,Err:i}),P=t.Record({block_index:r,canister_id:t.Principal}),v=t.Nat,V=t.Variant({Ok:v,Err:i});return t.Service({create_canister:t.Func([_],[u],[]),get_build_metadata:t.Func([],[t.Text],["query"]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],["query"]),get_icp_xdr_conversion_rate:t.Func([],[m],["query"]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],["query"]),get_subnet_types_to_subnets:t.Func([],[f],["query"]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([x],[T],[]),notify_top_up:t.Func([P],[V],[])})};import{assertNever as z,jsonReplacer as q}from"@dfinity/utils";var h=class extends Error{},S=class extends Error{},w=class extends Error{},E=class extends Error{},F=class extends Error{},k=({Err:t})=>{if("Refunded"in t)throw new h(t.Refunded.reason);if("InvalidTransaction"in t)throw new S(t.InvalidTransaction);if("Processing"in t)throw new E;if("TransactionTooOld"in t)throw new F;if("Other"in t)throw new w(`Error in CMC with code ${t.Other.error_code}: ${t.Other.error_message}`);z(t,`Unsupported error type ${JSON.stringify(t,q)}`)};var A=class t extends ${static create(n){let{service:e,certifiedService:s,canisterId:c}=Q({options:n,idlFactory:M,certifiedIdlFactory:U});return new t(c,e,s)}getIcpToCyclesConversionRate=async({certified:n}={})=>{let{data:e}=await this.caller({certified:n}).get_icp_xdr_conversion_rate();return e.xdr_permyriad_per_icp};notifyCreateCanister=async n=>{let e=await this.service.notify_create_canister(n);if("Err"in e&&k(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyCreateCanister ${JSON.stringify(e)}`)};notifyTopUp=async n=>{let e=await this.service.notify_top_up(n);if("Err"in e&&k(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyTopUp ${JSON.stringify(e)}`)};getDefaultSubnets=({certified:n}={})=>{let{get_default_subnets:e}=this.caller({certified:n});return e()};getSubnetTypesToSubnets=({certified:n}={})=>{let{get_subnet_types_to_subnets:e}=this.caller({certified:n});return e()}};export{A as CMCCanister,w as CMCError,S as InvalidaTransactionError,E as ProcessingError,h as RefundedError,F as TransactionTooOldError,k as throwNotifyError};
1
+ import{Canister as B,createServices as W}from"@dfinity/utils";var $=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,a=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),i=t.Record({subnets:t.Vec(t.Principal),subnet_type:t.Text}),p=t.Variant({Add:i,Remove:i}),l=t.Record({subnet_type:t.Opt(t.Text)}),s=t.Variant({Filter:l,Subnet:t.Record({subnet:t.Principal})}),_=t.Record({value:t.Text,name:t.Text}),d=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),o=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(_)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(d),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),u=t.Record({subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),y=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),m=t.Variant({Ok:t.Principal,Err:y}),b=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),g=t.Record({certificate:t.Vec(t.Nat8),data:b,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),c=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:c}),x=t.Opt(t.Vec(t.Nat8)),R=t.Opt(t.Vec(t.Nat8)),T=t.Record({block_index:r,deposit_memo:x,to_subaccount:R}),P=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),h=t.Variant({Ok:P,Err:c}),S=t.Record({block_index:r,canister_id:t.Principal}),V=t.Nat,v=t.Variant({Ok:V,Err:c}),w=t.Record({who:t.Opt(t.Principal),subnets:t.Vec(t.Principal)}),A=t.Variant({Add:t.Text,Remove:t.Text});return t.Service({change_subnet_type_assignment:t.Func([p],[],[]),create_canister:t.Func([u],[m],[]),get_build_metadata:t.Func([],[t.Text],[]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],[]),get_icp_xdr_conversion_rate:t.Func([],[g],[]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],[]),get_subnet_types_to_subnets:t.Func([],[f],[]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([T],[h],[]),notify_top_up:t.Func([S],[v],[]),set_authorized_subnetwork_list:t.Func([w],[],[]),update_subnet_type:t.Func([A],[],[])})};var Q=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,a=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),i=t.Record({subnets:t.Vec(t.Principal),subnet_type:t.Text}),p=t.Variant({Add:i,Remove:i}),l=t.Record({subnet_type:t.Opt(t.Text)}),s=t.Variant({Filter:l,Subnet:t.Record({subnet:t.Principal})}),_=t.Record({value:t.Text,name:t.Text}),d=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),o=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(_)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(d),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),u=t.Record({subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),y=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),m=t.Variant({Ok:t.Principal,Err:y}),b=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),g=t.Record({certificate:t.Vec(t.Nat8),data:b,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),c=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:c}),x=t.Opt(t.Vec(t.Nat8)),R=t.Opt(t.Vec(t.Nat8)),T=t.Record({block_index:r,deposit_memo:x,to_subaccount:R}),P=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),h=t.Variant({Ok:P,Err:c}),S=t.Record({block_index:r,canister_id:t.Principal}),V=t.Nat,v=t.Variant({Ok:V,Err:c}),w=t.Record({who:t.Opt(t.Principal),subnets:t.Vec(t.Principal)}),A=t.Variant({Add:t.Text,Remove:t.Text});return t.Service({change_subnet_type_assignment:t.Func([p],[],[]),create_canister:t.Func([u],[m],[]),get_build_metadata:t.Func([],[t.Text],["query"]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],["query"]),get_icp_xdr_conversion_rate:t.Func([],[g],["query"]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],["query"]),get_subnet_types_to_subnets:t.Func([],[f],["query"]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([T],[h],[]),notify_top_up:t.Func([S],[v],[]),set_authorized_subnetwork_list:t.Func([w],[],[]),update_subnet_type:t.Func([A],[],[])})};import{assertNever as X,jsonReplacer as J}from"@dfinity/utils";var F=class extends Error{},k=class extends Error{},E=class extends Error{},U=class extends Error{},M=class extends Error{},z=({Err:t})=>{if("Refunded"in t)throw new F(t.Refunded.reason);if("InvalidTransaction"in t)throw new k(t.InvalidTransaction);if("Processing"in t)throw new U;if("TransactionTooOld"in t)throw new M;if("Other"in t)throw new E(`Error in CMC with code ${t.Other.error_code}: ${t.Other.error_message}`);X(t,`Unsupported error type ${JSON.stringify(t,J)}`)};var q=class t extends B{static create(n){let{service:e,certifiedService:a,canisterId:i}=W({options:n,idlFactory:Q,certifiedIdlFactory:$});return new t(i,e,a)}getIcpToCyclesConversionRate=async({certified:n}={})=>{let{data:e}=await this.caller({certified:n}).get_icp_xdr_conversion_rate();return e.xdr_permyriad_per_icp};notifyCreateCanister=async n=>{let e=await this.service.notify_create_canister(n);if("Err"in e&&z(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyCreateCanister ${JSON.stringify(e)}`)};notifyTopUp=async n=>{let e=await this.service.notify_top_up(n);if("Err"in e&&z(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyTopUp ${JSON.stringify(e)}`)};getDefaultSubnets=({certified:n}={})=>{let{get_default_subnets:e}=this.caller({certified:n});return e()};getSubnetTypesToSubnets=({certified:n}={})=>{let{get_subnet_types_to_subnets:e}=this.caller({certified:n});return e()}};export{q as CMCCanister,E as CMCError,k as InvalidaTransactionError,U as ProcessingError,F as RefundedError,M as TransactionTooOldError,z as throwNotifyError};
2
2
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/cmc.canister.ts", "../src/candid/cmc.certified.idl.js", "../src/candid/cmc.idl.js", "../src/cmc.errors.ts"],
4
- "sourcesContent": ["import { Canister, createServices, type QueryParams } from \"@dfinity/utils\";\nimport type { Principal } from \"@icp-sdk/core/principal\";\nimport type {\n _SERVICE as CMCCanisterService,\n Cycles,\n NotifyCreateCanisterArg,\n NotifyTopUpArg,\n SubnetTypesToSubnetsResponse,\n} from \"./candid/cmc\";\nimport { idlFactory as certifiedIdlFactory } from \"./candid/cmc.certified.idl\";\nimport { idlFactory } from \"./candid/cmc.idl\";\nimport { throwNotifyError } from \"./cmc.errors\";\nimport type { CMCCanisterOptions } from \"./cmc.options\";\n\nexport class CMCCanister extends Canister<CMCCanisterService> {\n static create(options: CMCCanisterOptions): CMCCanister {\n const { service, certifiedService, canisterId } =\n createServices<CMCCanisterService>({\n options,\n idlFactory,\n certifiedIdlFactory,\n });\n\n return new CMCCanister(canisterId, service, certifiedService);\n }\n\n /**\n * Returns conversion rate of ICP to Cycles. It can be called as query or update.\n *\n * @param {Object} [params] - The parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified (default: non-certified)\n *\n * @returns Promise<BigInt>\n */\n public getIcpToCyclesConversionRate = async ({\n certified,\n }: QueryParams = {}): Promise<bigint> => {\n const { data } = await this.caller({\n certified,\n }).get_icp_xdr_conversion_rate();\n\n // TODO: validate the certificate in the response - https://dfinity.atlassian.net/browse/GIX-150\n // Example: https://github.com/dfinity/response-verification/tree/main/examples/certification/certified-counter\n return data.xdr_permyriad_per_icp;\n };\n\n /**\n * Notifies Cycles Minting Canister of the creation of a new canister.\n * It returns the new canister principal.\n *\n * @param {Object} request\n * @param {Principal} request.controller\n * @param {BlockIndex} request.block_index\n * @returns Promise<Principal>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyCreateCanister = async (\n request: NotifyCreateCanisterArg,\n ): Promise<Principal> => {\n const response = await this.service.notify_create_canister(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyCreateCanister ${JSON.stringify(\n response,\n )}`,\n );\n };\n\n /**\n * Notifies Cycles Minting Canister of new cycles being added to canister.\n * It returns the new Cycles of the canister.\n *\n * @param {Object} request\n * @param {Principal} request.canister_id\n * @param {BlockIndex} request.block_index\n * @returns Promise<Cycles>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyTopUp = async (request: NotifyTopUpArg): Promise<Cycles> => {\n const response = await this.service.notify_top_up(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyTopUp ${JSON.stringify(response)}`,\n );\n };\n\n /**\n * This function calls the `get_default_subnets` method of the CMC canister, which returns a list of\n * default subnets as `Principal` objects. It can be called as query or update.\n *\n * @param {Object} [params] - The query parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified\n * (default: non-certified if not specified).\n *\n * @returns {Promise<Principal[]>} - A promise that resolves to an array of `Principal` objects\n * representing the default subnets.\n */\n public getDefaultSubnets = ({ certified }: QueryParams = {}): Promise<\n Principal[]\n > => {\n const { get_default_subnets } = this.caller({ certified });\n return get_default_subnets();\n };\n\n /**\n * This function calls the `get_subnet_types_to_subnets` method of the CMC canister, which returns a list of subnets where canisters can be created.\n * These subnets are excluded from the random subnet selection process used by the CMC when no explicit subnet ID is provided\n * during canister creation and therefore, not provided in the results of the similar function `get_default_subnets`.\n *\n * @param {Object} [params] - The optional query parameters for the call.\n * @param {boolean} [params.certified=false] - Specifies whether the response should be certified.\n * If not provided, the response defaults to non-certified.\n *\n * @returns {Promise<SubnetTypesToSubnetsResponse>} - A promise that resolves to an object representing\n * the mapping of subnet types to subnets.\n */\n public getSubnetTypesToSubnets = ({\n certified,\n }: QueryParams = {}): Promise<SubnetTypesToSubnetsResponse> => {\n const { get_subnet_types_to_subnets } = this.caller({ certified });\n return get_subnet_types_to_subnets();\n };\n}\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n\n return IDL.Service({\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], []),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], []),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n\n return IDL.Service({\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], [\"query\"]),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], [\"query\"]),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [\"query\"],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [\"query\"],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [\"query\"],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "import { assertNever, jsonReplacer } from \"@dfinity/utils\";\nimport type { NotifyError } from \"./candid/cmc\";\n\nexport class RefundedError extends Error {}\nexport class InvalidaTransactionError extends Error {}\nexport class CMCError extends Error {}\nexport class ProcessingError extends Error {}\nexport class TransactionTooOldError extends Error {}\n\n// Throws one of the errors above\nexport const throwNotifyError = ({\n Err: error,\n}: {\n Err: NotifyError;\n}): void => {\n if (\"Refunded\" in error) {\n throw new RefundedError(error.Refunded.reason);\n }\n if (\"InvalidTransaction\" in error) {\n throw new InvalidaTransactionError(error.InvalidTransaction);\n }\n if (\"Processing\" in error) {\n throw new ProcessingError();\n }\n if (\"TransactionTooOld\" in error) {\n throw new TransactionTooOldError();\n }\n if (\"Other\" in error) {\n throw new CMCError(\n `Error in CMC with code ${error.Other.error_code}: ${error.Other.error_message}`,\n );\n }\n\n assertNever(\n error,\n `Unsupported error type ${JSON.stringify(error, jsonReplacer)}`,\n );\n};\n"],
5
- "mappings": "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",
6
- "names": ["Canister", "createServices", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "assertNever", "jsonReplacer", "RefundedError", "InvalidaTransactionError", "CMCError", "ProcessingError", "TransactionTooOldError", "throwNotifyError", "error", "CMCCanister", "_CMCCanister", "Canister", "options", "service", "certifiedService", "canisterId", "createServices", "idlFactory", "certified", "data", "request", "response", "throwNotifyError", "get_default_subnets", "get_subnet_types_to_subnets"]
4
+ "sourcesContent": ["import { Canister, createServices, type QueryParams } from \"@dfinity/utils\";\nimport type { Principal } from \"@icp-sdk/core/principal\";\nimport type {\n _SERVICE as CMCCanisterService,\n Cycles,\n NotifyCreateCanisterArg,\n NotifyTopUpArg,\n SubnetTypesToSubnetsResponse,\n} from \"./candid/cmc\";\nimport { idlFactory as certifiedIdlFactory } from \"./candid/cmc.certified.idl\";\nimport { idlFactory } from \"./candid/cmc.idl\";\nimport { throwNotifyError } from \"./cmc.errors\";\nimport type { CMCCanisterOptions } from \"./cmc.options\";\n\nexport class CMCCanister extends Canister<CMCCanisterService> {\n static create(options: CMCCanisterOptions): CMCCanister {\n const { service, certifiedService, canisterId } =\n createServices<CMCCanisterService>({\n options,\n idlFactory,\n certifiedIdlFactory,\n });\n\n return new CMCCanister(canisterId, service, certifiedService);\n }\n\n /**\n * Returns conversion rate of ICP to Cycles. It can be called as query or update.\n *\n * @param {Object} [params] - The parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified (default: non-certified)\n *\n * @returns Promise<BigInt>\n */\n public getIcpToCyclesConversionRate = async ({\n certified,\n }: QueryParams = {}): Promise<bigint> => {\n const { data } = await this.caller({\n certified,\n }).get_icp_xdr_conversion_rate();\n\n // TODO: validate the certificate in the response - https://dfinity.atlassian.net/browse/GIX-150\n // Example: https://github.com/dfinity/response-verification/tree/main/examples/certification/certified-counter\n return data.xdr_permyriad_per_icp;\n };\n\n /**\n * Notifies Cycles Minting Canister of the creation of a new canister.\n * It returns the new canister principal.\n *\n * @param {Object} request\n * @param {Principal} request.controller\n * @param {BlockIndex} request.block_index\n * @returns Promise<Principal>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyCreateCanister = async (\n request: NotifyCreateCanisterArg,\n ): Promise<Principal> => {\n const response = await this.service.notify_create_canister(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyCreateCanister ${JSON.stringify(\n response,\n )}`,\n );\n };\n\n /**\n * Notifies Cycles Minting Canister of new cycles being added to canister.\n * It returns the new Cycles of the canister.\n *\n * @param {Object} request\n * @param {Principal} request.canister_id\n * @param {BlockIndex} request.block_index\n * @returns Promise<Cycles>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyTopUp = async (request: NotifyTopUpArg): Promise<Cycles> => {\n const response = await this.service.notify_top_up(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyTopUp ${JSON.stringify(response)}`,\n );\n };\n\n /**\n * This function calls the `get_default_subnets` method of the CMC canister, which returns a list of\n * default subnets as `Principal` objects. It can be called as query or update.\n *\n * @param {Object} [params] - The query parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified\n * (default: non-certified if not specified).\n *\n * @returns {Promise<Principal[]>} - A promise that resolves to an array of `Principal` objects\n * representing the default subnets.\n */\n public getDefaultSubnets = ({ certified }: QueryParams = {}): Promise<\n Principal[]\n > => {\n const { get_default_subnets } = this.caller({ certified });\n return get_default_subnets();\n };\n\n /**\n * This function calls the `get_subnet_types_to_subnets` method of the CMC canister, which returns a list of subnets where canisters can be created.\n * These subnets are excluded from the random subnet selection process used by the CMC when no explicit subnet ID is provided\n * during canister creation and therefore, not provided in the results of the similar function `get_default_subnets`.\n *\n * @param {Object} [params] - The optional query parameters for the call.\n * @param {boolean} [params.certified=false] - Specifies whether the response should be certified.\n * If not provided, the response defaults to non-certified.\n *\n * @returns {Promise<SubnetTypesToSubnetsResponse>} - A promise that resolves to an object representing\n * the mapping of subnet types to subnets.\n */\n public getSubnetTypesToSubnets = ({\n certified,\n }: QueryParams = {}): Promise<SubnetTypesToSubnetsResponse> => {\n const { get_subnet_types_to_subnets } = this.caller({ certified });\n return get_subnet_types_to_subnets();\n };\n}\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetListWithType = IDL.Record({\n subnets: IDL.Vec(IDL.Principal),\n subnet_type: IDL.Text,\n });\n const ChangeSubnetTypeAssignmentArgs = IDL.Variant({\n Add: SubnetListWithType,\n Remove: SubnetListWithType,\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n const SetAuthorizedSubnetworkListArgs = IDL.Record({\n who: IDL.Opt(IDL.Principal),\n subnets: IDL.Vec(IDL.Principal),\n });\n const UpdateSubnetTypeArgs = IDL.Variant({\n Add: IDL.Text,\n Remove: IDL.Text,\n });\n\n return IDL.Service({\n change_subnet_type_assignment: IDL.Func(\n [ChangeSubnetTypeAssignmentArgs],\n [],\n [],\n ),\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], []),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], []),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n set_authorized_subnetwork_list: IDL.Func(\n [SetAuthorizedSubnetworkListArgs],\n [],\n [],\n ),\n update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetListWithType = IDL.Record({\n subnets: IDL.Vec(IDL.Principal),\n subnet_type: IDL.Text,\n });\n const ChangeSubnetTypeAssignmentArgs = IDL.Variant({\n Add: SubnetListWithType,\n Remove: SubnetListWithType,\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n const SetAuthorizedSubnetworkListArgs = IDL.Record({\n who: IDL.Opt(IDL.Principal),\n subnets: IDL.Vec(IDL.Principal),\n });\n const UpdateSubnetTypeArgs = IDL.Variant({\n Add: IDL.Text,\n Remove: IDL.Text,\n });\n\n return IDL.Service({\n change_subnet_type_assignment: IDL.Func(\n [ChangeSubnetTypeAssignmentArgs],\n [],\n [],\n ),\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], [\"query\"]),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], [\"query\"]),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [\"query\"],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [\"query\"],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [\"query\"],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n set_authorized_subnetwork_list: IDL.Func(\n [SetAuthorizedSubnetworkListArgs],\n [],\n [],\n ),\n update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "import { assertNever, jsonReplacer } from \"@dfinity/utils\";\nimport type { NotifyError } from \"./candid/cmc\";\n\nexport class RefundedError extends Error {}\nexport class InvalidaTransactionError extends Error {}\nexport class CMCError extends Error {}\nexport class ProcessingError extends Error {}\nexport class TransactionTooOldError extends Error {}\n\n// Throws one of the errors above\nexport const throwNotifyError = ({\n Err: error,\n}: {\n Err: NotifyError;\n}): void => {\n if (\"Refunded\" in error) {\n throw new RefundedError(error.Refunded.reason);\n }\n if (\"InvalidTransaction\" in error) {\n throw new InvalidaTransactionError(error.InvalidTransaction);\n }\n if (\"Processing\" in error) {\n throw new ProcessingError();\n }\n if (\"TransactionTooOld\" in error) {\n throw new TransactionTooOldError();\n }\n if (\"Other\" in error) {\n throw new CMCError(\n `Error in CMC with code ${error.Other.error_code}: ${error.Other.error_message}`,\n );\n }\n\n assertNever(\n error,\n `Unsupported error type ${JSON.stringify(error, jsonReplacer)}`,\n );\n};\n"],
5
+ "mappings": "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",
6
+ "names": ["Canister", "createServices", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetListWithType", "ChangeSubnetTypeAssignmentArgs", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "SetAuthorizedSubnetworkListArgs", "UpdateSubnetTypeArgs", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetListWithType", "ChangeSubnetTypeAssignmentArgs", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "SetAuthorizedSubnetworkListArgs", "UpdateSubnetTypeArgs", "assertNever", "jsonReplacer", "RefundedError", "InvalidaTransactionError", "CMCError", "ProcessingError", "TransactionTooOldError", "throwNotifyError", "error", "CMCCanister", "_CMCCanister", "Canister", "options", "service", "certifiedService", "canisterId", "createServices", "idlFactory", "certified", "data", "request", "response", "throwNotifyError", "get_default_subnets", "get_subnet_types_to_subnets"]
7
7
  }
package/dist/index.mjs CHANGED
@@ -1,4 +1,4 @@
1
1
  import { createRequire as topLevelCreateRequire } from 'module';
2
2
  const require = topLevelCreateRequire(import.meta.url);
3
- import{Canister as $,createServices as Q}from"@dfinity/utils";var U=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,s=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),c=t.Record({subnet_type:t.Opt(t.Text)}),o=t.Variant({Filter:c,Subnet:t.Record({subnet:t.Principal})}),p=t.Record({value:t.Text,name:t.Text}),l=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),a=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(p)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(l),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),_=t.Record({subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),d=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),u=t.Variant({Ok:t.Principal,Err:d}),y=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),m=t.Record({certificate:t.Vec(t.Nat8),data:y,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),i=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:i}),g=t.Opt(t.Vec(t.Nat8)),b=t.Opt(t.Vec(t.Nat8)),x=t.Record({block_index:r,deposit_memo:g,to_subaccount:b}),R=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),T=t.Variant({Ok:R,Err:i}),P=t.Record({block_index:r,canister_id:t.Principal}),v=t.Nat,V=t.Variant({Ok:v,Err:i});return t.Service({create_canister:t.Func([_],[u],[]),get_build_metadata:t.Func([],[t.Text],[]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],[]),get_icp_xdr_conversion_rate:t.Func([],[m],[]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],[]),get_subnet_types_to_subnets:t.Func([],[f],[]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([x],[T],[]),notify_top_up:t.Func([P],[V],[])})};var M=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,s=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),c=t.Record({subnet_type:t.Opt(t.Text)}),o=t.Variant({Filter:c,Subnet:t.Record({subnet:t.Principal})}),p=t.Record({value:t.Text,name:t.Text}),l=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),a=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(p)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(l),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),_=t.Record({subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),d=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),u=t.Variant({Ok:t.Principal,Err:d}),y=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),m=t.Record({certificate:t.Vec(t.Nat8),data:y,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(o),settings:t.Opt(a),subnet_type:t.Opt(t.Text)}),i=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:i}),g=t.Opt(t.Vec(t.Nat8)),b=t.Opt(t.Vec(t.Nat8)),x=t.Record({block_index:r,deposit_memo:g,to_subaccount:b}),R=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),T=t.Variant({Ok:R,Err:i}),P=t.Record({block_index:r,canister_id:t.Principal}),v=t.Nat,V=t.Variant({Ok:v,Err:i});return t.Service({create_canister:t.Func([_],[u],[]),get_build_metadata:t.Func([],[t.Text],["query"]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],["query"]),get_icp_xdr_conversion_rate:t.Func([],[m],["query"]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],["query"]),get_subnet_types_to_subnets:t.Func([],[f],["query"]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([x],[T],[]),notify_top_up:t.Func([P],[V],[])})};import{assertNever as z,jsonReplacer as q}from"@dfinity/utils";var h=class extends Error{},S=class extends Error{},w=class extends Error{},E=class extends Error{},F=class extends Error{},k=({Err:t})=>{if("Refunded"in t)throw new h(t.Refunded.reason);if("InvalidTransaction"in t)throw new S(t.InvalidTransaction);if("Processing"in t)throw new E;if("TransactionTooOld"in t)throw new F;if("Other"in t)throw new w(`Error in CMC with code ${t.Other.error_code}: ${t.Other.error_message}`);z(t,`Unsupported error type ${JSON.stringify(t,q)}`)};var A=class t extends ${static create(n){let{service:e,certifiedService:s,canisterId:c}=Q({options:n,idlFactory:M,certifiedIdlFactory:U});return new t(c,e,s)}getIcpToCyclesConversionRate=async({certified:n}={})=>{let{data:e}=await this.caller({certified:n}).get_icp_xdr_conversion_rate();return e.xdr_permyriad_per_icp};notifyCreateCanister=async n=>{let e=await this.service.notify_create_canister(n);if("Err"in e&&k(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyCreateCanister ${JSON.stringify(e)}`)};notifyTopUp=async n=>{let e=await this.service.notify_top_up(n);if("Err"in e&&k(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyTopUp ${JSON.stringify(e)}`)};getDefaultSubnets=({certified:n}={})=>{let{get_default_subnets:e}=this.caller({certified:n});return e()};getSubnetTypesToSubnets=({certified:n}={})=>{let{get_subnet_types_to_subnets:e}=this.caller({certified:n});return e()}};export{A as CMCCanister,w as CMCError,S as InvalidaTransactionError,E as ProcessingError,h as RefundedError,F as TransactionTooOldError,k as throwNotifyError};
3
+ import{Canister as B,createServices as W}from"@dfinity/utils";var $=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,a=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),i=t.Record({subnets:t.Vec(t.Principal),subnet_type:t.Text}),p=t.Variant({Add:i,Remove:i}),l=t.Record({subnet_type:t.Opt(t.Text)}),s=t.Variant({Filter:l,Subnet:t.Record({subnet:t.Principal})}),_=t.Record({value:t.Text,name:t.Text}),d=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),o=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(_)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(d),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),u=t.Record({subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),y=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),m=t.Variant({Ok:t.Principal,Err:y}),b=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),g=t.Record({certificate:t.Vec(t.Nat8),data:b,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),c=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:c}),x=t.Opt(t.Vec(t.Nat8)),R=t.Opt(t.Vec(t.Nat8)),T=t.Record({block_index:r,deposit_memo:x,to_subaccount:R}),P=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),h=t.Variant({Ok:P,Err:c}),S=t.Record({block_index:r,canister_id:t.Principal}),V=t.Nat,v=t.Variant({Ok:V,Err:c}),w=t.Record({who:t.Opt(t.Principal),subnets:t.Vec(t.Principal)}),A=t.Variant({Add:t.Text,Remove:t.Text});return t.Service({change_subnet_type_assignment:t.Func([p],[],[]),create_canister:t.Func([u],[m],[]),get_build_metadata:t.Func([],[t.Text],[]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],[]),get_icp_xdr_conversion_rate:t.Func([],[g],[]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],[]),get_subnet_types_to_subnets:t.Func([],[f],[]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([T],[h],[]),notify_top_up:t.Func([S],[v],[]),set_authorized_subnetwork_list:t.Func([w],[],[]),update_subnet_type:t.Func([A],[],[])})};var Q=({IDL:t})=>{let n=t.Variant({Set:t.Principal,Unset:t.Null}),e=t.Text,a=t.Record({exchange_rate_canister:t.Opt(n),cycles_ledger_canister_id:t.Opt(t.Principal),last_purged_notification:t.Opt(t.Nat64),governance_canister_id:t.Opt(t.Principal),minting_account_id:t.Opt(e),ledger_canister_id:t.Opt(t.Principal)}),i=t.Record({subnets:t.Vec(t.Principal),subnet_type:t.Text}),p=t.Variant({Add:i,Remove:i}),l=t.Record({subnet_type:t.Opt(t.Text)}),s=t.Variant({Filter:l,Subnet:t.Record({subnet:t.Principal})}),_=t.Record({value:t.Text,name:t.Text}),d=t.Variant({controllers:t.Null,public:t.Null,allowed_viewers:t.Vec(t.Principal)}),o=t.Record({freezing_threshold:t.Opt(t.Nat),wasm_memory_threshold:t.Opt(t.Nat),environment_variables:t.Opt(t.Vec(_)),controllers:t.Opt(t.Vec(t.Principal)),reserved_cycles_limit:t.Opt(t.Nat),log_visibility:t.Opt(d),log_memory_limit:t.Opt(t.Nat),wasm_memory_limit:t.Opt(t.Nat),memory_allocation:t.Opt(t.Nat),compute_allocation:t.Opt(t.Nat)}),u=t.Record({subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),y=t.Variant({Refunded:t.Record({create_error:t.Text,refund_amount:t.Nat})}),m=t.Variant({Ok:t.Principal,Err:y}),b=t.Record({xdr_permyriad_per_icp:t.Nat64,timestamp_seconds:t.Nat64}),g=t.Record({certificate:t.Vec(t.Nat8),data:b,hash_tree:t.Vec(t.Nat8)}),O=t.Record({data:t.Vec(t.Tuple(t.Principal,t.Vec(t.Principal)))}),f=t.Record({data:t.Vec(t.Tuple(t.Text,t.Vec(t.Principal)))}),r=t.Nat64,C=t.Record({controller:t.Principal,block_index:r,subnet_selection:t.Opt(s),settings:t.Opt(o),subnet_type:t.Opt(t.Text)}),c=t.Variant({Refunded:t.Record({block_index:t.Opt(r),reason:t.Text}),InvalidTransaction:t.Text,Other:t.Record({error_message:t.Text,error_code:t.Nat64}),Processing:t.Null,TransactionTooOld:r}),N=t.Variant({Ok:t.Principal,Err:c}),x=t.Opt(t.Vec(t.Nat8)),R=t.Opt(t.Vec(t.Nat8)),T=t.Record({block_index:r,deposit_memo:x,to_subaccount:R}),P=t.Record({balance:t.Nat,block_index:t.Nat,minted:t.Nat}),h=t.Variant({Ok:P,Err:c}),S=t.Record({block_index:r,canister_id:t.Principal}),V=t.Nat,v=t.Variant({Ok:V,Err:c}),w=t.Record({who:t.Opt(t.Principal),subnets:t.Vec(t.Principal)}),A=t.Variant({Add:t.Text,Remove:t.Text});return t.Service({change_subnet_type_assignment:t.Func([p],[],[]),create_canister:t.Func([u],[m],[]),get_build_metadata:t.Func([],[t.Text],["query"]),get_default_subnets:t.Func([],[t.Vec(t.Principal)],["query"]),get_icp_xdr_conversion_rate:t.Func([],[g],["query"]),get_principals_authorized_to_create_canisters_to_subnets:t.Func([],[O],["query"]),get_subnet_types_to_subnets:t.Func([],[f],["query"]),notify_create_canister:t.Func([C],[N],[]),notify_mint_cycles:t.Func([T],[h],[]),notify_top_up:t.Func([S],[v],[]),set_authorized_subnetwork_list:t.Func([w],[],[]),update_subnet_type:t.Func([A],[],[])})};import{assertNever as X,jsonReplacer as J}from"@dfinity/utils";var F=class extends Error{},k=class extends Error{},E=class extends Error{},U=class extends Error{},M=class extends Error{},z=({Err:t})=>{if("Refunded"in t)throw new F(t.Refunded.reason);if("InvalidTransaction"in t)throw new k(t.InvalidTransaction);if("Processing"in t)throw new U;if("TransactionTooOld"in t)throw new M;if("Other"in t)throw new E(`Error in CMC with code ${t.Other.error_code}: ${t.Other.error_message}`);X(t,`Unsupported error type ${JSON.stringify(t,J)}`)};var q=class t extends B{static create(n){let{service:e,certifiedService:a,canisterId:i}=W({options:n,idlFactory:Q,certifiedIdlFactory:$});return new t(i,e,a)}getIcpToCyclesConversionRate=async({certified:n}={})=>{let{data:e}=await this.caller({certified:n}).get_icp_xdr_conversion_rate();return e.xdr_permyriad_per_icp};notifyCreateCanister=async n=>{let e=await this.service.notify_create_canister(n);if("Err"in e&&z(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyCreateCanister ${JSON.stringify(e)}`)};notifyTopUp=async n=>{let e=await this.service.notify_top_up(n);if("Err"in e&&z(e),"Ok"in e)return e.Ok;throw new Error(`Unsupported response type in notifyTopUp ${JSON.stringify(e)}`)};getDefaultSubnets=({certified:n}={})=>{let{get_default_subnets:e}=this.caller({certified:n});return e()};getSubnetTypesToSubnets=({certified:n}={})=>{let{get_subnet_types_to_subnets:e}=this.caller({certified:n});return e()}};export{q as CMCCanister,E as CMCError,k as InvalidaTransactionError,U as ProcessingError,F as RefundedError,M as TransactionTooOldError,z as throwNotifyError};
4
4
  //# sourceMappingURL=index.mjs.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../src/cmc.canister.ts", "../src/candid/cmc.certified.idl.js", "../src/candid/cmc.idl.js", "../src/cmc.errors.ts"],
4
- "sourcesContent": ["import { Canister, createServices, type QueryParams } from \"@dfinity/utils\";\nimport type { Principal } from \"@icp-sdk/core/principal\";\nimport type {\n _SERVICE as CMCCanisterService,\n Cycles,\n NotifyCreateCanisterArg,\n NotifyTopUpArg,\n SubnetTypesToSubnetsResponse,\n} from \"./candid/cmc\";\nimport { idlFactory as certifiedIdlFactory } from \"./candid/cmc.certified.idl\";\nimport { idlFactory } from \"./candid/cmc.idl\";\nimport { throwNotifyError } from \"./cmc.errors\";\nimport type { CMCCanisterOptions } from \"./cmc.options\";\n\nexport class CMCCanister extends Canister<CMCCanisterService> {\n static create(options: CMCCanisterOptions): CMCCanister {\n const { service, certifiedService, canisterId } =\n createServices<CMCCanisterService>({\n options,\n idlFactory,\n certifiedIdlFactory,\n });\n\n return new CMCCanister(canisterId, service, certifiedService);\n }\n\n /**\n * Returns conversion rate of ICP to Cycles. It can be called as query or update.\n *\n * @param {Object} [params] - The parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified (default: non-certified)\n *\n * @returns Promise<BigInt>\n */\n public getIcpToCyclesConversionRate = async ({\n certified,\n }: QueryParams = {}): Promise<bigint> => {\n const { data } = await this.caller({\n certified,\n }).get_icp_xdr_conversion_rate();\n\n // TODO: validate the certificate in the response - https://dfinity.atlassian.net/browse/GIX-150\n // Example: https://github.com/dfinity/response-verification/tree/main/examples/certification/certified-counter\n return data.xdr_permyriad_per_icp;\n };\n\n /**\n * Notifies Cycles Minting Canister of the creation of a new canister.\n * It returns the new canister principal.\n *\n * @param {Object} request\n * @param {Principal} request.controller\n * @param {BlockIndex} request.block_index\n * @returns Promise<Principal>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyCreateCanister = async (\n request: NotifyCreateCanisterArg,\n ): Promise<Principal> => {\n const response = await this.service.notify_create_canister(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyCreateCanister ${JSON.stringify(\n response,\n )}`,\n );\n };\n\n /**\n * Notifies Cycles Minting Canister of new cycles being added to canister.\n * It returns the new Cycles of the canister.\n *\n * @param {Object} request\n * @param {Principal} request.canister_id\n * @param {BlockIndex} request.block_index\n * @returns Promise<Cycles>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyTopUp = async (request: NotifyTopUpArg): Promise<Cycles> => {\n const response = await this.service.notify_top_up(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyTopUp ${JSON.stringify(response)}`,\n );\n };\n\n /**\n * This function calls the `get_default_subnets` method of the CMC canister, which returns a list of\n * default subnets as `Principal` objects. It can be called as query or update.\n *\n * @param {Object} [params] - The query parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified\n * (default: non-certified if not specified).\n *\n * @returns {Promise<Principal[]>} - A promise that resolves to an array of `Principal` objects\n * representing the default subnets.\n */\n public getDefaultSubnets = ({ certified }: QueryParams = {}): Promise<\n Principal[]\n > => {\n const { get_default_subnets } = this.caller({ certified });\n return get_default_subnets();\n };\n\n /**\n * This function calls the `get_subnet_types_to_subnets` method of the CMC canister, which returns a list of subnets where canisters can be created.\n * These subnets are excluded from the random subnet selection process used by the CMC when no explicit subnet ID is provided\n * during canister creation and therefore, not provided in the results of the similar function `get_default_subnets`.\n *\n * @param {Object} [params] - The optional query parameters for the call.\n * @param {boolean} [params.certified=false] - Specifies whether the response should be certified.\n * If not provided, the response defaults to non-certified.\n *\n * @returns {Promise<SubnetTypesToSubnetsResponse>} - A promise that resolves to an object representing\n * the mapping of subnet types to subnets.\n */\n public getSubnetTypesToSubnets = ({\n certified,\n }: QueryParams = {}): Promise<SubnetTypesToSubnetsResponse> => {\n const { get_subnet_types_to_subnets } = this.caller({ certified });\n return get_subnet_types_to_subnets();\n };\n}\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n\n return IDL.Service({\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], []),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], []),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n\n return IDL.Service({\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], [\"query\"]),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], [\"query\"]),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [\"query\"],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [\"query\"],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [\"query\"],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "import { assertNever, jsonReplacer } from \"@dfinity/utils\";\nimport type { NotifyError } from \"./candid/cmc\";\n\nexport class RefundedError extends Error {}\nexport class InvalidaTransactionError extends Error {}\nexport class CMCError extends Error {}\nexport class ProcessingError extends Error {}\nexport class TransactionTooOldError extends Error {}\n\n// Throws one of the errors above\nexport const throwNotifyError = ({\n Err: error,\n}: {\n Err: NotifyError;\n}): void => {\n if (\"Refunded\" in error) {\n throw new RefundedError(error.Refunded.reason);\n }\n if (\"InvalidTransaction\" in error) {\n throw new InvalidaTransactionError(error.InvalidTransaction);\n }\n if (\"Processing\" in error) {\n throw new ProcessingError();\n }\n if (\"TransactionTooOld\" in error) {\n throw new TransactionTooOldError();\n }\n if (\"Other\" in error) {\n throw new CMCError(\n `Error in CMC with code ${error.Other.error_code}: ${error.Other.error_message}`,\n );\n }\n\n assertNever(\n error,\n `Unsupported error type ${JSON.stringify(error, jsonReplacer)}`,\n );\n};\n"],
5
- "mappings": "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",
6
- "names": ["Canister", "createServices", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "assertNever", "jsonReplacer", "RefundedError", "InvalidaTransactionError", "CMCError", "ProcessingError", "TransactionTooOldError", "throwNotifyError", "error", "CMCCanister", "_CMCCanister", "Canister", "options", "service", "certifiedService", "canisterId", "createServices", "idlFactory", "certified", "data", "request", "response", "throwNotifyError", "get_default_subnets", "get_subnet_types_to_subnets"]
4
+ "sourcesContent": ["import { Canister, createServices, type QueryParams } from \"@dfinity/utils\";\nimport type { Principal } from \"@icp-sdk/core/principal\";\nimport type {\n _SERVICE as CMCCanisterService,\n Cycles,\n NotifyCreateCanisterArg,\n NotifyTopUpArg,\n SubnetTypesToSubnetsResponse,\n} from \"./candid/cmc\";\nimport { idlFactory as certifiedIdlFactory } from \"./candid/cmc.certified.idl\";\nimport { idlFactory } from \"./candid/cmc.idl\";\nimport { throwNotifyError } from \"./cmc.errors\";\nimport type { CMCCanisterOptions } from \"./cmc.options\";\n\nexport class CMCCanister extends Canister<CMCCanisterService> {\n static create(options: CMCCanisterOptions): CMCCanister {\n const { service, certifiedService, canisterId } =\n createServices<CMCCanisterService>({\n options,\n idlFactory,\n certifiedIdlFactory,\n });\n\n return new CMCCanister(canisterId, service, certifiedService);\n }\n\n /**\n * Returns conversion rate of ICP to Cycles. It can be called as query or update.\n *\n * @param {Object} [params] - The parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified (default: non-certified)\n *\n * @returns Promise<BigInt>\n */\n public getIcpToCyclesConversionRate = async ({\n certified,\n }: QueryParams = {}): Promise<bigint> => {\n const { data } = await this.caller({\n certified,\n }).get_icp_xdr_conversion_rate();\n\n // TODO: validate the certificate in the response - https://dfinity.atlassian.net/browse/GIX-150\n // Example: https://github.com/dfinity/response-verification/tree/main/examples/certification/certified-counter\n return data.xdr_permyriad_per_icp;\n };\n\n /**\n * Notifies Cycles Minting Canister of the creation of a new canister.\n * It returns the new canister principal.\n *\n * @param {Object} request\n * @param {Principal} request.controller\n * @param {BlockIndex} request.block_index\n * @returns Promise<Principal>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyCreateCanister = async (\n request: NotifyCreateCanisterArg,\n ): Promise<Principal> => {\n const response = await this.service.notify_create_canister(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyCreateCanister ${JSON.stringify(\n response,\n )}`,\n );\n };\n\n /**\n * Notifies Cycles Minting Canister of new cycles being added to canister.\n * It returns the new Cycles of the canister.\n *\n * @param {Object} request\n * @param {Principal} request.canister_id\n * @param {BlockIndex} request.block_index\n * @returns Promise<Cycles>\n * @throws RefundedError, InvalidaTransactionError, ProcessingError, TransactionTooOldError, CMCError\n */\n public notifyTopUp = async (request: NotifyTopUpArg): Promise<Cycles> => {\n const response = await this.service.notify_top_up(request);\n if (\"Err\" in response) {\n throwNotifyError(response);\n }\n if (\"Ok\" in response) {\n return response.Ok;\n }\n // Edge case\n throw new Error(\n `Unsupported response type in notifyTopUp ${JSON.stringify(response)}`,\n );\n };\n\n /**\n * This function calls the `get_default_subnets` method of the CMC canister, which returns a list of\n * default subnets as `Principal` objects. It can be called as query or update.\n *\n * @param {Object} [params] - The query parameters for the call.\n * @param {boolean} [params.certified] - Determines whether the response should be certified\n * (default: non-certified if not specified).\n *\n * @returns {Promise<Principal[]>} - A promise that resolves to an array of `Principal` objects\n * representing the default subnets.\n */\n public getDefaultSubnets = ({ certified }: QueryParams = {}): Promise<\n Principal[]\n > => {\n const { get_default_subnets } = this.caller({ certified });\n return get_default_subnets();\n };\n\n /**\n * This function calls the `get_subnet_types_to_subnets` method of the CMC canister, which returns a list of subnets where canisters can be created.\n * These subnets are excluded from the random subnet selection process used by the CMC when no explicit subnet ID is provided\n * during canister creation and therefore, not provided in the results of the similar function `get_default_subnets`.\n *\n * @param {Object} [params] - The optional query parameters for the call.\n * @param {boolean} [params.certified=false] - Specifies whether the response should be certified.\n * If not provided, the response defaults to non-certified.\n *\n * @returns {Promise<SubnetTypesToSubnetsResponse>} - A promise that resolves to an object representing\n * the mapping of subnet types to subnets.\n */\n public getSubnetTypesToSubnets = ({\n certified,\n }: QueryParams = {}): Promise<SubnetTypesToSubnetsResponse> => {\n const { get_subnet_types_to_subnets } = this.caller({ certified });\n return get_subnet_types_to_subnets();\n };\n}\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetListWithType = IDL.Record({\n subnets: IDL.Vec(IDL.Principal),\n subnet_type: IDL.Text,\n });\n const ChangeSubnetTypeAssignmentArgs = IDL.Variant({\n Add: SubnetListWithType,\n Remove: SubnetListWithType,\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n const SetAuthorizedSubnetworkListArgs = IDL.Record({\n who: IDL.Opt(IDL.Principal),\n subnets: IDL.Vec(IDL.Principal),\n });\n const UpdateSubnetTypeArgs = IDL.Variant({\n Add: IDL.Text,\n Remove: IDL.Text,\n });\n\n return IDL.Service({\n change_subnet_type_assignment: IDL.Func(\n [ChangeSubnetTypeAssignmentArgs],\n [],\n [],\n ),\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], []),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], []),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n set_authorized_subnetwork_list: IDL.Func(\n [SetAuthorizedSubnetworkListArgs],\n [],\n [],\n ),\n update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "/* eslint-disable */\n\n// @ts-nocheck\n\n// This file was automatically generated by @icp-sdk/bindgen@0.2.0-patch-typed-arrays.\n// You should NOT make any changes in this file as it will be overwritten.\n// Additionally, you should also exclude this file from your linter and/or formatter to prevent it from being checked or modified.\n\nexport const idlFactory = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n const SubnetListWithType = IDL.Record({\n subnets: IDL.Vec(IDL.Principal),\n subnet_type: IDL.Text,\n });\n const ChangeSubnetTypeAssignmentArgs = IDL.Variant({\n Add: SubnetListWithType,\n Remove: SubnetListWithType,\n });\n const SubnetFilter = IDL.Record({ subnet_type: IDL.Opt(IDL.Text) });\n const SubnetSelection = IDL.Variant({\n Filter: SubnetFilter,\n Subnet: IDL.Record({ subnet: IDL.Principal }),\n });\n const environment_variable = IDL.Record({\n value: IDL.Text,\n name: IDL.Text,\n });\n const log_visibility = IDL.Variant({\n controllers: IDL.Null,\n public: IDL.Null,\n allowed_viewers: IDL.Vec(IDL.Principal),\n });\n const CanisterSettings = IDL.Record({\n freezing_threshold: IDL.Opt(IDL.Nat),\n wasm_memory_threshold: IDL.Opt(IDL.Nat),\n environment_variables: IDL.Opt(IDL.Vec(environment_variable)),\n controllers: IDL.Opt(IDL.Vec(IDL.Principal)),\n reserved_cycles_limit: IDL.Opt(IDL.Nat),\n log_visibility: IDL.Opt(log_visibility),\n log_memory_limit: IDL.Opt(IDL.Nat),\n wasm_memory_limit: IDL.Opt(IDL.Nat),\n memory_allocation: IDL.Opt(IDL.Nat),\n compute_allocation: IDL.Opt(IDL.Nat),\n });\n const CreateCanisterArg = IDL.Record({\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const CreateCanisterError = IDL.Variant({\n Refunded: IDL.Record({\n create_error: IDL.Text,\n refund_amount: IDL.Nat,\n }),\n });\n const CreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: CreateCanisterError,\n });\n const IcpXdrConversionRate = IDL.Record({\n xdr_permyriad_per_icp: IDL.Nat64,\n timestamp_seconds: IDL.Nat64,\n });\n const IcpXdrConversionRateResponse = IDL.Record({\n certificate: IDL.Vec(IDL.Nat8),\n data: IcpXdrConversionRate,\n hash_tree: IDL.Vec(IDL.Nat8),\n });\n const PrincipalsAuthorizedToCreateCanistersToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Principal, IDL.Vec(IDL.Principal))),\n });\n const SubnetTypesToSubnetsResponse = IDL.Record({\n data: IDL.Vec(IDL.Tuple(IDL.Text, IDL.Vec(IDL.Principal))),\n });\n const BlockIndex = IDL.Nat64;\n const NotifyCreateCanisterArg = IDL.Record({\n controller: IDL.Principal,\n block_index: BlockIndex,\n subnet_selection: IDL.Opt(SubnetSelection),\n settings: IDL.Opt(CanisterSettings),\n subnet_type: IDL.Opt(IDL.Text),\n });\n const NotifyError = IDL.Variant({\n Refunded: IDL.Record({\n block_index: IDL.Opt(BlockIndex),\n reason: IDL.Text,\n }),\n InvalidTransaction: IDL.Text,\n Other: IDL.Record({\n error_message: IDL.Text,\n error_code: IDL.Nat64,\n }),\n Processing: IDL.Null,\n TransactionTooOld: BlockIndex,\n });\n const NotifyCreateCanisterResult = IDL.Variant({\n Ok: IDL.Principal,\n Err: NotifyError,\n });\n const Memo = IDL.Opt(IDL.Vec(IDL.Nat8));\n const Subaccount = IDL.Opt(IDL.Vec(IDL.Nat8));\n const NotifyMintCyclesArg = IDL.Record({\n block_index: BlockIndex,\n deposit_memo: Memo,\n to_subaccount: Subaccount,\n });\n const NotifyMintCyclesSuccess = IDL.Record({\n balance: IDL.Nat,\n block_index: IDL.Nat,\n minted: IDL.Nat,\n });\n const NotifyMintCyclesResult = IDL.Variant({\n Ok: NotifyMintCyclesSuccess,\n Err: NotifyError,\n });\n const NotifyTopUpArg = IDL.Record({\n block_index: BlockIndex,\n canister_id: IDL.Principal,\n });\n const Cycles = IDL.Nat;\n const NotifyTopUpResult = IDL.Variant({ Ok: Cycles, Err: NotifyError });\n const SetAuthorizedSubnetworkListArgs = IDL.Record({\n who: IDL.Opt(IDL.Principal),\n subnets: IDL.Vec(IDL.Principal),\n });\n const UpdateSubnetTypeArgs = IDL.Variant({\n Add: IDL.Text,\n Remove: IDL.Text,\n });\n\n return IDL.Service({\n change_subnet_type_assignment: IDL.Func(\n [ChangeSubnetTypeAssignmentArgs],\n [],\n [],\n ),\n create_canister: IDL.Func([CreateCanisterArg], [CreateCanisterResult], []),\n get_build_metadata: IDL.Func([], [IDL.Text], [\"query\"]),\n get_default_subnets: IDL.Func([], [IDL.Vec(IDL.Principal)], [\"query\"]),\n get_icp_xdr_conversion_rate: IDL.Func(\n [],\n [IcpXdrConversionRateResponse],\n [\"query\"],\n ),\n get_principals_authorized_to_create_canisters_to_subnets: IDL.Func(\n [],\n [PrincipalsAuthorizedToCreateCanistersToSubnetsResponse],\n [\"query\"],\n ),\n get_subnet_types_to_subnets: IDL.Func(\n [],\n [SubnetTypesToSubnetsResponse],\n [\"query\"],\n ),\n notify_create_canister: IDL.Func(\n [NotifyCreateCanisterArg],\n [NotifyCreateCanisterResult],\n [],\n ),\n notify_mint_cycles: IDL.Func(\n [NotifyMintCyclesArg],\n [NotifyMintCyclesResult],\n [],\n ),\n notify_top_up: IDL.Func([NotifyTopUpArg], [NotifyTopUpResult], []),\n set_authorized_subnetwork_list: IDL.Func(\n [SetAuthorizedSubnetworkListArgs],\n [],\n [],\n ),\n update_subnet_type: IDL.Func([UpdateSubnetTypeArgs], [], []),\n });\n};\n\nexport const init = ({ IDL }) => {\n const ExchangeRateCanister = IDL.Variant({\n Set: IDL.Principal,\n Unset: IDL.Null,\n });\n const AccountIdentifier = IDL.Text;\n const CyclesCanisterInitPayload = IDL.Record({\n exchange_rate_canister: IDL.Opt(ExchangeRateCanister),\n cycles_ledger_canister_id: IDL.Opt(IDL.Principal),\n last_purged_notification: IDL.Opt(IDL.Nat64),\n governance_canister_id: IDL.Opt(IDL.Principal),\n minting_account_id: IDL.Opt(AccountIdentifier),\n ledger_canister_id: IDL.Opt(IDL.Principal),\n });\n\n return [IDL.Opt(CyclesCanisterInitPayload)];\n};\n", "import { assertNever, jsonReplacer } from \"@dfinity/utils\";\nimport type { NotifyError } from \"./candid/cmc\";\n\nexport class RefundedError extends Error {}\nexport class InvalidaTransactionError extends Error {}\nexport class CMCError extends Error {}\nexport class ProcessingError extends Error {}\nexport class TransactionTooOldError extends Error {}\n\n// Throws one of the errors above\nexport const throwNotifyError = ({\n Err: error,\n}: {\n Err: NotifyError;\n}): void => {\n if (\"Refunded\" in error) {\n throw new RefundedError(error.Refunded.reason);\n }\n if (\"InvalidTransaction\" in error) {\n throw new InvalidaTransactionError(error.InvalidTransaction);\n }\n if (\"Processing\" in error) {\n throw new ProcessingError();\n }\n if (\"TransactionTooOld\" in error) {\n throw new TransactionTooOldError();\n }\n if (\"Other\" in error) {\n throw new CMCError(\n `Error in CMC with code ${error.Other.error_code}: ${error.Other.error_message}`,\n );\n }\n\n assertNever(\n error,\n `Unsupported error type ${JSON.stringify(error, jsonReplacer)}`,\n );\n};\n"],
5
+ "mappings": "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",
6
+ "names": ["Canister", "createServices", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetListWithType", "ChangeSubnetTypeAssignmentArgs", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "SetAuthorizedSubnetworkListArgs", "UpdateSubnetTypeArgs", "idlFactory", "IDL", "ExchangeRateCanister", "AccountIdentifier", "CyclesCanisterInitPayload", "SubnetListWithType", "ChangeSubnetTypeAssignmentArgs", "SubnetFilter", "SubnetSelection", "environment_variable", "log_visibility", "CanisterSettings", "CreateCanisterArg", "CreateCanisterError", "CreateCanisterResult", "IcpXdrConversionRate", "IcpXdrConversionRateResponse", "PrincipalsAuthorizedToCreateCanistersToSubnetsResponse", "SubnetTypesToSubnetsResponse", "BlockIndex", "NotifyCreateCanisterArg", "NotifyError", "NotifyCreateCanisterResult", "Memo", "Subaccount", "NotifyMintCyclesArg", "NotifyMintCyclesSuccess", "NotifyMintCyclesResult", "NotifyTopUpArg", "Cycles", "NotifyTopUpResult", "SetAuthorizedSubnetworkListArgs", "UpdateSubnetTypeArgs", "assertNever", "jsonReplacer", "RefundedError", "InvalidaTransactionError", "CMCError", "ProcessingError", "TransactionTooOldError", "throwNotifyError", "error", "CMCCanister", "_CMCCanister", "Canister", "options", "service", "certifiedService", "canisterId", "createServices", "idlFactory", "certified", "data", "request", "response", "throwNotifyError", "get_default_subnets", "get_subnet_types_to_subnets"]
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dfinity/cmc",
3
- "version": "7.0.1-next-2025-11-17",
3
+ "version": "7.0.1-next-2025-11-17.1",
4
4
  "description": "A library for interfacing with the cycle minting canister.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",