Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 27, 2024
1 parent 2b240ab commit 6584c17
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions src/coinbase/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,40 +5,40 @@ import { ethers } from "ethers";
import * as fs from "fs";
import * as secp256k1 from "secp256k1";
import { Address as AddressModel, Wallet as WalletModel } from "../client";
import { Address, IAddress } from "./address";
import { IContractInvocation } from "../coinbase/contract_invocation";
import { IAddress } from "./address";
import { IWalletAddress, WalletAddress } from "./address/wallet_address";
import { Asset } from "./asset";
import { Balance } from "./balance";
import { BalanceMap } from "./balance_map";
import { Coinbase } from "./coinbase";
import { ArgumentError } from "./errors";
import { FaucetTransaction, IFaucetTransaction } from "./faucet_transaction";
import { ITrade, Trade } from "./trade";
import { IPayloadSignature } from "./payload_signature";
import { ISmartContract } from "./smart_contract";
import { StakingBalance } from "./staking_balance";
import { IStakingOperation } from "./staking_operation";
import { StakingReward } from "./staking_reward";
import { ITrade } from "./trade";
import { ITransfer } from "./transfer";
import {
Amount,
StakingRewardFormat,
CreateContractInvocationOptions,
CreateTransferOptions,
CreateERC1155Options,
CreateERC20Options,
CreateERC721Options,
CreateTradeOptions,
CreateTransferOptions,
ListHistoricalBalancesOptions,
ListHistoricalBalancesResult,
SeedData,
ServerSignerStatus,
StakeOptionsMode,
StakingRewardFormat,
WalletCreateOptions,
WalletData,
CreateERC20Options,
CreateERC721Options,
CreateERC1155Options,
} from "./types";
import { convertStringToHex, delay, formatDate, getWeekBackDate } from "./utils";
import { IStakingOperation, StakingOperation } from "./staking_operation";
import { StakingReward } from "./staking_reward";
import { StakingBalance } from "./staking_balance";
import { IPayloadSignature, PayloadSignature } from "./payload_signature";
import { ContractInvocation, IContractInvocation } from "../coinbase/contract_invocation";
import { ISmartContract, SmartContract } from "./smart_contract";
import { IWebhook, Webhook } from "./webhook";

export interface IWallet {
Expand Down
2 changes: 1 addition & 1 deletion src/coinbase/webhook.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface IWebhook {
/**
* A representation of a Webhook,
* which provides methods to create, list, update, and delete webhooks that are used to receive notifications of specific events.
*/
*/
export class Webhook implements IWebhook {
private model: WebhookModel | null;

Expand Down

0 comments on commit 6584c17

Please sign in to comment.