Skip to content

Commit 0785cc2

Browse files
authored
Merge pull request #122 from gnoswap-labs/GSW-669-change-prefix-realm-path-gno-land-r-demo
GSW-669 chore: change prefix realm path to `gno.land/r/demo`
2 parents 4932209 + 045185d commit 0785cc2

File tree

101 files changed

+763
-1065
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+763
-1065
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ To run unit tests, follow these steps:
4747
### Run the Test Cases
4848

4949
```
50-
$ gno test -root-dir $WORKDIR/gno-for-swap -verbose=true $WORKDIR/gno-for-swap/examples/gno.land/r/staker
50+
$ gno test -root-dir $WORKDIR/gno-for-swap -verbose=true $WORKDIR/gno-for-swap/examples/gno.land/r/demo/staker
5151
```
5252

5353
## Integration Tests

_setup/bar/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/bar
1+
module gno.land/r/demo/bar

_setup/baz/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/baz
1+
module gno.land/r/demo/baz

_setup/foo/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/foo
1+
module gno.land/r/demo/foo

_setup/gnft/gnft.gno

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ import (
1010

1111
var (
1212
// position deployed
13-
// std.DerivePkgAddr("gno.land/r/position")
14-
admin std.Address = "g1htpxzv2dkplvzg50nd8fswrneaxmdpwn459thx"
13+
// std.DerivePkgAddr("gno.land/r/demo/position")
14+
admin std.Address = "g10wwa53xgu4397kvzz7akxar9370zjdpwux5th9"
1515
nft = grc721.NewBasicNFT("GNOSWAP NFT", "GNFT")
1616
)
1717

_setup/gnft/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/gnft
1+
module gno.land/r/demo/gnft

_setup/gns/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/gns
1+
module gno.land/r/demo/gns

_setup/gns/gns.gno

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func init() {
1919
gns = grc20.NewAdminToken("Gnoswap", "GNS", 6)
2020
gns.Mint(admin, 500_000_000_000_000) // @administrator (1M)
2121

22-
stakerAddr := std.DerivePkgAddr("gno.land/r/staker")
22+
stakerAddr := std.DerivePkgAddr("gno.land/r/demo/staker")
2323
admins = append(admins, string(stakerAddr))
2424
admins = append(admins, string(admin))
2525
}

_setup/grc20_wrapper/gno.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module gno.land/r/grc20_wrapper
1+
module gno.land/r/demo/grc20_wrapper

_setup/grc20_wrapper/grc20wrapper.gno

Lines changed: 78 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,85 @@
11
package grc20wrapper
22

33
import (
4-
pRegistry "gno.land/r/pool"
5-
rRegistry "gno.land/r/router"
6-
sRegistry "gno.land/r/staker"
4+
pRegistry "gno.land/r/demo/pool"
5+
rRegistry "gno.land/r/demo/router"
6+
sRegistry "gno.land/r/demo/staker"
77
)
88

99
func init() {
10-
pRegistry.RegisterGRC20Interface("gno.land/r/wugnot", WugnotTokenInterface{})
11-
rRegistry.RegisterGRC20Interface("gno.land/r/wugnot", WugnotTokenInterface{})
12-
sRegistry.RegisterGRC20Interface("gno.land/r/wugnot", WugnotTokenInterface{})
13-
14-
pRegistry.RegisterGRC20Interface("gno.land/r/bar", BarTokenInterface{})
15-
rRegistry.RegisterGRC20Interface("gno.land/r/bar", BarTokenInterface{})
16-
sRegistry.RegisterGRC20Interface("gno.land/r/bar", BarTokenInterface{})
17-
18-
pRegistry.RegisterGRC20Interface("gno.land/r/baz", BazTokenInterface{})
19-
rRegistry.RegisterGRC20Interface("gno.land/r/baz", BazTokenInterface{})
20-
sRegistry.RegisterGRC20Interface("gno.land/r/baz", BazTokenInterface{})
21-
22-
pRegistry.RegisterGRC20Interface("gno.land/r/foo", FooTokenInterface{})
23-
rRegistry.RegisterGRC20Interface("gno.land/r/foo", FooTokenInterface{})
24-
sRegistry.RegisterGRC20Interface("gno.land/r/foo", FooTokenInterface{})
25-
26-
pRegistry.RegisterGRC20Interface("gno.land/r/gns", GnsTokenInterface{})
27-
rRegistry.RegisterGRC20Interface("gno.land/r/gns", GnsTokenInterface{})
28-
sRegistry.RegisterGRC20Interface("gno.land/r/gns", GnsTokenInterface{})
29-
30-
pRegistry.RegisterGRC20Interface("gno.land/r/qux", QuxTokenInterface{})
31-
rRegistry.RegisterGRC20Interface("gno.land/r/qux", QuxTokenInterface{})
32-
sRegistry.RegisterGRC20Interface("gno.land/r/qux", QuxTokenInterface{})
33-
34-
pRegistry.RegisterGRC20Interface("gno.land/r/st1", SwapTest1TokenCTokenInterface{})
35-
rRegistry.RegisterGRC20Interface("gno.land/r/st1", SwapTest1TokenCTokenInterface{})
36-
sRegistry.RegisterGRC20Interface("gno.land/r/st1", SwapTest1TokenCTokenInterface{})
37-
38-
pRegistry.RegisterGRC20Interface("gno.land/r/st2", SwapTest2TokenCTokenInterface{})
39-
rRegistry.RegisterGRC20Interface("gno.land/r/st2", SwapTest2TokenCTokenInterface{})
40-
sRegistry.RegisterGRC20Interface("gno.land/r/st2", SwapTest2TokenCTokenInterface{})
41-
42-
pRegistry.RegisterGRC20Interface("gno.land/r/st3", SwapTest3TokenCTokenInterface{})
43-
rRegistry.RegisterGRC20Interface("gno.land/r/st3", SwapTest3TokenCTokenInterface{})
44-
sRegistry.RegisterGRC20Interface("gno.land/r/st3", SwapTest3TokenCTokenInterface{})
45-
46-
pRegistry.RegisterGRC20Interface("gno.land/r/st4", SwapTest4TokenCTokenInterface{})
47-
rRegistry.RegisterGRC20Interface("gno.land/r/st4", SwapTest4TokenCTokenInterface{})
48-
sRegistry.RegisterGRC20Interface("gno.land/r/st4", SwapTest4TokenCTokenInterface{})
49-
50-
pRegistry.RegisterGRC20Interface("gno.land/r/st5", SwapTest5TokenCTokenInterface{})
51-
rRegistry.RegisterGRC20Interface("gno.land/r/st5", SwapTest5TokenCTokenInterface{})
52-
sRegistry.RegisterGRC20Interface("gno.land/r/st5", SwapTest5TokenCTokenInterface{})
53-
54-
// TO BE USED
55-
// pRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
56-
// rRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
57-
// sRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
58-
59-
// pRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
60-
// rRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
61-
// sRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
62-
63-
// pRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
64-
// rRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
65-
// sRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
10+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/wugnot", WugnotTokenInterface{})
11+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/wugnot", WugnotTokenInterface{})
12+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/wugnot", WugnotTokenInterface{})
13+
14+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/bar", BarTokenInterface{})
15+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/bar", BarTokenInterface{})
16+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/bar", BarTokenInterface{})
17+
18+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/baz", BazTokenInterface{})
19+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/baz", BazTokenInterface{})
20+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/baz", BazTokenInterface{})
21+
22+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/foo", FooTokenInterface{})
23+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/foo", FooTokenInterface{})
24+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/foo", FooTokenInterface{})
25+
26+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/gns", GnsTokenInterface{})
27+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/gns", GnsTokenInterface{})
28+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/gns", GnsTokenInterface{})
29+
30+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
31+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
32+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/qux", QuxTokenInterface{})
33+
34+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/st1", SwapTest1TokenCTokenInterface{})
35+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/st1", SwapTest1TokenCTokenInterface{})
36+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/st1", SwapTest1TokenCTokenInterface{})
37+
38+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/st2", SwapTest2TokenCTokenInterface{})
39+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/st2", SwapTest2TokenCTokenInterface{})
40+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/st2", SwapTest2TokenCTokenInterface{})
41+
42+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/st3", SwapTest3TokenCTokenInterface{})
43+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/st3", SwapTest3TokenCTokenInterface{})
44+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/st3", SwapTest3TokenCTokenInterface{})
45+
46+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/st4", SwapTest4TokenCTokenInterface{})
47+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/st4", SwapTest4TokenCTokenInterface{})
48+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/st4", SwapTest4TokenCTokenInterface{})
49+
50+
pRegistry.RegisterGRC20Interface("gno.land/r/demo/st5", SwapTest5TokenCTokenInterface{})
51+
rRegistry.RegisterGRC20Interface("gno.land/r/demo/st5", SwapTest5TokenCTokenInterface{})
52+
sRegistry.RegisterGRC20Interface("gno.land/r/demo/st5", SwapTest5TokenCTokenInterface{})
53+
54+
pRegistry.RegisterGRC20Interface("gno.land/r/st11", SwapTest11TokenCTokenInterface{})
55+
rRegistry.RegisterGRC20Interface("gno.land/r/st11", SwapTest11TokenCTokenInterface{})
56+
sRegistry.RegisterGRC20Interface("gno.land/r/st11", SwapTest11TokenCTokenInterface{})
57+
58+
pRegistry.RegisterGRC20Interface("gno.land/r/st22", SwapTest22TokenCTokenInterface{})
59+
rRegistry.RegisterGRC20Interface("gno.land/r/st22", SwapTest22TokenCTokenInterface{})
60+
sRegistry.RegisterGRC20Interface("gno.land/r/st22", SwapTest22TokenCTokenInterface{})
61+
62+
pRegistry.RegisterGRC20Interface("gno.land/r/st33", SwapTest33TokenCTokenInterface{})
63+
rRegistry.RegisterGRC20Interface("gno.land/r/st33", SwapTest33TokenCTokenInterface{})
64+
sRegistry.RegisterGRC20Interface("gno.land/r/st33", SwapTest33TokenCTokenInterface{})
65+
66+
pRegistry.RegisterGRC20Interface("gno.land/r/st44", SwapTest44TokenCTokenInterface{})
67+
rRegistry.RegisterGRC20Interface("gno.land/r/st44", SwapTest44TokenCTokenInterface{})
68+
sRegistry.RegisterGRC20Interface("gno.land/r/st44", SwapTest44TokenCTokenInterface{})
69+
70+
pRegistry.RegisterGRC20Interface("gno.land/r/st55", SwapTest55TokenCTokenInterface{})
71+
rRegistry.RegisterGRC20Interface("gno.land/r/st55", SwapTest55TokenCTokenInterface{})
72+
sRegistry.RegisterGRC20Interface("gno.land/r/st55", SwapTest55TokenCTokenInterface{})
73+
74+
pRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
75+
rRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
76+
sRegistry.RegisterGRC20Interface("gno.land/r/testtokena", TestTokenATokenInterface{})
77+
78+
pRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
79+
rRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
80+
sRegistry.RegisterGRC20Interface("gno.land/r/testtokenb", TestTokenBTokenInterface{})
81+
82+
pRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
83+
rRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
84+
sRegistry.RegisterGRC20Interface("gno.land/r/testtokenc", TestTokenCTokenInterface{})
6685
}

_setup/grc20_wrapper/wrapper_bar.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/bar"
6+
"gno.land/r/demo/bar"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type BarTokenInterface struct{}

_setup/grc20_wrapper/wrapper_baz.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/baz"
6+
"gno.land/r/demo/baz"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type BazTokenInterface struct{}

_setup/grc20_wrapper/wrapper_foo.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/foo"
6+
"gno.land/r/demo/foo"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type FooTokenInterface struct{}

_setup/grc20_wrapper/wrapper_gns.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/gns"
6+
"gno.land/r/demo/gns"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type GnsTokenInterface struct{}

_setup/grc20_wrapper/wrapper_qux.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/qux"
6+
"gno.land/r/demo/qux"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type QuxTokenInterface struct{}

_setup/grc20_wrapper/wrapper_st1.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/st1"
6+
"gno.land/r/demo/st1"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type SwapTest1TokenCTokenInterface struct{}

_setup/grc20_wrapper/wrapper_st2.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/st2"
6+
"gno.land/r/demo/st2"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type SwapTest2TokenCTokenInterface struct{}

_setup/grc20_wrapper/wrapper_st3.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/st3"
6+
"gno.land/r/demo/st3"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type SwapTest3TokenCTokenInterface struct{}

_setup/grc20_wrapper/wrapper_st4.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/st4"
6+
"gno.land/r/demo/st4"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type SwapTest4TokenCTokenInterface struct{}

_setup/grc20_wrapper/wrapper_st5.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/st5"
6+
"gno.land/r/demo/st5"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type SwapTest5TokenCTokenInterface struct{}

_setup/grc20_wrapper/wrapper_testtokena.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/testtokena"
6+
"gno.land/r/demo/testtokena"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type TestTokenATokenInterface struct{}

_setup/grc20_wrapper/wrapper_testtokenb.gno

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ package grc20wrapper
33
import (
44
"gno.land/r/demo/users"
55

6-
"gno.land/r/testtokenb"
6+
"gno.land/r/demo/testtokenb"
77

8-
pRegistry "gno.land/r/pool"
9-
rRegistry "gno.land/r/router"
10-
sRegistry "gno.land/r/staker"
8+
pRegistry "gno.land/r/demo/pool"
9+
rRegistry "gno.land/r/demo/router"
10+
sRegistry "gno.land/r/demo/staker"
1111
)
1212

1313
type TestTokenBTokenInterface struct{}

0 commit comments

Comments
 (0)