Skip to content

Commit

Permalink
Merge pull request #725 from hyperweb-io/fix-helper-function-name
Browse files Browse the repository at this point in the history
fix helper function name for tx
  • Loading branch information
Zetazzz authored Jan 26, 2025
2 parents a216945 + 3f5eb3c commit 6bcd178
Show file tree
Hide file tree
Showing 46 changed files with 45 additions and 46 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgSend, MsgSendSDKType, MsgSendResponse, MsgSendResponseSDKType, MsgMultiSend, MsgMultiSendSDKType, MsgMultiSendResponse, MsgMultiSendResponseSDKType } from "./tx";
import { createSend, createMultiSend } from "./tx.rpc.func.ts";
import { createSend, createMultiSend } from "./tx.rpc.func";
export const useSend = buildUseMutation<MsgSend, Error>({
builderMutationFn: createSend
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgSend, MsgSendSDKType, MsgSendResponse, MsgSendResponseSDKType, MsgMultiSend, MsgMultiSendSDKType, MsgMultiSendResponse, MsgMultiSendResponseSDKType } from "./tx";
import { createSend, createMultiSend } from "./tx.rpc.func.ts";
import { createSend, createMultiSend } from "./tx.rpc.func";
export const useSend = buildUseVueMutation<MsgSend, Error>({
builderMutationFn: createSend
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgSubmitProposal, MsgSubmitProposalSDKType, MsgSubmitProposalResponse, MsgSubmitProposalResponseSDKType, MsgVote, MsgVoteSDKType, MsgVoteResponse, MsgVoteResponseSDKType, MsgVoteWeighted, MsgVoteWeightedSDKType, MsgVoteWeightedResponse, MsgVoteWeightedResponseSDKType, MsgDeposit, MsgDepositSDKType, MsgDepositResponse, MsgDepositResponseSDKType } from "./tx";
import { createSubmitProposal, buildHelperVote, constructLetsVoteWeighted, createToDeposit } from "./tx.rpc.func.ts";
import { createSubmitProposal, buildHelperVote, constructLetsVoteWeighted, createToDeposit } from "./tx.rpc.func";
export const useSubmitProposal = buildUseMutation<MsgSubmitProposal, Error>({
builderMutationFn: createSubmitProposal
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgSubmitProposal, MsgSubmitProposalSDKType, MsgSubmitProposalResponse, MsgSubmitProposalResponseSDKType, MsgVote, MsgVoteSDKType, MsgVoteResponse, MsgVoteResponseSDKType, MsgVoteWeighted, MsgVoteWeightedSDKType, MsgVoteWeightedResponse, MsgVoteWeightedResponseSDKType, MsgDeposit, MsgDepositSDKType, MsgDepositResponse, MsgDepositResponseSDKType } from "./tx";
import { createSubmitProposal, buildHelperVote, constructLetsVoteWeighted, createToDeposit } from "./tx.rpc.func.ts";
import { createSubmitProposal, buildHelperVote, constructLetsVoteWeighted, createToDeposit } from "./tx.rpc.func";
export const useSubmitProposal = buildUseVueMutation<MsgSubmitProposal, Error>({
builderMutationFn: createSubmitProposal
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgCreateValidator, MsgCreateValidatorSDKType, MsgCreateValidatorResponse, MsgCreateValidatorResponseSDKType, MsgEditValidator, MsgEditValidatorSDKType, MsgEditValidatorResponse, MsgEditValidatorResponseSDKType, MsgDelegate, MsgDelegateSDKType, MsgDelegateResponse, MsgDelegateResponseSDKType, MsgBeginRedelegate, MsgBeginRedelegateSDKType, MsgBeginRedelegateResponse, MsgBeginRedelegateResponseSDKType, MsgUndelegate, MsgUndelegateSDKType, MsgUndelegateResponse, MsgUndelegateResponseSDKType } from "./tx";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func.ts";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func";
export const useCreateValidator = buildUseMutation<MsgCreateValidator, Error>({
builderMutationFn: createCreateValidator
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { toEncoders, toConverters } from "@interchainjs/cosmos/utils";
import { buildUseMutation } from "../../../react-query";
import { buildUseVueMutation } from "../../../vue-query";
import { MsgCreateValidator, MsgCreateValidatorSDKType, MsgCreateValidatorResponse, MsgCreateValidatorResponseSDKType, MsgEditValidator, MsgEditValidatorSDKType, MsgEditValidatorResponse, MsgEditValidatorResponseSDKType, MsgDelegate, MsgDelegateSDKType, MsgDelegateResponse, MsgDelegateResponseSDKType, MsgBeginRedelegate, MsgBeginRedelegateSDKType, MsgBeginRedelegateResponse, MsgBeginRedelegateResponseSDKType, MsgUndelegate, MsgUndelegateSDKType, MsgUndelegateResponse, MsgUndelegateResponseSDKType } from "./tx";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func.ts";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func";
export const useCreateValidator = buildUseVueMutation<MsgCreateValidator, Error>({
builderMutationFn: createCreateValidator
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSignProviderAttributes, MsgDeleteProviderAttributes } from "./audit";
import { createSignProviderAttributes, createDeleteProviderAttributes } from "./audit.rpc.func.ts";
import { createSignProviderAttributes, createDeleteProviderAttributes } from "./audit.rpc.func";
export const useSignProviderAttributes = buildUseMutation<MsgSignProviderAttributes, Error>({
builderMutationFn: createSignProviderAttributes
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSignProviderAttributes, MsgDeleteProviderAttributes } from "./audit";
import { createSignProviderAttributes, createDeleteProviderAttributes } from "./audit.rpc.func.ts";
import { createSignProviderAttributes, createDeleteProviderAttributes } from "./audit.rpc.func";
export const useSignProviderAttributes = buildUseMutation<MsgSignProviderAttributes, Error>({
builderMutationFn: createSignProviderAttributes
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateCertificate, MsgRevokeCertificate } from "./cert";
import { createCreateCertificate, createRevokeCertificate } from "./cert.rpc.func.ts";
import { createCreateCertificate, createRevokeCertificate } from "./cert.rpc.func";
export const useCreateCertificate = buildUseMutation<MsgCreateCertificate, Error>({
builderMutationFn: createCreateCertificate
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { MsgCloseGroup, MsgPauseGroup, MsgStartGroup } from "./group";
import { buildUseMutation } from "../../../react-query";
import { MsgCreateDeployment, MsgDepositDeployment, MsgUpdateDeployment, MsgCloseDeployment } from "./deployment";
import { createCreateDeployment, createDepositDeployment, createUpdateDeployment, createCloseDeployment, createCloseGroup, createPauseGroup, createStartGroup } from "./deployment.rpc.func.ts";
import { createCreateDeployment, createDepositDeployment, createUpdateDeployment, createCloseDeployment, createCloseGroup, createPauseGroup, createStartGroup } from "./deployment.rpc.func";
export const useCreateDeployment = buildUseMutation<MsgCreateDeployment, Error>({
builderMutationFn: createCreateDeployment
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateDeployment, MsgDepositDeployment, MsgUpdateDeployment, MsgCloseDeployment } from "./deploymentmsg";
import { MsgCloseGroup, MsgPauseGroup, MsgStartGroup } from "./groupmsg";
import { createCreateDeployment, createDepositDeployment, createUpdateDeployment, createCloseDeployment, createCloseGroup, createPauseGroup, createStartGroup } from "./service.rpc.func.ts";
import { createCreateDeployment, createDepositDeployment, createUpdateDeployment, createCloseDeployment, createCloseGroup, createPauseGroup, createStartGroup } from "./service.rpc.func";
export const useCreateDeployment = buildUseMutation<MsgCreateDeployment, Error>({
builderMutationFn: createCreateDeployment
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { MsgCreateBid, MsgCloseBid } from "./bid";
import { MsgWithdrawLease, MsgCreateLease, MsgCloseLease } from "./lease";
import { buildUseMutation } from "../../../react-query";
import { createCreateBid, createCloseBid, createWithdrawLease, createCreateLease, createCloseLease } from "./service.rpc.func.ts";
import { createCreateBid, createCloseBid, createWithdrawLease, createCreateLease, createCloseLease } from "./service.rpc.func";
export const useCreateBid = buildUseMutation<MsgCreateBid, Error>({
builderMutationFn: createCreateBid
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateProvider, MsgUpdateProvider, MsgDeleteProvider } from "./provider";
import { createCreateProvider, createUpdateProvider, createDeleteProvider } from "./provider.rpc.func.ts";
import { createCreateProvider, createUpdateProvider, createDeleteProvider } from "./provider.rpc.func";
export const useCreateProvider = buildUseMutation<MsgCreateProvider, Error>({
builderMutationFn: createCreateProvider
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateProvider, MsgUpdateProvider, MsgDeleteProvider } from "./provider";
import { createCreateProvider, createUpdateProvider, createDeleteProvider } from "./provider.rpc.func.ts";
import { createCreateProvider, createUpdateProvider, createDeleteProvider } from "./provider.rpc.func";
export const useCreateProvider = buildUseMutation<MsgCreateProvider, Error>({
builderMutationFn: createCreateProvider
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgGrant, MsgExec, MsgRevoke } from "./tx";
import { createGrant, createExec, createRevoke } from "./tx.rpc.func.ts";
import { createGrant, createExec, createRevoke } from "./tx.rpc.func";
export const useGrant = buildUseMutation<MsgGrant, Error>({
builderMutationFn: createGrant
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSend, MsgMultiSend } from "./tx";
import { createSend, createMultiSend } from "./tx.rpc.func.ts";
import { createSend, createMultiSend } from "./tx.rpc.func";
export const useSend = buildUseMutation<MsgSend, Error>({
builderMutationFn: createSend
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgVerifyInvariant } from "./tx";
import { createVerifyInvariant } from "./tx.rpc.func.ts";
import { createVerifyInvariant } from "./tx.rpc.func";
export const useVerifyInvariant = buildUseMutation<MsgVerifyInvariant, Error>({
builderMutationFn: createVerifyInvariant
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSetWithdrawAddress, MsgWithdrawDelegatorReward, MsgWithdrawValidatorCommission, MsgFundCommunityPool } from "./tx";
import { createSetWithdrawAddress, createWithdrawDelegatorReward, createWithdrawValidatorCommission, createFundCommunityPool } from "./tx.rpc.func.ts";
import { createSetWithdrawAddress, createWithdrawDelegatorReward, createWithdrawValidatorCommission, createFundCommunityPool } from "./tx.rpc.func";
export const useSetWithdrawAddress = buildUseMutation<MsgSetWithdrawAddress, Error>({
builderMutationFn: createSetWithdrawAddress
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSubmitEvidence } from "./tx";
import { createSubmitEvidence } from "./tx.rpc.func.ts";
import { createSubmitEvidence } from "./tx.rpc.func";
export const useSubmitEvidence = buildUseMutation<MsgSubmitEvidence, Error>({
builderMutationFn: createSubmitEvidence
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgGrantAllowance, MsgRevokeAllowance } from "./tx";
import { createGrantAllowance, createRevokeAllowance } from "./tx.rpc.func.ts";
import { createGrantAllowance, createRevokeAllowance } from "./tx.rpc.func";
export const useGrantAllowance = buildUseMutation<MsgGrantAllowance, Error>({
builderMutationFn: createGrantAllowance
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSubmitProposal, MsgExecLegacyContent, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx";
import { createSubmitProposal, createExecLegacyContent, createVote, createVoteWeighted, createDeposit } from "./tx.rpc.func.ts";
import { createSubmitProposal, createExecLegacyContent, createVote, createVoteWeighted, createDeposit } from "./tx.rpc.func";
export const useSubmitProposal = buildUseMutation<MsgSubmitProposal, Error>({
builderMutationFn: createSubmitProposal
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSubmitProposal, MsgVote, MsgVoteWeighted, MsgDeposit } from "./tx";
import { createSubmitProposal, createVote, createVoteWeighted, createDeposit } from "./tx.rpc.func.ts";
import { createSubmitProposal, createVote, createVoteWeighted, createDeposit } from "./tx.rpc.func";
export const useSubmitProposal = buildUseMutation<MsgSubmitProposal, Error>({
builderMutationFn: createSubmitProposal
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateGroup, MsgUpdateGroupMembers, MsgUpdateGroupAdmin, MsgUpdateGroupMetadata, MsgCreateGroupPolicy, MsgCreateGroupWithPolicy, MsgUpdateGroupPolicyAdmin, MsgUpdateGroupPolicyDecisionPolicy, MsgUpdateGroupPolicyMetadata, MsgSubmitProposal, MsgWithdrawProposal, MsgVote, MsgExec, MsgLeaveGroup } from "./tx";
import { createCreateGroup, createUpdateGroupMembers, createUpdateGroupAdmin, createUpdateGroupMetadata, createCreateGroupPolicy, createCreateGroupWithPolicy, createUpdateGroupPolicyAdmin, createUpdateGroupPolicyDecisionPolicy, createUpdateGroupPolicyMetadata, createSubmitProposal, createWithdrawProposal, createVote, createExec, createLeaveGroup } from "./tx.rpc.func.ts";
import { createCreateGroup, createUpdateGroupMembers, createUpdateGroupAdmin, createUpdateGroupMetadata, createCreateGroupPolicy, createCreateGroupWithPolicy, createUpdateGroupPolicyAdmin, createUpdateGroupPolicyDecisionPolicy, createUpdateGroupPolicyMetadata, createSubmitProposal, createWithdrawProposal, createVote, createExec, createLeaveGroup } from "./tx.rpc.func";
export const useCreateGroup = buildUseMutation<MsgCreateGroup, Error>({
builderMutationFn: createCreateGroup
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSend } from "./tx";
import { createSend } from "./tx.rpc.func.ts";
import { createSend } from "./tx.rpc.func";
export const useSend = buildUseMutation<MsgSend, Error>({
builderMutationFn: createSend
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgUnjail } from "./tx";
import { createUnjail } from "./tx.rpc.func.ts";
import { createUnjail } from "./tx.rpc.func";
export const useUnjail = buildUseMutation<MsgUnjail, Error>({
builderMutationFn: createUnjail
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateValidator, MsgEditValidator, MsgDelegate, MsgBeginRedelegate, MsgUndelegate } from "./tx";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func.ts";
import { createCreateValidator, createEditValidator, createDelegate, createBeginRedelegate, createUndelegate } from "./tx.rpc.func";
export const useCreateValidator = buildUseMutation<MsgCreateValidator, Error>({
builderMutationFn: createCreateValidator
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgSoftwareUpgrade, MsgCancelUpgrade } from "./tx";
import { createSoftwareUpgrade, createCancelUpgrade } from "./tx.rpc.func.ts";
import { createSoftwareUpgrade, createCancelUpgrade } from "./tx.rpc.func";
export const useSoftwareUpgrade = buildUseMutation<MsgSoftwareUpgrade, Error>({
builderMutationFn: createSoftwareUpgrade
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateVestingAccount, MsgCreatePermanentLockedAccount, MsgCreatePeriodicVestingAccount } from "./tx";
import { createCreateVestingAccount, createCreatePermanentLockedAccount, createCreatePeriodicVestingAccount } from "./tx.rpc.func.ts";
import { createCreateVestingAccount, createCreatePermanentLockedAccount, createCreatePeriodicVestingAccount } from "./tx.rpc.func";
export const useCreateVestingAccount = buildUseMutation<MsgCreateVestingAccount, Error>({
builderMutationFn: createCreateVestingAccount
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgStoreCode, MsgInstantiateContract, MsgExecuteContract, MsgMigrateContract, MsgUpdateAdmin, MsgClearAdmin } from "./tx";
import { createStoreCode, createInstantiateContract, createExecuteContract, createMigrateContract, createUpdateAdmin, createClearAdmin } from "./tx.rpc.func.ts";
import { createStoreCode, createInstantiateContract, createExecuteContract, createMigrateContract, createUpdateAdmin, createClearAdmin } from "./tx.rpc.func";
export const useStoreCode = buildUseMutation<MsgStoreCode, Error>({
builderMutationFn: createStoreCode
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgConvertCoin, MsgConvertERC20 } from "./tx";
import { createConvertCoin, createConvertERC20 } from "./tx.rpc.func.ts";
import { createConvertCoin, createConvertERC20 } from "./tx.rpc.func";
export const useConvertCoin = buildUseMutation<MsgConvertCoin, Error>({
builderMutationFn: createConvertCoin
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgRegisterDevFeeInfo, MsgCancelDevFeeInfo, MsgUpdateDevFeeInfo } from "./tx";
import { createRegisterDevFeeInfo, createCancelDevFeeInfo, createUpdateDevFeeInfo } from "./tx.rpc.func.ts";
import { createRegisterDevFeeInfo, createCancelDevFeeInfo, createUpdateDevFeeInfo } from "./tx.rpc.func";
export const useRegisterDevFeeInfo = buildUseMutation<MsgRegisterDevFeeInfo, Error>({
builderMutationFn: createRegisterDevFeeInfo
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../react-query";
import { MsgCreateClawbackVestingAccount, MsgClawback } from "./tx";
import { createCreateClawbackVestingAccount, createClawback } from "./tx.rpc.func.ts";
import { createCreateClawbackVestingAccount, createClawback } from "./tx.rpc.func";
export const useCreateClawbackVestingAccount = buildUseMutation<MsgCreateClawbackVestingAccount, Error>({
builderMutationFn: createCreateClawbackVestingAccount
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../../react-query";
import { MsgTransfer } from "./tx";
import { createTransfer } from "./tx.rpc.func.ts";
import { createTransfer } from "./tx.rpc.func";
export const useTransfer = buildUseMutation<MsgTransfer, Error>({
builderMutationFn: createTransfer
});
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { buildUseMutation } from "../../../../react-query";
import { MsgChannelOpenInit, MsgChannelOpenTry, MsgChannelOpenAck, MsgChannelOpenConfirm, MsgChannelCloseInit, MsgChannelCloseConfirm, MsgRecvPacket, MsgTimeout, MsgTimeoutOnClose, MsgAcknowledgement } from "./tx";
import { createChannelOpenInit, createChannelOpenTry, createChannelOpenAck, createChannelOpenConfirm, createChannelCloseInit, createChannelCloseConfirm, createRecvPacket, createTimeout, createTimeoutOnClose, createAcknowledgement } from "./tx.rpc.func.ts";
import { createChannelOpenInit, createChannelOpenTry, createChannelOpenAck, createChannelOpenConfirm, createChannelCloseInit, createChannelCloseConfirm, createRecvPacket, createTimeout, createTimeoutOnClose, createAcknowledgement } from "./tx.rpc.func";
export const useChannelOpenInit = buildUseMutation<MsgChannelOpenInit, Error>({
builderMutationFn: createChannelOpenInit
});
Expand Down
Loading

0 comments on commit 6bcd178

Please sign in to comment.