Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions hathor/conf/mainnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,18 @@
version='0.60.0',
signal_support_by_default=True,
),
Feature.COUNT_CHECKDATASIG_OP: Criteria(
bit=0,
# N = 5_765_760
# Expected to be reached around Tuesday, 2025-08-12 17:39:56 GMT
# Right now the best block is 5_748_286 at Wednesday, 2025-08-06 16:02:56 GMT
start_height=5_765_760,
timeout_height=5_886_720, # N + 6 * 20160 (6 weeks after the start)
minimum_activation_height=0,
lock_in_on_timeout=False,
version='0.64.0',
signal_support_by_default=True,
),
}
)
)
12 changes: 12 additions & 0 deletions hathor/conf/mainnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,15 @@ FEATURE_ACTIVATION:
lock_in_on_timeout: false
version: 0.60.0
signal_support_by_default: true

COUNT_CHECKDATASIG_OP:
bit: 0
# N = 5_765_760
# Expected to be reached around Tuesday, 2025-08-12 17:39:56 GMT
# Right now the best block is 5_748_286 at Wednesday, 2025-08-06 16:02:56 GMT
start_height: 5_765_760
timeout_height: 5_886_720 # N + 6 * 20160 (6 weeks after the start)
minimum_activation_height: 0
lock_in_on_timeout: false
version: 0.64.0
signal_support_by_default: true
15 changes: 14 additions & 1 deletion hathor/conf/testnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,20 @@
lock_in_on_timeout=False,
version='0.63.0',
signal_support_by_default=True,
)
),

Feature.COUNT_CHECKDATASIG_OP: Criteria(
bit=0,
# N = 5_120_640
# Expected to be reached around Wednesday, 2025-08-13 03:09:44 GMT
# Right now the best block is 5_102_018 at Wednesday, 2025-08-06 15:58:44 GMT
start_height=5_120_640, # N
timeout_height=5_241_600, # N + 6 * 20160 (6 weeks after the start)
minimum_activation_height=0,
lock_in_on_timeout=False,
version='0.64.0',
signal_support_by_default=True,
),
}
)
)
12 changes: 12 additions & 0 deletions hathor/conf/testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,15 @@ FEATURE_ACTIVATION:
lock_in_on_timeout: false
version: 0.63.0
signal_support_by_default: true

COUNT_CHECKDATASIG_OP:
bit: 0
# N = 5_120_640
# Expected to be reached around Wednesday, 2025-08-13 03:09:44 GMT
# Right now the best block is 5_102_018 at Wednesday, 2025-08-06 15:58:44 GMT
start_height: 5_120_640
timeout_height: 5_241_600 # N + 6 * 20160 (6 weeks after the start)
minimum_activation_height: 0
lock_in_on_timeout: false
version: 0.64.0
signal_support_by_default: true
12 changes: 12 additions & 0 deletions hathor/conf/testnet_hotel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,18 @@ FEATURE_ACTIVATION:
version: 0.64.0
signal_support_by_default: true

COUNT_CHECKDATASIG_OP:
bit: 1
# N = 5_100_480
# Expected to be reached around Saturday, 2025-08-09 09:31:28 GMT
# Right now the best block is 5_092_661 at Wednesday, 2025-08-06 16:21:58 GMT
start_height: 5_100_480
timeout_height: 5_221_440 # N + 6 * 20160 (6 weeks after the start)
minimum_activation_height: 0
lock_in_on_timeout: false
version: 0.64.0
signal_support_by_default: true

ENABLE_NANO_CONTRACTS: feature_activation
NC_ON_CHAIN_BLUEPRINT_ALLOWED_ADDRESSES:
- WWFiNeWAFSmgtjm4ht2MydwS5GY3kMJsEK
Expand Down
Loading