Skip to content

Commit 9a2ecec

Browse files
authoredJan 11, 2025··
Merge branch 'develop' into interactionimage
2 parents 423fe44 + bf5b72d commit 9a2ecec

File tree

87 files changed

+9431
-536
lines changed

Some content is hidden

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

87 files changed

+9431
-536
lines changed
 

‎.env.example

+56
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,10 @@ STARKNET_ADDRESS=
306306
STARKNET_PRIVATE_KEY=
307307
STARKNET_RPC_URL=
308308

309+
# Lens Network Configuration
310+
LENS_ADDRESS=
311+
LENS_PRIVATE_KEY=
312+
309313
# Coinbase
310314
COINBASE_COMMERCE_KEY= # From Coinbase developer portal
311315
COINBASE_API_KEY= # From Coinbase developer portal
@@ -359,6 +363,12 @@ FLOW_ENDPOINT_URL= # Default: https://mainnet.onflow.org
359363
INTERNET_COMPUTER_PRIVATE_KEY=
360364
INTERNET_COMPUTER_ADDRESS=
361365

366+
367+
#Cloudflare AI Gateway
368+
CLOUDFLARE_GW_ENABLED= # Set to true to enable Cloudflare AI Gateway
369+
CLOUDFLARE_AI_ACCOUNT_ID= # Cloudflare AI Account ID - found in the Cloudflare Dashboard under AI Gateway
370+
CLOUDFLARE_AI_GATEWAY_ID= # Cloudflare AI Gateway ID - found in the Cloudflare Dashboard under AI Gateway
371+
362372
# Aptos
363373
APTOS_PRIVATE_KEY= # Aptos private key
364374
APTOS_NETWORK= # Must be one of mainnet, testnet
@@ -477,6 +487,52 @@ TAVILY_API_KEY=
477487
VERIFIABLE_INFERENCE_ENABLED=false # Set to false to disable verifiable inference
478488
VERIFIABLE_INFERENCE_PROVIDER=opacity # Options: opacity
479489

490+
480491
# Autonome Configuration
481492
AUTONOME_JWT_TOKEN=
482493
AUTONOME_RPC=https://wizard-bff-rpc.alt.technology/v1/bff/aaa/apps
494+
495+
####################################
496+
#### Akash Network Configuration ####
497+
####################################
498+
AKASH_ENV=mainnet
499+
AKASH_NET=https://raw.githubusercontent.com/ovrclk/net/master/mainnet
500+
RPC_ENDPOINT=https://rpc.akashnet.net:443
501+
AKASH_GAS_PRICES=0.025uakt
502+
AKASH_GAS_ADJUSTMENT=1.5
503+
AKASH_KEYRING_BACKEND=os
504+
AKASH_FROM=default
505+
AKASH_FEES=20000uakt
506+
AKASH_DEPOSIT=500000uakt
507+
AKASH_MNEMONIC=
508+
AKASH_WALLET_ADDRESS=
509+
# Akash Pricing API
510+
AKASH_PRICING_API_URL=https://console-api.akash.network/v1/pricing
511+
# Default values # 1 CPU = 1000 1GB = 1000000000 1GB = 1000000000
512+
AKASH_DEFAULT_CPU=1000
513+
AKASH_DEFAULT_MEMORY=1000000000
514+
AKASH_DEFAULT_STORAGE=1000000000
515+
AKASH_SDL=example.sdl.yml
516+
# Close deployment
517+
# Close all deployments = closeAll
518+
# Close a single deployment = dseq and add the value in AKASH_CLOSE_DSEQ
519+
AKASH_CLOSE_DEP=closeAll
520+
AKASH_CLOSE_DSEQ=19729929
521+
# Provider Info we added one to check you will have to pass this into the action
522+
AKASH_PROVIDER_INFO=akash1ccktptfkvdc67msasmesuy5m7gpc76z75kukpz
523+
# Deployment Status
524+
# AKASH_DEP_STATUS = dseq or param_passed when you are building you wil pass the dseq dinamically to test you
525+
# you can pass the dseq using AKASH_DEP_DSEQ 19729929 is an example of a dseq we test while build.
526+
AKASH_DEP_STATUS=dseq
527+
AKASH_DEP_DSEQ=19729929
528+
# Gas Estimation Options: close, create, or update
529+
# qseq is required when operation is "close" 19729929 is an example of a dseq we test while build.
530+
AKASH_GAS_OPERATION=close
531+
AKASH_GAS_DSEQ=19729929
532+
# Manifest
533+
# Values: "auto" | "manual" | "validate_only" Default: "auto"
534+
AKASH_MANIFEST_MODE=auto
535+
# Default: Will use the SDL directory
536+
AKASH_MANIFEST_PATH=
537+
# Values: "strict" | "lenient" | "none" - Default: "strict"
538+
AKASH_MANIFEST_VALIDATION_LEVEL=strict

‎agent/package.json

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
"@elizaos/plugin-gitbook": "workspace:*",
5151
"@elizaos/plugin-story": "workspace:*",
5252
"@elizaos/plugin-goat": "workspace:*",
53+
"@elizaos/plugin-lensNetwork": "workspace:*",
5354
"@elizaos/plugin-icp": "workspace:*",
5455
"@elizaos/plugin-image-generation": "workspace:*",
5556
"@elizaos/plugin-movement": "workspace:*",
@@ -86,6 +87,7 @@
8687
"@elizaos/plugin-arthera": "workspace:*",
8788
"@elizaos/plugin-allora": "workspace:*",
8889
"@elizaos/plugin-opacity": "workspace:*",
90+
"@elizaos/plugin-akash": "workspace:*",
8991
"readline": "1.3.0",
9092
"ws": "8.18.0",
9193
"yargs": "17.7.2"

0 commit comments

Comments
 (0)
Please sign in to comment.