@subwallet/extension-base 1.3.82-0 → 1.3.83-0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,6 @@ const packageInfo = {
13
13
  name: '@subwallet/extension-base',
14
14
  path: typeof __dirname === 'string' ? __dirname : 'auto',
15
15
  type: 'cjs',
16
- version: '1.3.82-0'
16
+ version: '1.3.83-0'
17
17
  };
18
18
  exports.packageInfo = packageInfo;
@@ -55,6 +55,7 @@ exports.StaticKey = StaticKey;
55
55
  StaticKey["MARKETING_CAMPAINGS"] = "marketing-campaigns";
56
56
  StaticKey["CROWDLOAN_FUNDS"] = "crowdloan-funds";
57
57
  StaticKey["TERM_AND_CONDITION"] = "term-and-condition";
58
+ StaticKey["COMPLIANCE_TERM_AND_CONDITION"] = "compliance-term-and-condition";
58
59
  StaticKey["BUY_TOKEN_CONFIGS"] = "buy-token-configs";
59
60
  StaticKey["BLOCKED_ACTIONS_FEATURES"] = "blocked-actions-features";
60
61
  StaticKey["REMIND_NOTIFICATION_TIME"] = "remind-notification-time";
@@ -70,6 +71,7 @@ const staticData = {
70
71
  [StaticKey.CROWDLOAN_FUNDS]: crowdloanFunds,
71
72
  [StaticKey.MARKETING_CAMPAINGS]: marketingCampaigns,
72
73
  [StaticKey.TERM_AND_CONDITION]: termAndCondition.default,
74
+ [StaticKey.COMPLIANCE_TERM_AND_CONDITION]: termAndCondition.compliance,
73
75
  [StaticKey.BUY_TOKEN_CONFIGS]: buyTokenConfigs,
74
76
  [StaticKey.BLOCKED_ACTIONS_FEATURES]: blockedActionsFeatures,
75
77
  [StaticKey.REMIND_NOTIFICATION_TIME]: remindNotificationTime,
package/package.json CHANGED
@@ -17,7 +17,7 @@
17
17
  "./cjs/detectPackage.js"
18
18
  ],
19
19
  "type": "module",
20
- "version": "1.3.82-0",
20
+ "version": "1.3.83-0",
21
21
  "main": "./cjs/index.js",
22
22
  "module": "./index.js",
23
23
  "types": "./index.d.ts",
@@ -3049,10 +3049,10 @@
3049
3049
  "@substrate/connect": "^0.8.9",
3050
3050
  "@subwallet-monorepos/subwallet-services-sdk": "0.1.17-beta.2",
3051
3051
  "@subwallet/chain-list": "0.2.128",
3052
- "@subwallet/extension-base": "^1.3.82-0",
3053
- "@subwallet/extension-chains": "^1.3.82-0",
3054
- "@subwallet/extension-dapp": "^1.3.82-0",
3055
- "@subwallet/extension-inject": "^1.3.82-0",
3052
+ "@subwallet/extension-base": "^1.3.83-0",
3053
+ "@subwallet/extension-chains": "^1.3.83-0",
3054
+ "@subwallet/extension-dapp": "^1.3.83-0",
3055
+ "@subwallet/extension-inject": "^1.3.83-0",
3056
3056
  "@subwallet/keyring": "^0.1.14",
3057
3057
  "@subwallet/ui-keyring": "^0.1.14",
3058
3058
  "@ton/core": "^0.56.3",
package/packageInfo.js CHANGED
@@ -7,5 +7,5 @@ export const packageInfo = {
7
7
  name: '@subwallet/extension-base',
8
8
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
9
9
  type: 'esm',
10
- version: '1.3.82-0'
10
+ version: '1.3.83-0'
11
11
  };
