We are migrating from @gelatonetwork/relay-sdk to @gelatocloud/gasless
Previously in our code we were invoking ERC3009->transferWithAuthorization to perform erc20 transfer on our custom token.
We replaced this with createGelatoEvmRelayerClient()->sendTransaction
After migration all calls are failing with "No signers available" error - but they are marked as success on gelato gas tank log.
We are testing this on Polygon Amoy network.
private readonly relay = createGelatoEvmRelayerClient({
apiKey: "SOME_API_KEY",
testnet: true,
});
async sponsoredCall(payload: SponsoredCallRequest) {
const id = await this.relay.sendTransaction(payload);
const receipt = await this.relay.waitForReceipt({ id });
return receipt.transactionHash;
}
We are migrating from
@gelatonetwork/relay-sdkto@gelatocloud/gaslessPreviously in our code we were invoking ERC3009->
transferWithAuthorizationto perform erc20 transfer on our custom token.We replaced this with
createGelatoEvmRelayerClient()->sendTransactionAfter migration all calls are failing with "No signers available" error - but they are marked as success on gelato gas tank log.
We are testing this on Polygon Amoy network.