We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f63dbfa commit 47323e0Copy full SHA for 47323e0
packages/sdk-ts/src/core/tx/api/TxRestApi.ts
@@ -36,7 +36,7 @@ export class TxRestApi implements TxConcreteApi {
36
public async fetchTx(txHash: string, params: any = {}): Promise<TxResponse> {
37
try {
38
const response = await this.client.$get<TxResultResponse>(
39
- `/cosmos/tx/v1beta1/txs/${txHash}`,
+ `cosmos/tx/v1beta1/txs/${txHash}`,
40
params,
41
)
42
@@ -133,7 +133,7 @@ export class TxRestApi implements TxConcreteApi {
133
134
135
const response = await this.client.$post<SimulationResponse>(
136
- '/cosmos/tx/v1beta1/simulate',
+ 'cosmos/tx/v1beta1/simulate',
137
{
138
tx_bytes: TxClient.encode(txRawClone),
139
},
0 commit comments