@masa-finance/masa-cli
Advanced tools
Comparing version 2.26.0 to 2.27.0
{ | ||
"name": "@masa-finance/masa-cli", | ||
"version": "2.26.0", | ||
"version": "2.27.0", | ||
"description": "The Masa CLI", | ||
@@ -20,3 +20,3 @@ "main": "./dist/src/index.js", | ||
"@masa-finance/masa-contracts-oracle": "^0.3.2", | ||
"@masa-finance/masa-sdk": "^3.37.0", | ||
"@masa-finance/masa-sdk": "^3.38.0", | ||
"@types/clear": "^0.1.4", | ||
@@ -33,3 +33,3 @@ "@types/figlet": "^1.5.8", | ||
"devDependencies": { | ||
"@types/node": "^20.12.9", | ||
"@types/node": "^20.12.10", | ||
"@typescript-eslint/eslint-plugin": "^7.8.0", | ||
@@ -36,0 +36,0 @@ "@typescript-eslint/parser": "^7.8.0", |
@@ -429,9 +429,13 @@ "use strict"; | ||
staking | ||
.command("unstake") | ||
.argument("<position>", "Index to unstake") | ||
.action((position) => (0, commands_1.tokenStakingUnstake)(position)); | ||
.command("unlock") | ||
.argument("<position>", "Index to unlock") | ||
.action((position) => (0, commands_1.tokenStakingUnlock)(position)); | ||
staking | ||
.command("show") | ||
.option("-a, --address", "Address to show") | ||
.action(({ address }) => (0, commands_1.tokenStakingShow)(address)); | ||
.command("claim") | ||
.argument("<position>", "Index to claim") | ||
.action((position) => (0, commands_1.tokenStakingClaim)(position)); | ||
staking | ||
.command("list") | ||
.option("-a, --address", "Address to list") | ||
.action(({ address }) => (0, commands_1.tokenStakingList)(address)); | ||
staking.command("info").action(() => (0, commands_1.tokenStakingInfo)()); | ||
@@ -438,0 +442,0 @@ } |
@@ -7,4 +7,5 @@ export { send as tokenBridgeSend } from "./bridge/send"; | ||
export { stake as tokenStakingStake } from "./staking/stake"; | ||
export { unstake as tokenStakingUnstake } from "./staking/unstake"; | ||
export { show as tokenStakingShow } from "./staking/show"; | ||
export { unlock as tokenStakingUnlock } from "./staking/unlock"; | ||
export { claim as tokenStakingClaim } from "./staking/claim"; | ||
export { list as tokenStakingList } from "./staking/list"; | ||
export { info as tokenStakingInfo } from "./staking/info"; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.tokenStakingInfo = exports.tokenStakingShow = exports.tokenStakingUnstake = exports.tokenStakingStake = exports.tokenGovernanceTimelock = exports.tokenGovernanceMesh = exports.tokenWrapWithdraw = exports.tokenWrapDeposit = exports.tokenBridgeSend = void 0; | ||
exports.tokenStakingInfo = exports.tokenStakingList = exports.tokenStakingClaim = exports.tokenStakingUnlock = exports.tokenStakingStake = exports.tokenGovernanceTimelock = exports.tokenGovernanceMesh = exports.tokenWrapWithdraw = exports.tokenWrapDeposit = exports.tokenBridgeSend = void 0; | ||
var send_1 = require("./bridge/send"); | ||
@@ -16,7 +16,9 @@ Object.defineProperty(exports, "tokenBridgeSend", { enumerable: true, get: function () { return send_1.send; } }); | ||
Object.defineProperty(exports, "tokenStakingStake", { enumerable: true, get: function () { return stake_1.stake; } }); | ||
var unstake_1 = require("./staking/unstake"); | ||
Object.defineProperty(exports, "tokenStakingUnstake", { enumerable: true, get: function () { return unstake_1.unstake; } }); | ||
var show_1 = require("./staking/show"); | ||
Object.defineProperty(exports, "tokenStakingShow", { enumerable: true, get: function () { return show_1.show; } }); | ||
var unlock_1 = require("./staking/unlock"); | ||
Object.defineProperty(exports, "tokenStakingUnlock", { enumerable: true, get: function () { return unlock_1.unlock; } }); | ||
var claim_1 = require("./staking/claim"); | ||
Object.defineProperty(exports, "tokenStakingClaim", { enumerable: true, get: function () { return claim_1.claim; } }); | ||
var list_1 = require("./staking/list"); | ||
Object.defineProperty(exports, "tokenStakingList", { enumerable: true, get: function () { return list_1.list; } }); | ||
var info_1 = require("./staking/info"); | ||
Object.defineProperty(exports, "tokenStakingInfo", { enumerable: true, get: function () { return info_1.info; } }); |
{ | ||
"name": "@masa-finance/masa-cli", | ||
"version": "2.26.0", | ||
"version": "2.27.0", | ||
"description": "The Masa CLI", | ||
@@ -20,3 +20,3 @@ "main": "./dist/src/index.js", | ||
"@masa-finance/masa-contracts-oracle": "^0.3.2", | ||
"@masa-finance/masa-sdk": "^3.37.0", | ||
"@masa-finance/masa-sdk": "^3.38.0", | ||
"@types/clear": "^0.1.4", | ||
@@ -33,3 +33,3 @@ "@types/figlet": "^1.5.8", | ||
"devDependencies": { | ||
"@types/node": "^20.12.9", | ||
"@types/node": "^20.12.10", | ||
"@typescript-eslint/eslint-plugin": "^7.8.0", | ||
@@ -36,0 +36,0 @@ "@typescript-eslint/parser": "^7.8.0", |
@@ -89,4 +89,6 @@ # Masa CLI | ||
- [`masa token staking stake <amount> <duration>`](#masa-token-staking-stake-amount-duration) | ||
- [`masa token staking unstake <position>`](#masa-token-staking-unstake-position) | ||
- [`masa token staking show`](#masa-token-staking-show) | ||
- [`masa token staking unlock <position>`](#masa-token-staking-unlock-position) | ||
- [`masa token staking claim <position>`](#masa-token-staking-claim-position) | ||
- [`masa token staking list`](#masa-token-staking-list) | ||
- [`masa token staking info`](#masa-token-staking-info) | ||
- [`masa settings`](#masa-settings) | ||
@@ -200,4 +202,6 @@ - [`masa settings set <key> <value>`](#masa-settings-set-key-value) | ||
token staking stake <amount> <duration> | ||
token staking unstake <index> | ||
token staking show [options] | ||
token staking unlock <position> | ||
token staking claim <position> | ||
token staking list [options] | ||
token staking info | ||
settings Set config settings | ||
@@ -718,13 +722,19 @@ settings set <key> <value> Changes setting <key> to <value> | ||
##### `masa token staking unstake <position>` | ||
##### `masa token staking unlock <position>` | ||
- `<position> Index to unstake` | ||
- `<position> Index to unlock` | ||
##### `masa token staking show` | ||
##### `masa token staking claim <position>` | ||
- `<position> Index to claim` | ||
##### `masa token staking list` | ||
Options: | ||
- `-a, --address` | ||
Address to show | ||
Address to list | ||
##### `masa token staking info` | ||
### `masa settings` | ||
@@ -731,0 +741,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
249030
178
2937
784
+ Addedaxios@1.7.8(transitive)
- Removedaxios@1.7.7(transitive)