-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ff8005
commit a39f524
Showing
9 changed files
with
226 additions
and
182 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
{ | ||
"mode": "pre", | ||
"tag": "alpha", | ||
"changesets": [ | ||
"brown-points-smile", | ||
"hungry-squids-drop", | ||
"pink-horses-change", | ||
"sour-boxes-reflect", | ||
"tasty-bobcats-clean" | ||
], | ||
"initialVersions": { | ||
"@rabbitholegg/questdk-plugin-connext": "1.0.0-alpha.0", | ||
"eslint-config-custom": "0.0.0", | ||
"tsconfig": "0.0.0", | ||
"@rabbitholegg/questdk-plugin-uniswap": "1.0.0-alpha.0", | ||
"@rabbitholegg/questdk-plugin-registry": "1.0.0-alpha.0", | ||
"@rabbitholegg/questdk-plugin-project": "1.0.0-alpha.3" | ||
} | ||
} | ||
{ | ||
"mode": "pre", | ||
"tag": "alpha", | ||
"changesets": [ | ||
"brown-points-smile", | ||
"hungry-squids-drop", | ||
"pink-horses-change", | ||
"pink-moons-tickle", | ||
"quick-eyes-retire", | ||
"sour-boxes-reflect", | ||
"tasty-bobcats-clean", | ||
"twelve-kiwis-destroy" | ||
], | ||
"initialVersions": { | ||
"@rabbitholegg/questdk-plugin-connext": "1.0.0-alpha.0", | ||
"eslint-config-custom": "0.0.0", | ||
"tsconfig": "0.0.0", | ||
"@rabbitholegg/questdk-plugin-uniswap": "1.0.0-alpha.0", | ||
"@rabbitholegg/questdk-plugin-registry": "1.0.0-alpha.0", | ||
"@rabbitholegg/questdk-plugin-project": "1.0.0-alpha.3", | ||
"@rabbitholegg/questdk-plugin-arbitrum": "1.0.0-alpha.3", | ||
"@rabbitholegg/questdk-plugin-hop": "1.0.0-alpha.3", | ||
"@rabbitholegg/questdk-plugin-optimism": "1.0.0-alpha.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @rabbitholegg/questdk-plugin-arbitrum | ||
|
||
## 1.0.0-alpha.4 | ||
|
||
### Minor Changes | ||
|
||
- [#13](https://github.com/rabbitholegg/questdk-plugins/pull/13) [`82d1166`](https://github.com/rabbitholegg/questdk-plugins/commit/82d1166644c8728f903887f1417f72f4d1b1474d) Thanks [@Quazia](https://github.com/Quazia)! - Add support for bridging on Arbitrum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,50 +1,50 @@ | ||
{ | ||
"name": "@rabbitholegg/questdk-plugin-arbitrum", | ||
"version": "1.0.0-alpha.3", | ||
"type": "module", | ||
"exports": { | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/types/index.d.ts" | ||
}, | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"packageManager": "[email protected]", | ||
"description": "", | ||
"scripts": { | ||
"bench": "vitest bench", | ||
"bench:ci": "CI=true vitest bench", | ||
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types", | ||
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'", | ||
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"clean": "rimraf dist", | ||
"format": "rome format . --write", | ||
"lint": "rome check .", | ||
"lint:fix": "pnpm lint --apply", | ||
"preinstall": "npx only-allow pnpm", | ||
"test": "vitest dev", | ||
"test:cov": "vitest dev --coverage", | ||
"test:ci": "CI=true vitest --coverage", | ||
"test:ui": "vitest dev --ui" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"types": "./dist/types/index.d.ts", | ||
"typings": "./dist/types/index.d.ts", | ||
"devDependencies": { | ||
"@types/node": "20.4.5", | ||
"@vitest/coverage-v8": "0.33.0", | ||
"rimraf": "5.0.1", | ||
"rome": "12.1.3", | ||
"ts-node": "10.9.1", | ||
"tsconfig": "workspace:*", | ||
"typescript": "5.1.6", | ||
"vitest": "0.33.0" | ||
}, | ||
"dependencies": { | ||
"@rabbitholegg/questdk": "1.0.1-alpha.9", | ||
"viem": "1.2.15" | ||
} | ||
} | ||
{ | ||
"name": "@rabbitholegg/questdk-plugin-arbitrum", | ||
"version": "1.0.0-alpha.4", | ||
"type": "module", | ||
"exports": { | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/types/index.d.ts" | ||
}, | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"packageManager": "[email protected]", | ||
"description": "", | ||
"scripts": { | ||
"bench": "vitest bench", | ||
"bench:ci": "CI=true vitest bench", | ||
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types", | ||
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'", | ||
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"clean": "rimraf dist", | ||
"format": "rome format . --write", | ||
"lint": "rome check .", | ||
"lint:fix": "pnpm lint --apply", | ||
"preinstall": "npx only-allow pnpm", | ||
"test": "vitest dev", | ||
"test:cov": "vitest dev --coverage", | ||
"test:ci": "CI=true vitest --coverage", | ||
"test:ui": "vitest dev --ui" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"types": "./dist/types/index.d.ts", | ||
"typings": "./dist/types/index.d.ts", | ||
"devDependencies": { | ||
"@types/node": "20.4.5", | ||
"@vitest/coverage-v8": "0.33.0", | ||
"rimraf": "5.0.1", | ||
"rome": "12.1.3", | ||
"ts-node": "10.9.1", | ||
"tsconfig": "workspace:*", | ||
"typescript": "5.1.6", | ||
"vitest": "0.33.0" | ||
}, | ||
"dependencies": { | ||
"@rabbitholegg/questdk": "1.0.1-alpha.9", | ||
"viem": "1.2.15" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @rabbitholegg/questdk-plugin-hop | ||
|
||
## 1.0.0-alpha.4 | ||
|
||
### Minor Changes | ||
|
||
- [#20](https://github.com/rabbitholegg/questdk-plugins/pull/20) [`1ef051e`](https://github.com/rabbitholegg/questdk-plugins/commit/1ef051e7ab4fd2e1f58ebe2e543c79e856d3da99) Thanks [@Quazia](https://github.com/Quazia)! - Add bridge plugin for hop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
{ | ||
"name": "@rabbitholegg/questdk-plugin-hop", | ||
"private": true, | ||
"version": "1.0.0-alpha.3", | ||
"type": "module", | ||
"exports": { | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/types/index.d.ts" | ||
}, | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"packageManager": "[email protected]", | ||
"description": "", | ||
"scripts": { | ||
"bench": "vitest bench", | ||
"bench:ci": "CI=true vitest bench", | ||
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types", | ||
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'", | ||
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"clean": "rimraf dist", | ||
"format": "rome format . --write", | ||
"lint": "rome check .", | ||
"lint:fix": "pnpm lint --apply", | ||
"preinstall": "npx only-allow pnpm", | ||
"test": "vitest dev", | ||
"test:cov": "vitest dev --coverage", | ||
"test:ci": "CI=true vitest --coverage", | ||
"test:ui": "vitest dev --ui" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"types": "./dist/types/index.d.ts", | ||
"typings": "./dist/types/index.d.ts", | ||
"devDependencies": { | ||
"@types/node": "20.4.5", | ||
"@vitest/coverage-v8": "0.33.0", | ||
"rimraf": "5.0.1", | ||
"rome": "12.1.3", | ||
"ts-node": "10.9.1", | ||
"tsconfig": "workspace:*", | ||
"typescript": "5.1.6", | ||
"vitest": "0.33.0" | ||
}, | ||
"dependencies": { | ||
"@hop-protocol/core": "0.0.1-beta.182", | ||
"@hop-protocol/sdk": "0.0.1-beta.535", | ||
"@rabbitholegg/questdk": "1.0.1-alpha.9", | ||
"viem": "1.2.15" | ||
} | ||
} | ||
{ | ||
"name": "@rabbitholegg/questdk-plugin-hop", | ||
"private": true, | ||
"version": "1.0.0-alpha.4", | ||
"type": "module", | ||
"exports": { | ||
"require": "./dist/cjs/index.js", | ||
"import": "./dist/esm/index.js", | ||
"types": "./dist/types/index.d.ts" | ||
}, | ||
"main": "./dist/cjs/index.js", | ||
"module": "./dist/esm/index.js", | ||
"packageManager": "[email protected]", | ||
"description": "", | ||
"scripts": { | ||
"bench": "vitest bench", | ||
"bench:ci": "CI=true vitest bench", | ||
"build": "pnpm run clean && pnpm run build:cjs && pnpm run build:esm && pnpm run build:types", | ||
"build:cjs": "tsc --project tsconfig.build.json --module commonjs --outDir ./dist/cjs --removeComments --verbatimModuleSyntax false && echo > ./dist/cjs/package.json '{\"type\":\"commonjs\"}'", | ||
"build:esm": "tsc --project tsconfig.build.json --module es2015 --outDir ./dist/esm && echo > ./dist/esm/package.json '{\"type\":\"module\",\"sideEffects\":false}'", | ||
"build:types": "tsc --project tsconfig.build.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", | ||
"clean": "rimraf dist", | ||
"format": "rome format . --write", | ||
"lint": "rome check .", | ||
"lint:fix": "pnpm lint --apply", | ||
"preinstall": "npx only-allow pnpm", | ||
"test": "vitest dev", | ||
"test:cov": "vitest dev --coverage", | ||
"test:ci": "CI=true vitest --coverage", | ||
"test:ui": "vitest dev --ui" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "ISC", | ||
"types": "./dist/types/index.d.ts", | ||
"typings": "./dist/types/index.d.ts", | ||
"devDependencies": { | ||
"@types/node": "20.4.5", | ||
"@vitest/coverage-v8": "0.33.0", | ||
"rimraf": "5.0.1", | ||
"rome": "12.1.3", | ||
"ts-node": "10.9.1", | ||
"tsconfig": "workspace:*", | ||
"typescript": "5.1.6", | ||
"vitest": "0.33.0" | ||
}, | ||
"dependencies": { | ||
"@hop-protocol/core": "0.0.1-beta.182", | ||
"@hop-protocol/sdk": "0.0.1-beta.535", | ||
"@rabbitholegg/questdk": "1.0.1-alpha.9", | ||
"viem": "1.2.15" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @rabbitholegg/questdk-plugin-optimism | ||
|
||
## 1.0.0-alpha.4 | ||
|
||
### Minor Changes | ||
|
||
- [#17](https://github.com/rabbitholegg/questdk-plugins/pull/17) [`a39dff2`](https://github.com/rabbitholegg/questdk-plugins/commit/a39dff2fd2e2d02107a847e38ca3cc169c91e490) Thanks [@Quazia](https://github.com/Quazia)! - Add briding support for optimism |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.