Skip to content

Commit

Permalink
Update Solana
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Feb 12, 2025
1 parent d5295c7 commit 531df24
Show file tree
Hide file tree
Showing 24 changed files with 2,440 additions and 304 deletions.
25 changes: 25 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# OpenAI Configuration
OPENAI_API_KEY=

# Anthropic Configuration
ANTHROPIC_API_KEY=

# Fill these out if you want to use Discord
DISCORD_APPLICATION_ID=
DISCORD_API_TOKEN=

# Fill these out if you want to use Telegram
TELEGRAM_BOT_TOKEN=

# Fill these out if you want to use Twitter
TWITTER_USERNAME=
TWITTER_PASSWORD=
TWITTER_EMAIL=

# Fill these out if you want to use EVM
EVM_PRIVATE_KEY=
EVM_CHAINS=mainnet,sepolia,base,arbitrum,polygon
EVM_PROVIDER_URL=

# Fill these out if you want to use Solana
SOLANA_PUBLIC_KEY=
SOLANA_PRIVATE_KEY=
BIRDEYE_API_KEY=
8 changes: 0 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ node_modules
.env_main
concatenated-output.ts
embedding-cache.json
packages/plugin-buttplug/intiface-engine

node-compile-cache

Expand Down Expand Up @@ -50,10 +49,7 @@ characters/**/*.env
characters/**/*.key
characters/**/private/

packages/core/src/providers/cache
packages/core/src/providers/cache/*
cache/*
packages/plugin-coinbase/src/plugins/transactions.csv

tsup.config.bundled_*.mjs

Expand All @@ -71,10 +67,6 @@ eliza.manifest
eliza.manifest.sgx
eliza.sig

packages/plugin-nvidia-nim/extra
packages/plugin-nvidia-nim/old_code
packages/plugin-nvidia-nim/docs

# Edriziai specific ignores
characters/edriziai-info/secrets.json

Expand Down
Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion packages/agent/src/defaultCharacter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ export const defaultCharacter: Character = {
"@elizaos/plugin-node",
// "@elizaos/plugin-telegram",
// "@elizaos/plugin-twitter",
"@elizaos/plugin-evm"
"@elizaos/plugin-evm",
"@elizaos/plugin-solana",
],
settings: {
secrets: {},
Expand Down
6 changes: 6 additions & 0 deletions packages/plugin-solana/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*

!dist/**
!package.json
!readme.md
!tsup.config.ts
Loading

0 comments on commit 531df24

Please sign in to comment.