I have deployed a smart contract in injective testnet.
Then I tried to querying and send tx to the contract.
Querying is successed.
But send tx is failed.
I use keplr wallet, and send tx code is like this:
...
const { txRaw } = createTransaction({
pubKey,
chainId,
fee: DEFAULT_STD_FEE,
message: msg,
sequence: accountDetails.sequence,
timeoutHeight: timeoutHeight.toNumber(),
accountNumber: baseAccount.accountNumber,
})
const result = await keplr.sendTx(
chainId,
CosmosTxV1Beta1Tx.TxRaw.encode(txRaw).finish(),
BroadcastMode.Sync,
)
Then, I received error msg.
"Uncaught (in promise) Error: invalid mode"





07.595199000 13026267136 hpack_parser.cc:992] Error parsing 'content-type' metadata: invalid value
56.473261000 13086330880 ssl_transport_security.cc:1421] Handshake failed with fatal error SSL_ERROR_SSL: error:100000f7:SSL routines:OPENSSL_internal:WRONG_VERSION_NUMBER.

