Full provider documentation can be found on the Terraform registry at the link found above.
terraform {
required_providers {
solana = {
source = "callensm/solana"
version = "<LATEST_VERSION>"
}
}
}
provider "solana" {
cluster = "testnet"
}
data "solana_address_signatures" "sigs" {
address = "11111111111111111111111111111111"
search_options {
limit = 1
}
}
data "solana_signature_status" "sig" {
signature = data.solana_address_signatures.sigs.results.0.signature
search_transaction_history = true
}