Skip to content

Commit

Permalink
Merge pull request #129 from fleet-sdk/arobsn/i124
Browse files Browse the repository at this point in the history
Add transaction fetching
  • Loading branch information
arobsn authored Aug 8, 2024
2 parents 0690433 + 9cdf4dd commit c43de67
Show file tree
Hide file tree
Showing 16 changed files with 807 additions and 545 deletions.
5 changes: 5 additions & 0 deletions .changeset/four-eagles-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fleet-sdk/blockchain-providers": minor
---

Add custom `BigInt` mapping support
5 changes: 5 additions & 0 deletions .changeset/polite-fireants-reply.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@fleet-sdk/blockchain-providers": minor
---

Add transaction fetching
3 changes: 2 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"**/coverage/*",
"**/dist/*",
"**/node_modules/*",
"**/_test-vectors/mockedGraphQLBoxResponses.json",
"./packages/_test-vectors/mockedGraphQLBoxResponses.json",
"./packages/_test-vectors/mockedGraphQLTxResponse.json",
"**/package.json"
]
},
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@
"@fleet-sdk/common": "workspace:^",
"@fleet-sdk/crypto": "workspace:^",
"@types/diff": "^5.2.1",
"@vitest/coverage-v8": "^2.0.3",
"@vitest/coverage-v8": "^2.0.5",
"ergo-lib-wasm-nodejs": "^0.26.0",
"fast-check": "^3.20.0",
"happy-dom": "^14.12.3",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"sigmastate-js": "0.4.6",
"tsup": "^8.2.1",
"type-fest": "^4.22.1",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"tsup": "^8.2.4",
"type-fest": "^4.23.0",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.3"
"vitest": "^2.0.5"
},
"engines": {
"node": ">=18",
Expand Down
6 changes: 4 additions & 2 deletions packages/_test-vectors/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import _boxes from "./mockedGraphQLBoxResponses.json";
import _gqlBoxes from "./mockedGraphQLBoxResponses.json";
import _gqlTransactions from "./mockedGraphQLTxResponse.json";

export * from "./mockedBoxes";
export * from "./mockedTransactions";
export const mockedGraphQLBoxes = _boxes;
export const mockedGraphQLBoxes = _gqlBoxes;
export const mockedGraphQLTransactions = _gqlTransactions;
203 changes: 1 addition & 202 deletions packages/_test-vectors/mockedGraphQLBoxResponses.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions packages/_test-vectors/mockedGraphQLTxResponse.json

Large diffs are not rendered by default.

Loading

0 comments on commit c43de67

Please sign in to comment.