This repository has been archived by the owner on Mar 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path__manifest__.py
51 lines (45 loc) · 1.6 KB
/
__manifest__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
{
'name': "odoo-solana-payments",
'summary': """
Allows you to accept a variety of currencies (USDT, USDC, BTC, SOL) via the solana blockchain""",
'description': """
Payment Acquierer built for Odoo 14; utilizes the public Solana blockchain to enable the acceptance of a variety of currencies.
USDT / USDC are native on Solana, while BTC, ETH and other BIP44 coin types can be wrapped onto Solana.
Transactions are instant and less than a penny.
Current list of supported tokens / currencies:
USDC
""",
'author': "T-900",
'website': "http://github.com/t-900-a/odoo-solana-payments",
# Categories can be used to filter modules in modules listing
# Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
# for the full list
'category': 'Accounting',
'version': '0.2',
# any module necessary for this one to work correctly
'depends': ['website_sale',
'website_payment',
'website',
'payment_transfer',
'payment',
'base_setup',
'web',
],
# always loaded
'data': [
'views/scheduler.xml',
'views/solana_acquirer_form.xml',
'views/solana_payment_confirmation.xml',
'data/currency.xml',
'data/solana_sol_payment_acquirer.xml',
],
# only loaded in demonstration mode
# TODO add demo data
'demo': [
'demo/demo.xml',
],
'installable': True,
'application': True,
'license': 'GPL-3',
}