Skip to content

Commit

Permalink
add new config on genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
hoangdv2429 committed Sep 6, 2024
1 parent 3b4bb09 commit 9374bf6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ replace (

require (
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869
github.com/decentrio/rollup-e2e-testing v0.0.0-20240826075000-703ac1665ee8
github.com/decentrio/rollup-e2e-testing v0.0.0-20240906122105-34ede6dfe1d1
github.com/dymensionxyz/dymension/v3 v3.1.0-rc03.0.20240717194206-54c0fca5fada
github.com/dymensionxyz/dymint v1.2.0-rc01
)
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -770,8 +770,8 @@ github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c h1:pFUpOrbxDR
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c/go.mod h1:6UhI8N9EjYm1c2odKpFpAYeR8dsBeM7PtzQhRgxRr9U=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869 h1:qWpUYGOsrSC+1Vmd2TjhbsSpntvvx9PsX3AoeMunFxc=
github.com/decentrio/e2e-testing-live v0.0.0-20240718080249-ee255229c869/go.mod h1:HZNYnPwmSxkwTPjSD5yolauc1Vx1ZzKL4FFMxTq4H5Y=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240826075000-703ac1665ee8 h1:0DDLdwsT5WumK6P3m1rAQxz1GzFqN7+TBHAY8hct9IA=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240826075000-703ac1665ee8/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240906122105-34ede6dfe1d1 h1:VP1JKYWYR3XkFYaqgnJ/A79X1y2A1aqkoqqvFB654/0=
github.com/decentrio/rollup-e2e-testing v0.0.0-20240906122105-34ede6dfe1d1/go.mod h1:QmBrZgZplhtgHRWC0Z7LC7TDsKuC8sDyQvZyXXaqw/c=
github.com/deckarep/golang-set v1.8.0 h1:sk9/l/KqpunDwP7pSjUg0keiOOLEnOBHzykLrsPppp4=
github.com/deckarep/golang-set v1.8.0/go.mod h1:5nI87KwE7wgsBU1F4GKAw2Qod7p5kyS383rP6+o6qqo=
github.com/deckarep/golang-set/v2 v2.1.0 h1:g47V4Or+DUdzbs8FxCCmgb6VYd+ptPAngjM6dtGktsI=
Expand Down
5 changes: 5 additions & 0 deletions tests/data/native_denom.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"display": "RAX",
"base": "urax",
"exponent": 18
}
23 changes: 14 additions & 9 deletions tests/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,12 +84,12 @@ type ForwardMetadata struct {
}

const (
ibcPath = "dymension-demo"
anotherIbcPath = "dymension-demo2"
BLOCK_FINALITY_PERIOD = 30
EventDemandOrderCreated = "dymensionxyz.dymension.eibc.EventDemandOrderCreated"
EventDemandOrderFulfilled = "dymensionxyz.dymension.eibc.EventDemandOrderFulfilled"
EventDemandOrderFeeUpdated = "dymensionxyz.dymension.eibc.EventDemandOrderFeeUpdated"
ibcPath = "dymension-demo"
anotherIbcPath = "dymension-demo2"
BLOCK_FINALITY_PERIOD = 30
EventDemandOrderCreated = "dymensionxyz.dymension.eibc.EventDemandOrderCreated"
EventDemandOrderFulfilled = "dymensionxyz.dymension.eibc.EventDemandOrderFulfilled"
EventDemandOrderFeeUpdated = "dymensionxyz.dymension.eibc.EventDemandOrderFeeUpdated"
EventDemandOrderPacketStatusUpdated = "dymensionxyz.dymension.eibc.EventDemandOrderPacketStatusUpdated"
)

Expand All @@ -108,7 +108,7 @@ var (

DymensionMainRepo = "ghcr.io/dymensionxyz/dymension"

RollappEVMMainRepo = "ghcr.io/dymensionxyz/rollapp-evm"
RollappEVMMainRepo = "ghcr.io/decentrio/rollapp-evm"

RollappWasmMainRepo = "ghcr.io/dymensionxyz/rollapp-wasm"

Expand All @@ -128,8 +128,9 @@ var (

rollappEVMImage = ibc.DockerImage{
Repository: RollappEVMMainRepo,
Version: rollappEVMVersion,
UidGid: "1025:1025",
// Version: rollappEVMVersion,
Version: "ra-consensus-param",
UidGid: "1025:1025",
}

rollappWasmImage = ibc.DockerImage{
Expand Down Expand Up @@ -260,6 +261,10 @@ var (
},
},
},
{
Key: "app_state.rollappparams.params.da",
Value: "celestia",
},
}

rollappWasmGenesisKV = []cosmos.GenesisKV{
Expand Down

0 comments on commit 9374bf6

Please sign in to comment.