Skip to content
Closed
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
3cd6a54
3 cli setup testing framework (#35)
cristiam86 Jul 3, 2024
ab3b32b
33 cli add a warning at init to say that the config is going to be ov…
cristiam86 Jul 3, 2024
b77fec8
37 cli run simulator on certain branch (#39)
cristiam86 Jul 3, 2024
ddb0714
41 cli add beta releases for staging branch (#42)
cristiam86 Jul 3, 2024
26302e4
Release v0.0.32-beta.0 [skip ci]
Jul 3, 2024
60d6da3
43 cli fix missing endpoints and simulator response (#44)
cristiam86 Jul 3, 2024
6a2d6ab
Release v0.0.32-beta.1 [skip ci]
Jul 3, 2024
586ffa8
43 cli fix missing endpoints and simulator response (#45)
cristiam86 Jul 3, 2024
59a9fc6
Release v0.0.32-beta.2 [skip ci]
Jul 3, 2024
0e96ecd
46 cli add node and docker version (#47)
denishacquin Jul 26, 2024
8f0a798
Release v0.0.32-beta.3 [skip ci]
Jul 26, 2024
da8a16f
chore(deps): update dependency eslint to v9
renovate[bot] Oct 25, 2024
9a2befb
chore(deps): update tibdex/github-app-token action to v2
renovate[bot] Nov 6, 2024
fd4883e
chore(deps): update actions/setup-node action to v4
renovate[bot] Jan 9, 2025
a461688
chore(deps): update dependency esbuild to ^0.25.0 [security]
renovate[bot] Feb 12, 2025
39ec17b
feat: new log and spinner class
epsjunior Feb 14, 2025
134df7f
feat: adding spinner to keygen command
epsjunior Feb 14, 2025
25967f9
feat: adding spinner and logs to command config
epsjunior Feb 14, 2025
0c9f777
feat: new up command(class)
epsjunior Feb 17, 2025
5544edb
feat: refac init, base action and unit tests
epsjunior Feb 20, 2025
5c454bd
merging
epsjunior Feb 20, 2025
07d1f86
fix: merging commit
epsjunior Feb 20, 2025
df6c846
chore(deps): update dependency @release-it/conventional-changelog to v10
renovate[bot] Feb 20, 2025
e461692
chore(deps): update dependency eslint-config-prettier to v10
renovate[bot] Feb 20, 2025
c0ebac0
fix(deps): update dependency inquirer to v12
renovate[bot] Feb 20, 2025
753158f
chore(deps): update dependency jsdom to v26
renovate[bot] Feb 20, 2025
ac0ab0e
chore(deps): update dependency release-it to v18
renovate[bot] Feb 20, 2025
69416b5
fix(deps): update all non-major dependencies
renovate[bot] Feb 21, 2025
eddef2b
Merge branch 'renovate/actions-setup-node-4.x'
epsjunior Feb 21, 2025
8ae848b
Merge branch 'renovate/major-eslint-monorepo'
epsjunior Feb 21, 2025
4faf084
Merge branch 'renovate/tibdex-github-app-token-2.x'
epsjunior Feb 21, 2025
77d0e2b
Merge branch 'renovate/inquirer-12.x'
epsjunior Feb 21, 2025
914a989
Merge branch 'renovate/all-minor-patch'
epsjunior Feb 21, 2025
fa6cc67
fix: merging
epsjunior Feb 21, 2025
26cd6c1
Merge branch 'renovate/release-it-conventional-changelog-10.x'
epsjunior Feb 21, 2025
f65690d
fix: merging conflicts
epsjunior Feb 21, 2025
02467b1
Merge branch 'renovate/jsdom-26.x'
epsjunior Feb 21, 2025
9af428d
Merge branch 'renovate/release-it-18.x'
epsjunior Feb 21, 2025
c293bef
fix: updating packages and fixing breaking changes
epsjunior Feb 21, 2025
1c05553
fix: merging conflicts
epsjunior Feb 24, 2025
189dc35
fix: package json
epsjunior Feb 24, 2025
ac3cfa3
fix: merging conflicts
epsjunior Feb 24, 2025
9b115e1
fix: package lock
epsjunior Feb 24, 2025
157c74a
chore: ollama hint message
epsjunior Feb 24, 2025
257f3b2
feat: new deploy script command
epsjunior Feb 27, 2025
554f959
tests: including new tests
epsjunior Feb 27, 2025
84d8aa0
fix: esbuild version
epsjunior Feb 27, 2025
14a1195
fix: esbuild prod
epsjunior Feb 28, 2025
57cbc21
fix: conflicts and merge
epsjunior Mar 6, 2025
762bc3e
fix: new package lock
epsjunior Mar 6, 2025
8d7f045
Merge branch 'main' into 193-implement-deploy-scripts-command
cristiam86 Apr 16, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/commands/contracts/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ export class DeployAction extends BaseAction {
this.setSpinnerText("Starting contract deployment...");
this.log("Deployment Parameters:", deployParams);


const hash = (await this.genlayerClient.deployContract(deployParams)) as any;
const result = await this.genlayerClient.waitForTransactionReceipt({
hash,
Expand All @@ -143,6 +144,7 @@ export class DeployAction extends BaseAction {

this.log("Deployment Receipt:", result);


this.succeedSpinner("Contract deployed successfully.", {
"Transaction Hash": hash,
"Contract Address": result.data?.contract_address,
Expand Down