Skip to content

Commit a39e753

Browse files
feat: simplify the starter example (#26)
* feat: remove access modifier from starter hello world contract * feat: remove some unnecessary config files from the starter template --------- Co-authored-by: Neil Campbell <neil.campbell@makerx.com.au>
1 parent c7b0972 commit a39e753

15 files changed

+26
-45
lines changed

examples/production/smart_contracts/hello_world/contract.algo.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import { Contract } from '@algorandfoundation/algorand-typescript'
22

33
export class HelloWorld extends Contract {
44
public hello(name: string): string {
5-
return `${this.getHello()} ${name}`
6-
}
7-
8-
private getHello() {
9-
return 'Hello'
5+
return `Hello, ${name}`
106
}
117
}

examples/production/smart_contracts/hello_world/contract.e2e.spec.ts

+8-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@ describe('HelloWorld contract', () => {
1414
})
1515
registerDebugEventHandlers()
1616
})
17-
beforeEach(localnet.beforeEach)
17+
beforeEach(localnet.newScope)
1818

1919
const deploy = async (account: Address) => {
2020
const factory = localnet.algorand.client.getTypedAppFactory(HelloWorldFactory, {
2121
defaultSender: account,
2222
})
2323

24-
const { appClient } = await factory.deploy({ onUpdate: 'append', onSchemaBreak: 'append' })
24+
const { appClient } = await factory.deploy({
25+
onUpdate: 'append',
26+
onSchemaBreak: 'append',
27+
})
2528
return { client: appClient }
2629
}
2730

@@ -31,7 +34,7 @@ describe('HelloWorld contract', () => {
3134

3235
const result = await client.send.hello({ args: { name: 'World' } })
3336

34-
expect(result.return).toBe('Hello World')
37+
expect(result.return).toBe('Hello, World')
3538
})
3639

3740
test('simulate says hello with correct budget consumed', async () => {
@@ -43,8 +46,8 @@ describe('HelloWorld contract', () => {
4346
.hello({ args: { name: 'Jane' } })
4447
.simulate()
4548

46-
expect(result.returns[0]).toBe('Hello World')
47-
expect(result.returns[1]).toBe('Hello Jane')
49+
expect(result.returns[0]).toBe('Hello, World')
50+
expect(result.returns[1]).toBe('Hello, Jane')
4851
expect(result.simulateResponse.txnGroups[0].appBudgetConsumed).toBeLessThan(100)
4952
})
5053
})

examples/production/smart_contracts/hello_world/contract.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ describe('HelloWorld contract', () => {
99

1010
const result = contract.hello('Sally')
1111

12-
expect(result).toBe('Hello Sally')
12+
expect(result).toBe('Hello, Sally')
1313
})
1414
})
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { Contract } from '@algorandfoundation/algorand-typescript'
22

33
export class HelloWorld extends Contract {
4-
public hello(name: string): string {
5-
return `${this.getHello()} ${name}`
6-
}
7-
8-
private getHello() {
9-
return 'Hello'
4+
hello(name: string): string {
5+
return `Hello, ${name}`
106
}
117
}
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { Contract } from '@algorandfoundation/algorand-typescript'
22

33
export class {{ contract_name.split('_')|map('capitalize')|join }} extends Contract {
4-
public hello(name: string): string {
5-
return `${this.getHello()} ${name}`
6-
}
7-
8-
private getHello() {
9-
return 'Hello'
4+
{% if preset_name != 'starter' %}public {% endif %}hello(name: string): string {
5+
return `Hello, ${name}`
106
}
117
}

template_content/.algokit/generators/create_contract/smart_contracts/{% raw %}{{ contract_name }}{% endraw %}/{% raw %}{% if include_tests %}contract.e2e.spec.ts{% endif %}.j2{% endraw %}

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('{{ contract_name.split('_')|map('capitalize')|join }} contract', () =>
1212
// traceAll: true,
1313
})
1414
})
15-
beforeEach(localnet.beforeEach)
15+
beforeEach(localnet.newScope)
1616

1717
const deploy = async (account: Address) => {
1818
const factory = localnet.algorand.client.getTypedAppFactory({{ contract_name.split('_')|map('capitalize')|join }}Factory, {

template_content/.editorconfig

-7
This file was deleted.

template_content/.npmrc

-1
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
import { Contract } from '@algorandfoundation/algorand-typescript'
22

33
export class {{ contract_name.split('_')|map('capitalize')|join }} extends Contract {
4-
public hello(name: string): string {
5-
return `${this.getHello()} ${name}`
6-
}
7-
8-
private getHello() {
9-
return 'Hello'
4+
{% if preset_name != 'starter' %}public {% endif %}hello(name: string): string {
5+
return `Hello, ${name}`
106
}
117
}

template_content/smart_contracts/{{ contract_name }}/{% if use_vitest %}contract.e2e.spec.ts{% endif %}.jinja

+8-5
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,17 @@ describe('{{ contract_name.split('_')|map('capitalize')|join }} contract', () =>
1414
})
1515
registerDebugEventHandlers()
1616
})
17-
beforeEach(localnet.beforeEach)
17+
beforeEach(localnet.newScope)
1818

1919
const deploy = async (account: Address) => {
2020
const factory = localnet.algorand.client.getTypedAppFactory({{ contract_name.split('_')|map('capitalize')|join }}Factory, {
2121
defaultSender: account,
2222
})
2323

24-
const { appClient } = await factory.deploy({ onUpdate: 'append', onSchemaBreak: 'append' })
24+
const { appClient } = await factory.deploy({
25+
onUpdate: 'append',
26+
onSchemaBreak: 'append',
27+
})
2528
return { client: appClient }
2629
}
2730

@@ -31,7 +34,7 @@ describe('{{ contract_name.split('_')|map('capitalize')|join }} contract', () =>
3134

3235
const result = await client.send.hello({ args: { name: 'World' } })
3336

34-
expect(result.return).toBe('Hello World')
37+
expect(result.return).toBe('Hello, World')
3538
})
3639

3740
test('simulate says hello with correct budget consumed', async () => {
@@ -43,8 +46,8 @@ describe('{{ contract_name.split('_')|map('capitalize')|join }} contract', () =>
4346
.hello({ args: { name: 'Jane' } })
4447
.simulate()
4548

46-
expect(result.returns[0]).toBe('Hello World')
47-
expect(result.returns[1]).toBe('Hello Jane')
49+
expect(result.returns[0]).toBe('Hello, World')
50+
expect(result.returns[1]).toBe('Hello, Jane')
4851
expect(result.simulateResponse.txnGroups[0].appBudgetConsumed).toBeLessThan(100)
4952
})
5053
})

template_content/smart_contracts/{{ contract_name }}/{% if use_vitest %}contract.spec.ts{% endif %}.jinja

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ describe('{{ contract_name.split('_')|map('capitalize')|join }} contract', () =>
99

1010
const result = contract.hello('Sally')
1111

12-
expect(result).toBe('Hello Sally')
12+
expect(result).toBe('Hello, Sally')
1313
})
1414
})

template_content/{% if not use_workspace %}.gitattributes{% endif %}

-1
This file was deleted.

0 commit comments

Comments
 (0)