Skip to content

Commit

Permalink
golemsp: add Sepolia & Amoy to testnets, remove Mumbai
Browse files Browse the repository at this point in the history
  • Loading branch information
kamirr committed Aug 14, 2024
1 parent 56cc7a5 commit ea2db58
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion golem_cli/src/command/yagna.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,22 @@ lazy_static! {
token: "GLM",
},
);
erc20.insert(
NetworkName::Amoy.into(),
PaymentPlatform {
platform: "erc20-amoy-glm",
driver: "erc20",
token: "GLM",
},
);
erc20.insert(
NetworkName::Sepolia.into(),
PaymentPlatform {
platform: "erc20-sepolia-glm",
driver: "erc20",
token: "GLM",
},
);

PaymentDriver {
platforms: erc20,
Expand Down Expand Up @@ -136,7 +152,7 @@ lazy_static! {
);
ngm.insert(
NetworkGroup::Testnet,
vec![NetworkName::Holesky, NetworkName::Mumbai],
vec![NetworkName::Holesky, NetworkName::Amoy, NetworkName::Sepolia],
);
ngm
};
Expand Down

0 comments on commit ea2db58

Please sign in to comment.