UNPKG
@goat-sdk/plugin-opensea
Version:
latest (0.1.6)
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
<div align="center"> <a href="https://github.com/goat-sdk/goat">
ohmygoat.dev
goat-sdk/goat
@goat-sdk/plugin-opensea
/
dist
/
opensea.plugin.d.ts
10 lines
(7 loc)
•
258 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
PluginBase
}
from
'@goat-sdk/core'
;
declare
class
OpenseaPlugin
extends
PluginBase
{
constructor
(
apiKey
:
string
);
supportsChain
:
() =>
boolean
; }
declare
const
opensea
:
(
apiKey
:
string
) =>
OpenseaPlugin
;
export
{
OpenseaPlugin
, opensea };