UNPKG
@particle-network/auth-core-modal
Version:
latest (1.5.2)
1.5.2
1.5.2-alpha.2
1.5.2-alpha.1
1.5.2-alpha.0
1.5.1
1.5.0
1.4.9
1.4.8
1.4.7
1.4.6
1.4.5
1.4.5-alpha.0
1.4.4
1.4.3
1.4.2
1.4.1
1.4.0
1.3.9
1.3.8
1.3.7
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.0.0
1.0.0-alpha.9
1.0.0-alpha.7
1.0.0-alpha.6
1.0.0-alpha.5
1.0.0-alpha.4
1.0.0-alpha.3
1.0.0-alpha.2
1.0.0-alpha.1
1.0.0-alpha.0
Auth Core provides MPC (Multi-Party Computation)-based threshold signatures.
particle.network
@particle-network/auth-core-modal
/
dist
/
api
/
getPublicAddress.d.ts
9 lines
(8 loc)
•
293 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
EvmRpcMethod
,
type
ERC4337Options
}
from
'@particle-network/auth-core'
;
type
Options
= {
chainId
?:
number
;
method
?:
EvmRpcMethod
;
erc4337
?:
ERC4337Options
; };
export
declare
const
getEVMPublicAddress
:
(
{ chainId, erc4337, method }:
Options
) =>
Promise
<
string
>;
export
{};