// @generated by protoc-gen-connect-es v1.6.1 with parameter "target=ts,import_extension=.js"
// @generated from file gfxcafe/oku/account/v1/canoe.proto (package gfxcafe.oku.account.v1, syntax proto3)
/* eslint-disable */
// @ts-nocheck

import { BridgeRequest, BridgeResponse, SwapRequest, SwapResponse } from "./canoe_pb.js";
import { MethodKind } from "@bufbuild/protobuf";

/**
 * CanoeService provides quote tracking functionality
 *
 * @generated from service gfxcafe.oku.account.v1.CanoeService
 */
export const CanoeService = {
  typeName: "gfxcafe.oku.account.v1.CanoeService",
  methods: {
    /**
     * Record a swap quote (/canoe/swap)
     *
     * @generated from rpc gfxcafe.oku.account.v1.CanoeService.Swap
     */
    swap: {
      name: "Swap",
      I: SwapRequest,
      O: SwapResponse,
      kind: MethodKind.Unary,
    },
    /**
     * Record a bridge quote (/canoe/bridge)
     *
     * @generated from rpc gfxcafe.oku.account.v1.CanoeService.Bridge
     */
    bridge: {
      name: "Bridge",
      I: BridgeRequest,
      O: BridgeResponse,
      kind: MethodKind.Unary,
    },
  }
} as const;

