Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/framework-golden-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,6 @@ jobs:
config: smoke_solana.toml
count: 1
timeout: 10m
- name: TestTonSmoke
config: smoke_ton.toml
count: 1
timeout: 10m
- name: TestUpgrade
config: upgrade.toml
count: 1
Expand Down
1 change: 0 additions & 1 deletion book/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
- [Sui](framework/components/blockchains/sui.md)
- [TRON](framework/components/blockchains/tron.md)
- [ZKSync](framework/components/blockchains/zksync.md)
- [Ton](framework/components/blockchains/ton.md)
- [Optimism Stack]()
- [Arbitrum Stack]()
- [Chainlink](framework/components/chainlink.md)
Expand Down
132 changes: 0 additions & 132 deletions book/src/framework/components/blockchains/ton.md

This file was deleted.

1 change: 0 additions & 1 deletion framework/.changeset/v0.7.9.md

This file was deleted.

10 changes: 1 addition & 9 deletions framework/components/blockchain/blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ const (
TypeAptos = "aptos"
TypeSui = "sui"
TypeTron = "tron"
TypeTon = "ton"
)

// Blockchain node family
Expand All @@ -28,13 +27,12 @@ const (
FamilyAptos = "aptos"
FamilySui = "sui"
FamilyTron = "tron"
FamilyTon = "ton"
)

// Input is a blockchain network configuration params
type Input struct {
// Common EVM fields
Type string `toml:"type" validate:"required,oneof=anvil geth besu solana aptos tron sui ton" envconfig:"net_type"`
Type string `toml:"type" validate:"required,oneof=anvil geth besu solana aptos tron sui" envconfig:"net_type"`
Image string `toml:"image"`
PullImage bool `toml:"pull_image"`
Port string `toml:"port"`
Expand All @@ -54,10 +52,6 @@ type Input struct {
SolanaPrograms map[string]string `toml:"solana_programs"`
ContainerResources *framework.ContainerResources `toml:"resources"`
CustomPorts []string `toml:"custom_ports"`

// Ton - MyLocalTon essesntial services to run tests
DockerComposeFileURL string `toml:"docker_compose_file_url"`
TonCoreServices []string `toml:"ton_core_services"`
}

// Output is a blockchain network output, ChainID and one or more nodes that forms the network
Expand Down Expand Up @@ -105,8 +99,6 @@ func NewBlockchainNetwork(in *Input) (*Output, error) {
out, err = newTron(in)
case TypeAnvilZKSync:
out, err = newAnvilZksync(in)
case TypeTon:
out, err = newTon(in)
default:
return nil, fmt.Errorf("blockchain type is not supported or empty, must be 'anvil' or 'geth'")
}
Expand Down
168 changes: 0 additions & 168 deletions framework/components/blockchain/ton.go

This file was deleted.

Loading
Loading