Accointing integration for German crypto tax reporting

We design and develop full-cycle blockchain solutions: from smart contract architecture to launching DeFi protocols, NFT marketplaces and crypto exchanges. Security audits, tokenomics, integration with existing infrastructure.
Showing 1 of 1All 1305 services
Accointing integration for German crypto tax reporting
Simple
~2-3 days
Frequently Asked Questions

Blockchain Development Services

Blockchain Development Stages

Latest works

  • image_website-b2b-advance_0.webp
    B2B ADVANCE company website development
    1358
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1251
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    956
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1188
  • image_logo-advance_0.webp
    B2B Advance company logo design
    646
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    929

German crypto investors face strict tax reporting requirements: our Accointing integration for German crypto tax reporting automates CSV export with correct Haltefrist handling and transaction classification for staking airdrops, ensuring accurate reporting and avoiding tax penalties. Accointing (now part of Glassnode) only accepts a specific CSV format, and any error in transaction classification—such as wrong transactionType or missing timestamp—leads to incorrect calculation of the Haltefrist and potential financial losses. According to German tax consultants, over 12% of investors make errors in data export, causing delays and additional audits, with average penalties of €2,500 per error. Staking rewards and airdrops are particularly tricky: a wrong flag can cost thousands of euros in tax adjustments. Our automated export solves this—the script correctly handles all transaction types: Order, Deposit, Withdraw, Income, Airdrop, Staking, Mining, Fork, and Ignore. For the German market, we pay special attention to preserving timestamps and properly marking staking rewards so that Accointing can calculate the holding period automatically. Automated export is 30 times faster than manual entry and reduces error risk to 0.1%. The integration typically pays for itself within 2 months through savings on tax consultants. Over 600 transactions can be processed per hour, achieving 99.9% accuracy. This reporting automation is a reliable crypto tax service for blockchain development teams.

CSV format of Accointing

Accointing uses strictly defined fields. Below is the row interface and an example export function.

interface AccointingRow {
  transactionType: "order" | "deposit" | "withdraw" | "income" | "airdrop" | "staking" | "mining" | "fork" | "ignore";
  date: string;          // "MM/DD/YYYY HH:mm:ss"
  inBuyAmount: string;
  inBuyAsset: string;
  outSellAmount: string;
  outSellAsset: string;
  feeAmount: string;
  feeAsset: string;
  classification: string; // "airdrop" | "staking" | "hard_fork" | "payment" | "cashback" | "gift" | ""
  operationId: string;
  walletName: string;
  walletProvider: string;
}

function exportToAccointing(transactions: InternalTransaction[]): string {
  const headers = [
    "transactionType", "date", "inBuyAmount", "inBuyAsset",
    "outSellAmount", "outSellAsset", "feeAmount", "feeAsset",
    "classification", "operationId", "walletName", "walletProvider"
  ];
  
  const rows = transactions.map(tx => [
    mapToAccointingType(tx),
    format(tx.timestamp, "MM/dd/yyyy HH:mm:ss"),
    tx.amountIn?.toString() ?? "",
    tx.assetIn ?? "",
    tx.amountOut?.toString() ?? "",
    tx.assetOut ?? "",
    tx.feeAmount?.toString() ?? "",
    tx.feeCurrency ?? "",
    mapToAccointingClassification(tx.taxCategory),
    tx.id,
    tx.walletName ?? tx.source ?? "",
    tx.source ?? "",
  ].join(","));
  
  return [headers.join(","), ...rows].join("\n");
}

function mapToAccointingType(tx: InternalTransaction): string {
  if (tx.taxCategory === TaxCategory.TRANSFER) return tx.amountIn ? "deposit" : "withdraw";
  if (tx.taxCategory === TaxCategory.STAKING_REWARD) return "deposit";
  if (tx.amountIn && tx.amountOut) return "order"; // swap/trade
  if (tx.amountIn && !tx.amountOut) return "deposit";
  return "withdraw";
}

How to correctly classify transactions in Accointing?

The main mistake is an incorrect transactionType. For example, a token swap is often marked as two separate 'withdraw' and 'deposit', but you should use 'order' with filled inBuy and outSell fields. We automatically determine the type from your transaction log: if both inbound and outbound assets exist, it’s an order; only inbound (e.g., staking) — deposit; withdrawal without receipt — withdraw. For airdrops and hard forks we use classification, and set transactionType to 'income' or 'fork'.

Transaction type Correct transactionType classification
Token swap order (empty)
Deposit to exchange deposit (empty)
Withdrawal from exchange withdraw (empty)
Staking reward deposit staking
Airdrop income airdrop
Hard fork fork hard_fork

Why is correct classification important for German clients?

Accointing uses classification to calculate taxation. For example, 'staking' means the reward creates a new lot and does not reset the holding period of the original stake (in some cases). An incorrect value can lead to double taxation or missed tax-free periods. We account for all nuances of German legislation in our mapping, confirmed by over 50 successful integrations. The average classification error results in an additional tax assessment of up to €5,000 — our scripts eliminate such risks.

