├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json ├── src ├── abis.ts ├── main.ts ├── types.ts └── utils.ts ├── typescript.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/package.json -------------------------------------------------------------------------------- /src/abis.ts: -------------------------------------------------------------------------------- 1 | export const SPOT_ABIS = [ 2 | 3 | ] -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/src/utils.ts -------------------------------------------------------------------------------- /typescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/typescript.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sea-protocol/sdk/HEAD/yarn.lock --------------------------------------------------------------------------------