Sandbox raw transactions pending signature status

Raw Transactions are stuck in PENDING SIGNATURE status.
They worked well, but few days ago after 18 July new transactions keep being stuck in pending status.

It’s Sandbox and, as I understand, it has Fireblocks communal API Co-Signer which should auto-approve transactions.

Raw Solana transactions are created with the latest fireblocks-sdk-js
Rate limit is fine


const tx = new Transaction()
...

const fireblocksResponse = await fireblocksSDK.createTransaction({
  assetId: "SOL_TEST",
  operation: TransactionOperation.RAW,
  source: {
    type: PeerType.VAULT_ACCOUNT,
    id: vaultAccountId,
  },
  note: "test",
  extraParameters: {
    rawMessageData: {
      messages: [{ content: tx.serializeMessage() }],
    },
  },
});

Could you please guide?

Attached screenshots below with default Sandbox TAP policies, Transactions history and Recent activity where you could see pending status.

Hey @mikhail!

Thanks for raising this. Seems that we had some internal issue with SOL Raw transfers in Sandbox.

It should be resolved now.
Sorry for the inconvenience.

1 Like

Awesome! Thanks a lot for handling this so quickly