Skip to content

Commit a6fa268

Browse files
authored
Merge branch 'develop' into feat/live-monorepo-types
2 parents 4a3213b + 5117c7a commit a6fa268

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

client/vite.config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ export default defineConfig({
2727
},
2828
},
2929
server: {
30+
host: true,
3031
proxy: {
3132
"/api": {
32-
target: `http://localhost:${process.env.SERVER_PORT || 3000}`,
33+
target: `http://127.0.0.1:${process.env.SERVER_PORT || 3000}`,
3334
changeOrigin: true,
3435
rewrite: (path) => path.replace(/^\/api/, ""),
3536
},

packages/plugin-sui/src/actions/transfer.ts

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ import {
1414
import { z } from "zod";
1515

1616
import { SuiClient, getFullnodeUrl } from "@mysten/sui/client";
17-
import { Ed25519Keypair } from "@mysten/sui/keypairs/ed25519";
1817
import { Transaction } from "@mysten/sui/transactions";
1918
import { SUI_DECIMALS } from "@mysten/sui/utils";
2019

packages/plugin-sui/src/providers/wallet.ts

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import {
77
} from "@elizaos/core";
88

99
import { getFullnodeUrl, SuiClient } from "@mysten/sui/client";
10-
import { Ed25519Keypair } from "@mysten/sui/keypairs/ed25519";
1110

1211
import { MIST_PER_SUI } from "@mysten/sui/utils";
1312
import BigNumber from "bignumber.js";

0 commit comments

Comments
 (0)