UNPKG
nodana
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
A Node JS Solana CLI
impin2rex.github.io
impin2rex/nodana
nodana
/
dist
/
cjs
/
clients
/
wallet.d.ts
8 lines
(7 loc)
•
264 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
NodanaConfig
}
from
"../utils"
;
export
declare
class
WalletClient
{
private
readonly
config;
constructor
(
config
:
NodanaConfig
);
fetchBalance
(
wallet
:
string
):
Promise
<
number
>;
requestAirDrop
(
wallet
:
string
,
sol
:
number
):
Promise
<
string
>; }