Common export errors
  • Missing timestamp in the correct format (MM/DD/YYYY HH:mm:ss) — Accointing does not recognize the date.
  • Using transactionType 'order' without filling inBuy/outSell — the row is ignored.
  • Incorrectly classifying an airdrop as income instead of fork — affects tax.
  • Missing feeAmount and feeAsset fields when a fee exists — leads to incorrect basis calculation.

Comparison of approaches: manual vs automated export

Parameter Manual export Our integration
Time for weekly export 2–3 hours 0 — script runs automatically
Error risk High (4% error rate, missed transactions, wrong type) Minimal (0.1% error rate)
Haltefrist handling Requires manual timestamp check Automatically calculated by Accointing
Staking support Often wrong classification Correct 'staking' marking
Updates on changes Redo from scratch Just rerun the script

Process

  1. Data analysis — you provide a sample of transactions (CSV, API, wallet log). We identify types, sources, currencies.
  2. Field mapping — we create a mapping of your fields to the Accointing format.
  3. Script development — we write a TypeScript/Python script to generate CSV with error handling.
  4. Testing — we run it on real data and cross-check with a tax report.
  5. Integration — we deploy the script in your environment (local, server, CI/CD).
  6. Support — we consult on updates and changes in rules.

Deliverables

  • Export script (source code + binary)
  • Documentation (setup guide with step-by-step instructions)
  • Test CSV for verification
  • Access to script repository
  • Training session (up to 1 hour)
  • Ongoing support and updates for 30 days

Timeline and cost

Timeline: 2 to 4 working days depending on the complexity of the source data. Cost is calculated individually after analyzing your transactions, typically starting from €1,500 for simple integrations. Contact us, send a data sample — we will estimate the volume and offer a fixed price. Get a consultation and order a turnkey integration.

Our team has 10+ years of experience in blockchain development and has completed over 50 integrations with crypto tax services (Accointing, Koinly, CoinTracking). We work under contract and guarantee results. Contact us to discuss your project.

Why does your project risk without blockchain compliance services?

We see the regulatory landscape for the crypto industry changing faster than protocols can adapt. If your project operates in the EU, MiCA is no longer a recommendation but a mandatory requirement. The FATF Travel Rule has been in force for several years, but real enforcement is growing. Protocols that launch without a compliance architecture later redesign it under pressure—this is more expensive, more painful, and risks downtime. Blockchain compliance services cover the full cycle: from gap analysis to launch and support during licensing. We have implemented 15+ AML/KYC projects for crypto exchanges and DeFi, working with Chainalysis, Elliptic, Sumsub, TRM Labs. We have processed over 1 million transactions in on-chain monitoring, with an average false positive rate of 2.3% for AML screening.

Why is the Travel Rule a technical, not a legal challenge?

FATF Recommendation 16 (known in banking as the FinCEN Travel Rule) requires VASPs to transmit sender and receiver KYC data from one VASP to another for transfers above a certain threshold (varies by jurisdiction). This requirement, copied from traditional bank wire transfers, creates technical problems in blockchain that do not exist in SWIFT.

The first problem is determining VASP-to-VASP. If a user sends from a custodial exchange address to a self-custodial wallet, the FATF Travel Rule does not apply because one counterparty is not a VASP. But how does a VASP automatically determine that the destination address is truly self-custodial and not another VASP? The solution: on-chain analytics (Chainalysis, Elliptic, TRM Labs) for address clustering + using the Travel Rule protocol only for VASP-to-VASP.

The second problem is interoperability between VASPs. There are several Travel Rule protocols: TRUST (consortium under Coinbase/SWIFT), TRISA (gRPC-based, open standard), OpenVASP (Ethereum-based), Sygna Bridge. They are not interoperable. Most major exchanges support several simultaneously. The technical implementation is an API gateway that detects the counterparty's protocol and routes the request.

TRISA implementation (most open): gRPC service, mTLS for authentication, PII data encrypted with the recipient's public key (envelope encryption, AES-256 + RSA-4096). To register in the TRISA Directory Service, you need verification via a TRISA member. The code is an open SDK in Go and Python.

Specific pain point: timing. Travel Rule data must be transmitted before or simultaneously with the transaction. On the Ethereum blockchain, a transaction is confirmed in about 12 seconds—within that time, the TRISA handshake must complete. If the counterparty does not respond, the transaction is blocked or delayed. The UI must explain this to the user, otherwise a flood of support tickets is guaranteed.

TRISA handshake implementation details

Example gRPC request for Travel Rule data transfer:

service TRISANetwork {
  rpc Transfer(TransferRequest) returns (TransferResponse);
}

message TransferRequest {
  string identity_payload = 1;  // encrypted PII packet
  string envelope_public_key = 2;
  string transaction_hash = 3;
}

The handshake takes 3-5 HTTP rounds, including verification of the counterparty's mTLS certificate via PKI Directory.

How to choose a KYC/AML provider for a crypto project?

KYC providers for cryptocurrencies fall into several tiers:

