Skip to content

Commit b9b8afe

Browse files
authored
Merge branch 'develop' into 1222--README-ci-auto-translation
2 parents 5301392 + ac791a7 commit b9b8afe

File tree

5 files changed

+27
-9
lines changed

5 files changed

+27
-9
lines changed

docs/community/Notes/lore.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Week 1 Recap: elizaos Launch and Early Developments
9393

9494
Hello, I am Shaw. I am a cross-disciplinary programmer and entrepreneur living in San Francisco. I have been working on autonomous agents for several years and I am overjoyed to finally get to show that to all of you.
9595

96-
I started elizaos here on Twitter with some very capable folks, in the open, using the http://daos.fun platform. Our technology is open source, and powering many of the agents you talk to today. We call this type of agent an eliza.
96+
I started elizaos here on Twitter with some very capable folks, in the open, using the http://daos.fun platform. Our technology is open source, and powering many of the agents you talk to today. We call this type of agent an "eliza".
9797

9898
Our token character agent is @degenspartanai who is a recreation of a legendary friend and poster who quit Twitter last cycle. $degenai is his token.
9999

docs/community/creator-fund.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Here's when the community learned about who the top holder is:
1818

1919
> "So a ton of people have been asking (justifiably) who the heck I am, why do I have 16% of elizaos supply, and what I’m going to do with it.
2020
>
21-
> It started by @shawmakesmagic tweeting about some agent he built called @degenspartanai, a recreation of a legend on twitter. I put a bunch of my SOL in there because I had been following Shaw and really thought he was building something great. Almost immediately all of that became close to worthless. Degen’s tweets seemed too human-like to be real anyway - so I figured I got scammed.
21+
> It started by @shawmakesmagic tweeting about some agent he built called @degenspartanai, a recreation of a legend on twitter. I put a bunch of my SOL in there because I had been following Shaw and really thought he was building something great. Almost immediately all of that became close to worthless. Degen’s tweets seemed too "human-like" to be real anyway - so I figured I got scammed.
2222
>
2323
> So I DM’ed shaw, not because I was angry, but I was genuinely curious why he might have scammed me. I ended up sending him a google meet, which turned into an hour long conversation about what he was actually building, and me realizing twitter is usually a misrepresentation of the people you think you know. Shaw is just inspiring. Someone who is completely dedicated to accelerating the world for the better, and not optimizing for optics or money - just building.
2424
>

packages/client-github/src/index.ts

+21-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@ export class GitHubClient {
5757

5858
// Clone or pull repository
5959
if (!existsSync(this.repoPath)) {
60-
await this.git.clone(
61-
`https://github.com/${this.config.owner}/${this.config.repo}.git`,
62-
this.repoPath
63-
);
60+
await this.cloneRepository();
6461
} else {
6562
const git = simpleGit(this.repoPath);
6663
await git.pull();
@@ -73,6 +70,26 @@ export class GitHubClient {
7370
}
7471
}
7572

73+
private async cloneRepository() {
74+
const repositoryUrl = `https://github.com/${this.config.owner}/${this.config.repo}.git`;
75+
const maxRetries = 3;
76+
let retries = 0;
77+
78+
while (retries < maxRetries) {
79+
try {
80+
await this.git.clone(repositoryUrl, this.repoPath);
81+
elizaLogger.log(`Successfully cloned repository from ${repositoryUrl}`);
82+
return;
83+
} catch (error) {
84+
elizaLogger.error(`Failed to clone repository from ${repositoryUrl}. Retrying...`);
85+
retries++;
86+
if (retries === maxRetries) {
87+
throw new Error(`Unable to clone repository from ${repositoryUrl} after ${maxRetries} retries.`);
88+
}
89+
}
90+
}
91+
}
92+
7693
async createMemoriesFromFiles() {
7794
console.log("Create memories");
7895
const searchPath = this.config.path

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)