-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
115 changed files
with
2,133 additions
and
857 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,21 +3,19 @@ Div(list-group-item mt-lg mb-lg ml-lg mr-lg){ | |
Div(Class: h3 text-bold m0 text-center, Body: the KYC screening at SnapSwap International S.A.) | ||
|
||
Div(Class: h4 mt-xl, Body: Em(Date: 1st of November 2018)) | ||
Div(Class: h4, Body: Em(Re: Invitation to submit purchase orders to buy APL Tokens)) | ||
Div(Class: h4, Body: Em(Re: Invitation to submit purchase orders to buy APLA Tokens)) | ||
|
||
Div(Class: h4 mt-xl, Body: Dear Apla User,) | ||
Div(Class: h4, Body: We are very delighted that you have chosen the Apla blockchain platform to build decentralised applications, create ecosystems and accommodate your other business needs.) | ||
Div(Class: h4, Body: According to Article 8.1 of the Apla General Terms and Conditions (link to the site), EGAAS S.A. will be charging a license fee for each transaction signed by Apla users on the platform. The license fee is payable in the internal virtual currency of the Apla platform ecosystem named APL tokens. Hence, in order to use the platform, you will need to have APL tokens on your APL Wallet prior to signing each transaction.) | ||
Div(Class: h4, Body: EGAAS S.A. will be conducting an initial sale of APL Tokens from November 2018 until July 2019. The commercial terms of the sale are summarised below:) | ||
Div(row){ | ||
Div(col-sm-12 text-center){ | ||
Button(Class: btn-xs btn-link, Page: ts_commercial_terms){ | ||
Span(Class: h4, Body: The commercial terms) | ||
}.Popup(70, The commercial terms) | ||
} | ||
Div(Class: h4, Body: According to Article 8.1 of the Apla General Terms and Conditions (Span(Class: text-primary, Body: www.apla.io)), EGAAS S.A. will be charging a license fee for each transaction signed by Apla users on the platform. The license fee is payable in the internal virtual currency of the Apla platform ecosystem named APLA tokens. Hence, in order to use the platform, you will need to have APLA tokens on your APLA Wallet prior to signing each transaction.) | ||
Div(Class: h4){ | ||
Span(EGAAS S.A. will be conducting an initial sale of APLA Tokens from November 2018 until July 2019. The commercial terms of the sale are summarised below:) | ||
Button(Class: btn-xs btn-link, Page: ts_commercial_terms){ | ||
Span(Class: h4, Body: The commercial terms) | ||
}.Popup(70, The commercial terms) | ||
} | ||
|
||
Div(Class: h4, Body: Please submit your purchase order to buy APL tokens after you have reviewed and agreed with the legal terms of sale.) | ||
Div(Class: h4, Body: Please submit your purchase order to buy APLA tokens after you have reviewed and agreed with the legal terms of sale.) | ||
Div(Class: h4, Body: After we have received your purchase order, we will send you an invoice for making the payment of the purchase price.) | ||
Div(Class: h4, Body: Please reach out to us via the email Span(Class: text-primary, Body: [email protected]) if you have any questions or require any clarification of the above terms. We’ll also give you an access to the online data room with all information and legal documents concerning the Apla project, if you require so.) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
contract TsFreeWalletAdd { | ||
data { | ||
wallet_btc string | ||
wallet_eth string | ||
} | ||
|
||
conditions { | ||
var adminRoleId int adminRoleName string | ||
adminRoleId = Int(EcosysParam("role_sale_admin")) | ||
adminRoleName = DBFind("@1roles").Where({"id": adminRoleId}).One("role_name") | ||
|
||
if adminRoleId == 0 { | ||
warning Sprintf(LangRes("@1role_not_set_application_parameter", "en"), "role_sale_admin") | ||
} | ||
|
||
if !RoleAccess(adminRoleId) { | ||
warning Sprintf(LangRes("x_role_only_action", "en"), adminRoleName) | ||
} | ||
|
||
if DBFind("ts_wallets").Where({"wallet_btc": $wallet_btc}).One("id") { | ||
warning Sprintf(LangRes("wallet_btc_exists", "en"), $wallet_btc) | ||
} | ||
|
||
if DBFind("ts_wallets").Where({"wallet_eth": $wallet_eth}).One("id") { | ||
warning Sprintf(LangRes("wallet_eth_exists", "en"), $wallet_eth) | ||
} | ||
} | ||
|
||
action { | ||
DBInsert("ts_wallets", {"wallet_btc": $wallet_btc, "wallet_eth": $wallet_eth}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
contract TsFreeWalletDelete { | ||
data { | ||
wallet_id int | ||
} | ||
|
||
conditions { | ||
var adminRoleId int adminRoleName string | ||
adminRoleId = Int(EcosysParam("role_sale_admin")) | ||
adminRoleName = DBFind("@1roles").Where({"id": adminRoleId}).One("role_name") | ||
|
||
if adminRoleId == 0 { | ||
warning Sprintf(LangRes("@1role_not_set_application_parameter", "en"), "role_sale_admin") | ||
} | ||
|
||
if !RoleAccess(adminRoleId) { | ||
warning Sprintf(LangRes("x_role_only_action", "en"), adminRoleName) | ||
} | ||
} | ||
|
||
action { | ||
DBUpdate("ts_wallets", $wallet_id, {"deleted": 1}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.