The Objective of this library is to give Developers Access to each and every needed resource for cardano development. The final goal is to be able to have this library interact directly with the node without intermediaries.
Little Sample Usage:
package main
import (
"encoding/hex"
"fmt"
"github.com/Salvionied/cbor/v2"
"github.com/Salvionied/apollo"
"github.com/Salvionied/apollo/txBuilding/Backend/BlockFrostChainContext"
)
func main() {
bfc := BlockFrostChainContext.NewBlockfrostChainContext("blockfrost_api_key", int(apollo.MAINNET), apollo.BLOCKFROST_BASE_URL_MAINNET)
cc := apollo.NewEmptyBackend()
SEED := "your mnemonic here"
apollob := apollo.New(&cc)
apollob = apollob.
SetWalletFromMnemonic(SEED).
SetWalletAsChangeAddress()
utxos := bfc.Utxos(*apollob.GetWallet().GetAddress())
apollob, err := apollob.
AddLoadedUTxOs(utxos).
PayToAddressBech32("addr1qy99jvml0vafzdpy6lm6z52qrczjvs4k362gmr9v4hrrwgqk4xvegxwvtfsu5ck6s83h346nsgf6xu26dwzce9yvd8ysd2seyu", 1_000_000, nil).
Complete()
if err != nil {
fmt.Println(err)
}
apollob = apollob.Sign()
tx := apollob.GetTx()
cborred, err := cbor.Marshal(tx)
if err != nil {
fmt.Println(err)
}
fmt.Println(hex.EncodeToString(cborred))
tx_id, _ := bfc.SubmitTx(*tx)
fmt.Println(hex.EncodeToString(tx_id.Payload))
}
-
Ledger
- Byron Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Interfacing
- Tests
- Shelley Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- ShelleyMary Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- Allegra Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- Alonzo Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- Babbage Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- Conway Support
- Block
- Transaction
- TxOutputs
- TxInputs
- Serialization/deserialization
- Tests
- Byron Support
-
Serialization/Deserialization
- Address
- Enterprise Address
- Staked Address
- SC Address
- Others...
- Amount
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Asset
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- AssetName
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- MultiAsset
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Policy
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Value
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- NativeScript
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- PlutusData
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Redeemer
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Keys
- Serialization/Deserialization
- Basic Functionality
- Utility functions
- Constructors
- Address
-
TxBuilding
- Basic Tx Building
- Basic Smart Contract Interaction
- Advanced Smart Contract Interaction
- Coin Selectors
- LargestFirst
- RandomImprove
- Greedy
- Utility Functions
- Backends
- Blockfrost
- Ogmios + Kupo
- DBSync
- Carybdis
- Koios
If you have any questions or requests feel free to drop into this discord and ask :) https://discord.gg/MH4CmJcg49
By:
Edoardo Salvioni - Zhaata
Tests By:
Josh Marchand - JSHY