Skip to content

Commit

Permalink
Add exports
Browse files Browse the repository at this point in the history
  • Loading branch information
aryzing committed Mar 5, 2024
1 parent a55b452 commit ddc8fa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/request/types/stxMethods.ts
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ interface ClarityVersion {
}

// Types for `stx_callContract` request
interface CallContractParams {
export interface CallContractParams {
/**
* The contract's Crockford base-32 encoded Stacks address and name.
*
Expand Down Expand Up @@ -253,8 +253,8 @@ type GetAddressesResult = {
export type StxGetAddresses = MethodParamsAndResult<GetAddressesParams, GetAddressesResult>;

// Types for `stx_signTransaction` request
type SignTransactionParams = Transaction & Partial<Pubkey>;
type SignTransactionResult = Transaction;
export type SignTransactionParams = Transaction & Partial<Pubkey>;
export type SignTransactionResult = Transaction;
export type StxSignTransaction = MethodParamsAndResult<
SignTransactionParams,
SignTransactionResult
Expand Down

0 comments on commit ddc8fa4

Please sign in to comment.