Skip to content

Commit

Permalink
Fix error with yarn purr and updated yarn tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
nlipartiia-hacken committed Jul 21, 2022
1 parent a05650f commit dc7fc89
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"axios": "^0.27.2",
"chain-registry": "git+https://github.com/cosmos/chain-registry.git",
"cosmwasm": "^1.1.1",
"cw-croncat": "git+https://github.com/CronCats/cw-croncat.git#ft/proxy",
"cw-croncat": "git+https://github.com/CronCats/cw-croncat.git#714758611e6e8a76720a8f6d41a7f1818ca1fcab",
"cw-purrbox": "git+https://github.com/CronCats/cw-purrbox.git",
"dotenv": "^16.0.0"
}
Expand Down
10 changes: 5 additions & 5 deletions tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ async function main() {
// pub interval: Interval,
// pub boundary: Boundary,
// pub stop_on_fail: bool,
// pub action: CosmosMsg,
// pub actions: Vec<Action>,
// pub rules: Option<Vec<Rule>>,
// }
const tasks = [
Expand All @@ -82,7 +82,7 @@ async function main() {
end: null,
},
stop_on_fail: false,
action: sampleActions[1],
actions: [sampleActions[1]],
// TODO: setup a rules example too
rules: [],
},
Expand All @@ -92,7 +92,7 @@ async function main() {
},
boundary: { start: null, end: null, },
stop_on_fail: false,
action: sampleActions[2],
actions: [sampleActions[2]],
rules: [],
},

Expand All @@ -103,7 +103,7 @@ async function main() {
},
boundary: { start: null, end: null, },
stop_on_fail: false,
action: sampleActions[0],
actions: [sampleActions[0]],
// rules: [
// {
// contract_addr: iftttSimpleContract,
Expand All @@ -119,7 +119,7 @@ async function main() {
// },
// boundary: { start: null, end: null, },
// stop_on_fail: true,
// action: sampleActions[0],
// actions: [sampleActions[0]],
// rules: [
// {
// contract_addr: iftttSimpleContract,
Expand Down
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -448,9 +448,9 @@ cosmwasm@^1.1.1:
"@cosmjs/stargate" "^0.28.3"
"@cosmjs/utils" "^0.28.3"

"cw-croncat@git+https://github.com/CronCats/cw-croncat.git#ft/proxy":
"cw-croncat@git+https://github.com/CronCats/cw-croncat.git#714758611e6e8a76720a8f6d41a7f1818ca1fcab":
version "0.0.0"
resolved "git+https://github.com/CronCats/cw-croncat.git#9ab52cc9ae2930618251b531f874ec4842b1ed4f"
resolved "git+https://github.com/CronCats/cw-croncat.git#714758611e6e8a76720a8f6d41a7f1818ca1fcab"

"cw-purrbox@git+https://github.com/CronCats/cw-purrbox.git":
version "0.0.0"
Expand Down

0 comments on commit dc7fc89

Please sign in to comment.