Skip to content

Commit 8a4b42b

Browse files
committedJan 8, 2025
Merge branch 'develop' into pr-1873
2 parents 9e1ade7 + 24a754a commit 8a4b42b

File tree

211 files changed

+17268
-3057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

211 files changed

+17268
-3057
lines changed
 

‎.env.example

+22-4
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,11 @@ TWITTER_TARGET_USERS= # Comma separated list of Twitter user names to
8888
TWITTER_RETRY_LIMIT= # Maximum retry attempts for Twitter login
8989
TWITTER_SPACES_ENABLE=false # Enable or disable Twitter Spaces logic
9090

91-
XAI_API_KEY=
92-
XAI_MODEL=
91+
# CONFIGURATION FOR APPROVING TWEETS BEFORE IT GETS POSTED
92+
TWITTER_APPROVAL_DISCORD_CHANNEL_ID= # Channel ID for the Discord bot to listen and send approval messages
93+
TWITTER_APPROVAL_DISCORD_BOT_TOKEN= # Discord bot token (this could be a different bot token from DISCORD_API_TOKEN)
94+
TWITTER_APPROVAL_ENABLED= # Enable or disable Twitter approval logic #Default is false
95+
TWITTER_APPROVAL_CHECK_INTERVAL=60000 # Default: 60 seconds
9396

9497
# Post Interval Settings (in minutes)
9598
POST_INTERVAL_MIN= # Default: 90
@@ -103,7 +106,6 @@ MAX_ACTIONS_PROCESSING=1 # Maximum number of actions (e.g., retweets, likes) to
103106
ACTION_TIMELINE_TYPE=foryou # Type of timeline to interact with. Options: "foryou" or "following". Default: "foryou"
104107

105108
# Feature Flags
106-
IMAGE_GEN= # Set to TRUE to enable image generation
107109
USE_OPENAI_EMBEDDING= # Set to TRUE for OpenAI/1536, leave blank for local
108110
USE_OLLAMA_EMBEDDING= # Set to TRUE for OLLAMA/1024, leave blank for local
109111

@@ -268,6 +270,9 @@ CHARITY_ADDRESS_ETH=0x750EF1D7a0b4Ab1c97B7A623D7917CcEb5ea779C
268270
CHARITY_ADDRESS_ARB=0x1234567890123456789012345678901234567890
269271
CHARITY_ADDRESS_POL=0x1234567890123456789012345678901234567890
270272

273+
# thirdweb
274+
THIRDWEB_SECRET_KEY= # Create key on thirdweb developer dashboard: https://thirdweb.com/
275+
271276
# Conflux Configuration
272277
CONFLUX_CORE_PRIVATE_KEY=
273278
CONFLUX_CORE_SPACE_RPC_URL=
@@ -396,6 +401,9 @@ STORY_API_BASE_URL= # Story API base URL
396401
STORY_API_KEY= # Story API key
397402
PINATA_JWT= # Pinata JWT for uploading files to IPFS
398403

404+
# Cosmos
405+
COSMOS_RECOVERY_PHRASE= # 12 words recovery phrase (need to be in quotes, because of spaces)
406+
COSMOS_AVAILABLE_CHAINS= # mantrachaintestnet2,cosmos # Array of chains
399407
# Cronos zkEVM
400408
CRONOSZKEVM_ADDRESS=
401409
CRONOSZKEVM_PRIVATE_KEY=
@@ -407,14 +415,24 @@ FUEL_WALLET_PRIVATE_KEY=
407415
TOKENIZER_MODEL= # Specify the tokenizer model to be used.
408416
TOKENIZER_TYPE= # Options: tiktoken (for OpenAI models) or auto (AutoTokenizer from Hugging Face for non-OpenAI models). Default: tiktoken.
409417

418+
419+
# Spheron
420+
SPHERON_PRIVATE_KEY=
421+
SPHERON_PROVIDER_PROXY_URL=
422+
SPHERON_WALLET_ADDRESS=
423+
410424
# Stargaze NFT marketplace from Cosmos (You can use https://graphql.mainnet.stargaze-apis.com/graphql)
411425
STARGAZE_ENDPOINT=
412426

413427
# API key for giphy from https://developers.giphy.com/dashboard/
414428
GIPHY_API_KEY=
415429

416430
# GenLayer
417-
GENLAYER_PRIVATE_KEY=0x0000000000000000000000000000000000000000000000000000000000000000 # Private key of the GenLayer account to use for the agent
431+
GENLAYER_PRIVATE_KEY= # Private key of the GenLayer account to use for the agent in this format (0x0000000000000000000000000000000000000000000000000000000000000000)
418432

419433
# OpenWeather
420434
OPEN_WEATHER_API_KEY= # OpenWeather API key
435+
436+
# Allora
437+
ALLORA_API_KEY= # Allora API key, format: UP-f8db7d6558ab432ca0d92716
438+
ALLORA_CHAIN_SLUG= # must be one of mainnet, testnet. If not specified, it will use testnet by default

‎.github/workflows/jsdoc-automation.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020
root_directory:
2121
description: "Only scans files in this directory (relative to repository root, e.g., packages/core/src)"
2222
required: true
23-
default: "packages/plugin-near/"
23+
default: "packages/plugin-bootstrap"
2424
type: string
2525
excluded_directories:
2626
description: "Directories to exclude from scanning (comma-separated, relative to root_directory)"
@@ -37,11 +37,6 @@ on:
3737
required: false
3838
default: "develop"
3939
type: string
40-
language:
41-
description: "Documentation language (e.g., English, Spanish, French)"
42-
required: true
43-
default: "English"
44-
type: string
4540

4641
jobs:
4742
generate-docs:
@@ -99,6 +94,5 @@ jobs:
9994
INPUT_EXCLUDED_DIRECTORIES: ${{ inputs.excluded_directories }}
10095
INPUT_REVIEWERS: ${{ inputs.reviewers }}
10196
INPUT_BRANCH: ${{ inputs.branch }}
102-
INPUT_LANGUAGE: ${{ inputs.language }}
10397
INPUT_JSDOC: ${{ inputs.jsdoc }}
10498
INPUT_README: ${{ inputs.readme }}

0 commit comments

Comments
 (0)