$request = new Grpc\GetTransactionRequest(['transaction_hash' => 'my-hash-value']);
$response = $this->client->GetTransaction($request, []);
where GetTransaction is a function that takes a GetTransactionRequest object. when I debug GetTransactionRequest in that functions it seems GetTransactionRequest does some kind of encoding to the transaction. Is there any way I could avoid this or reverse the encoding?