Community Command

Guide the next phase of DEEPSPACE

Active Proposals --
Focused Proposal Awaiting selection
Voting Status Standby

Proposals

Loading proposals...

Loading proposal...

ID: -

ACTIVE

Fetching proposal details...

Cast your vote:

Current Tally

Click refresh to load results

Admin Controls

Loading...

function ensureWalletConnectModal() { if (!walletConnectModalInstance && window.WalletConnectModal) { const ModalCtor = window.WalletConnectModal.default || window.WalletConnectModal; walletConnectModalInstance = new ModalCtor({ projectId: WALLETCONNECT_PROJECT_ID, themeMode: 'dark', standaloneChains: [`eip155:${BSC_CHAIN_ID}`], themeVariables: { '--wcm-font-family': "'Space Grotesk', sans-serif" } }); } } function openWalletConnectModal(uri) { if (walletConnectModalInstance) { walletConnectModalInstance.openModal({ uri }); return; } const trustUrl = `https://link.trustwallet.com/wc?uri=${encodeURIComponent(uri)}`; window.open(trustUrl, '_blank'); }