product_feature
Data license: CC-BY-4.0 · Data source: bankproducts.info
2 rows where product_id = "incore:crypto_custody_institutional"
This data as json, CSV (advanced)
| id ▼ | product_id | feature_key | feature_value | note | source_page |
|---|---|---|---|---|---|
| incore:crypto_custody_institutional:pf:bank_licence | Incore Digital Asset Banking (institutional) incore:crypto_custody_institutional | regulatory_status | FINMA-licensed bank — same licence covers traditional + digital assets | Crypto custody offered under a full Swiss bank licence rather than a fintech licence or trust company structure. Marketed as a trust differentiator for institutional crypto clients. | |
| incore:crypto_custody_institutional:pf:crypto_since | Incore Digital Asset Banking (institutional) incore:crypto_custody_institutional | launch_year | Digital-asset brokerage + custody since 2019 | Among the first FINMA-supervised banks to offer institutional digital-asset brokerage & custody (2019). 2026 milestone: completed phase-2 of cross-bank payment pilot with Crypto Finance and AMINA on Google Cloud Universal Ledger (GCUL). |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE product_feature (
id TEXT PRIMARY KEY,
product_id TEXT NOT NULL REFERENCES product(id),
feature_key TEXT NOT NULL, -- withdrawal_limit_free, notice_period, daily_limit, monthly_limit,
-- interest_late_payment, max_balance, included_services, ...
feature_value TEXT,
note TEXT,
source_page INTEGER
);
CREATE INDEX idx_product_feature_product ON product_feature(product_id);
CREATE INDEX idx_product_feature_key ON product_feature(feature_key);