-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
Fix integration issue
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
semi: true, | ||
singleQuote: true, | ||
tabWidth: 2, | ||
trailingComma: 'es5', | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
export type WalletApiEvents = 'COSMOS_APPROVED' | 'CANCEL_COSMOS' | 'SOLANA_APPROVED' | 'CANCEL_SOLANA' | 'ETHEREUM_APPROVED' | "CANCEL_ETHEREUM"; | ||
export type WalletApiEvents = 'COSMOS_APPROVED' | 'CANCEL_COSMOS' | 'SOLANA_APPROVED' | 'CANCEL_SOLANA' | 'ETHEREUM_APPROVED' | 'CANCEL_ETHEREUM'; | ||
//# sourceMappingURL=types.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
import { type StdFee } from '@cosmjs/stargate'; | ||
import { type TX_MSG_TYPE } from './types'; | ||
export declare const cosmosTransfer: ({ sourceChannel, sourceAddress, destAddress, amount, assetId, fee, chainId, rpc, memo, timeout, txMsg }: { | ||
import { Keplr } from '@keplr-wallet/types'; | ||
export declare const cosmosTransfer: ({ sourceChannel, sourceAddress, destAddress, amount, assetId, fee, chainId, rpc, memo, timeout, txMsg, keplr, gasPrice, gas, feeAssetId, }: { | ||
sourceChannel: number; | ||
sourceAddress: string; | ||
destAddress: string; | ||
amount: string; | ||
assetId: string; | ||
fee: "auto" | StdFee; | ||
fee: string; | ||
chainId: string; | ||
rpc: string; | ||
memo: string; | ||
timeout?: number; | ||
txMsg?: TX_MSG_TYPE; | ||
keplr: Keplr; | ||
gasPrice: string; | ||
gas: string; | ||
feeAssetId: string; | ||
}) => Promise<string>; | ||
//# sourceMappingURL=methods.d.ts.map |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.