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

GSW-863 feat: deploy without testcase #169

Merged
merged 5 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.DS_Store
.ipynb_checkpoints
signed*
signed*
_upload
121 changes: 0 additions & 121 deletions _setup/fred/fred.gno

This file was deleted.

7 changes: 0 additions & 7 deletions _setup/fred/gno.mod

This file was deleted.

4 changes: 2 additions & 2 deletions _setup/gns/gns.gno
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ const (
)

func init() {
// r3v4_xxx: SET MAXIMUM SUPLLY
// r3v4_xxx: SET MAXIMUM SUPPLY

gns = grc20.NewAdminToken("Gnoswap", "GNS", 6)
// gns.Mint(admin, 100_000_000_000_000) // @administrator
// gns.Mint(admin, 100_000_000_000_000) // @administrator
gns.Mint(INTERNAL_REWARD_ACCOUNT, 400_000_000_000_000) // @INTERNAL_REWARD_ACCOUNT
gns.Mint(std.Address("g1jg8mtutu9khhfwc4nxmuhcpftf0pajdhfvsqf5"), 100_000_000_000) // default test1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,12 @@ require (
gno.land/r/demo/bar v0.0.0-latest
gno.land/r/demo/baz v0.0.0-latest
gno.land/r/demo/foo v0.0.0-latest
gno.land/r/demo/fred v0.0.0-latest
gno.land/r/demo/gns v0.0.0-latest
gno.land/r/demo/obl v0.0.0-latest
gno.land/r/demo/pool v0.0.0-latest
gno.land/r/demo/qux v0.0.0-latest
gno.land/r/demo/router v0.0.0-latest
gno.land/r/demo/staker v0.0.0-latest
gno.land/r/demo/thud v0.0.0-latest
gno.land/r/demo/users v0.0.0-latest
gno.land/r/demo/wugnot v0.0.0-latest
)
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,7 @@ func init() {
rRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
sRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})

pRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})
rRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})
sRegistry.RegisterGRC20Interface("gno.land/r/demo/fred", FredTokenInterface{})

pRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})
rRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})
sRegistry.RegisterGRC20Interface("gno.land/r/demo/obl", OblTokenInterface{})

pRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
rRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
sRegistry.RegisterGRC20Interface("gno.land/r/demo/thud", ThudTokenInterface{})
}
33 changes: 0 additions & 33 deletions _setup/grc20_wrapper_init/wrapper_fred.gno

This file was deleted.

33 changes: 0 additions & 33 deletions _setup/grc20_wrapper_init/wrapper_thud.gno

This file was deleted.

7 changes: 0 additions & 7 deletions _setup/thud/gno.mod

This file was deleted.

121 changes: 0 additions & 121 deletions _setup/thud/thud.gno

This file was deleted.

Loading