Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added new contract examples & tests #24

Open
wants to merge 13 commits into
base: main
Choose a base branch
from

Conversation

Jovonni
Copy link

@Jovonni Jovonni commented Feb 20, 2025

added updated contract examples:

  • simple-state + tests
  • hello + tests
  • bank + tests
  • token-factory + tests

@Jovonni Jovonni added the enhancement New feature or request label Feb 20, 2025
@Jovonni Jovonni self-assigned this Feb 20, 2025
@Jovonni Jovonni marked this pull request as draft February 20, 2025 23:50
@Jovonni Jovonni force-pushed the dev/new-contract-examples branch from c77806b to 20eb2a6 Compare March 23, 2025 04:49
@Jovonni Jovonni changed the title [DRAFT] updated contract examples from spec added new contract examples & tests Mar 23, 2025
@Jovonni
Copy link
Author

Jovonni commented Mar 23, 2025

Starship tests results

starship tests now pass for hello, bank, and token-factory

hyperweb % yarn clean; yarn build; yarn test                                                                                                                            

  dist/contracts/hello.js      235b 
  dist/contracts/hello.js.map  516b 

⚡ Done in 6ms
Build completed successfully! Output: projects/create-hyperweb-app/templates/hyperweb/dist/contracts/hello.js

  dist/contracts/simple-state.js      694b 
  dist/contracts/simple-state.js.map  1.3kb

⚡ Done in 0ms
Build completed successfully! Output: projects/create-hyperweb-app/templates/hyperweb/dist/contracts/simple-state.js

  dist/contracts/bank.js      565b 
  dist/contracts/bank.js.map  1.2kb

⚡ Done in 1ms
Build completed successfully! Output: projects/create-hyperweb-app/templates/hyperweb/dist/contracts/bank.js

  dist/contracts/token-factory.js      1.1kb
  dist/contracts/token-factory.js.map  2.2kb

⚡ Done in 0ms
Build completed successfully! Output: projects/create-hyperweb-app/templates/hyperweb/dist/contracts/token-factory.js
 PASS  __tests__/setup.test.ts
  Test clients
    ✓ check chain height (4 ms)

  console.log
    contract creator address: hyper1y2ndq6mandlv93jl63aa2xujm0nq25tcha2m4f

      at Object.<anonymous> (__tests__/bank.test.ts:33:17)

  console.log
    Contract creator address: hyper1gq89x73sfy0j7pgjlqxmqkkwtestqjtvvp9vtc

      at Object.<anonymous> (__tests__/simple-state.test.ts:33:13)

  console.log
    Contract creator address: hyper1qyrhhkkuhjrplxfx5hu7guprvq84782m32czrh

      at Object.<anonymous> (__tests__/hello.test.ts:32:13)

  console.log
    contract creator address: hyper1v84cl7ulm5n0kzj27zm0sdwssx9es76z64u8rl

      at Object.<anonymous> (__tests__/token-factory.test.ts:34:17)

  console.log
    recipient address: hyper1gdhh0hn9rd8g6w6yf8y76xzs9973sqhncyp96p

      at Object.<anonymous> (__tests__/bank.test.ts:39:17)

  console.log
    contract instantiated at index: 118 and address hyper1m9hl7sr9rvkcxve9mxrysmkkn3xzfnzvra2hy5

      at Object.<anonymous> (__tests__/hello.test.ts:75:13)

  console.log
    Contract instantiated at index: 119 and address hyper1agnre8tmlulfzcklry2ck2ka8uxp67ng7kh6er

      at Object.<anonymous> (__tests__/simple-state.test.ts:80:13)

  console.log
    contract instantiated at index: 120 and address hyper1fy27sla2dnevljradhzgnrf9zzk732sczgum9a

      at Object.<anonymous> (__tests__/bank.test.ts:82:17)

  console.log
    contract instantiated at index: 121 and address hyper15aylqxjgmw2vqduelrg80fzmg2wqs3crjr34kp

      at Object.<anonymous> (__tests__/token-factory.test.ts:77:17)

 PASS  __tests__/hello.test.ts (20.224 s)
  Test clients
    ✓ check chain height (4 ms)
  Hello Contract Tests
    ✓ Check initial balance (18 ms)
    ✓ Instantiate hello contract (3259 ms)
    ✓ Invoke hello function (3234 ms)

  console.log
    created fullDenom: factory/hyper1v84cl7ulm5n0kzj27zm0sdwssx9es76z64u8rl/testdenom

      at Object.<anonymous> (__tests__/token-factory.test.ts:94:17)

 PASS  __tests__/simple-state.test.ts (23.637 s)
  Test clients
    ✓ check chain height (5 ms)
  State Contract Tests
    ✓ Check initial balance (11 ms)
    ✓ Instantiate state contract (3250 ms)
    ✓ Perform init function (3226 ms)
    ✓ Perform increment evaluation (3244 ms)

  console.log
    recipient balance: 1000

      at Object.<anonymous> (__tests__/bank.test.ts:130:17)

 PASS  __tests__/bank.test.ts (26.927 s)
  Test clients
    ✓ check chain height (4 ms)
  Bank Contract Tests
    ✓ Check initial balance (13 ms)
    ✓ Instantiate Bank contract (3231 ms)
    ✓ Call balance function (3212 ms)
    ✓ Transfer funds to another address and check balance (6455 ms)

 PASS  __tests__/token-factory.test.ts (26.938 s)
  Test clients
    ✓ check chain height (4 ms)
  Token Factory Contract Tests
    ✓ Check initial balance (13 ms)
    ✓ Instantiate Token Factory contract (3236 ms)
    ✓ Create new denom (3223 ms)
    ✓ Mint tokens using fullDenom (3221 ms)
    ✓ Check balance of minted tokens (3235 ms)

Test Suites: 5 passed, 5 total
Tests:       21 passed, 21 total
Snapshots:   0 total
Time:        27.061 s, estimated 28 s
Ran all test suites.

@Jovonni Jovonni marked this pull request as ready for review March 23, 2025 04:57
@Jovonni Jovonni requested review from Anmol1696 and marslavish and removed request for pyramation, yyyyaaa and marslavish March 23, 2025 04:57
@Anmol1696
Copy link
Contributor

We need to also commit dist/<contract-names>. Can you please run: yarn run build, this will create the dist files that we can commit.

Copy link
Contributor

@Anmol1696 Anmol1696 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
contracts enhancement New feature or request tests
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants