Skip to content

Commit

Permalink
feat: post data results in batch and lint imports
Browse files Browse the repository at this point in the history
  • Loading branch information
hacheigriega committed Aug 15, 2024
1 parent ed48912 commit db13df2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions x/tally/keeper/testdata/contracts.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package testdata

import (
_ "embed"
)

var (
//go:embed seda_contract.wasm
sedaContract []byte

//go:embed sample_tally.wasm
sampleTallyWasm []byte
)

func SedaContractWasm() []byte {
return sedaContract
}

// SampleTallyWasm returns the sample tally wasm binary, whose Keccak256
// hash is 8ade60039246740faa80bf424fc29e79fe13b32087043e213e7bc36620111f6b.
func SampleTallyWasm() []byte {
return sampleTallyWasm
}
Binary file added x/tally/keeper/testdata/data_requests.wasm
Binary file not shown.
Binary file added x/tally/keeper/testdata/sample_tally.wasm
Binary file not shown.
Binary file added x/tally/keeper/testdata/seda_contract.wasm
Binary file not shown.

0 comments on commit db13df2

Please sign in to comment.