Skip to content

Commit

Permalink
Add smart wallet contract support
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Nov 13, 2024
1 parent 2b8923e commit 1f1e713
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sdks/node-sdk/src/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,15 @@ export class Client {
void this.#innerClient.addSignature(signatureType, signatureBytes);
}

async addScwSignature(
type: SignatureRequestType,
bytes: Uint8Array,
chainId: bigint,
blockNumber?: bigint,
) {
return this.#innerClient.addScwSignature(type, bytes, chainId, blockNumber);
}

async applySignatures() {
return this.#innerClient.applySignatureRequests();
}
Expand Down

0 comments on commit 1f1e713

Please sign in to comment.