UNPKG
@atlantis-l/radix-tool
Version:
latest (0.8.9)
0.8.9
0.8.8
0.8.6
0.8.4
0.8.3
0.8.2
0.8.1
0.8.0
0.7.4
0.7.3
0.7.2
0.7.1
A tool to interact with the radix network
github.com/atlantis-l/Radix-Tool
atlantis-l/Radix-Tool
@atlantis-l/radix-tool
/
dist
/
models
/
wallet.d.ts
10 lines
(9 loc)
•
306 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
PrivateKey
,
PublicKey
}
from
"@radixdlt/radix-engine-toolkit"
;
declare
class
Wallet
{
address
:
string
;
publicKey
:
PublicKey
;
privateKey
:
PrivateKey
;
constructor
(
address
:
string
,
publicKey
:
PublicKey
,
privateKey
:
PrivateKey
);
privateKeyHexString
():
string
; }
export
{
Wallet
};