Skip to content

Commit

Permalink
CCQ: Query SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
bruce-riley committed Oct 4, 2023
1 parent 86a8f9f commit ed803a2
Show file tree
Hide file tree
Showing 19 changed files with 9,437 additions and 0 deletions.
23 changes: 23 additions & 0 deletions sdk/js-query/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build

# misc
.DS_Store
.env*

npm-debug.log*
yarn-debug.log*
yarn-error.log*

# build
/lib
12 changes: 12 additions & 0 deletions sdk/js-query/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
}
3 changes: 3 additions & 0 deletions sdk/js-query/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.0.1

Initial release
13 changes: 13 additions & 0 deletions sdk/js-query/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright 2023 Wormhole Project Contributors

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
1 change: 1 addition & 0 deletions sdk/js-query/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Wormhole cross-chain queries SDK
7 changes: 7 additions & 0 deletions sdk/js-query/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { Config } from "@jest/types";

const config: Config.InitialOptions = {
preset: "ts-jest",
testEnvironment: "node",
};
export default config;
Loading

0 comments on commit ed803a2

Please sign in to comment.