Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion stablepay-sdk/src/core/Wallet.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { createWalletClient, custom } from 'viem';
import { mainnet, sepolia } from 'viem/chains';

export class Wallet {
constructor(chainId) {
this.chainId = chainId;
Expand Down Expand Up @@ -49,4 +52,4 @@ export class Wallet {
getAccount() {
return this.account;
}
}
}