Skip to content
Historical revision — this record as it stood on 14 June 2026, not the current version. View the current record →

Crypto Payment and License Issuance Architecture

A software license purchase on software.pointsav.com flows from a Polygon USDC transfer on-chain to an Ed25519-signed token that authorises binary downloads. The design is custodian-free: the customer never creates an account, the vendor never holds customer funds beyond the moment of settlement, and no intermediary is required to route the payment. The architecture has three moving parts — a payment watcher, a storefront, and a release server — described here at the level of their interactions.

Why USDC on Polygon

USDC is a USD-pegged stablecoin issued by Circle. Its value is anchored to the US dollar, which makes it practical for fixed-price software purchases without exposing either party to exchange-rate volatility. Polygon PoS is a proof-of-stake EVM-compatible chain with lower transaction fees than Ethereum mainnet, making it economical for purchases in the single-digit dollar range. The payment system operates as a read-only observer of public blockchain state: it watches for ERC-20 Transfer log events on the USDC contract addressed to the vendor wallet. No vendor-side smart contract is required. Any blockchain explorer can independently verify a payment using the transaction hash.

Payment watcher mechanics

The payment watcher polls the Polygon JSON-RPC endpoint at a configurable interval, walking forward through confirmed blocks and inspecting ERC-20 Transfer log entries. When it finds a Transfer to the vendor wallet address, it inspects the transferred amount to determine which license tier the payment corresponds to — the two tiers each map to a distinct USDC amount. On each confirmed match, it writes a structured flat-file receipt containing the transaction hash, the sender address, the block number, the confirmation timestamp, and the derived product identifier. It also appends an entry to a JSONL transaction log for bookkeeping and audit purposes.

Receipts are authoritative. The storefront will not issue a license token without a matching receipt on disk. The two-stage design — watcher writes receipt, storefront reads receipt — means the storefront never queries the chain directly; it delegates that responsibility entirely to the watcher. The watcher also supports a fallback RPC URL for resilience: if the primary RPC endpoint is unreachable, it retries against the fallback before failing.

Per-order address derivation

By default, all payments are directed to a single static vendor wallet address, and the transaction hash serves as the order identifier. For customers who prefer a dedicated receiving address for order tracking or accounting purposes, the storefront can derive one from the vendor's BIP-39 master seed using BIP-32 hierarchical deterministic key derivation along the standard Ethereum derivation path. Each order receives a unique index, and the mapping from order identifier to derivation index is stored locally. Payments to derived addresses are watched and receipted by the same watcher that monitors the static address. The derived-address flow is optional; the standard single-address flow remains the default.

License token issuance

Once a receipt exists for a transaction hash, the storefront issues an Ed25519-signed license token. The signing key is held exclusively by the storefront and never leaves it. The corresponding public verification key is held exclusively by the release server. Neither component holds the other's key material, and no key material is transmitted to the customer.

The token payload records the product identifier, an expiry date (one year from the time of issuance at current configuration), and the license tier as a list of entitlements. The token is formed by prepending the 64-byte Ed25519 signature to the raw payload bytes and encoding the result as a base64url string. The output is a single opaque string the customer stores and presents to the release server.

Verification at the release server

Verification is stateless and requires no network call. When a download request arrives with a token, the release server base64url-decodes the string, splits off the first 64 bytes as the Ed25519 signature, verifies the signature over the remaining bytes using the stored public key, parses the payload, and checks that the product matches the requested product and that the expiry date has not passed. A mismatched product returns 403; an invalid signature returns 401; an expired token returns 403 with a reason string indicating the channel has expired. Because the release server holds no signing key, a compromise of the release server does not allow an attacker to mint new tokens.

The release server exposes the public verification key at a well-known endpoint. External tooling — such as a customer's own installer script — can download the public key once and subsequently verify tokens offline without contacting the release server at runtime.

Receipt idempotency and the claim flow

The storefront's license issuance endpoint is idempotent: querying the same transaction hash multiple times always returns the same token. If a receipt is already on disk, the token is issued immediately. If not, the storefront delegates a chain lookup to the payment watcher's check subcommand and, on confirmation, writes the receipt before issuing the token. The first call for a new transaction may involve a chain round-trip; every subsequent call is served from disk with no latency beyond local I/O.

A separate claim endpoint records an off-chain association between a binary SHA-256 hash and the buyer's wallet address. This forms the basis for a future on-chain ownership attestation. On-chain minting capability is planned for a future version of the system; the claim record is written now so the data is available when that capability is added.

See also

Important Information

Important Information

Corporate structure. PointSav Digital Systems ("PointSav") is a trade name of Woodfine Capital Projects Inc. ("Woodfine"). PointSav does not itself offer, sell, or solicit any security. Any securities offering associated with Woodfine's real-property direct-hold solutions is made exclusively by Woodfine, and only by means of the applicable Private Placement Memorandum.

No investment advice. This wiki's content is provided for engineering, operational, research, and development purposes. Nothing on this wiki constitutes investment advice or a solicitation to invest in any Woodfine partnership or direct-hold solution.

Intellectual property. The PointSav name, trade name, wordmark, and marks, together with all current and future PointSav- and Totebox-branded products, services, and offerings — and the software, source code, documentation, design system, and all related materials — are proprietary to Woodfine and its affiliates, except for components identified as open source. No rights are granted except as expressly set out in a written license or agreement. See TRADEMARK.md in this repository for the full trademark notice.

Open source components. Portions of the platform are made available under permissive open-source licenses identified in the accompanying repository. Use of those components is governed by their respective license terms.

No warranty; informational use. Content on this wiki is provided for general informational purposes only and does not constitute a representation, warranty, or commitment with respect to product functionality, availability, pricing, or roadmap. Some articles describe planned or intended features, capabilities, and milestones — language such as "planned," "intended," "targeted," "may," and "expected" marks this forward-looking content, which is subject to change and does not constitute a commitment regarding future performance.

Confidentiality. Where an article describes an operational or deployment detail that is not intended for public disclosure, that article is not published on this wiki. Content here is general-purpose engineering documentation, not customer-specific configuration.

Jurisdiction. Woodfine Capital Projects Inc. is organized in British Columbia, Canada. References to the Sovereign Data Foundation on this wiki describe a planned or intended initiative only, not a current equity holder or active governance body.

Changes to this notice. PointSav may update this notice from time to time; the version posted on this page governs.

Not a filing system. This wiki is not a securities filing system, an electronic disclosure repository, or a substitute for SEDAR+ or any other regulatory filing system. Formal securities filings are made through the applicable regulatory filing system, not through this wiki.

Full disclaimer. This notice supplements, and does not replace, the full Disclaimers article. In the event of any conflict, the full Disclaimers article governs.

Read the full disclaimer →