Skip to content

Commit 9caa2ae

Browse files
feat: more types
1 parent af40ab2 commit 9caa2ae

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

cli/src/constants/pocket-ic.constants.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,14 @@ import type {
88

99
export const SUBNET_CONFIG: SubnetSpec = {
1010
state_config: 'New',
11-
instruction_config: 'Production'
11+
instruction_config: 'Production',
12+
subnet_admins: null,
13+
cost_schedule: 'Normal'
1214
};
1315

1416
// https://github.com/dfinity/ic/blob/master/packages/pocket-ic/src/common/rest.rs#L557
1517
export const ICP_CONFIG: IcpConfig = {
1618
beta_features: 'Disabled',
17-
canister_backtrace: 'Enabled',
1819
function_name_length_limits: 'Enabled',
1920
canister_execution_rate_limiting: 'Enabled'
2021
};
@@ -24,7 +25,8 @@ export const ICP_CONFIG: IcpConfig = {
2425
export const INSTANCE_HTTP_GATEWAY: Omit<InstanceHttpGatewayConfig, 'port'> = {
2526
ip_addr: '0.0.0.0',
2627
domains: null,
27-
https_config: null
28+
https_config: null,
29+
domain_custom_provider_local_file: null
2830
};
2931

3032
// Configures the instance to make progress automatically

0 commit comments

Comments
 (0)