https://github.com/0xsequence/wallet-contracts-v3
https://github.com/0xsequence/wallet-contracts-v3
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/0xsequence/wallet-contracts-v3
- Owner: 0xsequence
- License: apache-2.0
- Created: 2025-01-14T01:33:17.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-11-25T06:34:41.000Z (7 months ago)
- Last Synced: 2025-11-28T14:33:18.517Z (7 months ago)
- Language: Solidity
- Size: 2.57 MB
- Stars: 6
- Watchers: 11
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Audit: audits/code4rena-audit-response.md
Awesome Lists containing this project
README
Sequence v3 wallet contracts
============================
Sequence v3 wallet contracts, with implicit and explicit smart sessions.
## Development Setup
Install dependencies
```sh
pnpm install
```
Git hooks will be automatically installed.
## Testing
Install the [Sequence v3 SDK](https://github.com/0xsequence/sequence.js) and run a server using the following command:
```sh
cd ../sequence.js
pnpm build:packages
pnpm dev:server
```
Copy the `env.sample` file to `.env` and set the environment variables.
```sh
cp .env.sample .env
# Edit .env
```
Run tests
```sh
forge test
```
Run coverage (ignoring scripts and test files).
```sh
forge coverage --no-match-coverage "(script|test)"
# Or to generate and view in browser
forge coverage --no-match-coverage "(script|test)" --report lcov && genhtml -o report --branch-coverage lcov.info && py -m http.server -d report
```
Deploy contracts
```sh
forge script Deploy --rpc-url --broadcast
```
> [!NOTE]
> Deployments use ERC-2470 for counter factual deployments.