Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions examples/rust-server-wallets/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
DYNAMIC_API_TOKEN=your_dynamic_api_token
DYNAMIC_ENV_ID=your_environment_id

# Optional — target preprod (defaults to production)
# DYNAMIC_BASE_API_URL=https://app.dynamic-preprod.xyz

EVM_RPC_URL=https://base-sepolia.g.alchemy.com/v2/your_api_key
SOLANA_RPC_URL=https://api.devnet.solana.com
16 changes: 16 additions & 0 deletions examples/rust-server-wallets/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.env
.env.local
.wallets.json
src/bin/delegated-sign-message.wallet.json
wallet.json

# Cargo build artefacts
/target/
**/*.rs.bk

# OS junk
.DS_Store

# Editor
.idea/
.vscode/
Loading