@@ -23,7 +23,7 @@ import * as TokenId from './TokenId.js'
2323 *
2424 * Tempo transactions support batching multiple calls for atomic execution.
2525 *
26- * @see [Batch Calls](https://docs.tempo.xyz/protocol/transactions#batch-calls)
26+ * [Batch Calls](https://docs.tempo.xyz/protocol/transactions#batch-calls)
2727 */
2828export type Call < bigintType = bigint > = {
2929 /** Call data. */
@@ -60,7 +60,7 @@ export type Call<bigintType = bigint> = {
6060 *
6161 * - **Multi-Signature Support**: Sign with secp256k1, P256 (passkeys), or WebAuthn credentials.
6262 *
63- * @see [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
63+ * [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
6464 */
6565export type TransactionEnvelopeTempo <
6666 signed extends boolean = boolean ,
@@ -390,7 +390,7 @@ export declare namespace deserialize {
390390 * fee tokens, access keys, and scheduled execution. Attach a signature using the `signature`
391391 * option after signing with {@link ox#TransactionEnvelopeTempo.(getSignPayload:function)}.
392392 *
393- * @see [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
393+ * [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
394394 *
395395 * @example
396396 * ```ts twoslash
@@ -540,7 +540,7 @@ export declare namespace from {
540540 * RLP-encodes the transaction with type prefix `0x76`. For fee sponsorship, use `format: 'feePayer'`
541541 * to serialize with the fee payer magic `0x78` and the sender address.
542542 *
543- * @see [RLP Encoding](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction#rlp-encoding)
543+ * [RLP Encoding](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction#rlp-encoding)
544544 *
545545 * @example
546546 * ```ts twoslash
@@ -716,7 +716,7 @@ export declare namespace serialize {
716716 * Computes the keccak256 hash of the unsigned serialized transaction. Sign this payload
717717 * with secp256k1, P256, or WebAuthn, then attach the signature via {@link ox#TransactionEnvelopeTempo.(from:function)}.
718718 *
719- * @see [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
719+ * [Tempo Transaction Specification](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction)
720720 *
721721 * @example
722722 * The example below demonstrates how to compute the sign payload which can be used
@@ -833,8 +833,8 @@ export declare namespace hash {
833833 * signs over the transaction with the sender's address to commit to paying fees. The fee payer's
834834 * signature includes the `feeToken` and `sender_address`, using magic byte `0x78` for domain separation.
835835 *
836- * @see [Fee Payer Signature](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction#fee-payer-signature)
837- * @see [Fee Sponsorship Guide](https://docs.tempo.xyz/protocol/transactions#fee-sponsorship)
836+ * [Fee Payer Signature](https://docs.tempo.xyz/protocol/transactions/spec-tempo-transaction#fee-payer-signature)
837+ * [Fee Sponsorship Guide](https://docs.tempo.xyz/protocol/transactions#fee-sponsorship)
838838 *
839839 * @example
840840 * ```ts twoslash
0 commit comments