@@ -19,6 +19,7 @@ export declare enum StaticKey {
19
19
  MARKETING_CAMPAINGS = "marketing-campaigns",
20
20
  CROWDLOAN_FUNDS = "crowdloan-funds",
21
21
  TERM_AND_CONDITION = "term-and-condition",
22
+ COMPLIANCE_TERM_AND_CONDITION = "compliance-term-and-condition",
22
23
  BUY_TOKEN_CONFIGS = "buy-token-configs",
23
24
  BLOCKED_ACTIONS_FEATURES = "blocked-actions-features",
24
25
  REMIND_NOTIFICATION_TIME = "remind-notification-time",
@@ -34,6 +35,7 @@ export declare const staticData: {
34
35
  "crowdloan-funds": Record<string, unknown>[];
35
36
  "marketing-campaigns": Record<string, unknown>;
36
37
  "term-and-condition": unknown;
38
+ "compliance-term-and-condition": unknown;
37
39
  "buy-token-configs": Record<string, unknown>[];
38
40
  "blocked-actions-features": BlockedActionsFeaturesMap;
39
41
  "remind-notification-time": Record<NotificationActionType, number>;
@@ -35,6 +35,7 @@ export let StaticKey;
35
35
  StaticKey["MARKETING_CAMPAINGS"] = "marketing-campaigns";
36
36
  StaticKey["CROWDLOAN_FUNDS"] = "crowdloan-funds";
37
37
  StaticKey["TERM_AND_CONDITION"] = "term-and-condition";
38
+ StaticKey["COMPLIANCE_TERM_AND_CONDITION"] = "compliance-term-and-condition";
38
39
  StaticKey["BUY_TOKEN_CONFIGS"] = "buy-token-configs";
39
40
  StaticKey["BLOCKED_ACTIONS_FEATURES"] = "blocked-actions-features";
40
41
  StaticKey["REMIND_NOTIFICATION_TIME"] = "remind-notification-time";
@@ -50,6 +51,7 @@ export const staticData = {
50
51
  [StaticKey.CROWDLOAN_FUNDS]: crowdloanFunds,
51
52
  [StaticKey.MARKETING_CAMPAINGS]: marketingCampaigns,
52
53
  [StaticKey.TERM_AND_CONDITION]: termAndCondition.default,
54
+ [StaticKey.COMPLIANCE_TERM_AND_CONDITION]: termAndCondition.compliance,
53
55
  [StaticKey.BUY_TOKEN_CONFIGS]: buyTokenConfigs,
54
56
  [StaticKey.BLOCKED_ACTIONS_FEATURES]: blockedActionsFeatures,
55
57
  [StaticKey.REMIND_NOTIFICATION_TIME]: remindNotificationTime,
@@ -1,3 +1,4 @@
1
1
  {
2
- "default": "These Terms of Use (“Agreement”) set forth the general terms and conditions of your use of the SubWallet extension application, mobile application, and web dashboard application (\"SubWallet Application\") and any of its related products and services (collectively, “Services”). \n\nThis Agreement is legally binding between you (“User”, “you” or “your”) and this application developer (“Operator”, “we”, “us” or “our”). If you are entering into this Agreement on behalf of a business or other legal entity, you represent that you have the authority to bind such an entity to this Agreement, in which case the terms “User”, “you” or “your” shall refer to such entity. \n\nIf you do not have such authority, or if you do not agree with the terms of this Agreement, you must not accept this Agreement and may not access and use the SubWallet Application and Services. By accessing and using the SubWallet Application and Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Agreement. You acknowledge that this Agreement is a contract between you and the Operator, even though it is electronic and is not physically signed by you, and it governs your use of the SubWallet Application and Services.\n\nThis Agreement is written in various languages. If there is any dispute, the English language shall prevail.\n\n#### **Accounts and membership**\n\nIf you create a wallet in the SubWallet Application, you are responsible for maintaining the security of your wallet and you are fully responsible for all activities that occur with the wallet and any other actions taken in connection with it. You should understand that we do not have access to any wallet-related information on our side, nor are we able to send it to any other party. \n\nAll such information is stored locally on your device(s) which we do not have access to and you bear full responsibility for its (their) safety. Your wallet private keys/seed phrases are not backed up along with other data so if you delete SubWallet Application, it will be impossible to restore your keys from a backup.\n\n#### **Privacy Policy**\n\nWe respect your privacy and are committed to protecting it through our compliance with this privacy policy (“Policy”). This Policy describes the types of information we may collect from you or that you may provide on the SubWallet Application, SubWallet.App website, and any of their related products and services, and our practices for collecting, using, maintaining, protecting, and disclosing that information. By accessing and using the Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Policy. This Policy does not apply to the practices of companies that we do not own or control, or to individuals that we do not employ or manage. \n\n##### **Information category**\n\nFor the purposes of the given document, we would like to classify information into the following categories: Data that is used for wallet creation, import, and export (i.e., seed phrase, private key, etc.) (“Sensitive information”), personally identifiable information (i.e., data that could potentially identify you as an individual) (“Personal information”), and Non-personally identifiable information (i.e., information that cannot be used to identify who you are) (“Non-personal information”). This Policy covers all the categories and will tell you how we might collect and use each type.\n\n*Sensitive information*\n\nYour Sensitive information is not collected or stored by us. In particular, it is not sent anywhere, is not stored anywhere except your device, and is not included in backups of the operating system. We are committed to making sure your information is protected and we employ several mechanisms to keep your information safe, including on-device encryption, verification and authentication by password or biometrics, and securing all network connections with industry-standard transport layer security. However, even with these precautions taken by us, the safety of your device and your seed phrase or backup data is solely your responsibility.\n\n*Personal information & Non-personal information*\n\nYou can access and use the Services without telling us who you are or revealing any information by which someone could identify you as a specific, identifiable individual. In other words, no Personal information is collected by our Services. This applies to all categories of users, including children under the age of 18. Please note that our extension and app have been uploaded to the Store on desktop browsers (Chrome, Brave, Edge & Firefox) and mobile (App Store and Play Store). These stores may track some of your information and activities including but not limited to log data, cookies, etc.\n\n##### **Disclosure of information**\n\nWe do not share your information with anyone or for any reason.\n\n##### **Security Measures**\n\nIn the event we become aware that the security of the Services has been compromised as a result of external activity, including, but not limited to, security attacks or fraud, we reserve the right to take reasonably appropriate measures, including, but not limited to, investigation and reporting, as well as notification to and cooperation with law enforcement authorities. In such cases, we will make reasonable efforts to notify affected individuals if we believe that there is a reasonable risk of harm to them or if notice is otherwise required by law. When we do, we will post a notice on the Services.\n\n##### **Do Not Track signals**\n\nSome browsers incorporate a Do Not Track feature that signals to websites you visit that you do not want to have your online activity tracked. Tracking is not the same as using or collecting information in connection with a website. For these purposes, tracking refers to collecting personally identifiable information from consumers who use or visit a website or online service as they move across different websites over time. The Services do not track its visitors over time and across third-party websites. However, some third-party websites may keep track of your browsing activities when they serve you content, which enables them to tailor what they present to you.\n\n#### **Links to other resources**\n\nAlthough the SubWallet Application and Services may link to other resources (such as websites, other applications, etc.), we are not, directly or indirectly, implying any approval, association, sponsorship, endorsement, or affiliation with any linked resource, unless specifically stated herein. We are not responsible for examining or evaluating, and we do not warrant the offerings of any businesses or individuals or the content of their resources. \n\nWe do not assume any responsibility or liability for the actions, products, services, and content of any other third parties. You should carefully review the legal statements and other conditions of use of any resource that you access through a link in the SubWallet Application. Your linking to any other off-site resources is at your own risk.\n\n#### **Prohibited uses**\n\nIn addition to other terms as set forth in the Agreement, you are prohibited from using the SubWallet Application and Services:\n\n1. For any unlawful purpose\n2. To solicit others to perform or participate in any unlawful acts\n3. To violate any international, federal, provincial, or state regulations, rules, laws, or local ordinances\n4. To infringe upon or violate our intellectual property rights or the intellectual property rights of others\n5. To harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability\n6. To submit false or misleading information\n7. To upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the SubWallet Application and Services, third-party products and services, or the Internet\n8. To spam, phish, pharm, pretext, spider, crawl, or scrape\n9. For any obscene or immoral purpose\n10. To interfere with or circumvent the security features of the SubWallet Application and Services, third-party products and services, or the Internet.\n \n#### **Intellectual property rights**\n\n“Intellectual Property Rights” means all present and future rights conferred by statute, common law, or equity in or in relation to any copyright and related rights, trademarks, designs, patents, inventions, goodwill, and the right to sue for passing off, rights to inventions, rights to use, and all other intellectual property rights, in each case whether registered or unregistered and including all applications and rights to apply for and be granted, rights to claim priority from, such rights and all similar or equivalent rights or forms of protection and any other results of intellectual activity which subsist or will subsist now or in the future in any part of the world.\n\nThis Agreement does not transfer to you any intellectual property owned by the Operator or third parties, and all rights, titles, and interests in and to such property will remain (as between the parties) solely with the Operator. All trademarks, service marks, graphics, and logos used in connection with the SubWallet Application and Services, are trademarks or registered trademarks of the Operator or its licensors.\n\nOther trademarks, service marks, graphics, and logos used in connection with the SubWallet Application and Services may be the trademarks of other third parties. Your use of the SubWallet Application and Services grants you no right or license to reproduce or otherwise use any of the Operator or third-party trademarks.\n\n#### **Limitation of liability**\n\nTo the fullest extent permitted by applicable law, in no event will the Operator, its affiliates, directors, officers, employees, agents, suppliers, or licensors be liable to any person for any indirect, incidental, special, punitive, cover or consequential damages (including, without limitation, damages for lost profits, revenue, sales, goodwill, use of content, impact on business, business interruption, loss of anticipated savings, loss of business opportunity) however caused, under any theory of liability, including, without limitation, contract, tort, warranty, breach of statutory duty, negligence or otherwise, even if the liable party has been advised as to the possibility of such damages or could have foreseen such damages. \n\n#### **Indemnification**\n\nYou agree to indemnify and hold the Operator and its affiliates, directors, officers, employees, agents, suppliers, and licensors harmless from and against any liabilities, losses, damages, or costs, including reasonable attorneys’ fees, incurred in connection with or arising from any third-party allegations, claims, actions, disputes, or demands asserted against any of them as a result of or relating to your use of the SubWallet Application and Services or any willful misconduct on your part.\n\n#### **Severability**\n\nAll rights and restrictions contained in this Agreement may be exercised and shall be applicable and binding only to the extent that they do not violate any applicable laws and are intended to be limited to the extent necessary so that they will not render this Agreement illegal, invalid, or unenforceable. If any provision or portion of any provision of this Agreement shall be held to be illegal, invalid, or unenforceable by a court of competent jurisdiction, it is the intention of the parties that the remaining provisions or portions thereof shall constitute their Agreement with respect to the subject matter hereof, and all such remaining provisions or portions thereof shall remain in full force and effect.\n\n#### **Dispute resolution**\n\nThe formation, interpretation, and performance of this Agreement and any disputes arising out of it shall be governed by the substantive and procedural laws of the United Nations Convention without regard to its rules on conflicts or choice of law and, to the extent applicable, the laws of the United Nations Convention. The exclusive jurisdiction and venue for actions related to the subject matter hereof shall be the courts located in the United Nations Convention, and you hereby submit to the personal jurisdiction of such courts. You hereby waive any right to a jury trial in any proceeding arising out of or related to this Agreement. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.\n\n#### **Changes and amendments**\n\nWe reserve the right to modify this Agreement or its terms related to the SubWallet Application and Services at any time at our discretion. When we do, we will revise the updated date at the bottom of this page. We may also provide notice to you in other ways at our discretion, such as through the contact information you have provided.\n\nAn updated version of this Agreement will be effective immediately upon the posting of the revised Agreement unless otherwise specified. Your continued use of the SubWallet Application and Services after the effective date of the revised Agreement (or such other act specified at that time) will constitute your consent to those changes.\n\n#### **Acceptance of these terms**\n\nYou acknowledge that you have read this Agreement and agree to all its terms and conditions. By accessing and using the SubWallet Application and Services you agree to be bound by this Agreement. If you do not agree to abide by the terms of this Agreement, you are not authorized to access or use the SubWallet Application and Services.\n\n#### **Contacting us**\n\nIf you have any questions, concerns, or complaints regarding this Agreement, we encourage you to contact us using the details below:\n\n**Email:** [**agent@subwallet.app**](mailto:agent@subwallet.app)\n\nLast modified Jan 10, 2024."
2
+ "default": "These Terms of Use (“Agreement”) set forth the general terms and conditions of your use of the SubWallet extension application, mobile application, and web dashboard application (\"SubWallet Application\") and any of its related products and services (collectively, “Services”). \n\nThis Agreement is legally binding between you (“User”, “you” or “your”) and this application developer (“Operator”, “we”, “us” or “our”). If you are entering into this Agreement on behalf of a business or other legal entity, you represent that you have the authority to bind such an entity to this Agreement, in which case the terms “User”, “you” or “your” shall refer to such entity. \n\nIf you do not have such authority, or if you do not agree with the terms of this Agreement, you must not accept this Agreement and may not access and use the SubWallet Application and Services. By accessing and using the SubWallet Application and Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Agreement. You acknowledge that this Agreement is a contract between you and the Operator, even though it is electronic and is not physically signed by you, and it governs your use of the SubWallet Application and Services.\n\nThis Agreement is written in various languages. If there is any dispute, the English language shall prevail.\n\n#### **Accounts and membership**\n\nIf you create a wallet in the SubWallet Application, you are responsible for maintaining the security of your wallet and you are fully responsible for all activities that occur with the wallet and any other actions taken in connection with it. You should understand that we do not have access to any wallet-related information on our side, nor are we able to send it to any other party. \n\nAll such information is stored locally on your device(s) which we do not have access to and you bear full responsibility for its (their) safety. Your wallet private keys/seed phrases are not backed up along with other data so if you delete SubWallet Application, it will be impossible to restore your keys from a backup.\n\n#### **Privacy Policy**\n\nWe respect your privacy and are committed to protecting it through our compliance with this privacy policy (“Policy”). This Policy describes the types of information we may collect from you or that you may provide on the SubWallet Application, SubWallet.App website, and any of their related products and services, and our practices for collecting, using, maintaining, protecting, and disclosing that information. By accessing and using the Services, you acknowledge that you have read, understood, and agree to be bound by the terms of this Policy. This Policy does not apply to the practices of companies that we do not own or control, or to individuals that we do not employ or manage. \n\n##### **Information category**\n\nFor the purposes of the given document, we would like to classify information into the following categories: Data that is used for wallet creation, import, and export (i.e., seed phrase, private key, etc.) (“Sensitive information”), personally identifiable information (i.e., data that could potentially identify you as an individual) (“Personal information”), and Non-personally identifiable information (i.e., information that cannot be used to identify who you are) (“Non-personal information”). This Policy covers all the categories and will tell you how we might collect and use each type.\n\n*Sensitive information*\n\nYour Sensitive information is not collected or stored by us. In particular, it is not sent anywhere, is not stored anywhere except your device, and is not included in backups of the operating system. We are committed to making sure your information is protected and we employ several mechanisms to keep your information safe, including on-device encryption, verification and authentication by password or biometrics, and securing all network connections with industry-standard transport layer security. However, even with these precautions taken by us, the safety of your device and your seed phrase or backup data is solely your responsibility.\n\n*Personal information & Non-personal information*\n\nYou can access and use the Services without telling us who you are or revealing any information by which someone could identify you as a specific, identifiable individual. In other words, no Personal information is collected by our Services. This applies to all categories of users, including children under the age of 18. Please note that our extension and app have been uploaded to the Store on desktop browsers (Chrome, Brave, Edge & Firefox) and mobile (App Store and Play Store). These stores may track some of your information and activities including but not limited to log data, cookies, etc.\n\n##### **Disclosure of information**\n\nWe do not share your information with anyone or for any reason.\n\n##### **Security Measures**\n\nIn the event we become aware that the security of the Services has been compromised as a result of external activity, including, but not limited to, security attacks or fraud, we reserve the right to take reasonably appropriate measures, including, but not limited to, investigation and reporting, as well as notification to and cooperation with law enforcement authorities. In such cases, we will make reasonable efforts to notify affected individuals if we believe that there is a reasonable risk of harm to them or if notice is otherwise required by law. When we do, we will post a notice on the Services.\n\n##### **Do Not Track signals**\n\nSome browsers incorporate a Do Not Track feature that signals to websites you visit that you do not want to have your online activity tracked. Tracking is not the same as using or collecting information in connection with a website. For these purposes, tracking refers to collecting personally identifiable information from consumers who use or visit a website or online service as they move across different websites over time. The Services do not track its visitors over time and across third-party websites. However, some third-party websites may keep track of your browsing activities when they serve you content, which enables them to tailor what they present to you.\n\n#### **Links to other resources**\n\nAlthough the SubWallet Application and Services may link to other resources (such as websites, other applications, etc.), we are not, directly or indirectly, implying any approval, association, sponsorship, endorsement, or affiliation with any linked resource, unless specifically stated herein. We are not responsible for examining or evaluating, and we do not warrant the offerings of any businesses or individuals or the content of their resources. \n\nWe do not assume any responsibility or liability for the actions, products, services, and content of any other third parties. You should carefully review the legal statements and other conditions of use of any resource that you access through a link in the SubWallet Application. Your linking to any other off-site resources is at your own risk.\n\n#### **Prohibited uses**\n\nIn addition to other terms as set forth in the Agreement, you are prohibited from using the SubWallet Application and Services:\n\n1. For any unlawful purpose\n2. To solicit others to perform or participate in any unlawful acts\n3. To violate any international, federal, provincial, or state regulations, rules, laws, or local ordinances\n4. To infringe upon or violate our intellectual property rights or the intellectual property rights of others\n5. To harass, abuse, insult, harm, defame, slander, disparage, intimidate, or discriminate based on gender, sexual orientation, religion, ethnicity, race, age, national origin, or disability\n6. To submit false or misleading information\n7. To upload or transmit viruses or any other type of malicious code that will or may be used in any way that will affect the functionality or operation of the SubWallet Application and Services, third-party products and services, or the Internet\n8. To spam, phish, pharm, pretext, spider, crawl, or scrape\n9. For any obscene or immoral purpose\n10. To interfere with or circumvent the security features of the SubWallet Application and Services, third-party products and services, or the Internet.\n \n#### **Intellectual property rights**\n\n“Intellectual Property Rights” means all present and future rights conferred by statute, common law, or equity in or in relation to any copyright and related rights, trademarks, designs, patents, inventions, goodwill, and the right to sue for passing off, rights to inventions, rights to use, and all other intellectual property rights, in each case whether registered or unregistered and including all applications and rights to apply for and be granted, rights to claim priority from, such rights and all similar or equivalent rights or forms of protection and any other results of intellectual activity which subsist or will subsist now or in the future in any part of the world.\n\nThis Agreement does not transfer to you any intellectual property owned by the Operator or third parties, and all rights, titles, and interests in and to such property will remain (as between the parties) solely with the Operator. All trademarks, service marks, graphics, and logos used in connection with the SubWallet Application and Services, are trademarks or registered trademarks of the Operator or its licensors.\n\nOther trademarks, service marks, graphics, and logos used in connection with the SubWallet Application and Services may be the trademarks of other third parties. Your use of the SubWallet Application and Services grants you no right or license to reproduce or otherwise use any of the Operator or third-party trademarks.\n\n#### **Limitation of liability**\n\nTo the fullest extent permitted by applicable law, in no event will the Operator, its affiliates, directors, officers, employees, agents, suppliers, or licensors be liable to any person for any indirect, incidental, special, punitive, cover or consequential damages (including, without limitation, damages for lost profits, revenue, sales, goodwill, use of content, impact on business, business interruption, loss of anticipated savings, loss of business opportunity) however caused, under any theory of liability, including, without limitation, contract, tort, warranty, breach of statutory duty, negligence or otherwise, even if the liable party has been advised as to the possibility of such damages or could have foreseen such damages. \n\n#### **Indemnification**\n\nYou agree to indemnify and hold the Operator and its affiliates, directors, officers, employees, agents, suppliers, and licensors harmless from and against any liabilities, losses, damages, or costs, including reasonable attorneys’ fees, incurred in connection with or arising from any third-party allegations, claims, actions, disputes, or demands asserted against any of them as a result of or relating to your use of the SubWallet Application and Services or any willful misconduct on your part.\n\n#### **Severability**\n\nAll rights and restrictions contained in this Agreement may be exercised and shall be applicable and binding only to the extent that they do not violate any applicable laws and are intended to be limited to the extent necessary so that they will not render this Agreement illegal, invalid, or unenforceable. If any provision or portion of any provision of this Agreement shall be held to be illegal, invalid, or unenforceable by a court of competent jurisdiction, it is the intention of the parties that the remaining provisions or portions thereof shall constitute their Agreement with respect to the subject matter hereof, and all such remaining provisions or portions thereof shall remain in full force and effect.\n\n#### **Dispute resolution**\n\nThe formation, interpretation, and performance of this Agreement and any disputes arising out of it shall be governed by the substantive and procedural laws of the United Nations Convention without regard to its rules on conflicts or choice of law and, to the extent applicable, the laws of the United Nations Convention. The exclusive jurisdiction and venue for actions related to the subject matter hereof shall be the courts located in the United Nations Convention, and you hereby submit to the personal jurisdiction of such courts. You hereby waive any right to a jury trial in any proceeding arising out of or related to this Agreement. The United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.\n\n#### **Changes and amendments**\n\nWe reserve the right to modify this Agreement or its terms related to the SubWallet Application and Services at any time at our discretion. When we do, we will revise the updated date at the bottom of this page. We may also provide notice to you in other ways at our discretion, such as through the contact information you have provided.\n\nAn updated version of this Agreement will be effective immediately upon the posting of the revised Agreement unless otherwise specified. Your continued use of the SubWallet Application and Services after the effective date of the revised Agreement (or such other act specified at that time) will constitute your consent to those changes.\n\n#### **Acceptance of these terms**\n\nYou acknowledge that you have read this Agreement and agree to all its terms and conditions. By accessing and using the SubWallet Application and Services you agree to be bound by this Agreement. If you do not agree to abide by the terms of this Agreement, you are not authorized to access or use the SubWallet Application and Services.\n\n#### **Contacting us**\n\nIf you have any questions, concerns, or complaints regarding this Agreement, we encourage you to contact us using the details below:\n\n**Email:** [**agent@subwallet.app**](mailto:agent@subwallet.app)\n\nLast modified Jan 10, 2024.",
3
+ "compliance": "### 1. Your Own Decision\n\nYou are accessing and using the staking, delegation, earning, or related services voluntarily, on your own behalf, and at your own discretion.\n\nYou are solely responsible for deciding whether to stake, delegate, unstake, redelegate, claim rewards, or otherwise interact with any validator, protocol, blockchain, or third-party service provider.\n\nYou acknowledge that all staking decisions, validator selections, delegations, and related transactions are initiated solely based on your own instructions.\n\nSubWallet does not make staking decisions for you and does not recommend, advise, guarantee, endorse, or direct you to use any particular validator, protocol, blockchain, or third-party service provider.\n\n### 2. Ownership, Authority and Eligibility\n\nYou represent and confirm that:\n\n- You lawfully own or control the digital assets used for staking or earning;\n- You have full legal capacity and authority to use such assets and to make these confirmations;\n- Your use of such assets and services does not violate any applicable law, regulation, agreement, or third-party right applicable to you.\n\n### 3. Sanctions, AML and Prohibited Use\n\nYou represent and confirm that:\n\n- You are not a sanctioned, restricted, prohibited, or blocked person under applicable laws;\n- You are not located, organized, resident, or operating in any jurisdiction where use of the relevant services is prohibited;\n- You are not acting on behalf of any sanctioned, restricted, prohibited, or blocked person;\n- You will not use SubWallet or any staking, earning, validator, or related services for money laundering, terrorist financing, sanctions evasion, fraud, or any other unlawful activity;\n- To the best of your knowledge, the digital assets you use are not derived from unlawful activities.\n\nIf any of the above representations become inaccurate, you agree to immediately stop using the relevant services until the issue has been resolved.\n\n### 4. Legal and Tax Responsibility\n\nYou are solely responsible for:\n\n- Determining whether staking, delegation, earning, rewards, or related transactions are lawful in your jurisdiction;\n- Complying with all laws and regulations applicable to you;\n- Calculating, reporting, and paying any taxes arising from your digital assets, staking activities, rewards, or related transactions.\n\nSubWallet does not provide legal, tax, accounting, regulatory, or compliance advice.\n\n### 5. Staking and Blockchain Risks\n\nYou understand and accept that staking and blockchain activities involve significant technical, operational, financial, and protocol risks, including but not limited to:\n\n- Slashing or loss of rewards;\n- Validator downtime or failure;\n- Protocol bugs, upgrades, forks, governance changes, or network failures;\n- Smart contract vulnerabilities;\n- Reward fluctuation or no rewards;\n- Delayed, failed, or incorrect reward distribution;\n- Loss of access resulting from your wallet, device, private key, seed phrase, or transaction errors;\n- Risks arising from third-party validators, protocols, bridges, infrastructure providers, or service providers.\n\nRewards are not guaranteed, and past performance does not guarantee future results.\n\n### 6. Non-Custodial Nature of SubWallet\n\nYou acknowledge that SubWallet is a non-custodial wallet provider.\n\nSubWallet does not hold, custody, manage, control, or transfer your digital assets on your behalf.\n\nYou remain solely responsible for your wallet, private keys, seed phrase, passwords, transactions, staking decisions, and digital asset security.\n\nSubWallet cannot recover your private keys, seed phrase, or digital assets.\n\n### 7. Third-Party Validators and Services\n\nValidators, staking providers, blockchain protocols, and earning services are operated by independent third parties.\n\nSubWallet is not responsible for:\n\n- Validator operations;\n- Validator performance;\n- Reward generation or distribution;\n- Protocol operation;\n- Slashing;\n- Downtime;\n- Security incidents affecting third parties;\n- Any act or omission of any validator, protocol, blockchain, or third-party service provider.\n\nUnless expressly stated otherwise, SubWallet does not endorse, certify, recommend, or guarantee any validator, protocol, or third-party service provider.\n\nWhere applicable, you must review and agree to the terms of the relevant third-party service provider before using its services.\n\n### 8. No Investment Advice\n\nNothing displayed within SubWallet constitutes financial, investment, legal, tax, accounting, trading, or other professional advice.\n\nNothing made available through SubWallet shall be interpreted as a recommendation, solicitation, endorsement, or invitation to purchase, sell, stake, delegate, or otherwise transact in any digital asset.\n\nSubWallet does not act as your broker, dealer, investment adviser, asset manager, fiduciary, agent, trustee, custodian, or legal representative.\n\nYou remain solely responsible for evaluating the suitability and risks of any staking or earning activity.\n\n### 9. User Representations\n\nAll confirmations, acknowledgements, representations, warranties, and information provided by you are made solely by you as the Wallet User.\n\nSubWallet is entitled to rely upon your representations when making the relevant services available to you without independently verifying, investigating, certifying, guaranteeing, or ensuring their accuracy, completeness, or continuing validity, except where required by laws applicable to SubWallet.\n\nYou agree to keep your representations accurate and up to date and acknowledge that they continue to apply for as long as you access or use the relevant services.\n\n### 10. Final Confirmation\n\nBy selecting \"I Agree & Continue\", you confirm that:\n\n- You have carefully read and understood these Full Compliance Terms;\n- All representations made by you are true, accurate, and complete to the best of your knowledge;\n- You voluntarily accept all risks associated with staking, delegation, earning, blockchain protocols, and related third-party services;\n- You agree that SubWallet may record your acceptance, including your wallet address, timestamp, application version, Compliance Terms version, provider or protocol used, and other relevant technical records for compliance, security, and audit purposes;\n- If you do not agree to these Full Compliance Terms, you must not access or use the relevant services.\n\n### 11. Suspension and Restriction of Services\n\nSubWallet may, at its sole discretion and where reasonably necessary, suspend, restrict, delay, or refuse access to any staking, delegation, validator, earning, or related third-party services, temporarily or permanently, without prior notice, where SubWallet reasonably believes such action is necessary to:\n\n- Comply with applicable laws, regulations, sanctions, court orders, or requests from governmental or regulatory authorities;\n- Comply with the requirements, policies, or reasonable requests of any validator, protocol, blockchain network, infrastructure provider, or third-party service provider;\n- Protect the security, integrity, availability, or proper operation of SubWallet, its users, or any third-party services;\n- Investigate or prevent suspected fraud, money laundering, terrorist financing, sanctions evasion, security incidents, abuse, or other unlawful activities;\n- Prevent material legal, regulatory, operational, or security risks to SubWallet or its users; or address any circumstance where SubWallet reasonably determines that continued access to the relevant services may expose SubWallet, its users, or third parties to unacceptable legal, regulatory, operational, or security risks.\n\nTo the extent permitted by applicable law, SubWallet shall not be liable for any loss, delay, missed rewards, or other damages arising from any suspension, restriction, delay, or refusal of access implemented in accordance with this Section.\n\n### 12. Updates to these Full Compliance Terms\n\nSubWallet may update, modify, supplement, or replace these Full Compliance Terms from time to time to reflect changes in applicable laws, regulations, compliance requirements, industry practices, platform functionality, security requirements, or third-party service provider requirements.\n\nWhere required by applicable law or where SubWallet reasonably determines that updated acceptance is appropriate, SubWallet may require you to review and accept the updated Full Compliance Terms before you continue to access or use the relevant staking, delegation, earning, validator, or related third-party services.\n\nIf you do not agree to the updated Full Compliance Terms, you must discontinue using the relevant services.\n\nContinued access to or use of the relevant services after acceptance of an updated version constitutes your agreement to the then-current Full Compliance Terms.\n"
3
4
  }