Skip to content

Commit 1a0c567

Browse files
authored
Merge pull request #169 from gnoswap-labs/GSW-863-feat-deploy-without-testcase
GSW-863 feat: deploy without testcase
2 parents 3da3a6b + e260777 commit 1a0c567

31 files changed

+441
-629
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.DS_Store
22
.ipynb_checkpoints
3-
signed*
3+
signed*
4+
_upload

_setup/fred/fred.gno

Lines changed: 0 additions & 121 deletions
This file was deleted.

_setup/fred/gno.mod

Lines changed: 0 additions & 7 deletions
This file was deleted.

_setup/gns/gns.gno

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ const (
2020
)
2121

2222
func init() {
23-
// r3v4_xxx: SET MAXIMUM SUPLLY
23+
// r3v4_xxx: SET MAXIMUM SUPPLY
2424

2525
gns = grc20.NewAdminToken("Gnoswap", "GNS", 6)
26-
// gns.Mint(admin, 100_000_000_000_000) // @administrator
26+
// gns.Mint(admin, 100_000_000_000_000) // @administrator
2727
gns.Mint(INTERNAL_REWARD_ACCOUNT, 400_000_000_000_000) // @INTERNAL_REWARD_ACCOUNT
2828
gns.Mint(std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5"), 100_000_000_000) // default test1
2929

_setup/grc20_wrapper_init/gno.mod renamed to _setup/grc20_wrapper/gno.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,12 @@ require (
44
gno.land/r/demo/bar v0.0.0-latest
55
gno.land/r/demo/baz v0.0.0-latest
66
gno.land/r/demo/foo v0.0.0-latest
7-
gno.land/r/demo/fred v0.0.0-latest
87
gno.land/r/demo/gns v0.0.0-latest
98
gno.land/r/demo/obl v0.0.0-latest
109
gno.land/r/demo/pool v0.0.0-latest
1110
gno.land/r/demo/qux v0.0.0-latest
1211
gno.land/r/demo/router v0.0.0-latest
1312
gno.land/r/demo/staker v0.0.0-latest
14-
gno.land/r/demo/thud v0.0.0-latest
1513
gno.land/r/demo/users v0.0.0-latest
1614
gno.land/r/demo/wugnot v0.0.0-latest
1715
)

_setup/grc20_wrapper_init/grc20wrapper.gno renamed to _setup/grc20_wrapper/grc20wrapper.gno

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,7 @@ func init() {
3131
rRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
3232
sRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
3333

34-
pRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})
35-
rRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})
36-
sRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})
37-
3834
pRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})
3935
rRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})
4036
sRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})
41-
42-
pRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
43-
rRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
44-
sRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
4537
}

_setup/grc20_wrapper_init/wrapper_fred.gno

Lines changed: 0 additions & 33 deletions
This file was deleted.

_setup/grc20_wrapper_init/wrapper_thud.gno

Lines changed: 0 additions & 33 deletions
This file was deleted.

_setup/thud/gno.mod

Lines changed: 0 additions & 7 deletions
This file was deleted.

_setup/thud/thud.gno

Lines changed: 0 additions & 121 deletions
This file was deleted.

0 commit comments

Comments
 (0)