1
|
|
|
/** |
2
|
|
|
* @license |
3
|
|
|
* Copyright (c) 2020 UMI |
4
|
|
|
* |
5
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy |
6
|
|
|
* of this software and associated documentation files (the "Software"), to deal |
7
|
|
|
* in the Software without restriction, including without limitation the rights |
8
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
9
|
|
|
* copies of the Software, and to permit persons to whom the Software is |
10
|
|
|
* furnished to do so, subject to the following conditions: |
11
|
|
|
* |
12
|
|
|
* The above copyright notice and this permission notice shall be included in all |
13
|
|
|
* copies or substantial portions of the Software. |
14
|
|
|
* |
15
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
16
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
17
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
18
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
19
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
20
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
21
|
|
|
* SOFTWARE. |
22
|
|
|
*/ |
23
|
|
|
|
24
|
|
|
'use strict' |
25
|
|
|
|
26
|
1 |
|
const PublicKey = require('./key/ed25519/PublicKey.js') |
27
|
1 |
|
const SecretKey = require('./key/ed25519/SecretKey.js') |
28
|
1 |
|
const Address = require('./address/Address.js') |
29
|
1 |
|
const text = require('./util/text.js') |
30
|
1 |
|
const Transaction = require('./transaction/Transaction.js') |
31
|
1 |
|
const base64 = require('./util/base64.js') |
32
|
1 |
|
const hex = require('./util/hex.js') |
33
|
|
|
|
34
|
1 |
|
exports.PublicKey = PublicKey.PublicKey |
35
|
1 |
|
exports.SecretKey = SecretKey.SecretKey |
36
|
1 |
|
exports.Address = Address.Address |
37
|
1 |
|
exports.textDecode = text.textDecode |
38
|
1 |
|
exports.textEncode = text.textEncode |
39
|
1 |
|
exports.Transaction = Transaction.Transaction |
40
|
1 |
|
exports.base64Decode = base64.base64Decode |
41
|
1 |
|
exports.base64Encode = base64.base64Encode |
42
|
1 |
|
exports.hexDecode = hex.hexDecode |
43
|
|
|
exports.hexEncode = hex.hexEncode |
44
|
|
|
|