Skip to content

Commit

Permalink
feat(api): api update (#338)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 24, 2024
1 parent c70ac50 commit 56181b2
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .stats.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
configured_endpoints: 20
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/new%2Fblockaid-aef78273c63314e7b4ba0f85848e760b31e7e1f523882d4b5a2be3532e8b9592.yml
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/new%2Fblockaid-fa5b82ce6b474291bffc46c40e81830c60e1f60d9ee8403f97d433050829d1e9.yml
20 changes: 20 additions & 0 deletions src/resources/evm/evm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -867,6 +867,11 @@ export namespace TransactionSimulation {
* The type of the model
*/
type: 'ERC20AssetTrace';

/**
* List of labels that describe the trace
*/
labels?: Array<'GAS_FEE' | (string & {})>;
}

export interface Erc721AssetTrace {
Expand Down Expand Up @@ -899,6 +904,11 @@ export namespace TransactionSimulation {
* The type of the model
*/
type: 'ERC721AssetTrace';

/**
* List of labels that describe the trace
*/
labels?: Array<'GAS_FEE' | (string & {})>;
}

export interface Erc1155AssetTrace {
Expand Down Expand Up @@ -931,6 +941,11 @@ export namespace TransactionSimulation {
* The type of the model
*/
type: 'ERC1155AssetTrace';

/**
* List of labels that describe the trace
*/
labels?: Array<'GAS_FEE' | (string & {})>;
}

export interface NativeAssetTrace {
Expand Down Expand Up @@ -963,6 +978,11 @@ export namespace TransactionSimulation {
* The type of the model
*/
type: 'NativeAssetTrace';

/**
* List of labels that describe the trace
*/
labels?: Array<'GAS_FEE' | (string & {})>;
}

export interface Erc20ExposureTrace {
Expand Down

0 comments on commit 56181b2

Please sign in to comment.