Skip to content

Commit c9585ed

Browse files
committed
refactors
1 parent 02cc6b0 commit c9585ed

12 files changed

+792
-988
lines changed

examples/cointoss/.env.example

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
WALLET_KEY= # the private key for the wallet
2+
ENCRYPTION_KEY= # the encryption key for the wallet
3+
# public key is
4+
5+
NETWORK_ID=base-sepolia # base-mainnet or others
6+
OPENAI_API_KEY= # the OpenAI API key
7+
CDP_API_KEY_NAME= # the name of the CDP API key
8+
CDP_API_KEY_PRIVATE_KEY= # the private key for the CDP API key
9+
XMTP_ENV=local # the environment to use for XMTP
10+
REDIS_URL= # the URL for the Redis database

examples/cointoss/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"type": "module",
66
"scripts": {
77
"build": "tsc",
8+
"clean": "cd ../../ && rm -rf examples/cointoss/.data",
89
"dev": "tsx src/index.ts",
910
"gen:keys": "tsx ../../scripts/generateKeys.ts",
1011
"lint": "cd ../.. && yarn eslint examples/cointoss"

0 commit comments

Comments
 (0)