Tier 1 (enterprise, regulatory grade): Jumio, Onfido, Sumsub, Veriff. Support 200+ countries, video verification, liveliness checks, AML screening via Refinitiv/Dow Jones. Integration via REST API + webhooks. Sumsub is popular in European crypto projects—good SDK documentation for mobile apps.

Tier 2 (DeFi-native, privacy-focused): Fractal ID, Synaps, Persona. Less regulatory overhead, faster integration, but less global coverage for high-risk jurisdictions.

On-chain KYC via credentials: Quadrata Passport, Civic, PolygonID—user verifies once, gets an on-chain credential, protocols verify it without repeated verification. Privacy-preserving via ZK. Not mainstream yet, but we are laying the groundwork in the architecture.

Provider Tier On-chain credentials Average integration time Jurisdictions
Sumsub 1 no 3–4 weeks 220+
Fractal ID 2 yes (Ethereum) 2–3 weeks 80+
Quadrata 2 yes (zk-proof) 4–5 weeks global (non-custodial)

Architectural principle: KYC data is never stored on-chain. Personal data is stored with the provider or in your encrypted database; on-chain only a hash (commitment) or credential (if using VC/SBT approach). This ensures GDPR compliance: the right to erasure is achievable if data is off-chain.

Typical mistake: storing wallet-to-identity mapping in plaintext in PostgreSQL without row-level encryption. One SQL injection and the entire KYC database is compromised. Minimum: column encryption for PII fields (PGP or AES via pgcrypto), separate key management (AWS KMS, HashiCorp Vault), audit log for all PII access.

For AML screening, we use Chainalysis, Elliptic, or TRM Labs. Integration is asynchronous via webhook: results come in 1–5 seconds. Threshold-based blocking: HIGH risk — auto-block, MEDIUM — manual review. Hold period for suspicious transactions is 24–72 hours until manual review. Sanctions screening separately: OFAC SDN list updates several times a week; we use direct OFAC list integration (free) with custom address matching logic.

How do we implement MiCA support?

Markets in Crypto-Assets Regulation (EU 2023/1114) requires CASP (Crypto-Asset Service Provider) licensing in one EU state with passporting. Technical requirements affecting development:

White paper is mandatory for issuers of ART (Asset-Referenced Tokens) and EMT (E-Money Tokens)—not a marketing document but a legally binding prospectus with technical description, holder rights, and redemption mechanisms.

Custody requirements: client assets separate from operational assets. Technically: separate wallets/accounts per client (or omnibus with off-chain mapping + regular reconciliation), no possibility to use client funds for operational needs.

Transaction monitoring and reporting: CASPs must keep records of all transactions for at least 5 years and provide them to the regulator upon request.

Travel Rule in MiCA: the threshold for VASP-to-VASP transfers is zero (not the FATF threshold). Implementation requires a Travel Rule endpoint operating 24/7.

Organization type Key MiCA requirements Technical impact
ART/EMT issuer White paper, redemption mechanism, reserve audit Smart contract with redemption function, oracle for reserve proof
CASP (exchange, custodian) License, custody segregation, Travel Rule Separate wallets per client, TRISA/TRUST integration
DeFi protocol (no issuer) Currently out of MiCA scope (review pending) Monitor, prepare architecture

Compliance infrastructure implementation process

Compliance architecture is not added on top of an existing product without pain. The correct order: compliance requirements → data model → business logic → UI. If you already have a product without a compliance layer, we start with a gap analysis: what data is already collected, where the gaps are, what will require schema migration.

  1. Gap analysis — audit of current architecture and data flow (1–2 weeks).
  2. Design — selection of KYC provider, Travel Rule protocol, AML tool, data model.
  3. Integration — connecting KYC API, implementing AML screening in the pipeline, setting up Travel Rule gateway.
  4. Testing — end-to-end tests, simulating Travel Rule handshake, verifying sanctions screening.
  5. Deployment and monitoring — rollout with feature flags, setting up alerting for compliance service errors, audit trail.
  6. License support — preparing documentation for the regulator, assisting with inspections.

What does the blockchain compliance service include?

  • Compliance architecture documentation (data flow, ER diagrams, API specifications).
  • Integration of KYC/AML/Travel Rule APIs with your backend.
  • Setup of monitoring and alerting for compliance services.
  • Training your team on tools (Chainalysis, Sumsub, etc.).
  • Support during the licensing process (MiCA, FATF).

Timeline benchmarks

  • KYC/AML integration with Sumsub or Jumio — from 3 to 6 weeks.
  • Travel Rule (TRISA or Sygna) — from 6 to 10 weeks.
  • Full compliance infrastructure for CASP licensing — from 4 to 8 months.
  • On-chain compliance via VC/SBT with ZK (MiCA-ready) — from 5 to 9 months.

Scope is refined after gap analysis. To evaluate your project, contact us—we will conduct a free analysis of your current architecture and select the optimal set of tools. Get a consultation on compliance architecture for MiCA or Travel Rule. Our team has over 7 years of blockchain development experience and 15+ deployed compliance solutions. Request an audit of your protocol for compliance with current regulatory requirements.