Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add placeholder for monthly gas estimate for trader agent #57

Merged
merged 1 commit into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions frontend/client/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export type ConfigurationTemplate = {
cost_of_bond: number;
olas_cost_of_bond: number;
olas_required_to_stake: number;
monthly_gas_estimate: number;
fund_requirements: FundRequirementsTemplate;
};

Expand Down
1 change: 1 addition & 0 deletions frontend/constants/serviceTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const serviceTemplates: ServiceTemplate[] = [
cost_of_bond: 10000000000000000,
olas_cost_of_bond: 10000000000000000000,
olas_required_to_stake: 10000000000000000000,
monthly_gas_estimate: 5000000000000000000,
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

5 xDAI

fund_requirements: {
agent: 100000000000000000,
safe: 500000000000000000,
Expand Down
1 change: 1 addition & 0 deletions templates/trader.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ configuration:
cost_of_bond: 10000000000000000
olas_cost_of_bond: 10000000000000000000
olas_required_to_stake: 10000000000000000000
monthly_gas_estimate: 5000000000000000000
fund_requirements:
agent: 100000000000000000
safe: 500000000000000000
Loading