UNPKG
@yubing744/rooch-sdk
Version:
latest (0.1.0)
0.1.0
Rooch SDK
github.com/rooch-network/rooch
rooch-network/rooch
@yubing744/rooch-sdk
/
dist
/
esm
/
auth
/
interface.d.ts
9 lines
(8 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Bytes
}
from
'../types'
;
export
interface
IAuthorization
{
scheme
:
number
;
payload
:
Bytes
; }
export
interface
IAuthorizer
{
auth
(
callData
:
Bytes
):
Promise
<
IAuthorization
>; }