Skip to content

Commit

Permalink
Merge branch 'develop' into more-tweet-data
Browse files Browse the repository at this point in the history
  • Loading branch information
tcm390 authored Jan 28, 2025
2 parents 4be787b + 504056d commit 65778d1
Show file tree
Hide file tree
Showing 252 changed files with 19,077 additions and 3,093 deletions.
63 changes: 60 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ DISCORD_VOICE_CHANNEL_ID= # The ID of the voice channel the bot should join (opt
# Devin Configuration
DEVIN_API_TOKEN= # Get your API key from docs.devin.ai/tutorials/api-integration

# Gelato Configuration
GELATO_RELAY_API_KEY= # Gelato API key

# Farcaster Neynar Configuration
FARCASTER_FID= # The FID associated with the account your are sending casts from
FARCASTER_NEYNAR_API_KEY= # Neynar API key: https://neynar.com/
Expand All @@ -55,6 +58,13 @@ FARCASTER_POLL_INTERVAL=120 # How often (in seconds) the bot should check for
# Telegram Configuration
TELEGRAM_BOT_TOKEN=

# Telegram account client Configuration
TELEGRAM_ACCOUNT_PHONE= # Account phone number for authorization
TELEGRAM_ACCOUNT_APP_ID= # Telegram app api_id (get it at me.telegram.org)
TELEGRAM_ACCOUNT_APP_HASH= # Telegram app api_hash (get it at me.telegram.org)
TELEGRAM_ACCOUNT_DEVICE_MODEL= # Device model. Example: Samsung Galaxy S28+
TELEGRAM_ACCOUNT_SYSTEM_VERSION= # Device system version. Example: Android 12 S? (31)

# Twitter/X Configuration
TWITTER_DRY_RUN=false
TWITTER_USERNAME= # Account username
Expand Down Expand Up @@ -88,6 +98,11 @@ WHATSAPP_BUSINESS_ACCOUNT_ID= # Business Account ID from Facebook Business Mana
WHATSAPP_WEBHOOK_VERIFY_TOKEN= # Custom string for webhook verification
WHATSAPP_API_VERSION=v17.0 # WhatsApp API version (default: v17.0)

# Alexa Client Configuration
ALEXA_SKILL_ID= # Your Alexa skill ID from developer console (format: amzn1.ask.skill-...)
ALEXA_CLIENT_ID= # OAuth2 Client ID from Alexa developer console permissions tab
ALEXA_CLIENT_SECRET= # OAuth2 Client Secret from Alexa developer console permissions tab


# Simsai Specific Configuration
SIMSAI_API_KEY= # API key for SimsAI authentication
Expand Down Expand Up @@ -349,6 +364,10 @@ MORALIS_API_KEY=
EVM_PRIVATE_KEY=
EVM_PROVIDER_URL=

# Zilliqa
ZILLIQA_PRIVATE_KEY=
ZILLIQA_PROVIDER_URL=

# Avalanche
AVALANCHE_PRIVATE_KEY=
AVALANCHE_PUBLIC_KEY=
Expand Down Expand Up @@ -430,6 +449,10 @@ CONFLUX_ESPACE_PRIVATE_KEY=
CONFLUX_ESPACE_RPC_URL=
CONFLUX_MEME_CONTRACT_ADDRESS=

# Mind Network Configuration
MIND_HOT_WALLET_PRIVATE_KEY=
MIND_COLD_WALLET_ADDRESS=

# ZeroG
ZEROG_INDEXER_RPC=
ZEROG_EVM_RPC=
Expand Down Expand Up @@ -508,8 +531,9 @@ APTOS_PRIVATE_KEY= # Aptos private key
APTOS_NETWORK= # Must be one of mainnet, testnet

# MultiversX
MVX_PRIVATE_KEY= # Multiversx private key
MVX_NETWORK= # must be one of mainnet, devnet, testnet
MVX_PRIVATE_KEY= # Multiversx private key
MVX_NETWORK= # must be one of mainnet, devnet, testnet
ACCESS_TOKEN_MANAGEMENT_TO=everyone # you can put an userid to limit token managament to one user only (use same id as in the database)

# NEAR
NEAR_WALLET_SECRET_KEY= # NEAR Wallet Secret Key
Expand Down Expand Up @@ -641,6 +665,10 @@ AWS_S3_SSL_ENABLED=
AWS_S3_FORCE_PATH_STYLE=


# Deva Configuration
DEVA_API_KEY= # You can get the API key from the created application in deva.me/settings/apps
DEVA_API_BASE_URL=https://api.deva.me # Default server url for production. Use https://api-staging.deva.me for staging.

# Deepgram
DEEPGRAM_API_KEY=

Expand Down Expand Up @@ -864,7 +892,6 @@ ETHSTORAGE_ADDRESS=0x64003adbdf3014f7E38FC6BE752EB047b95da89A
ETHSTORAGE_RPC_URL=https://rpc.beta.testnet.l2.quarkchain.io:8545



# Email Automation Plugin Configuration
RESEND_API_KEY= # Your Resend API key
DEFAULT_TO_EMAIL= # Default recipient
Expand All @@ -890,3 +917,33 @@ ANKR_SPASH=true
# DCAP Plugin Configuration
DCAP_EVM_PRIVATE_KEY=
DCAP_MODE= # Options: OFF, PLUGIN-SGX, PLUGIN-TEE, MOCK

# QuickIntel Token Security API
QUICKINTEL_API_KEY= # Your QuickIntel API key for token security analysis

# News API Key
NEWS_API_KEY= # News API KEY from https://newsapi.org/

# BTCFUN Plugin Configuration
BTCFUN_API_URL= # Default: https://api-testnet-new.btc.fun
BTC_PRIVATE_KEY_WIF= # Your BTC private key in WIF format
BTC_ADDRESS= # Your BTC address
BTC_MINT_CAP=10000 # Maximum amount that can be minted
BTC_MINT_DEADLINE=864000 # Deadline for minting in seconds
BTC_FUNDRAISING_CAP=100 # Maximum amount for fundraising

# Trikon Plugin Configuration
TRIKON_WALLET_ADDRESS= # Your Trikon wallet address (must be a valid 64-character hex string starting with '0x')
TRIKON_INITIAL_BALANCE= # (Optional) The initial balance for the wallet. Defaults to "0" if not provided.

####################################
#### Arbitrage Plugin Configuration ####
####################################

ARBITRAGE_ETHEREUM_WS_URL= # WebSocket URL for Ethereum node connection
ARBITRAGE_EVM_PROVIDER_URL= # RPC URL for Ethereum node connection (if WS not available)
ARBITRAGE_EVM_PRIVATE_KEY= # Private key for the wallet executing arbitrage transactions
FLASHBOTS_RELAY_SIGNING_KEY= # Signing key for Flashbots relay interactions
BUNDLE_EXECUTOR_ADDRESS= # Address of the bundle executor contract


4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ agent/content
eliza.manifest
eliza.manifest.sgx
eliza.sig

packages/plugin-nvidia-nim/extra
packages/plugin-nvidia-nim/old_code
packages/plugin-nvidia-nim/docs
Expand All @@ -87,3 +88,6 @@ scripts/bug_hunt/reports/
scripts/bug_hunt/reports/*.md

lit-config.json

# Configuration to exclude the extra and local_docs directories
extra
Loading

0 comments on commit 65778d1

Please sign in to comment.