File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed
app2/src/lib/transfer/shared/components Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -109,8 +109,12 @@ let manualAddress = $state("")
109
109
let showClearConfirm = $state (false )
110
110
let bookmarkOnAdd = $state (false )
111
111
112
- let recentAddresses: Record <string , Array <` 0x${string } ` | ` ${string }1${string } ` >> = $state ({})
113
- let bookmarkedAddresses: Record <string , Array <` 0x${string } ` | ` ${string }1${string } ` >> = $state ({})
112
+ let recentAddresses: Record <string , Array <(string & {}) | ` 0x${string } ` | ` ${string }1${string } ` >> =
113
+ $state ({})
114
+ let bookmarkedAddresses: Record <
115
+ string ,
116
+ Array <(string & {}) | ` 0x${string } ` | ` ${string }1${string } ` >
117
+ > = $state ({})
114
118
115
119
// Create crossfade transition
116
120
const [send, receive] = crossfade ({
Original file line number Diff line number Diff line change @@ -11,19 +11,10 @@ import { ChannelId } from "@unionlabs/sdk/schema/channel"
11
11
import * as ZkgmClient from "@unionlabs/sdk/ZkgmClient"
12
12
import * as ZkgmClientRequest from "@unionlabs/sdk/ZkgmClientRequest"
13
13
import * as ZkgmClientResponse from "@unionlabs/sdk/ZkgmClientResponse"
14
- import * as ZkgmIncomingMessage from "@unionlabs/sdk/ZkgmIncomingMessage"
15
14
import { Effect , Logger } from "effect"
16
- import {
17
- PublicClient ,
18
- readCoinBalances ,
19
- readCoinMetadata ,
20
- sendInstruction ,
21
- WalletClient ,
22
- writeContract ,
23
- } from "../src/Sui.js"
15
+ import { PublicClient , WalletClient } from "../src/Sui.js"
24
16
import { layerWithoutWallet } from "../src/SuiZkgmClient.js"
25
17
26
- import { Transaction } from "@mysten/sui/transactions"
27
18
import { ChainRegistry } from "@unionlabs/sdk/ChainRegistry"
28
19
import { UniversalChainId } from "@unionlabs/sdk/schema/chain"
29
20
import * as TokenOrder from "@unionlabs/sdk/TokenOrder"
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ const program = Effect.gen(function*() {
36
36
)
37
37
yield * Effect . log ( "SUI balances" , balances )
38
38
39
- const wallet = yield * WalletClient
40
39
const amountMist = 10_000_000n // 0.01 SUI
41
40
42
41
const tx = new Transaction ( )
Original file line number Diff line number Diff line change
1
+ import { describe , it } from "@effect/vitest"
2
+ import { constVoid } from "effect/Function"
3
+
4
+ describe ( "Sui" , ( ) => {
5
+ it . skip ( "noop" , constVoid )
6
+ } )
Original file line number Diff line number Diff line change 24
24
"@unionlabs/sdk"
25
25
"@unionlabs/sdk-sui"
26
26
] ;
27
- hash = "sha256-XpCYNgRkkUN0O43Bodkk9XNpVRHkAZV6s20bfMUGNkk =" ;
27
+ hash = "sha256-nFzsUnmiZRyN0Gi3XT4W+srG7vJ8IsJ9wOfIdxb10NI =" ;
28
28
doCheck = true ;
29
29
buildPhase = ''
30
30
runHook preBuild
You can’t perform that action at this time.
0 commit comments