UNPKG
soulswap-rubik-sdk
Version:
latest (1.0.0)
1.0.0
Simplify dApp creation
github.com/BunsDev/rubic-sdk
BunsDev/rubic-sdk
soulswap-rubik-sdk
/
lib
/
core
/
blockchain
/
models
/
transaction-options.d.ts
9 lines
(8 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
BigNumber
from
'bignumber.js'
;
export
declare
type
TransactionOptions
= {
onTransactionHash
?:
(
hash
:
string
) =>
void
;
data
?:
string
;
gas
?:
BigNumber
|
string
;
gasPrice
?:
BigNumber
|
string
;
value
?:
BigNumber
|
string
; };