Skip to content

Commit ac791a7

Browse files
authoredDec 24, 2024
Merge pull request elizaOS#1438 from xwxtwd/feat/add_alienx_chain
feat: (plugin-evm) add alienx chain
2 parents 85cad71 + 453d2d9 commit ac791a7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎packages/plugin-evm/src/templates/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ Respond with a JSON markdown block containing only the extracted values:
4040
\`\`\`json
4141
{
4242
"token": string | null,
43-
"fromChain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | null,
44-
"toChain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | null,
43+
"fromChain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | null,
44+
"toChain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | null,
4545
"amount": string | null,
4646
"toAddress": string | null
4747
}
@@ -67,7 +67,7 @@ Respond with a JSON markdown block containing only the extracted values. Use nul
6767
"inputToken": string | null,
6868
"outputToken": string | null,
6969
"amount": string | null,
70-
"chain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | null,
70+
"chain": "ethereum" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | null,
7171
"slippage": number | null
7272
}
7373
\`\`\`

‎packages/plugin-evm/src/types/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ export interface EvmPluginConfig {
112112
taiko?: string;
113113
zksync?: string;
114114
canto?: string;
115+
alienx?: string;
115116
};
116117
secrets?: {
117118
EVM_PRIVATE_KEY: string;

0 commit comments

Comments
 (0)