chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -11,6 +11,12 @@ contract DeployTransactionMirror is Script {
// Use MIRROR_ADMIN from .env, or fall back to deployer address
address admin = vm.envOr("MIRROR_ADMIN", deployer);
// Optional: skip stuck nonce (e.g. NEXT_NONCE=13370 when 13369 is stuck)
uint64 nextNonce = uint64(vm.envOr("NEXT_NONCE", uint256(0)));
if (nextNonce > 0) {
vm.setNonce(deployer, nextNonce);
}
vm.startBroadcast(pk);
TransactionMirror mirror = new TransactionMirror(admin);
console.log("TransactionMirror deployed at:", address(mirror));