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

feat(api): update via SDK Studio #56

Merged
merged 1 commit into from
May 28, 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
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 7
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/new%2Fblockaid-211e8626077c5368f15280d7e735c589ad5ae5eb3ae1f751419d4ef575fc4920.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/new%2Fblockaid-dd0c2cee5ee1abb268c317c377a4dbee77e050db719453d5aa5a9f9389e9b5ff.yml
6 changes: 3 additions & 3 deletions src/resources/evm/evm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export interface Erc1155Diff {
/**
* value before divided by decimal, that was transferred from this address
*/
value: number;
value: string;

/**
* url of the token logo
Expand Down Expand Up @@ -124,7 +124,7 @@ export interface Erc20Diff {
/**
* value before divided by decimal, that was transferred from this address
*/
raw_value: number;
raw_value: string;

/**
* user friendly description of the asset transfer
Expand Down Expand Up @@ -294,7 +294,7 @@ export interface NativeDiff {
/**
* value before divided by decimal, that was transferred from this address
*/
raw_value: number;
raw_value: string;

/**
* user friendly description of the asset transfer
Expand Down