60 lines
2.3 KiB
Plaintext
60 lines
2.3 KiB
Plaintext
// NAC 宪法层辖区规则 — 巴拿马(Panama)
|
||
// 监管机构:SBP(Superintendencia de Bancos de Panamá)
|
||
// 关键法律:Ley 23 de 2015(反洗钱)& Decreto Ejecutivo 122 de 2021(数字资产)
|
||
// CBPP 原则:约法即是治法 | 宪法即是规则 | 参与即是共识 | 节点产生区块交易决定区块大小
|
||
// 生效方式:辖区授权CA(PA_SBP_CA)签名后直接生效,无需链上投票
|
||
|
||
JURISDICTION PA {
|
||
name: "巴拿马(Panama)"
|
||
regulator: "SBP(Superintendencia de Bancos de Panamá)"
|
||
key_law: "Ley 23 de 2015(反洗钱)& Decreto Ejecutivo 122 de 2021(数字资产)"
|
||
ca_authority: "PA_SBP_CA"
|
||
tier: "TIER_2"
|
||
|
||
// 支持的资产类型
|
||
supported_asset_types: ["数字资产", "代币", "股权", "债券"]
|
||
|
||
// 禁止事项(直接生效,无需投票)
|
||
prohibited_activities: ["未经SBP授权的数字资产业务", "匿名交易"]
|
||
}
|
||
|
||
CLAUSE PA_SBP_001 {
|
||
jurisdiction: "PA"
|
||
type: "COMPLIANCE_RULE"
|
||
description: "数字资产业务须向SBP申请授权"
|
||
enforcement: "CA_SIGNED" // 辖区授权CA签名后直接生效,无需链上投票(约法即是治法)
|
||
effective_immediately: true
|
||
}
|
||
|
||
CLAUSE PA_AML_001 {
|
||
jurisdiction: "PA"
|
||
type: "COMPLIANCE_RULE"
|
||
description: "须符合巴拿马第23号法律(反洗钱/反恐融资)"
|
||
enforcement: "CA_SIGNED" // 辖区授权CA签名后直接生效,无需链上投票(约法即是治法)
|
||
effective_immediately: true
|
||
}
|
||
|
||
CLAUSE PA_KYC_001 {
|
||
jurisdiction: "PA"
|
||
type: "COMPLIANCE_RULE"
|
||
description: "KYC须核实客户身份,保留10年记录"
|
||
enforcement: "CA_SIGNED" // 辖区授权CA签名后直接生效,无需链上投票(约法即是治法)
|
||
effective_immediately: true
|
||
}
|
||
|
||
CLAUSE PA_FATF_001 {
|
||
jurisdiction: "PA"
|
||
type: "COMPLIANCE_RULE"
|
||
description: "须符合FATF建议(巴拿马已从灰名单移除)"
|
||
enforcement: "CA_SIGNED" // 辖区授权CA签名后直接生效,无需链上投票(约法即是治法)
|
||
effective_immediately: true
|
||
}
|
||
|
||
CLAUSE PA_REPORT_001 {
|
||
jurisdiction: "PA"
|
||
type: "COMPLIANCE_RULE"
|
||
description: "季度向SBP提交数字资产业务报告"
|
||
enforcement: "CA_SIGNED" // 辖区授权CA签名后直接生效,无需链上投票(约法即是治法)
|
||
effective_immediately: true
|
||
}
|