UNPKG
@vaulverin/orca-sdk
Version:
latest (1.2.5)
1.2.23
1.2.5
1.2.3
1.2.2-3.1
Typescript SDK for the Orca protocol.
www.orca.so
orca-so/typescript-sdk
@vaulverin/orca-sdk
/
dist
/
public
/
utils
/
numbers
/
decimal-utils.d.ts
7 lines
(6 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{ u64 }
from
"@solana/spl-token"
;
import
Decimal
from
"decimal.js"
;
export
declare
class
DecimalUtil
{
static
fromU64
(
input
: u64,
shift
?:
number
):
Decimal
;
static
toU64
(
input
:
Decimal
,
shift
?:
number
): u64; }