-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #147 from mindrunner/develop
Big Cleanup / Maintenance
- Loading branch information
Showing
58 changed files
with
4,361 additions
and
5,885 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,64 +1,57 @@ | ||
{ | ||
"name": "@staratlas/factory", | ||
"version": "0.6.0", | ||
"description": "Star Atlas Factory for constructing Transactions targeting Solana on-chain programs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/staratlasmeta/factory.git" | ||
}, | ||
"author": "ATMTA, Inc.", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/staratlasmeta/factory/issues" | ||
}, | ||
"homepage": "https://github.com/staratlasmeta/factory#readme", | ||
"main": "dist/index.js", | ||
"source": "src/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run build", | ||
"lint": "eslint src --max-warnings=0", | ||
"lint:fix": "npm run lint -- --fix", | ||
"test": "jest --detectOpenHandles --no-cache --silent", | ||
"start": "tsc --watch", | ||
"docs": "npx typedoc --out docs src", | ||
"ts-node": "ts-node" | ||
}, | ||
"dependencies": { | ||
"@project-serum/anchor": "^0.24.2", | ||
"@saberhq/anchor-contrib": "^1.12.64", | ||
"@solana/spl-token": "^0.1.8", | ||
"@solana/web3.js": "^1.15.0", | ||
"@types/big.js": "^6.1.5", | ||
"big.js": "^6.2.1", | ||
"bn.js": "^5.1.3", | ||
"js-sha3": "^0.8.0", | ||
"mobx": "^6.3.13", | ||
"mobx-utils": "^6.0.5" | ||
}, | ||
"devDependencies": { | ||
"@types/big.js": "^6.1.5", | ||
"@types/bs58": "^4.0.1", | ||
"@types/jest": "^27.0.2", | ||
"@typescript-eslint/eslint-plugin": "^4.26.0", | ||
"@typescript-eslint/parser": "^4.26.0", | ||
"babel-eslint": "^10.1.0", | ||
"borsh": "^0.4.0", | ||
"bs58": "^4.0.1", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^7.27.0", | ||
"eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"jest": "^27.0.6", | ||
"prettier": "^2.7.1", | ||
"ts-jest": "^27.0.2", | ||
"typedoc": "^0.22.10", | ||
"typescript": "^4.3.2" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
"name": "@staratlas/factory", | ||
"version": "0.6.0", | ||
"description": "Star Atlas Factory for constructing Transactions targeting Solana on-chain programs", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/staratlasmeta/factory.git" | ||
}, | ||
"author": "ATMTA, Inc.", | ||
"license": "ISC", | ||
"bugs": { | ||
"url": "https://github.com/staratlasmeta/factory/issues" | ||
}, | ||
"homepage": "https://github.com/staratlasmeta/factory#readme", | ||
"main": "dist/index.js", | ||
"source": "src/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"clean": "rm -rf dist", | ||
"prepare": "npm run build", | ||
"lint": "eslint src --max-warnings=0", | ||
"lint:fix": "npm run lint -- --fix", | ||
"test": "jest --detectOpenHandles --no-cache --silent", | ||
"start": "tsc --watch", | ||
"docs": "npx typedoc --out docs src", | ||
"ts-node": "ts-node" | ||
}, | ||
"dependencies": { | ||
"@coral-xyz/anchor": "^0.29.0", | ||
"@solana/spl-token": "^0.4.1", | ||
"@solana/web3.js": "^1.91.1", | ||
"big.js": "^6.2.1", | ||
"lodash": "^4.17.21", | ||
"mobx": "^6.12.0", | ||
"mobx-utils": "^6.0.8" | ||
}, | ||
"devDependencies": { | ||
"@types/big.js": "^6.2.2", | ||
"@types/jest": "^29.5.12", | ||
"@types/bn.js": "^5.1.5", | ||
"@typescript-eslint/eslint-plugin": "^7.3.1", | ||
"@typescript-eslint/parser": "^7.3.1", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-import": "^2.29.1", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"jest": "^29.7.0", | ||
"prettier": "^3.2.5", | ||
"ts-jest": "^29.1.2", | ||
"typedoc": "^0.25.12", | ||
"typescript": "^5.4.2" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
} |
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
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
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
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
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
src/atlas-staking/instruction_builders/updateRewardMultiplier.ts
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
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.