mirror of
https://github.com/FlipsideCrypto/tools.git
synced 2026-02-06 10:46:47 +00:00
Add files via upload
This commit is contained in:
parent
1dad1d6e89
commit
ba96dca6b0
20
metamaskConnectr/DESCRIPTION
Normal file
20
metamaskConnectr/DESCRIPTION
Normal file
@ -0,0 +1,20 @@
|
||||
Package: metamaskConnectr
|
||||
Title: What the Package Does (One Line, Title Case)
|
||||
Version: 0.0.0.9000
|
||||
Authors@R:
|
||||
person(given = "First",
|
||||
family = "Last",
|
||||
role = c("aut", "cre"),
|
||||
email = "first.last@example.com",
|
||||
comment = c(ORCID = "YOUR-ORCID-ID"))
|
||||
Description: What the package does (one paragraph).
|
||||
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
|
||||
license
|
||||
Encoding: UTF-8
|
||||
Roxygen: list(markdown = TRUE)
|
||||
RoxygenNote: 7.1.1
|
||||
Imports: htmltools, reactR, shiny
|
||||
NeedsCompilation: no
|
||||
Packaged: 2022-02-14 21:40:31 UTC; angelaminster
|
||||
Author: First Last [aut, cre] (YOUR-ORCID-ID)
|
||||
Maintainer: First Last <first.last@example.com>
|
||||
6
metamaskConnectr/NAMESPACE
Normal file
6
metamaskConnectr/NAMESPACE
Normal file
@ -0,0 +1,6 @@
|
||||
# Generated by roxygen2: do not edit by hand
|
||||
|
||||
export(metamaskConnect)
|
||||
importFrom(htmltools,htmlDependency)
|
||||
importFrom(htmltools,tags)
|
||||
importFrom(reactR,createReactShinyInput)
|
||||
24
metamaskConnectr/R/metamaskConnect.R
Normal file
24
metamaskConnectr/R/metamaskConnect.R
Normal file
@ -0,0 +1,24 @@
|
||||
#' <Add Title>
|
||||
#'
|
||||
#' <Add Description>
|
||||
#'
|
||||
#' @importFrom reactR createReactShinyInput
|
||||
#' @importFrom htmltools htmlDependency tags
|
||||
#'
|
||||
#' @export
|
||||
metamaskConnect <- function(inputId, default = "") {
|
||||
reactR::createReactShinyInput(
|
||||
inputId,
|
||||
"metamaskConnect",
|
||||
htmltools::htmlDependency(
|
||||
name = "metamaskConnect-input",
|
||||
version = "1.0.0",
|
||||
src = "www/metamaskConnectr/metamaskConnect",
|
||||
package = "metamaskConnectr",
|
||||
script = "metamaskConnect.js"
|
||||
),
|
||||
default,
|
||||
list(),
|
||||
htmltools::tags$div
|
||||
)
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
11
metamaskConnectr/man/metamaskConnect.Rd
Normal file
11
metamaskConnectr/man/metamaskConnect.Rd
Normal file
@ -0,0 +1,11 @@
|
||||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/metamaskConnect.R
|
||||
\name{metamaskConnect}
|
||||
\alias{metamaskConnect}
|
||||
\title{<Add Title>}
|
||||
\usage{
|
||||
metamaskConnect(inputId, default = "")
|
||||
}
|
||||
\description{
|
||||
<Add Description>
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user