Skip to content

Commit

Permalink
feat: Enable Arweave integration for message sending
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfynnix committed Aug 21, 2024
1 parent c9a910f commit c7728ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion node-server/.env.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
PRIV_KEY=xxxx
USE_AR_WALLET=true
ETHEREUM_PRIV_KEY=xxxx
ARWEAVE_PRIV=xxxx
AO_PET=cO4thcoxO57AflN5hfXjce0_DydbMJclTU9kC3S75cg
2 changes: 1 addition & 1 deletion node-server/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
} from "./signer";

console.log("Hello from dimension Life!");
const useAR = false;
const useAR = process.env.USE_AR || true;
const key = process.env.API_KEY || "34e968837d573dc61e965e58fa29cc05";
const AO_PET =
process.env.AO_PET || "cO4thcoxO57AflN5hfXjce0_DydbMJclTU9kC3S75cg";
Expand Down

0 comments on commit c7728ae

Please sign in to comment.