-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add more descriptive and helpful error messages to the contracts
- Loading branch information
1 parent
0ce4125
commit 49365e3
Showing
16 changed files
with
311 additions
and
5,492 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,53 @@ | ||
module github.com/onflow/flow-nft/lib/go/contracts | ||
|
||
go 1.16 | ||
go 1.22 | ||
|
||
toolchain go1.22.4 | ||
|
||
require ( | ||
github.com/kevinburke/go-bindata v3.23.0+incompatible | ||
github.com/onflow/flow-go-sdk v1.0.0-M1 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/onflow/flow-go-sdk v1.0.0-preview.54 | ||
github.com/stretchr/testify v1.9.0 | ||
) | ||
|
||
require ( | ||
github.com/SaveTheRbtz/mph v0.1.1-0.20240117162131-4166ec7869bc // indirect | ||
github.com/bits-and-blooms/bitset v1.10.0 // indirect | ||
github.com/btcsuite/btcd/btcec/v2 v2.2.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.4.1-0.20230228173756-c0c9f774e40c // indirect | ||
github.com/fxamacker/circlehash v0.3.0 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/holiman/uint256 v1.2.4 // indirect | ||
github.com/k0kubun/pp v3.0.1+incompatible // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.6 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/logrusorgru/aurora/v4 v4.0.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/onflow/atree v0.8.0-rc.6 // indirect | ||
github.com/onflow/cadence v1.0.0-preview.51 // indirect | ||
github.com/onflow/crypto v0.25.1 // indirect | ||
github.com/onflow/flow/protobuf/go/flow v0.4.3 // indirect | ||
github.com/onflow/go-ethereum v1.13.4 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rivo/uniseg v0.4.4 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/texttheater/golang-levenshtein/levenshtein v0.0.0-20200805054039-cae8b0eaed6c // indirect | ||
github.com/turbolent/prettier v0.0.0-20220320183459-661cc755135d // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
github.com/zeebo/blake3 v0.2.3 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.uber.org/goleak v1.2.1 // indirect | ||
golang.org/x/crypto v0.19.0 // indirect | ||
golang.org/x/exp v0.0.0-20240119083558-1b970713d09a // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
gonum.org/v1/gonum v0.14.0 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.