PUT Send Transaction 
Send Transaction Example 
typescript
import { Web3Kit, ChainType } from "@web3jskit/dapp";
interface ISignAndSendTransactionRes {
  signature: string;
}
function signAndSendTransaction(transaction: string) {
  const web3Kit = new Web3Kit();
  const serRes = (await web3Kit.request({
    chainType: ChainType.PUT,
    methodName: "signAndSendTransaction",
    params: {
      transaction,
    },
  })) as ISignAndSendTransactionRes;
}Request Parameters 
typescript
{
    chainType: ChainType.PUT,
    methodName: "signAndSendTransaction",
    params: {
        transaction, // Serialized transaction content, in base58 format
    },
}Return Value 
typescript
{
    signature: '', // Result after sending
}