
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@dynamic-labs-connectors/sequence-cross-app-evm
Advanced tools
The Sequence Cross App EVM connector enables integration with Sequence's cross-app wallet functionality in the Dynamic SDK. It provides a seamless way to interact with Sequence's wallet-as-a-service (WaaS) solution, allowing users to connect their wallets and perform transactions across different applications.
The connector requires two configuration objects:
// Wallet metadata configuration
type WalletMetadata = {
id: string; // Unique identifier for the wallet
name: string; // Display name for the wallet
icon: string; // URL to the wallet icon
};
// Transport configuration
type CrossAppTransportConfig = {
projectAccessKey: string; // Your Sequence project access key
walletUrl: string; // Sequence wallet URL
initialChainId: number; // Initial blockchain network ID
};
To integrate with the Dynamic SDK:
import { DynamicContextProvider } from '@dynamic-labs/sdk-react-score';
import { SequenceCrossAppConnector } from '@dynamic-labs-connectors/sequence-cross-app-evm';
const sequenceCrossAppConnector = SequenceCrossAppConnector(
{
id: 'wallet-id',
name: 'wallet name',
icon: 'icon-url',
},
{
projectAccessKey: 'YOUR_PROJECT_ACCESS_KEY',
walletUrl: 'YOUR_WALLET_URL',
initialChainId: 1, // e.g., 1 for Ethereum mainnet
},
);
const App = () => {
return (
<DynamicContextProvider
settings={{
environmentId: 'REPLACE-WITH-YOUR-ENVIRONMENT-ID',
walletConnectors: [sequenceCrossAppConnector],
}}
>
<DynamicWidget />
</DynamicContextProvider>
);
};
Please see the Contributing Guide for information on how to develop and contribute to this connector.
FAQs
## Overview
We found that @dynamic-labs-connectors/sequence-cross-app-evm demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.