Changelog
All notable structural changes to the Transaction Authorization Protocol (TAP) are documented in this file.
This changelog focuses on:
- New TAIPs and their acceptance status
- Message format changes
- Protocol structural changes
- Breaking changes
[2025-06-25]
Changed
- TAIP Status Updates:
- TAIP-1: Transaction Authorization Improvement Proposals - Advanced to Final status
- TAIPs 2-10 - Advanced to Last Call status:
- TAIP-2: Messaging
- TAIP-3: Virtual Asset Transfer
- TAIP-4: Transaction Authorization Protocol
- TAIP-5: Transaction Agents
- TAIP-6: Transaction Parties
- TAIP-7: Agent Policies
- TAIP-8: Selective Disclosure
- TAIP-9: Proof of Relationship
- TAIP-10: IVMS101 for Travel Rule
- TAIPs 15-16 - Advanced from Draft to Review status:
- TAIP-15: Agent Connection Protocol
- TAIP-16: Invoices
[2025-06-24]
Added
- JSON Schema definitions for all TAP message types in
/schemas/
directory - Developer resources page with implementation guides
- TAIP-17: Composable Escrow workflow (Draft)
- New
Escrow
message type for holding assets on behalf of parties - New
Capture
message type for releasing escrowed funds - Supports both cryptocurrency assets and fiat currency denominations
- Enables payment guarantees and asset swap use cases
- New
- TypeScript fixes: Added
by
field to Cancel interface
Removed
- Complete message type (replaced by extended Authorize message)
- Test vectors for removed Complete message
[2025-06-23]
Changed
- BREAKING: Replaced
Complete
message with enhancedAuthorize
message to simplify flow - Made
originator
field optional in Transfer messages to support unknown originators - Made
role
field optional in Agent structures - Added
principal
as primary party in Connection messages
[2025-04-22]
Added
- TAIP-16: Invoices - Structured invoice format for payment requests
- MCC (Merchant Category Code) field to Party structure for merchant identification
[2025-03-31]
Added
expiry
fields to Transfer, Authorize, and Connect messages for business intent expiration- Complete message for payment completion flows
amount
field to Settle message for partial settlement support
Changed
- Distinguished between message expiration (
expires_time
) and business expiration (expiry
)
[2025-03-30]
Changed
- BREAKING: Renamed
PaymentRequest
toPayment
throughout codebase - Updated all references and test vectors
[2025-03-26]
Added
- TAIP-15: Agent Connection Protocol - OAuth-style authorization flows for B2B integrations
- Connect message for establishing agent connections
- AuthorizationRequired message for connection approval flows
[2025-03-11]
Added
- TAIP-13: Transaction Purpose Codes - ISO 20022 purpose code integration
- Purpose and categoryPurpose fields to Transfer messages
- PaymentRequest message (later renamed to Payment)
[2025-03-10]
Added
- TAIP-14: Payment Requests - Merchant-initiated payment flows
[2025-03-07]
Added
- Cancel message for transaction termination
- Revert message for transaction reversal requests
[2025-03-05]
Added
- TAIP-11: Legal Entity Identifier (LEI) - Institutional participant identification
- TAIP-12: Hashed Participant Name Sharing - Privacy-preserving name matching
lei
field to Party structurenameHash
field to Party structure
[2025-03-02]
Added
- TAIP-10: IVMS101 for Travel Rule - Regulatory compliance integration
ivms101
field to Party structure for Travel Rule data
[2024-01-26]
Added
- TAIP-9: Proof of Relationship - Agent-party relationship verification
- ConfirmRelationship message
- CACAO attachment support for DID proofs
[2024-01-25]
Added
- TAIP-8: Selective Disclosure - Privacy-preserving credential sharing
- RequirePresentation policy type
- Presentation Exchange integration
[2024-01-24]
Added
- TAIP-7: Agent Policies - Requirement enforcement framework
- Policy structures: RequireAuthorization, RequirePresentation, RequirePurpose
- UpdatePolicies message
[2024-01-23]
Added
- TAIP-6: Transaction Parties - Party identification and representation
- Party data structure with name, LEI, and verification methods
[2024-01-09]
Added
- TAIP-3: Virtual Asset Transfer - Core transfer functionality
- TAIP-4: Transaction Authorization Protocol - Core authorization flow
- TAIP-5: Transaction Agents - Software agent framework
- Transfer message for asset transfers
- Authorization flow messages: Authorize, Settle, Reject
- Agent management messages: UpdateAgent, AddAgents, ReplaceAgent, RemoveAgent
- Agent data structure with roles and policies
[2023-12-19]
Added
- TAIP-1: Transaction Authorization Improvement Proposals - Framework document
[2023-12-14]
Added
- TAIP-2: Messaging - DIDComm v2 message format
- Base message structure and threading model
- JSON-LD context definitions
- Initial repository structure
Message Type Summary
Current TAP Messages (16 total)
- Transfer - Virtual asset transfer initiation
- Payment - Payment request with invoice support
- Authorize - Transaction authorization (enhanced to replace Complete)
- Settle - On-chain settlement confirmation
- Reject - Transaction rejection
- Cancel - Transaction cancellation
- Revert - Transaction reversal request
- UpdateAgent - Agent information update
- UpdateParty - Party information update
- AddAgents - Add agents to transaction
- ReplaceAgent - Replace existing agent
- RemoveAgent - Remove agent from transaction
- ConfirmRelationship - Confirm party-agent relationship
- UpdatePolicies - Update agent policies
- Connect - Establish agent connection
- AuthorizationRequired - Request connection authorization
Removed Messages
- Complete (2024-06-12) - Functionality merged into Authorize message
Breaking Changes Summary
2024-06-12
- Complete message removed - migrate to Authorize with settlement details
- Cancel message now requires
by
field
2024-03-15
- PaymentRequest renamed to Payment - update all message type references
2024-02-10
- Transfer message supports optional originator - handle missing originator cases
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning for protocol versions.