Sync workspace: config, docs, scripts, CI, operator rules, and submodule pointers.

- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains
- Omit embedded publish git dirs and empty placeholders from index

Made-with: Cursor
This commit is contained in:
defiQUG
2026-04-12 06:12:20 -07:00
parent 6fb6bd3993
commit dbd517b279
2935 changed files with 327972 additions and 5533 deletions

View File

@@ -0,0 +1,11 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
/// @dev Minimal contract deployed via CREATE2 for VMID 2103 RPC smoke tests.
contract Create2Probe {
uint256 public constant VMID_TAG = 2103;
function ping() external pure returns (bytes32) {
return keccak256("create2-probe-2103");
}
}