Skip to content

Commit

Permalink
Merge pull request #2228 from Stumble/develop
Browse files Browse the repository at this point in the history
feat: add support for gravity chain in EVM plugin
  • Loading branch information
wtfsayo authored Jan 13, 2025
2 parents a11dd5a + 78b1015 commit 43f9a5a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/plugin-evm/src/templates/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ Respond with a JSON markdown block containing only the extracted values:
\`\`\`json
{
"token": string | null,
"fromChain": "ethereum" | "abstract" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "fraxtal" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | null,
"toChain": "ethereum" | "abstract" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "fraxtal" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | null,
"fromChain": "ethereum" | "abstract" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "fraxtal" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | "gravity" | null,
"toChain": "ethereum" | "abstract" | "base" | "sepolia" | "bsc" | "arbitrum" | "avalanche" | "polygon" | "optimism" | "cronos" | "gnosis" | "fantom" | "fraxtal" | "klaytn" | "celo" | "moonbeam" | "aurora" | "harmonyOne" | "moonriver" | "arbitrumNova" | "mantle" | "linea" | "scroll" | "filecoin" | "taiko" | "zksync" | "canto" | "alienx" | "gravity" | null,
"amount": string | null,
"toAddress": string | null
}
Expand Down
1 change: 1 addition & 0 deletions packages/plugin-evm/src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ export interface EvmPluginConfig {
zksync?: string;
canto?: string;
alienx?: string;
gravity?: string;
};
secrets?: {
EVM_PRIVATE_KEY: string;
Expand Down

0 comments on commit 43f9a5a

Please sign in to comment.