-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into tcm-fix-twitter-search
- Loading branch information
Showing
13 changed files
with
820 additions
and
399 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
* | ||
|
||
!dist/** | ||
!package.json | ||
!readme.md | ||
!tsup.config.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Code In Plugin For Eliza | ||
|
||
## Description | ||
Through IQ6900's new inscription standard "Code-In", powerful inscription functionality is provided to Eliza. | ||
Engrave Eliza on the blockchain forever. | ||
All your Character JSON files are input onto the blockchain without compression. | ||
Everyone can read your agent from blocks forever. | ||
|
||
## inscription | ||
- **Code-in your eliza**: Go to the site and engrave your character file on-chain. https://elizacodein.com/ | ||
|
||
## Onchain git | ||
- **Commit your update**: | ||
Update your files anytime. | ||
On our site, your files are managed in a format similar to GitHub, | ||
and our plugin automatically loads your latest agent file. | ||
|
||
## Let's get started | ||
- **Edit your .env**: write down IQ_WALLET_ADDRESS to your wallet address that you used on website. | ||
To be sure, right after inscription, wait about 5 minutes and just type pmpn start. You are now all set. | ||
|
||
|
||
You have engraved an eternal record. | ||
Imagine, someone could develop your agent 200 years from now. | ||
|
||
Many things will be updated. | ||
|
||
Learn more: https://iq6900.gitbook.io/iq6900/eliza-code-in |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import eslintGlobalConfig from "../../eslint.config.mjs"; | ||
|
||
export default [...eslintGlobalConfig]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "@elizaos/plugin-iq6900", | ||
"version": "0.1.5-alpha.5", | ||
"main": "dist/index.js", | ||
"type": "module", | ||
"types": "dist/index.d.ts", | ||
"dependencies": { | ||
"@elizaos/core": "workspace:*", | ||
"@solana/web3.js": "1.95.8" | ||
}, | ||
"devDependencies": { | ||
"tsup": "8.3.5", | ||
"@types/node": "^20.0.0" | ||
}, | ||
"scripts": { | ||
"build": "tsup --format esm --dts", | ||
"dev": "tsup --format esm --dts --watch", | ||
"lint": "eslint --fix --cache ." | ||
} | ||
} |
Oops, something went wrong.